Removed the legacy built-in session_recap from the analyze stage

This commit is contained in:
2026-05-19 19:26:07 -05:00
parent 958f446387
commit ebb21b9201
2 changed files with 1 additions and 8 deletions

View File

@@ -18,7 +18,6 @@ const (
ArtifactTranscriptFull = "narratio.transcript.full"
ArtifactTranscriptTrimmed = "narratio.transcript.trimmed"
ArtifactBoundsSession = "narratio.bounds.session"
ArtifactSessionRecap = "narratio.artifact.session_recap"
)
// ErrSessionArtifactNotFound is returned when no readable artifact exists for a known ID.
@@ -77,13 +76,6 @@ var artifactRegistry = map[string]artifactSpec{
OutputKind: "session_bounds",
ContentKind: contentJSON,
},
ArtifactSessionRecap: {
ID: ArtifactSessionRecap,
CanonicalRelPath: "artifacts/session_recap.md",
ProducerStage: "analyze",
OutputKind: "session_recap",
ContentKind: contentText,
},
}
// ResolvedSessionArtifact describes one session-level artifact lookup result.