File size: 1,466 Bytes
064bfd6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | import type { ChildProcess } from 'child_process'
import { z } from 'zod/v4'
import { lazySchema } from '../utils/lazySchema.js'
export const connectResponseSchema = lazySchema(() =>
z.object({
session_id: z.string(),
ws_url: z.string(),
work_dir: z.string().optional(),
}),
)
export type ServerConfig = {
port: number
host: string
authToken: string
unix?: string
/** Idle timeout for detached sessions (ms). 0 = never expire. */
idleTimeoutMs?: number
/** Maximum number of concurrent sessions. */
maxSessions?: number
/** Default workspace directory for sessions that don't specify cwd. */
workspace?: string
}
export type SessionState =
| 'starting'
| 'running'
| 'detached'
| 'stopping'
| 'stopped'
export type SessionInfo = {
id: string
status: SessionState
createdAt: number
workDir: string
process: ChildProcess | null
sessionKey?: string
}
/**
* Stable session key → session metadata. Persisted to ~/.claude/server-sessions.json
* so sessions can be resumed across server restarts.
*/
export type SessionIndexEntry = {
/** Server-assigned session ID (matches the subprocess's claude session). */
sessionId: string
/** The claude transcript session ID for --resume. Same as sessionId for direct sessions. */
transcriptSessionId: string
cwd: string
permissionMode?: string
createdAt: number
lastActiveAt: number
}
export type SessionIndex = Record<string, SessionIndexEntry>
|