Skip to content

agent-sessions / Exports / ISessionRecord

Interface: ISessionRecord

A persisted session record

Table of contents

Properties

Properties

id

id: string

Unique session identifier

Defined in

agent-sessions/src/session-store.ts:14


name

Optional name: string

Optional human-readable session name

Defined in

agent-sessions/src/session-store.ts:16


cwd

cwd: string

Working directory when the session was created

Defined in

agent-sessions/src/session-store.ts:18


createdAt

createdAt: string

ISO-8601 creation timestamp

Defined in

agent-sessions/src/session-store.ts:20


updatedAt

updatedAt: string

ISO-8601 last-updated timestamp

Defined in

agent-sessions/src/session-store.ts:22


messages

messages: unknown[]

Conversation messages (opaque to the store)

Defined in

agent-sessions/src/session-store.ts:24

Released under the MIT License.