2026-07-21 16:46:48 +08:00
# Session References
2026-07-26 02:33:29 +08:00
English | [中文 ](session-reference.zh.md )
2026-08-09 15:27:21 +08:00
Structured cross-session reference requests and prepared message contexts. The [package contract ](../../packages/context/session-reference ) defines canonical URIs, current-surface projection, tag-safe JSON and byte retention, stable errors, and the untrusted model prompt. Host adapters use these types instead of passing their UI mention syntax into the agent core.
2026-07-21 16:46:48 +08:00
Source: [`packages/context/session-reference/src/types.ts` ](../../packages/context/session-reference/src/types.ts )
## Inputs and candidates
`SessionReferenceInput` is the host-independent selection. The id is authoritative; the label is display metadata carried into the snapshot.
```ts type-equiv
/** One source session selected by a host. */
interface SessionReferenceInput {
/** Opaque source session identity. */
sessionId: SessionId
/** Optional user-facing mention label. */
label?: string
}
` ``
2026-07-22 10:21:17 +08:00
` SessionReferenceCandidate` is host-facing discovery output. Its label uses the latest session title when present, while filtering still searches only session id and cwd and never transcript text.
2026-07-21 16:46:48 +08:00
` ``ts type-equiv
/** One host-facing candidate from exact session metadata. */
interface SessionReferenceCandidate {
/** Opaque source session identity. */
sessionId: SessionId
2026-07-22 10:21:17 +08:00
/** Latest log-backed title, falling back to the opaque session id. */
2026-07-21 16:46:48 +08:00
label: string
/** Source session working directory, when recorded. */
cwd?: string
/** Source session creation time in Unix epoch milliseconds. */
createdAt: number
}
` ``
## Prepared messages
2026-07-24 21:18:48 +08:00
Preparation preserves readable current-message content and returns at most one aggregated context.
2026-07-21 16:46:48 +08:00
` ``ts type-equiv
2026-07-24 21:18:48 +08:00
/** Direct message content and optional referenced-session context. */
2026-07-21 16:46:48 +08:00
interface PreparedReferencedMessage {
/** Readable message content after host mention tokens are removed. */
content: ContentBlock[]
2026-07-24 21:18:48 +08:00
/** Aggregated untrusted snapshot, absent when the message has no references. */
2026-07-28 13:55:59 +08:00
additionalContext?: UserMessage
2026-07-21 16:46:48 +08:00
}
` ``
## Errors
` SessionReferenceError.code` separates invalid configuration or input, self-reference, count limits, source-read failure, budget failure, and cancellation. Host protocols map these codes to their own error envelopes without inspecting prompt bytes.
` ``ts type-equiv
/** Stable failure codes exposed to host adapters. */
type SessionReferenceErrorCode =
| 'SESSION_REFERENCE_INVALID_CONFIG'
| 'SESSION_REFERENCE_INVALID_REFERENCE'
| 'SESSION_REFERENCE_SELF_REFERENCE'
| 'SESSION_REFERENCE_TOO_MANY'
| 'SESSION_REFERENCE_READ_FAILED'
| 'SESSION_REFERENCE_BUDGET_EXCEEDED'
| 'SESSION_REFERENCE_CANCELLED'
` ``
2026-07-30 21:40:58 +08:00
<!-- BEGIN GENERATED cordis-surface (gen-cordis-catalog.ts) — do not edit between markers -->
<a id="cordis-surface"></a>
2026-07-24 19:54:25 +08:00
## Cordis API
2026-07-30 21:40:58 +08:00
2026-07-24 19:54:25 +08:00
Generated from source by ` scripts/gen-cordis-catalog.ts` (verified fresh by ` pnpm run verify-cordis-catalog` in doc-sync; regenerate with ` pnpm run gen-cordis-catalog`) — this section is byte-identical in both language sides of the page. Signature blocks use a ` ts cordis-catalog` fence and keep the original source JSDoc; dispatch modes are defined in the [primer](../cordis-primer.md#dispatch-modes), and the framework-inherited ` ctx` API lives in [cordis-api/inherited.md](../cordis-api/inherited.md).
2026-07-30 21:40:58 +08:00
2026-08-13 00:36:22 +08:00
<a id="ctxsessionreferenceresolver--sessionreferenceresolver"></a>
2026-07-30 21:40:58 +08:00
2026-08-13 00:36:22 +08:00
### ` ctx.sessionReferenceResolver` — ` SessionReferenceResolver`
2026-07-30 21:40:58 +08:00
Exact-read consumer that prepares immutable cross-session message context.
` ``ts cordis-catalog
/**
* List reference candidates, ranked by working-directory affinity.
* @param agent - target agent; self is excluded and its cwd drives ranking.
* @param query - optional case-insensitive session-id/cwd/title substring.
* @param limit - optional positive result cap.
* @param signal - optional cancellation boundary for host autocomplete teardown.
* @returns candidates labeled by latest title or, when absent, session id.
*/
async listCandidates( agent: Agent, query: string = '', limit: number = this.config.candidateLimit, signal?: AbortSignal, ): Promise<SessionReferenceCandidate[]>
/**
* Snapshot all references before enqueue and return one aggregated durable context.
* @param agent - target agent; references to it are rejected.
* @param content - already host-normalized readable message content.
* @param references - structured source sessions in mention order.
* @param signal - optional cancellation boundary for host request teardown.
* @returns detached content and optional referenced-session context.
*/
async prepare( agent: Agent, content: ContentBlock[], references: SessionReferenceInput[], signal?: AbortSignal, ): Promise<PreparedReferencedMessage>
` ``
2026-08-02 05:54:15 +08:00
Types: [Agent](core.md) · [ContentBlock](llm-streaming.md)
2026-07-30 21:40:58 +08:00
Source: [` packages/context/session-reference/src/index.ts:70`](../../packages/context/session-reference/src/index.ts)
<!-- END GENERATED cordis-surface -->