| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /** Validated configuration for the local PTY backend. */
- import z from '@deepseek-ai/schemastery'
- import { resolvePwshPath } from '@deepseek-ai/dsh-pwsh-local'
- /** One supported interactive shell dialect. */
- export type ShellDialect = 'bash' | 'pwsh'
- /** Public plugin configuration. */
- export interface Config {
- /** Backend registry type (default: `shell`). */
- backendType?: string
- /** Interactive shell dialect (default: `bash`); selects the argv/env/startup defaults. */
- shellDialect?: ShellDialect
- /** Interactive shell executable (default per dialect: `/bin/bash`, or the resolved pwsh). */
- shellPath?: string
- /** Shell arguments (default per dialect: bash `--noprofile --norc -i`, pwsh `-NoLogo -NoProfile`). */
- shellArgs?: string[]
- /** Terminal rows. */
- rows?: number
- /** Terminal columns. */
- cols?: number
- /** Maximum retained logical lines. */
- scrollbackLines?: number
- /** Maximum retained UTF-8 bytes. */
- scrollbackMaxBytes?: number
- /** Maximum bytes returned by one read or settled viewport. */
- maxReadBytes?: number
- /** Readiness polling interval. */
- pollIntervalMs?: number
- /** Delay before Linux exact syscall probes. */
- exactProbeAfterMs?: number
- /** Silence duration that yields `inferred_idle`. */
- idleSilenceMs?: number
- /**
- * Extra wait beyond `idleSilenceMs`, once a prompt marker was seen, for the shell to
- * regain the foreground before `inferred_idle` settles; at least one `pollIntervalMs`.
- */
- handoffGraceMs?: number
- /** Absolute bound for one send and the complete pwsh startup sequence. */
- timeoutMs?: number
- /** Grace before teardown escalates to `SIGKILL`. */
- disposeGraceMs?: number
- }
- /** Configuration after Schemastery defaults and dialect resolution. */
- export type ResolvedConfig = Omit<Required<Config>, 'shellDialect' | 'shellPath' | 'shellArgs'> & {
- shellDialect: ShellDialect
- shellPath: string
- shellArgs: string[]
- }
- /** Bash dialect default executable. */
- export const DEFAULT_BASH_SHELL = '/bin/bash'
- /** Bash dialect default arguments (interactive, profile-free). */
- export const DEFAULT_BASH_ARGS = ['--noprofile', '--norc', '-i']
- /** Pwsh dialect default arguments (interactive host, profile-free). */
- export const DEFAULT_PWSH_ARGS = ['-NoLogo', '-NoProfile']
- /**
- * Resolve the effective per-dialect shell specification. Defaulting is this
- * explicit step: an unset or empty `shellPath`/`shellArgs` selects the
- * dialect's defaults, while a non-empty explicit value always wins.
- * (Schemastery materializes an absent optional array as `[]`, so emptiness —
- * not just `undefined` — means "dialect default".)
- * @param config - Schemastery-resolved plugin configuration.
- * @returns the fully resolved configuration.
- */
- export function resolveConfig(config: Config): ResolvedConfig {
- const shellDialect = config.shellDialect ?? 'bash'
- return {
- ...(config as Required<Config>),
- shellDialect,
- shellPath: config.shellPath !== undefined && config.shellPath.length > 0
- ? config.shellPath
- : (shellDialect === 'pwsh' ? resolvePwshPath() : DEFAULT_BASH_SHELL),
- shellArgs: config.shellArgs !== undefined && config.shellArgs.length > 0
- ? config.shellArgs
- : (shellDialect === 'pwsh' ? DEFAULT_PWSH_ARGS : DEFAULT_BASH_ARGS),
- }
- }
- /** Schemastery config exposed by the plugin. */
- export const Config: z<Config> = z.object({
- backendType: z.string().default('shell'),
- shellDialect: z.union(['bash', 'pwsh'] as const).default('bash'),
- shellPath: z.string().required(false),
- shellArgs: z.array(z.string()).required(false),
- rows: z.number().default(40),
- cols: z.number().default(160),
- scrollbackLines: z.number().default(10_000),
- scrollbackMaxBytes: z.number().default(4 * 1024 * 1024),
- maxReadBytes: z.number().default(256 * 1024),
- pollIntervalMs: z.number().default(50),
- exactProbeAfterMs: z.number().default(150),
- idleSilenceMs: z.number().default(3_000),
- handoffGraceMs: z.number().default(500),
- timeoutMs: z.number().default(30_000),
- disposeGraceMs: z.number().default(3_000),
- })
- /**
- * Assert every effective numeric config field is a positive safe integer and bounds compose.
- * @param config - Schemastery-resolved plugin configuration.
- * @returns Narrows the input to the fully resolved configuration.
- */
- export function validateConfig(config: Config): asserts config is ResolvedConfig {
- const resolved = config as ResolvedConfig
- if (resolved.backendType.length === 0) throw new Error('terminal-bash: backendType must be non-empty')
- if (resolved.shellPath.length === 0) throw new Error('terminal-bash: shellPath must be non-empty')
- for (const [name, value] of Object.entries(resolved)) {
- if (typeof value === 'number' && (!Number.isSafeInteger(value) || value <= 0)) {
- throw new Error(`terminal-bash: ${name} must be a positive safe integer`)
- }
- }
- if (resolved.maxReadBytes > resolved.scrollbackMaxBytes) {
- throw new Error('terminal-bash: maxReadBytes must not exceed scrollbackMaxBytes')
- }
- if (resolved.handoffGraceMs < resolved.pollIntervalMs) {
- throw new Error('terminal-bash: handoffGraceMs must be at least pollIntervalMs so one readiness poll runs inside the grace window')
- }
- }
|