2026-03-10 22:28:37 -06:00
|
|
|
import {
|
|
|
|
|
AuthStorage,
|
2026-03-11 11:21:12 -06:00
|
|
|
DefaultResourceLoader,
|
2026-03-10 22:28:37 -06:00
|
|
|
ModelRegistry,
|
|
|
|
|
SettingsManager,
|
|
|
|
|
SessionManager,
|
|
|
|
|
createAgentSession,
|
|
|
|
|
InteractiveMode,
|
2026-03-11 11:21:12 -06:00
|
|
|
runPrintMode,
|
fix: address 11 community-reported bugs across CLI, auto-mode, and extensions
CLI routing (#81, #107):
- Import and route --mode rpc to runRpcMode() instead of silently falling through to runPrintMode
- Add TTY guard before interactive mode — exit with helpful message when stdin is not a TTY
- Add --version and --help flags
Auto-mode infinite loop (#96):
- Move summarizing/complete-slice dispatch before reassessment check (D1) — ensures mergeSliceToMain always runs
- Add per-unit dispatch counter to detect alternating loops like A→B→A→B (D3)
Windows shell escaping (#106, #98):
- Platform-aware escapeShellArg() in mcporter extension — double quotes on Windows, single quotes on Unix
CRASH: parseSummary (#91):
- Add asStringArray() helper to safely coerce YAML bare scalars (e.g. "none") to string arrays
- Applied to all 7 frontmatter fields that expect string[]
Google Search model (#99):
- Replace hardcoded gemini-3-flash-preview with env var GEMINI_SEARCH_MODEL (default: gemini-2.5-flash)
Worktree branch collision (#84):
- Check git worktree list before checkout to detect branches already in use by another worktree
Migration UX (#90, #93):
- Improve error messages to distinguish migration from new project setup, suggest /gsd:new-project
Keyboard shortcuts (#100, #104):
- Document terminal protocol requirement in shortcut descriptions — Ctrl+Alt combos need Kitty/modifyOtherKeys
Closes #81, #84, #91, #96, #99, #106, #107
Addresses #90, #93, #95, #98, #100, #104
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 07:48:15 -06:00
|
|
|
runRpcMode,
|
2026-03-12 21:55:17 -06:00
|
|
|
} from '@gsd/pi-coding-agent'
|
2026-03-11 17:07:54 -06:00
|
|
|
import { existsSync, readdirSync, renameSync, readFileSync } from 'node:fs'
|
2026-03-11 10:52:45 -06:00
|
|
|
import { join } from 'node:path'
|
2026-03-10 22:28:37 -06:00
|
|
|
import { agentDir, sessionsDir, authFilePath } from './app-paths.js'
|
2026-03-15 00:58:18 -04:00
|
|
|
import { initResources, buildResourceLoader, getNewerManagedResourceVersion } from './resource-loader.js'
|
2026-03-11 10:52:45 -06:00
|
|
|
import { ensureManagedTools } from './tool-bootstrap.js'
|
2026-03-12 10:02:00 -06:00
|
|
|
import { loadStoredEnvKeys } from './wizard.js'
|
2026-03-12 20:44:01 -07:00
|
|
|
import { getPiDefaultModelAndProvider, migratePiCredentials } from './pi-migration.js'
|
2026-03-12 10:02:00 -06:00
|
|
|
import { shouldRunOnboarding, runOnboarding } from './onboarding.js'
|
2026-03-15 09:56:41 -05:00
|
|
|
import chalk from 'chalk'
|
2026-03-17 22:57:13 -05:00
|
|
|
import { checkForUpdates } from './update-check.js'
|
feat: add /review skill, /test skill, chokidar file watcher, subcommand help
- Add /review skill: reviews staged/unstaged/commit changes for security,
performance, bugs, and quality with structured findings by severity
- Add /test skill: auto-detects test framework, generates comprehensive
tests for source files, or runs suites with failure analysis
- Add chokidar file watcher: watches ~/.gsd/agent/ for config changes
(settings.json, auth.json, models.json, extensions/) with debounced
events on an EventBus
- Add --help per subcommand: `gsd config --help` and `gsd update --help`
show subcommand-specific usage information
- 8 new file-watcher tests (start/stop, event emission, debouncing,
unrelated file filtering)
2026-03-16 13:47:25 -05:00
|
|
|
import { printHelp, printSubcommandHelp } from './help-text.js'
|
2026-03-19 08:38:50 -05:00
|
|
|
import { markStartup, printStartupTimings } from './startup-timings.js'
|
2026-03-10 22:28:37 -06:00
|
|
|
|
2026-03-11 11:21:12 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// Minimal CLI arg parser — detects print/subagent mode flags
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
interface CliFlags {
|
feat: add MCP server mode, /lint skill, E2E smoke tests
- Add native MCP server mode (--mode mcp): exposes GSD's tools via
Model Context Protocol over stdin/stdout for Claude Desktop, VS Code,
and other MCP-compatible clients. Uses @modelcontextprotocol/sdk.
- Add /lint skill: auto-detects ESLint, Biome, Prettier, rustfmt,
gofmt, Black, Ruff and runs with structured output
- Add 6 E2E smoke tests: --version, --help, config --help, update
--help, --list-models, and --mode text --print startup
- Fix diff-context.ts stdio type for CI compatibility
- Fix token-counter.ts tiktoken import for extensions typecheck
- Update help text and CLI to include --mode mcp
2026-03-16 13:56:31 -05:00
|
|
|
mode?: 'text' | 'json' | 'rpc' | 'mcp'
|
2026-03-11 11:21:12 -06:00
|
|
|
print?: boolean
|
2026-03-13 07:51:29 +05:30
|
|
|
continue?: boolean
|
2026-03-11 11:21:12 -06:00
|
|
|
noSession?: boolean
|
2026-03-18 14:57:25 -06:00
|
|
|
worktree?: boolean | string
|
2026-03-11 11:21:12 -06:00
|
|
|
model?: string
|
2026-03-14 11:43:56 -03:00
|
|
|
listModels?: string | true
|
2026-03-11 11:21:12 -06:00
|
|
|
extensions: string[]
|
|
|
|
|
appendSystemPrompt?: string
|
|
|
|
|
tools?: string[]
|
|
|
|
|
messages: string[]
|
2026-03-16 15:27:10 -06:00
|
|
|
/** Set by `gsd sessions` when the user picks a specific session to resume */
|
|
|
|
|
_selectedSessionPath?: string
|
2026-03-11 11:21:12 -06:00
|
|
|
}
|
|
|
|
|
|
2026-03-15 00:58:18 -04:00
|
|
|
function exitIfManagedResourcesAreNewer(currentAgentDir: string): void {
|
|
|
|
|
const currentVersion = process.env.GSD_VERSION || '0.0.0'
|
|
|
|
|
const managedVersion = getNewerManagedResourceVersion(currentAgentDir, currentVersion)
|
|
|
|
|
if (!managedVersion) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
process.stderr.write(
|
2026-03-15 09:56:41 -05:00
|
|
|
`[gsd] ${chalk.yellow('Version mismatch detected')}\n` +
|
|
|
|
|
`[gsd] Synced resources are from ${chalk.bold(`v${managedVersion}`)}, but this \`gsd\` binary is ${chalk.dim(`v${currentVersion}`)}.\n` +
|
|
|
|
|
`[gsd] Run ${chalk.bold('npm install -g gsd-pi@latest')} or ${chalk.bold('gsd update')}, then try again.\n`,
|
2026-03-15 00:58:18 -04:00
|
|
|
)
|
|
|
|
|
process.exit(1)
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 11:21:12 -06:00
|
|
|
function parseCliArgs(argv: string[]): CliFlags {
|
|
|
|
|
const flags: CliFlags = { extensions: [], messages: [] }
|
|
|
|
|
const args = argv.slice(2) // skip node + script
|
|
|
|
|
for (let i = 0; i < args.length; i++) {
|
|
|
|
|
const arg = args[i]
|
|
|
|
|
if (arg === '--mode' && i + 1 < args.length) {
|
|
|
|
|
const m = args[++i]
|
feat: add MCP server mode, /lint skill, E2E smoke tests
- Add native MCP server mode (--mode mcp): exposes GSD's tools via
Model Context Protocol over stdin/stdout for Claude Desktop, VS Code,
and other MCP-compatible clients. Uses @modelcontextprotocol/sdk.
- Add /lint skill: auto-detects ESLint, Biome, Prettier, rustfmt,
gofmt, Black, Ruff and runs with structured output
- Add 6 E2E smoke tests: --version, --help, config --help, update
--help, --list-models, and --mode text --print startup
- Fix diff-context.ts stdio type for CI compatibility
- Fix token-counter.ts tiktoken import for extensions typecheck
- Update help text and CLI to include --mode mcp
2026-03-16 13:56:31 -05:00
|
|
|
if (m === 'text' || m === 'json' || m === 'rpc' || m === 'mcp') flags.mode = m
|
2026-03-11 11:21:12 -06:00
|
|
|
} else if (arg === '--print' || arg === '-p') {
|
|
|
|
|
flags.print = true
|
2026-03-13 07:51:29 +05:30
|
|
|
} else if (arg === '--continue' || arg === '-c') {
|
|
|
|
|
flags.continue = true
|
2026-03-11 11:21:12 -06:00
|
|
|
} else if (arg === '--no-session') {
|
|
|
|
|
flags.noSession = true
|
|
|
|
|
} else if (arg === '--model' && i + 1 < args.length) {
|
|
|
|
|
flags.model = args[++i]
|
|
|
|
|
} else if (arg === '--extension' && i + 1 < args.length) {
|
|
|
|
|
flags.extensions.push(args[++i])
|
|
|
|
|
} else if (arg === '--append-system-prompt' && i + 1 < args.length) {
|
|
|
|
|
flags.appendSystemPrompt = args[++i]
|
|
|
|
|
} else if (arg === '--tools' && i + 1 < args.length) {
|
|
|
|
|
flags.tools = args[++i].split(',')
|
2026-03-14 11:43:56 -03:00
|
|
|
} else if (arg === '--list-models') {
|
|
|
|
|
flags.listModels = (i + 1 < args.length && !args[i + 1].startsWith('-')) ? args[++i] : true
|
fix: address 11 community-reported bugs across CLI, auto-mode, and extensions
CLI routing (#81, #107):
- Import and route --mode rpc to runRpcMode() instead of silently falling through to runPrintMode
- Add TTY guard before interactive mode — exit with helpful message when stdin is not a TTY
- Add --version and --help flags
Auto-mode infinite loop (#96):
- Move summarizing/complete-slice dispatch before reassessment check (D1) — ensures mergeSliceToMain always runs
- Add per-unit dispatch counter to detect alternating loops like A→B→A→B (D3)
Windows shell escaping (#106, #98):
- Platform-aware escapeShellArg() in mcporter extension — double quotes on Windows, single quotes on Unix
CRASH: parseSummary (#91):
- Add asStringArray() helper to safely coerce YAML bare scalars (e.g. "none") to string arrays
- Applied to all 7 frontmatter fields that expect string[]
Google Search model (#99):
- Replace hardcoded gemini-3-flash-preview with env var GEMINI_SEARCH_MODEL (default: gemini-2.5-flash)
Worktree branch collision (#84):
- Check git worktree list before checkout to detect branches already in use by another worktree
Migration UX (#90, #93):
- Improve error messages to distinguish migration from new project setup, suggest /gsd:new-project
Keyboard shortcuts (#100, #104):
- Document terminal protocol requirement in shortcut descriptions — Ctrl+Alt combos need Kitty/modifyOtherKeys
Closes #81, #84, #91, #96, #99, #106, #107
Addresses #90, #93, #95, #98, #100, #104
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 07:48:15 -06:00
|
|
|
} else if (arg === '--version' || arg === '-v') {
|
|
|
|
|
process.stdout.write((process.env.GSD_VERSION || '0.0.0') + '\n')
|
|
|
|
|
process.exit(0)
|
2026-03-18 14:57:25 -06:00
|
|
|
} else if (arg === '--worktree' || arg === '-w') {
|
|
|
|
|
// -w with no value → auto-generate name; -w <name> → use that name
|
|
|
|
|
if (i + 1 < args.length && !args[i + 1].startsWith('-')) {
|
|
|
|
|
flags.worktree = args[++i]
|
|
|
|
|
} else {
|
|
|
|
|
flags.worktree = true
|
|
|
|
|
}
|
fix: address 11 community-reported bugs across CLI, auto-mode, and extensions
CLI routing (#81, #107):
- Import and route --mode rpc to runRpcMode() instead of silently falling through to runPrintMode
- Add TTY guard before interactive mode — exit with helpful message when stdin is not a TTY
- Add --version and --help flags
Auto-mode infinite loop (#96):
- Move summarizing/complete-slice dispatch before reassessment check (D1) — ensures mergeSliceToMain always runs
- Add per-unit dispatch counter to detect alternating loops like A→B→A→B (D3)
Windows shell escaping (#106, #98):
- Platform-aware escapeShellArg() in mcporter extension — double quotes on Windows, single quotes on Unix
CRASH: parseSummary (#91):
- Add asStringArray() helper to safely coerce YAML bare scalars (e.g. "none") to string arrays
- Applied to all 7 frontmatter fields that expect string[]
Google Search model (#99):
- Replace hardcoded gemini-3-flash-preview with env var GEMINI_SEARCH_MODEL (default: gemini-2.5-flash)
Worktree branch collision (#84):
- Check git worktree list before checkout to detect branches already in use by another worktree
Migration UX (#90, #93):
- Improve error messages to distinguish migration from new project setup, suggest /gsd:new-project
Keyboard shortcuts (#100, #104):
- Document terminal protocol requirement in shortcut descriptions — Ctrl+Alt combos need Kitty/modifyOtherKeys
Closes #81, #84, #91, #96, #99, #106, #107
Addresses #90, #93, #95, #98, #100, #104
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 07:48:15 -06:00
|
|
|
} else if (arg === '--help' || arg === '-h') {
|
2026-03-16 13:29:31 -05:00
|
|
|
printHelp(process.env.GSD_VERSION || '0.0.0')
|
fix: address 11 community-reported bugs across CLI, auto-mode, and extensions
CLI routing (#81, #107):
- Import and route --mode rpc to runRpcMode() instead of silently falling through to runPrintMode
- Add TTY guard before interactive mode — exit with helpful message when stdin is not a TTY
- Add --version and --help flags
Auto-mode infinite loop (#96):
- Move summarizing/complete-slice dispatch before reassessment check (D1) — ensures mergeSliceToMain always runs
- Add per-unit dispatch counter to detect alternating loops like A→B→A→B (D3)
Windows shell escaping (#106, #98):
- Platform-aware escapeShellArg() in mcporter extension — double quotes on Windows, single quotes on Unix
CRASH: parseSummary (#91):
- Add asStringArray() helper to safely coerce YAML bare scalars (e.g. "none") to string arrays
- Applied to all 7 frontmatter fields that expect string[]
Google Search model (#99):
- Replace hardcoded gemini-3-flash-preview with env var GEMINI_SEARCH_MODEL (default: gemini-2.5-flash)
Worktree branch collision (#84):
- Check git worktree list before checkout to detect branches already in use by another worktree
Migration UX (#90, #93):
- Improve error messages to distinguish migration from new project setup, suggest /gsd:new-project
Keyboard shortcuts (#100, #104):
- Document terminal protocol requirement in shortcut descriptions — Ctrl+Alt combos need Kitty/modifyOtherKeys
Closes #81, #84, #91, #96, #99, #106, #107
Addresses #90, #93, #95, #98, #100, #104
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 07:48:15 -06:00
|
|
|
process.exit(0)
|
2026-03-11 11:21:12 -06:00
|
|
|
} else if (!arg.startsWith('--') && !arg.startsWith('-')) {
|
|
|
|
|
flags.messages.push(arg)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return flags
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const cliFlags = parseCliArgs(process.argv)
|
|
|
|
|
const isPrintMode = cliFlags.print || cliFlags.mode !== undefined
|
|
|
|
|
|
2026-03-18 10:01:01 -06:00
|
|
|
// Early resource-skew check — must run before TTY gate so version mismatch
|
|
|
|
|
// errors surface even in non-TTY environments.
|
|
|
|
|
exitIfManagedResourcesAreNewer(agentDir)
|
|
|
|
|
|
2026-03-18 09:54:19 -06:00
|
|
|
// Early TTY check — must come before heavy initialization to avoid dangling
|
|
|
|
|
// handles that prevent process.exit() from completing promptly.
|
|
|
|
|
const hasSubcommand = cliFlags.messages.length > 0
|
|
|
|
|
if (!process.stdin.isTTY && !isPrintMode && !hasSubcommand && !cliFlags.listModels) {
|
|
|
|
|
process.stderr.write('[gsd] Error: Interactive mode requires a terminal (TTY).\n')
|
|
|
|
|
process.stderr.write('[gsd] Non-interactive alternatives:\n')
|
|
|
|
|
process.stderr.write('[gsd] gsd --print "your message" Single-shot prompt\n')
|
|
|
|
|
process.stderr.write('[gsd] gsd --mode rpc JSON-RPC over stdin/stdout\n')
|
|
|
|
|
process.stderr.write('[gsd] gsd --mode mcp MCP server over stdin/stdout\n')
|
|
|
|
|
process.stderr.write('[gsd] gsd --mode text "message" Text output mode\n')
|
|
|
|
|
process.exit(1)
|
|
|
|
|
}
|
|
|
|
|
|
feat: add /review skill, /test skill, chokidar file watcher, subcommand help
- Add /review skill: reviews staged/unstaged/commit changes for security,
performance, bugs, and quality with structured findings by severity
- Add /test skill: auto-detects test framework, generates comprehensive
tests for source files, or runs suites with failure analysis
- Add chokidar file watcher: watches ~/.gsd/agent/ for config changes
(settings.json, auth.json, models.json, extensions/) with debounced
events on an EventBus
- Add --help per subcommand: `gsd config --help` and `gsd update --help`
show subcommand-specific usage information
- 8 new file-watcher tests (start/stop, event emission, debouncing,
unrelated file filtering)
2026-03-16 13:47:25 -05:00
|
|
|
// `gsd <subcommand> --help` — show subcommand-specific help
|
|
|
|
|
const subcommand = cliFlags.messages[0]
|
|
|
|
|
if (subcommand && process.argv.includes('--help')) {
|
|
|
|
|
if (printSubcommandHelp(subcommand, process.env.GSD_VERSION || '0.0.0')) {
|
|
|
|
|
process.exit(0)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 10:02:00 -06:00
|
|
|
// `gsd config` — replay the setup wizard and exit
|
|
|
|
|
if (cliFlags.messages[0] === 'config') {
|
|
|
|
|
const authStorage = AuthStorage.create(authFilePath)
|
2026-03-15 08:24:41 +01:00
|
|
|
loadStoredEnvKeys(authStorage)
|
2026-03-12 10:02:00 -06:00
|
|
|
await runOnboarding(authStorage)
|
|
|
|
|
process.exit(0)
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-13 18:47:33 -03:00
|
|
|
// `gsd update` — update to the latest version via npm
|
|
|
|
|
if (cliFlags.messages[0] === 'update') {
|
|
|
|
|
const { runUpdate } = await import('./update-cmd.js')
|
|
|
|
|
await runUpdate()
|
|
|
|
|
process.exit(0)
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 15:27:10 -06:00
|
|
|
// `gsd sessions` — list past sessions and pick one to resume
|
|
|
|
|
if (cliFlags.messages[0] === 'sessions') {
|
|
|
|
|
const cwd = process.cwd()
|
|
|
|
|
const safePath = `--${cwd.replace(/^[/\\]/, '').replace(/[/\\:]/g, '-')}--`
|
|
|
|
|
const projectSessionsDir = join(sessionsDir, safePath)
|
|
|
|
|
|
|
|
|
|
process.stderr.write(chalk.dim(`Loading sessions for ${cwd}...\n`))
|
|
|
|
|
const sessions = await SessionManager.list(cwd, projectSessionsDir)
|
|
|
|
|
|
|
|
|
|
if (sessions.length === 0) {
|
|
|
|
|
process.stderr.write(chalk.yellow('No sessions found for this directory.\n'))
|
|
|
|
|
process.exit(0)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
process.stderr.write(chalk.bold(`\n Sessions (${sessions.length}):\n\n`))
|
|
|
|
|
|
|
|
|
|
const maxShow = 20
|
|
|
|
|
const toShow = sessions.slice(0, maxShow)
|
|
|
|
|
for (let i = 0; i < toShow.length; i++) {
|
|
|
|
|
const s = toShow[i]
|
|
|
|
|
const date = s.modified.toLocaleString()
|
|
|
|
|
const msgs = s.messageCount
|
|
|
|
|
const name = s.name ? ` ${chalk.cyan(s.name)}` : ''
|
|
|
|
|
const preview = s.firstMessage
|
|
|
|
|
? s.firstMessage.replace(/\n/g, ' ').substring(0, 80)
|
|
|
|
|
: chalk.dim('(empty)')
|
|
|
|
|
const num = String(i + 1).padStart(3)
|
|
|
|
|
process.stderr.write(` ${chalk.bold(num)}. ${chalk.green(date)} ${chalk.dim(`(${msgs} msgs)`)}${name}\n`)
|
|
|
|
|
process.stderr.write(` ${chalk.dim(preview)}\n\n`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sessions.length > maxShow) {
|
|
|
|
|
process.stderr.write(chalk.dim(` ... and ${sessions.length - maxShow} more\n\n`))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Interactive selection
|
|
|
|
|
const readline = await import('node:readline')
|
|
|
|
|
const rl = readline.createInterface({ input: process.stdin, output: process.stderr })
|
|
|
|
|
const answer = await new Promise<string>((resolve) => {
|
|
|
|
|
rl.question(chalk.bold(' Enter session number to resume (or q to quit): '), resolve)
|
|
|
|
|
})
|
|
|
|
|
rl.close()
|
|
|
|
|
|
|
|
|
|
const choice = parseInt(answer, 10)
|
|
|
|
|
if (isNaN(choice) || choice < 1 || choice > toShow.length) {
|
|
|
|
|
process.stderr.write(chalk.dim('Cancelled.\n'))
|
|
|
|
|
process.exit(0)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const selected = toShow[choice - 1]
|
|
|
|
|
process.stderr.write(chalk.green(`\nResuming session from ${selected.modified.toLocaleString()}...\n\n`))
|
|
|
|
|
|
|
|
|
|
// Mark for the interactive session below to open this specific session
|
|
|
|
|
cliFlags.continue = true
|
|
|
|
|
cliFlags._selectedSessionPath = selected.path
|
|
|
|
|
}
|
|
|
|
|
|
feat: add `gsd headless` CLI subcommand for non-interactive auto-mode
Adds a first-class `gsd headless` command that runs auto-mode without a
TUI by spawning a child process in RPC mode via RpcClient. Useful for
CI/CD pipelines, scripts, and unattended execution.
CLI interface:
gsd headless - Run auto-mode until complete
gsd headless --step - Run one unit only (sends /gsd next)
gsd headless --timeout 300000 - Custom timeout (default 5 min)
gsd headless --json - Forward RPC events as JSONL to stdout
gsd headless --verbose - Show full agent text and tool results
gsd headless --model <id> - Override model
Exit codes: 0 = complete, 1 = error/timeout, 2 = blocked
Features:
- Extension UI auto-responder (handles select, confirm, input, editor,
notify, setStatus, setWidget, setTitle, set_editor_text)
- Completion detection via terminal notification keywords + idle timeout
- Human-readable progress output to stderr
- SIGINT/SIGTERM forwarding for clean shutdown
- Child process crash detection
- Completion summary with diagnostics on failure
2026-03-16 16:18:25 -03:00
|
|
|
// `gsd headless` — run auto-mode without TUI
|
|
|
|
|
if (cliFlags.messages[0] === 'headless') {
|
|
|
|
|
const { runHeadless, parseHeadlessArgs } = await import('./headless.js')
|
|
|
|
|
await runHeadless(parseHeadlessArgs(process.argv))
|
|
|
|
|
process.exit(0)
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 10:52:45 -06:00
|
|
|
// Pi's tool bootstrap can mis-detect already-installed fd/rg on some systems
|
|
|
|
|
// because spawnSync(..., ["--version"]) returns EPERM despite a zero exit code.
|
|
|
|
|
// Provision local managed binaries first so Pi sees them without probing PATH.
|
|
|
|
|
ensureManagedTools(join(agentDir, 'bin'))
|
2026-03-19 08:38:50 -05:00
|
|
|
markStartup('ensureManagedTools')
|
2026-03-11 10:52:45 -06:00
|
|
|
|
2026-03-10 22:28:37 -06:00
|
|
|
const authStorage = AuthStorage.create(authFilePath)
|
2026-03-19 08:38:50 -05:00
|
|
|
markStartup('AuthStorage.create')
|
2026-03-10 22:28:37 -06:00
|
|
|
loadStoredEnvKeys(authStorage)
|
2026-03-12 11:06:31 -06:00
|
|
|
migratePiCredentials(authStorage)
|
2026-03-11 11:21:12 -06:00
|
|
|
|
2026-03-16 19:40:30 +00:00
|
|
|
// Resolve models.json path with fallback to ~/.pi/agent/models.json
|
|
|
|
|
const { resolveModelsJsonPath } = await import('./models-resolver.js')
|
|
|
|
|
const modelsJsonPath = resolveModelsJsonPath()
|
|
|
|
|
|
|
|
|
|
const modelRegistry = new ModelRegistry(authStorage, modelsJsonPath)
|
2026-03-19 08:38:50 -05:00
|
|
|
markStartup('ModelRegistry')
|
2026-03-16 12:07:15 -05:00
|
|
|
const settingsManager = SettingsManager.create(agentDir)
|
2026-03-19 08:38:50 -05:00
|
|
|
markStartup('SettingsManager.create')
|
2026-03-16 12:07:15 -05:00
|
|
|
|
2026-03-12 10:02:00 -06:00
|
|
|
// Run onboarding wizard on first launch (no LLM provider configured)
|
2026-03-16 12:07:15 -05:00
|
|
|
if (!isPrintMode && shouldRunOnboarding(authStorage, settingsManager.getDefaultProvider())) {
|
2026-03-12 10:02:00 -06:00
|
|
|
await runOnboarding(authStorage)
|
2026-03-15 17:17:58 -05:00
|
|
|
|
|
|
|
|
// Clean up stdin state left by @clack/prompts.
|
|
|
|
|
// readline.emitKeypressEvents() adds a permanent data listener and
|
|
|
|
|
// readline.createInterface() may leave stdin paused. Remove stale
|
|
|
|
|
// listeners and pause stdin so the TUI can start with a clean slate.
|
|
|
|
|
process.stdin.removeAllListeners('data')
|
|
|
|
|
process.stdin.removeAllListeners('keypress')
|
|
|
|
|
if (process.stdin.setRawMode) process.stdin.setRawMode(false)
|
|
|
|
|
process.stdin.pause()
|
2026-03-11 11:21:12 -06:00
|
|
|
}
|
2026-03-10 22:28:37 -06:00
|
|
|
|
2026-03-17 22:57:13 -05:00
|
|
|
// Update check — non-blocking banner check; interactive prompt deferred to avoid
|
|
|
|
|
// blocking startup. The passive checkForUpdates() prints a banner if an update is
|
|
|
|
|
// available (using cached data or a background fetch) without blocking the TUI.
|
2026-03-13 14:28:43 -03:00
|
|
|
if (!isPrintMode) {
|
2026-03-17 22:57:13 -05:00
|
|
|
checkForUpdates().catch(() => {})
|
2026-03-13 14:28:43 -03:00
|
|
|
}
|
|
|
|
|
|
2026-03-15 09:56:41 -05:00
|
|
|
// Warn if terminal is too narrow for readable output
|
|
|
|
|
if (!isPrintMode && process.stdout.columns && process.stdout.columns < 40) {
|
|
|
|
|
process.stderr.write(
|
|
|
|
|
chalk.yellow(`[gsd] Terminal width is ${process.stdout.columns} columns (minimum recommended: 40). Output may be unreadable.\n`),
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-14 11:43:56 -03:00
|
|
|
// --list-models: print available models and exit (no TTY needed)
|
|
|
|
|
if (cliFlags.listModels !== undefined) {
|
|
|
|
|
const models = modelRegistry.getAvailable()
|
|
|
|
|
if (models.length === 0) {
|
|
|
|
|
console.log('No models available. Set API keys in environment variables.')
|
|
|
|
|
process.exit(0)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const searchPattern = typeof cliFlags.listModels === 'string' ? cliFlags.listModels : undefined
|
|
|
|
|
let filtered = models
|
|
|
|
|
if (searchPattern) {
|
|
|
|
|
const q = searchPattern.toLowerCase()
|
|
|
|
|
filtered = models.filter((m) => `${m.provider} ${m.id} ${m.name}`.toLowerCase().includes(q))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Sort by name descending (newest first), then provider, then id
|
|
|
|
|
filtered.sort((a, b) => {
|
|
|
|
|
const nameCmp = b.name.localeCompare(a.name)
|
|
|
|
|
if (nameCmp !== 0) return nameCmp
|
|
|
|
|
const provCmp = a.provider.localeCompare(b.provider)
|
|
|
|
|
if (provCmp !== 0) return provCmp
|
|
|
|
|
return a.id.localeCompare(b.id)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const fmt = (n: number) => n >= 1_000_000 ? `${n / 1_000_000}M` : n >= 1_000 ? `${n / 1_000}K` : `${n}`
|
|
|
|
|
const rows = filtered.map((m) => [
|
|
|
|
|
m.provider,
|
|
|
|
|
m.id,
|
|
|
|
|
m.name,
|
|
|
|
|
fmt(m.contextWindow),
|
|
|
|
|
fmt(m.maxTokens),
|
|
|
|
|
m.reasoning ? 'yes' : 'no',
|
|
|
|
|
])
|
|
|
|
|
const hdrs = ['provider', 'model', 'name', 'context', 'max-out', 'thinking']
|
|
|
|
|
const widths = hdrs.map((h, i) => Math.max(h.length, ...rows.map((r) => r[i].length)))
|
|
|
|
|
const pad = (s: string, w: number) => s.padEnd(w)
|
|
|
|
|
console.log(hdrs.map((h, i) => pad(h, widths[i])).join(' '))
|
|
|
|
|
for (const row of rows) {
|
|
|
|
|
console.log(row.map((c, i) => pad(c, widths[i])).join(' '))
|
|
|
|
|
}
|
|
|
|
|
process.exit(0)
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 18:27:31 +05:30
|
|
|
// Validate configured model on startup — catches stale settings from prior installs
|
2026-03-11 01:51:48 -06:00
|
|
|
// (e.g. grok-2 which no longer exists) and fresh installs with no settings.
|
2026-03-11 18:27:31 +05:30
|
|
|
// Only resets the default when the configured model no longer exists in the registry;
|
|
|
|
|
// never overwrites a valid user choice.
|
2026-03-11 01:37:14 -06:00
|
|
|
const configuredProvider = settingsManager.getDefaultProvider()
|
|
|
|
|
const configuredModel = settingsManager.getDefaultModel()
|
2026-03-11 01:51:48 -06:00
|
|
|
const allModels = modelRegistry.getAll()
|
2026-03-12 20:44:01 -07:00
|
|
|
const availableModels = modelRegistry.getAvailable()
|
2026-03-11 01:37:14 -06:00
|
|
|
const configuredExists = configuredProvider && configuredModel &&
|
2026-03-11 01:51:48 -06:00
|
|
|
allModels.some((m) => m.provider === configuredProvider && m.id === configuredModel)
|
2026-03-12 20:44:01 -07:00
|
|
|
const configuredAvailable = configuredProvider && configuredModel &&
|
|
|
|
|
availableModels.some((m) => m.provider === configuredProvider && m.id === configuredModel)
|
2026-03-11 01:37:14 -06:00
|
|
|
|
2026-03-17 16:01:51 -04:00
|
|
|
if (!configuredModel || !configuredExists) {
|
|
|
|
|
// Model not configured at all, or removed from registry — pick a fallback.
|
|
|
|
|
// Only fires when the model is genuinely unknown (not just temporarily unavailable).
|
2026-03-12 20:44:01 -07:00
|
|
|
const piDefault = getPiDefaultModelAndProvider()
|
2026-03-11 01:51:48 -06:00
|
|
|
const preferred =
|
2026-03-12 20:44:01 -07:00
|
|
|
(piDefault
|
|
|
|
|
? availableModels.find((m) => m.provider === piDefault.provider && m.id === piDefault.model)
|
|
|
|
|
: undefined) ||
|
|
|
|
|
availableModels.find((m) => m.provider === 'openai' && m.id === 'gpt-5.4') ||
|
|
|
|
|
availableModels.find((m) => m.provider === 'openai') ||
|
|
|
|
|
availableModels.find((m) => m.provider === 'anthropic' && m.id === 'claude-opus-4-6') ||
|
|
|
|
|
availableModels.find((m) => m.provider === 'anthropic' && m.id.includes('opus')) ||
|
|
|
|
|
availableModels.find((m) => m.provider === 'anthropic') ||
|
|
|
|
|
availableModels[0]
|
2026-03-11 01:51:48 -06:00
|
|
|
if (preferred) {
|
2026-03-10 23:54:33 -06:00
|
|
|
settingsManager.setDefaultModelAndProvider(preferred.provider, preferred.id)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-17 16:01:51 -04:00
|
|
|
if (settingsManager.getDefaultThinkingLevel() !== 'off' && !configuredExists) {
|
2026-03-11 01:37:14 -06:00
|
|
|
settingsManager.setDefaultThinkingLevel('off')
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-10 22:28:37 -06:00
|
|
|
// GSD always uses quiet startup — the gsd extension renders its own branded header
|
|
|
|
|
if (!settingsManager.getQuietStartup()) {
|
|
|
|
|
settingsManager.setQuietStartup(true)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Collapse changelog by default — avoid wall of text on updates
|
|
|
|
|
if (!settingsManager.getCollapseChangelog()) {
|
|
|
|
|
settingsManager.setCollapseChangelog(true)
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 11:21:12 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// Print / subagent mode — single-shot execution, no TTY required
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
if (isPrintMode) {
|
|
|
|
|
const sessionManager = cliFlags.noSession
|
|
|
|
|
? SessionManager.inMemory()
|
|
|
|
|
: SessionManager.create(process.cwd())
|
|
|
|
|
|
|
|
|
|
// Read --append-system-prompt file content (subagent writes agent system prompts to temp files)
|
|
|
|
|
let appendSystemPrompt: string | undefined
|
|
|
|
|
if (cliFlags.appendSystemPrompt) {
|
|
|
|
|
try {
|
|
|
|
|
appendSystemPrompt = readFileSync(cliFlags.appendSystemPrompt, 'utf-8')
|
|
|
|
|
} catch {
|
|
|
|
|
// If it's not a file path, treat it as literal text
|
|
|
|
|
appendSystemPrompt = cliFlags.appendSystemPrompt
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-15 00:58:18 -04:00
|
|
|
exitIfManagedResourcesAreNewer(agentDir)
|
2026-03-11 11:21:12 -06:00
|
|
|
initResources(agentDir)
|
2026-03-19 08:38:50 -05:00
|
|
|
markStartup('initResources')
|
2026-03-11 11:21:12 -06:00
|
|
|
const resourceLoader = new DefaultResourceLoader({
|
|
|
|
|
agentDir,
|
|
|
|
|
additionalExtensionPaths: cliFlags.extensions.length > 0 ? cliFlags.extensions : undefined,
|
|
|
|
|
appendSystemPrompt,
|
|
|
|
|
})
|
|
|
|
|
await resourceLoader.reload()
|
2026-03-19 08:38:50 -05:00
|
|
|
markStartup('resourceLoader.reload')
|
2026-03-11 11:21:12 -06:00
|
|
|
|
|
|
|
|
const { session, extensionsResult } = await createAgentSession({
|
|
|
|
|
authStorage,
|
|
|
|
|
modelRegistry,
|
|
|
|
|
settingsManager,
|
|
|
|
|
sessionManager,
|
|
|
|
|
resourceLoader,
|
|
|
|
|
})
|
2026-03-19 08:38:50 -05:00
|
|
|
markStartup('createAgentSession')
|
2026-03-11 11:21:12 -06:00
|
|
|
|
|
|
|
|
if (extensionsResult.errors.length > 0) {
|
|
|
|
|
for (const err of extensionsResult.errors) {
|
fix: prevent ensureGitignore from adding .gsd when tracked in git (#1364) (#1367)
* rfc: GitOps branching & versioning strategy proposal
Proposes a Git-Flow Lite model with automated integration branches:
main ← production-ready, tagged releases only
next ← integration branch for next minor (PRs target here)
release/X.Y ← stabilization branch, only bugfixes allowed
hotfix/X.Y.Z ← emergency fixes cherry-picked to release
Includes:
- RFC document with lifecycle diagrams, migration path, open questions
- Workflow scaffolds (in docs/proposals/workflows/, NOT .github/):
- create-release.yml: manual dispatch to cut release branch from next
- sync-next.yml: auto-sync next branch after version tags
- backmerge.yml: auto back-merge release fixes to next
This is an experimental proposal requesting community feedback before
any implementation. The workflow files are inert scaffolds — they do
not run in CI.
* fix: prevent ensureGitignore from adding .gsd when tracked in git (#1364)
CRITICAL DATA-LOSS FIX: ensureGitignore() unconditionally added '.gsd' to
.gitignore even when .gsd/ was a real git-tracked directory, causing git to
report ~889 tracked files as deleted.
Root cause: BASELINE_PATTERNS included '.gsd' unconditionally, and the
gitignore modification ran BEFORE migration checks in auto-start.ts.
Changes:
- Add hasGitTrackedGsdFiles() helper using nativeLsFiles to detect tracked
.gsd/ content
- ensureGitignore() now skips the '.gsd' pattern when .gsd/ has tracked files
- untrackRuntimeFiles() now skips entirely when .gsd/ has tracked files
- migrateToExternalState() aborts when .gsd/ has tracked files
- Reorder auto-start.ts: migration runs BEFORE gitignore modification
- Add 8 regression tests covering all scenarios
Fixes #1364
* fix: break recursive dialog loop when all milestones complete (#1348)
Two interacting bugs:
1. Recursive dialog loop: When all milestones are complete, bootstrapAutoSession
calls showSmartEntry → sets pendingAutoStart → checkAutoStartAfterDiscuss
calls startAuto → bootstrapAutoSession → showSmartEntry → infinite loop.
The discuss workflow completes without producing a milestone directory, so
phase stays 'complete' and the cycle never breaks.
Fix: Add a re-entry counter (_consecutiveCompleteBootstraps) that tracks
how many times bootstrapAutoSession enters the 'complete' branch without
advancing. After 2 consecutive attempts, break the loop with a warning
message and return false.
2. Missing _releaseFunction = null in retry lock onCompromised handler:
The retry lock path in session-lock.ts set _lockCompromised but didn't
null out _releaseFunction, which could leave a stale reference that
masks the compromise detection in validateSessionLock().
Fixes #1348
* fix: self-heal stale roadmap checkbox for interrupted complete-slice (#1350)
When complete-slice is interrupted after writing SUMMARY.md and UAT.md but
before flipping the roadmap checkbox, auto-mode enters an infinite loop —
re-launching the same complete-slice unit because the dispatch loop uses
the roadmap checkbox as the sole 'slice done' signal.
Fix: Add a self-heal case in selfHealRuntimeRecords that detects when
SUMMARY + UAT exist but the roadmap checkbox is unchecked, and auto-fixes
the checkbox. This allows the verification to pass and the dispatch loop
to advance.
Fixes #1350
* fix: add EISDIR guard to complete/validate milestone prompts (#1343)
The LLM was passing tasks/ directory paths to the read tool during
milestone completion, causing EISDIR crashes. Added file system safety
instructions to both complete-milestone and validate-milestone prompts
telling the LLM to use ls/find for directory listing, not the read tool.
Fixes #1343
* feat: improve extension conflict messages with removal guidance (#1347)
When a user extension registers tools/commands that now ship as built-ins,
the conflict message now includes '(built-in tool supersedes — consider
removing <path>)' and the log level is downgraded from 'Extension load error'
to 'Extension conflict'.
Changes:
- resource-loader.ts: detect built-in vs user extension conflicts, add hint
- cli.ts: downgrade severity for superseded-tool conflicts
Fixes #1347
* test: fix always-skipped preferences test, add test:marketplace script
- preferences.test.ts: Replace always-skipped getIsolationMode test with
a filesystem-independent version that validates the default through
validatePreferences() instead of reading ~/.gsd/preferences.md.
Reduces skipped count from 3 → 2.
- package.json: Add test:marketplace script for running marketplace
contract tests (claude-import-tui, plugin-importer-live,
marketplace-discovery) with GSD_TEST_CLONE_MARKETPLACES=1.
These tests need external repos and self-skip in unit test runs.
Remaining 2 skips:
- Marketplace contract test suites (need external repos, run via test:marketplace)
- Windows-only tests in validate-directory.test.ts are platform-conditional
and correctly skip on macOS
* fix: use execFileSync in regression tests for Windows portability
The regression tests used execSync with shell-dependent constructs:
- '&&' command chaining (works in bash/cmd but fragile)
- Single-quoted commit messages (bash-only, cmd.exe splits on spaces)
Replaced with execFileSync via a git() helper that bypasses the shell
entirely. Each git operation is a separate call with proper argument
arrays, eliminating all shell interpretation issues.
Fixes windows-portability CI failure.
* fix: guard milestone completion against missing slice summaries (#1368)
Auto-mode could report a milestone as complete after executing only the
last slice, skipping earlier unexecuted slices. The milestone completion
signal fired based on roadmap checkbox state, which could be stale or
inconsistent after worktree transitions.
Changes:
- auto-dispatch.ts: Added slice SUMMARY file existence check to both
validating-milestone and completing-milestone dispatch rules. If any
slice lacks a SUMMARY file, dispatch stops with a diagnostic error
instead of proceeding to validation/completion.
- validate-milestone.test.ts: Updated tests to create slice summary
files (required by the new guard).
- file-watcher.test.ts: Fixed flaky 'auth.json change emits auth-changed
event' test by adding watcher initialization delay and increasing event
propagation timeout (race condition when run in full suite).
Fixes #1368
* fix: warn on common misspelled preference keys + verify field guidance (#1373, #1341)
#1373: Users setting 'taskIsolation.mode: none' instead of 'git.isolation: none'
got a generic 'unknown key' warning. Added KEY_MIGRATION_HINTS that map common
misspellings (taskIsolation, task_isolation, isolation, manage_gitignore, auto_push,
main_branch) to their correct git.* equivalents with actionable messages.
#1341: Planning agent writes aspirational prose in Verify fields ('Sections 3.1
and 3.2 exist with exact formulas. Zero TBD.') instead of executable commands.
Added explicit verify field rules to the plan template: must be mechanically
executable, with examples of good vs bad patterns for content tasks.
Fixes #1373, partially addresses #1341
* refactor: extract roadmap-mutations.ts + shared test-utils.ts
Consolidation:
- roadmap-mutations.ts: Extracted markSliceDoneInRoadmap() and markTaskDoneInPlan()
from duplicated implementations in doctor.ts, mechanical-completion.ts, and
auto-recovery.ts. All three callers used identical regex patterns.
mechanical-completion.ts and auto-recovery.ts now import the shared utility.
(doctor.ts deferred — touched by PR #1349)
- test-utils.ts: Shared cross-platform test utilities for GSD extension tests.
Provides git() helper (execFileSync, no shell), makeTempRepo() with
core.autocrlf=false, cleanup(), createFile(), safeReadFile(), and
writeMilestoneFixture(). 12 test files currently define their own versions
of these helpers — new tests should import from test-utils.ts instead.
Security audit: No injection vectors (sid/tid are alphanumeric from roadmap
parser), no path traversal, no secrets, no new dependencies.
* fix: port conflict false positive on non-Node projects + paused worktree resume (#1381, #1383)
projects without package.json. macOS AirPlay Receiver listens on port 5000,
causing a spurious warning on non-Node projects.
Fix: Skip port checks entirely when no package.json exists. When using
default ports, filter out 5000 on macOS.
in-memory only. Re-entering /gsd started a fresh bootstrap from the project
root instead of the active worktree.
Fix: pauseAuto() now writes paused-session.json to .gsd/runtime/ with
milestoneId, worktreePath, originalBasePath, and stepMode. startAuto()
checks for this file before bootstrap and restores the paused session
context, including worktree re-entry. stopAuto() cleans up the file.
Fixes #1381, #1383
* fix: catch spawn ENOENT in uncaught exception guard + snapshot session lock path (#1384, #1363)
uncaught exception and crashes auto-mode. The EPIPE guard now also catches
ENOENT from spawn syscalls — logs the error and continues instead of
terminating the process.
the lock path differently via gsdRoot() because basePath could be either the
project root or a worktree path. gsdRoot() produces different results for
each, so the lock was written to one path and validated against another.
Fix: Snapshot the resolved lock path (_snapshotLockPath) at acquisition time
and reuse it for all subsequent lock operations within the session.
Fixes #1384, #1363
* fix: suppress false-positive lock compromise + skip migration with active worktrees (#1362, #1337)
because the event loop stall delays the heartbeat mtime update. The handler
now checks elapsed time since acquisition — if within the 30-minute stale
window, it logs a warning and continues instead of setting _lockCompromised.
Real takeovers (past the stale window) still trigger the compromise flag.
even when .gsd/worktrees/ contained active git worktrees with locked
directory handles. This caused EBUSY errors and destructive data loss.
Migration now checks for active worktree directories and skips entirely
if any are found.
Fixes #1362, #1337
2026-03-19 19:06:01 -04:00
|
|
|
// Downgrade conflicts with built-in tools to warnings (#1347)
|
|
|
|
|
const isSuperseded = err.error.includes("supersedes");
|
|
|
|
|
const prefix = isSuperseded ? "Extension conflict" : "Extension load error";
|
|
|
|
|
process.stderr.write(`[gsd] ${prefix}: ${err.error}\n`)
|
2026-03-11 11:21:12 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Apply --model override if specified
|
|
|
|
|
if (cliFlags.model) {
|
|
|
|
|
const available = modelRegistry.getAvailable()
|
|
|
|
|
const match =
|
|
|
|
|
available.find((m) => m.id === cliFlags.model) ||
|
|
|
|
|
available.find((m) => `${m.provider}/${m.id}` === cliFlags.model)
|
|
|
|
|
if (match) {
|
|
|
|
|
session.setModel(match)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const mode = cliFlags.mode || 'text'
|
fix: address 11 community-reported bugs across CLI, auto-mode, and extensions
CLI routing (#81, #107):
- Import and route --mode rpc to runRpcMode() instead of silently falling through to runPrintMode
- Add TTY guard before interactive mode — exit with helpful message when stdin is not a TTY
- Add --version and --help flags
Auto-mode infinite loop (#96):
- Move summarizing/complete-slice dispatch before reassessment check (D1) — ensures mergeSliceToMain always runs
- Add per-unit dispatch counter to detect alternating loops like A→B→A→B (D3)
Windows shell escaping (#106, #98):
- Platform-aware escapeShellArg() in mcporter extension — double quotes on Windows, single quotes on Unix
CRASH: parseSummary (#91):
- Add asStringArray() helper to safely coerce YAML bare scalars (e.g. "none") to string arrays
- Applied to all 7 frontmatter fields that expect string[]
Google Search model (#99):
- Replace hardcoded gemini-3-flash-preview with env var GEMINI_SEARCH_MODEL (default: gemini-2.5-flash)
Worktree branch collision (#84):
- Check git worktree list before checkout to detect branches already in use by another worktree
Migration UX (#90, #93):
- Improve error messages to distinguish migration from new project setup, suggest /gsd:new-project
Keyboard shortcuts (#100, #104):
- Document terminal protocol requirement in shortcut descriptions — Ctrl+Alt combos need Kitty/modifyOtherKeys
Closes #81, #84, #91, #96, #99, #106, #107
Addresses #90, #93, #95, #98, #100, #104
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 07:48:15 -06:00
|
|
|
|
|
|
|
|
if (mode === 'rpc') {
|
2026-03-19 08:38:50 -05:00
|
|
|
printStartupTimings()
|
fix: address 11 community-reported bugs across CLI, auto-mode, and extensions
CLI routing (#81, #107):
- Import and route --mode rpc to runRpcMode() instead of silently falling through to runPrintMode
- Add TTY guard before interactive mode — exit with helpful message when stdin is not a TTY
- Add --version and --help flags
Auto-mode infinite loop (#96):
- Move summarizing/complete-slice dispatch before reassessment check (D1) — ensures mergeSliceToMain always runs
- Add per-unit dispatch counter to detect alternating loops like A→B→A→B (D3)
Windows shell escaping (#106, #98):
- Platform-aware escapeShellArg() in mcporter extension — double quotes on Windows, single quotes on Unix
CRASH: parseSummary (#91):
- Add asStringArray() helper to safely coerce YAML bare scalars (e.g. "none") to string arrays
- Applied to all 7 frontmatter fields that expect string[]
Google Search model (#99):
- Replace hardcoded gemini-3-flash-preview with env var GEMINI_SEARCH_MODEL (default: gemini-2.5-flash)
Worktree branch collision (#84):
- Check git worktree list before checkout to detect branches already in use by another worktree
Migration UX (#90, #93):
- Improve error messages to distinguish migration from new project setup, suggest /gsd:new-project
Keyboard shortcuts (#100, #104):
- Document terminal protocol requirement in shortcut descriptions — Ctrl+Alt combos need Kitty/modifyOtherKeys
Closes #81, #84, #91, #96, #99, #106, #107
Addresses #90, #93, #95, #98, #100, #104
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 07:48:15 -06:00
|
|
|
await runRpcMode(session)
|
|
|
|
|
process.exit(0)
|
|
|
|
|
}
|
|
|
|
|
|
feat: add MCP server mode, /lint skill, E2E smoke tests
- Add native MCP server mode (--mode mcp): exposes GSD's tools via
Model Context Protocol over stdin/stdout for Claude Desktop, VS Code,
and other MCP-compatible clients. Uses @modelcontextprotocol/sdk.
- Add /lint skill: auto-detects ESLint, Biome, Prettier, rustfmt,
gofmt, Black, Ruff and runs with structured output
- Add 6 E2E smoke tests: --version, --help, config --help, update
--help, --list-models, and --mode text --print startup
- Fix diff-context.ts stdio type for CI compatibility
- Fix token-counter.ts tiktoken import for extensions typecheck
- Update help text and CLI to include --mode mcp
2026-03-16 13:56:31 -05:00
|
|
|
if (mode === 'mcp') {
|
2026-03-19 08:38:50 -05:00
|
|
|
printStartupTimings()
|
feat: add MCP server mode, /lint skill, E2E smoke tests
- Add native MCP server mode (--mode mcp): exposes GSD's tools via
Model Context Protocol over stdin/stdout for Claude Desktop, VS Code,
and other MCP-compatible clients. Uses @modelcontextprotocol/sdk.
- Add /lint skill: auto-detects ESLint, Biome, Prettier, rustfmt,
gofmt, Black, Ruff and runs with structured output
- Add 6 E2E smoke tests: --version, --help, config --help, update
--help, --list-models, and --mode text --print startup
- Fix diff-context.ts stdio type for CI compatibility
- Fix token-counter.ts tiktoken import for extensions typecheck
- Update help text and CLI to include --mode mcp
2026-03-16 13:56:31 -05:00
|
|
|
const { startMcpServer } = await import('./mcp-server.js')
|
|
|
|
|
await startMcpServer({
|
|
|
|
|
tools: session.agent.state.tools ?? [],
|
|
|
|
|
version: process.env.GSD_VERSION || '0.0.0',
|
|
|
|
|
})
|
|
|
|
|
// MCP server runs until the transport closes; keep alive
|
|
|
|
|
await new Promise(() => {})
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 08:38:50 -05:00
|
|
|
printStartupTimings()
|
2026-03-11 11:21:12 -06:00
|
|
|
await runPrintMode(session, {
|
feat: add MCP server mode, /lint skill, E2E smoke tests
- Add native MCP server mode (--mode mcp): exposes GSD's tools via
Model Context Protocol over stdin/stdout for Claude Desktop, VS Code,
and other MCP-compatible clients. Uses @modelcontextprotocol/sdk.
- Add /lint skill: auto-detects ESLint, Biome, Prettier, rustfmt,
gofmt, Black, Ruff and runs with structured output
- Add 6 E2E smoke tests: --version, --help, config --help, update
--help, --list-models, and --mode text --print startup
- Fix diff-context.ts stdio type for CI compatibility
- Fix token-counter.ts tiktoken import for extensions typecheck
- Update help text and CLI to include --mode mcp
2026-03-16 13:56:31 -05:00
|
|
|
mode: mode as 'text' | 'json',
|
2026-03-11 11:21:12 -06:00
|
|
|
messages: cliFlags.messages,
|
|
|
|
|
})
|
|
|
|
|
process.exit(0)
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-18 14:57:25 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// Worktree subcommand — `gsd worktree <list|merge|clean|remove>`
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
if (cliFlags.messages[0] === 'worktree' || cliFlags.messages[0] === 'wt') {
|
|
|
|
|
const { handleList, handleMerge, handleClean, handleRemove } = await import('./worktree-cli.js')
|
|
|
|
|
const sub = cliFlags.messages[1]
|
|
|
|
|
const subArgs = cliFlags.messages.slice(2)
|
|
|
|
|
|
|
|
|
|
if (!sub || sub === 'list') {
|
2026-03-18 20:51:27 -03:00
|
|
|
await handleList(process.cwd())
|
2026-03-18 14:57:25 -06:00
|
|
|
} else if (sub === 'merge') {
|
|
|
|
|
await handleMerge(process.cwd(), subArgs)
|
|
|
|
|
} else if (sub === 'clean') {
|
2026-03-18 20:51:27 -03:00
|
|
|
await handleClean(process.cwd())
|
2026-03-18 14:57:25 -06:00
|
|
|
} else if (sub === 'remove' || sub === 'rm') {
|
2026-03-18 20:51:27 -03:00
|
|
|
await handleRemove(process.cwd(), subArgs)
|
2026-03-18 14:57:25 -06:00
|
|
|
} else {
|
|
|
|
|
process.stderr.write(`Unknown worktree command: ${sub}\n`)
|
|
|
|
|
process.stderr.write('Commands: list, merge [name], clean, remove <name>\n')
|
|
|
|
|
}
|
|
|
|
|
process.exit(0)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// Worktree flag (-w) — create/resume a worktree for the interactive session
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
if (cliFlags.worktree) {
|
|
|
|
|
const { handleWorktreeFlag } = await import('./worktree-cli.js')
|
2026-03-18 20:51:27 -03:00
|
|
|
await handleWorktreeFlag(cliFlags.worktree)
|
2026-03-18 14:57:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// Active worktree banner — remind user of unmerged worktrees on normal launch
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
if (!cliFlags.worktree && !isPrintMode) {
|
|
|
|
|
try {
|
|
|
|
|
const { handleStatusBanner } = await import('./worktree-cli.js')
|
2026-03-18 20:51:27 -03:00
|
|
|
await handleStatusBanner(process.cwd())
|
2026-03-18 14:57:25 -06:00
|
|
|
} catch { /* non-fatal */ }
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 11:21:12 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// Interactive mode — normal TTY session
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
2026-03-11 21:39:02 +05:30
|
|
|
// Per-directory session storage — same encoding as the upstream SDK so that
|
|
|
|
|
// /resume only shows sessions from the current working directory.
|
|
|
|
|
const cwd = process.cwd()
|
|
|
|
|
const safePath = `--${cwd.replace(/^[/\\]/, '').replace(/[/\\:]/g, '-')}--`
|
|
|
|
|
const projectSessionsDir = join(sessionsDir, safePath)
|
2026-03-11 17:07:54 -06:00
|
|
|
|
|
|
|
|
// Migrate legacy flat sessions: before per-directory scoping, all .jsonl session
|
|
|
|
|
// files lived directly in ~/.gsd/sessions/. Move them into the correct per-cwd
|
|
|
|
|
// subdirectory so /resume can find them.
|
|
|
|
|
if (existsSync(sessionsDir)) {
|
|
|
|
|
try {
|
|
|
|
|
const entries = readdirSync(sessionsDir)
|
|
|
|
|
const flatJsonl = entries.filter(f => f.endsWith('.jsonl'))
|
|
|
|
|
if (flatJsonl.length > 0) {
|
|
|
|
|
const { mkdirSync } = await import('node:fs')
|
|
|
|
|
mkdirSync(projectSessionsDir, { recursive: true })
|
|
|
|
|
for (const file of flatJsonl) {
|
|
|
|
|
const src = join(sessionsDir, file)
|
|
|
|
|
const dst = join(projectSessionsDir, file)
|
|
|
|
|
if (!existsSync(dst)) {
|
|
|
|
|
renameSync(src, dst)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} catch {
|
|
|
|
|
// Non-fatal — don't block startup if migration fails
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 15:27:10 -06:00
|
|
|
const sessionManager = cliFlags._selectedSessionPath
|
|
|
|
|
? SessionManager.open(cliFlags._selectedSessionPath, projectSessionsDir)
|
|
|
|
|
: cliFlags.continue
|
|
|
|
|
? SessionManager.continueRecent(cwd, projectSessionsDir)
|
|
|
|
|
: SessionManager.create(cwd, projectSessionsDir)
|
2026-03-10 22:28:37 -06:00
|
|
|
|
2026-03-15 00:58:18 -04:00
|
|
|
exitIfManagedResourcesAreNewer(agentDir)
|
2026-03-10 22:28:37 -06:00
|
|
|
initResources(agentDir)
|
2026-03-19 08:38:50 -05:00
|
|
|
markStartup('initResources')
|
2026-03-12 11:06:31 -06:00
|
|
|
const resourceLoader = buildResourceLoader(agentDir)
|
2026-03-10 22:28:37 -06:00
|
|
|
await resourceLoader.reload()
|
2026-03-19 08:38:50 -05:00
|
|
|
markStartup('resourceLoader.reload')
|
2026-03-10 22:28:37 -06:00
|
|
|
|
|
|
|
|
const { session, extensionsResult } = await createAgentSession({
|
|
|
|
|
authStorage,
|
|
|
|
|
modelRegistry,
|
|
|
|
|
settingsManager,
|
|
|
|
|
sessionManager,
|
|
|
|
|
resourceLoader,
|
|
|
|
|
})
|
2026-03-19 08:38:50 -05:00
|
|
|
markStartup('createAgentSession')
|
2026-03-10 22:28:37 -06:00
|
|
|
|
|
|
|
|
if (extensionsResult.errors.length > 0) {
|
|
|
|
|
for (const err of extensionsResult.errors) {
|
fix: prevent ensureGitignore from adding .gsd when tracked in git (#1364) (#1367)
* rfc: GitOps branching & versioning strategy proposal
Proposes a Git-Flow Lite model with automated integration branches:
main ← production-ready, tagged releases only
next ← integration branch for next minor (PRs target here)
release/X.Y ← stabilization branch, only bugfixes allowed
hotfix/X.Y.Z ← emergency fixes cherry-picked to release
Includes:
- RFC document with lifecycle diagrams, migration path, open questions
- Workflow scaffolds (in docs/proposals/workflows/, NOT .github/):
- create-release.yml: manual dispatch to cut release branch from next
- sync-next.yml: auto-sync next branch after version tags
- backmerge.yml: auto back-merge release fixes to next
This is an experimental proposal requesting community feedback before
any implementation. The workflow files are inert scaffolds — they do
not run in CI.
* fix: prevent ensureGitignore from adding .gsd when tracked in git (#1364)
CRITICAL DATA-LOSS FIX: ensureGitignore() unconditionally added '.gsd' to
.gitignore even when .gsd/ was a real git-tracked directory, causing git to
report ~889 tracked files as deleted.
Root cause: BASELINE_PATTERNS included '.gsd' unconditionally, and the
gitignore modification ran BEFORE migration checks in auto-start.ts.
Changes:
- Add hasGitTrackedGsdFiles() helper using nativeLsFiles to detect tracked
.gsd/ content
- ensureGitignore() now skips the '.gsd' pattern when .gsd/ has tracked files
- untrackRuntimeFiles() now skips entirely when .gsd/ has tracked files
- migrateToExternalState() aborts when .gsd/ has tracked files
- Reorder auto-start.ts: migration runs BEFORE gitignore modification
- Add 8 regression tests covering all scenarios
Fixes #1364
* fix: break recursive dialog loop when all milestones complete (#1348)
Two interacting bugs:
1. Recursive dialog loop: When all milestones are complete, bootstrapAutoSession
calls showSmartEntry → sets pendingAutoStart → checkAutoStartAfterDiscuss
calls startAuto → bootstrapAutoSession → showSmartEntry → infinite loop.
The discuss workflow completes without producing a milestone directory, so
phase stays 'complete' and the cycle never breaks.
Fix: Add a re-entry counter (_consecutiveCompleteBootstraps) that tracks
how many times bootstrapAutoSession enters the 'complete' branch without
advancing. After 2 consecutive attempts, break the loop with a warning
message and return false.
2. Missing _releaseFunction = null in retry lock onCompromised handler:
The retry lock path in session-lock.ts set _lockCompromised but didn't
null out _releaseFunction, which could leave a stale reference that
masks the compromise detection in validateSessionLock().
Fixes #1348
* fix: self-heal stale roadmap checkbox for interrupted complete-slice (#1350)
When complete-slice is interrupted after writing SUMMARY.md and UAT.md but
before flipping the roadmap checkbox, auto-mode enters an infinite loop —
re-launching the same complete-slice unit because the dispatch loop uses
the roadmap checkbox as the sole 'slice done' signal.
Fix: Add a self-heal case in selfHealRuntimeRecords that detects when
SUMMARY + UAT exist but the roadmap checkbox is unchecked, and auto-fixes
the checkbox. This allows the verification to pass and the dispatch loop
to advance.
Fixes #1350
* fix: add EISDIR guard to complete/validate milestone prompts (#1343)
The LLM was passing tasks/ directory paths to the read tool during
milestone completion, causing EISDIR crashes. Added file system safety
instructions to both complete-milestone and validate-milestone prompts
telling the LLM to use ls/find for directory listing, not the read tool.
Fixes #1343
* feat: improve extension conflict messages with removal guidance (#1347)
When a user extension registers tools/commands that now ship as built-ins,
the conflict message now includes '(built-in tool supersedes — consider
removing <path>)' and the log level is downgraded from 'Extension load error'
to 'Extension conflict'.
Changes:
- resource-loader.ts: detect built-in vs user extension conflicts, add hint
- cli.ts: downgrade severity for superseded-tool conflicts
Fixes #1347
* test: fix always-skipped preferences test, add test:marketplace script
- preferences.test.ts: Replace always-skipped getIsolationMode test with
a filesystem-independent version that validates the default through
validatePreferences() instead of reading ~/.gsd/preferences.md.
Reduces skipped count from 3 → 2.
- package.json: Add test:marketplace script for running marketplace
contract tests (claude-import-tui, plugin-importer-live,
marketplace-discovery) with GSD_TEST_CLONE_MARKETPLACES=1.
These tests need external repos and self-skip in unit test runs.
Remaining 2 skips:
- Marketplace contract test suites (need external repos, run via test:marketplace)
- Windows-only tests in validate-directory.test.ts are platform-conditional
and correctly skip on macOS
* fix: use execFileSync in regression tests for Windows portability
The regression tests used execSync with shell-dependent constructs:
- '&&' command chaining (works in bash/cmd but fragile)
- Single-quoted commit messages (bash-only, cmd.exe splits on spaces)
Replaced with execFileSync via a git() helper that bypasses the shell
entirely. Each git operation is a separate call with proper argument
arrays, eliminating all shell interpretation issues.
Fixes windows-portability CI failure.
* fix: guard milestone completion against missing slice summaries (#1368)
Auto-mode could report a milestone as complete after executing only the
last slice, skipping earlier unexecuted slices. The milestone completion
signal fired based on roadmap checkbox state, which could be stale or
inconsistent after worktree transitions.
Changes:
- auto-dispatch.ts: Added slice SUMMARY file existence check to both
validating-milestone and completing-milestone dispatch rules. If any
slice lacks a SUMMARY file, dispatch stops with a diagnostic error
instead of proceeding to validation/completion.
- validate-milestone.test.ts: Updated tests to create slice summary
files (required by the new guard).
- file-watcher.test.ts: Fixed flaky 'auth.json change emits auth-changed
event' test by adding watcher initialization delay and increasing event
propagation timeout (race condition when run in full suite).
Fixes #1368
* fix: warn on common misspelled preference keys + verify field guidance (#1373, #1341)
#1373: Users setting 'taskIsolation.mode: none' instead of 'git.isolation: none'
got a generic 'unknown key' warning. Added KEY_MIGRATION_HINTS that map common
misspellings (taskIsolation, task_isolation, isolation, manage_gitignore, auto_push,
main_branch) to their correct git.* equivalents with actionable messages.
#1341: Planning agent writes aspirational prose in Verify fields ('Sections 3.1
and 3.2 exist with exact formulas. Zero TBD.') instead of executable commands.
Added explicit verify field rules to the plan template: must be mechanically
executable, with examples of good vs bad patterns for content tasks.
Fixes #1373, partially addresses #1341
* refactor: extract roadmap-mutations.ts + shared test-utils.ts
Consolidation:
- roadmap-mutations.ts: Extracted markSliceDoneInRoadmap() and markTaskDoneInPlan()
from duplicated implementations in doctor.ts, mechanical-completion.ts, and
auto-recovery.ts. All three callers used identical regex patterns.
mechanical-completion.ts and auto-recovery.ts now import the shared utility.
(doctor.ts deferred — touched by PR #1349)
- test-utils.ts: Shared cross-platform test utilities for GSD extension tests.
Provides git() helper (execFileSync, no shell), makeTempRepo() with
core.autocrlf=false, cleanup(), createFile(), safeReadFile(), and
writeMilestoneFixture(). 12 test files currently define their own versions
of these helpers — new tests should import from test-utils.ts instead.
Security audit: No injection vectors (sid/tid are alphanumeric from roadmap
parser), no path traversal, no secrets, no new dependencies.
* fix: port conflict false positive on non-Node projects + paused worktree resume (#1381, #1383)
projects without package.json. macOS AirPlay Receiver listens on port 5000,
causing a spurious warning on non-Node projects.
Fix: Skip port checks entirely when no package.json exists. When using
default ports, filter out 5000 on macOS.
in-memory only. Re-entering /gsd started a fresh bootstrap from the project
root instead of the active worktree.
Fix: pauseAuto() now writes paused-session.json to .gsd/runtime/ with
milestoneId, worktreePath, originalBasePath, and stepMode. startAuto()
checks for this file before bootstrap and restores the paused session
context, including worktree re-entry. stopAuto() cleans up the file.
Fixes #1381, #1383
* fix: catch spawn ENOENT in uncaught exception guard + snapshot session lock path (#1384, #1363)
uncaught exception and crashes auto-mode. The EPIPE guard now also catches
ENOENT from spawn syscalls — logs the error and continues instead of
terminating the process.
the lock path differently via gsdRoot() because basePath could be either the
project root or a worktree path. gsdRoot() produces different results for
each, so the lock was written to one path and validated against another.
Fix: Snapshot the resolved lock path (_snapshotLockPath) at acquisition time
and reuse it for all subsequent lock operations within the session.
Fixes #1384, #1363
* fix: suppress false-positive lock compromise + skip migration with active worktrees (#1362, #1337)
because the event loop stall delays the heartbeat mtime update. The handler
now checks elapsed time since acquisition — if within the 30-minute stale
window, it logs a warning and continues instead of setting _lockCompromised.
Real takeovers (past the stale window) still trigger the compromise flag.
even when .gsd/worktrees/ contained active git worktrees with locked
directory handles. This caused EBUSY errors and destructive data loss.
Migration now checks for active worktree directories and skips entirely
if any are found.
Fixes #1362, #1337
2026-03-19 19:06:01 -04:00
|
|
|
const isSuperseded = err.error.includes("supersedes");
|
|
|
|
|
const prefix = isSuperseded ? "Extension conflict" : "Extension load error";
|
|
|
|
|
process.stderr.write(`[gsd] ${prefix}: ${err.error}\n`)
|
2026-03-10 22:28:37 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 07:57:55 -05:00
|
|
|
// Restore scoped models from settings on startup.
|
|
|
|
|
// The upstream InteractiveMode reads enabledModels from settings when /scoped-models is opened,
|
|
|
|
|
// but doesn't apply them to the session at startup — so Ctrl+P cycles all models instead of
|
|
|
|
|
// just the saved selection until the user re-runs /scoped-models.
|
|
|
|
|
const enabledModelPatterns = settingsManager.getEnabledModels()
|
|
|
|
|
if (enabledModelPatterns && enabledModelPatterns.length > 0) {
|
|
|
|
|
const availableModels = modelRegistry.getAvailable()
|
|
|
|
|
const scopedModels: Array<{ model: (typeof availableModels)[number] }> = []
|
|
|
|
|
const seen = new Set<string>()
|
|
|
|
|
|
|
|
|
|
for (const pattern of enabledModelPatterns) {
|
|
|
|
|
// Patterns are "provider/modelId" exact strings saved by /scoped-models
|
|
|
|
|
const slashIdx = pattern.indexOf('/')
|
|
|
|
|
if (slashIdx !== -1) {
|
|
|
|
|
const provider = pattern.substring(0, slashIdx)
|
|
|
|
|
const modelId = pattern.substring(slashIdx + 1)
|
|
|
|
|
const model = availableModels.find((m) => m.provider === provider && m.id === modelId)
|
|
|
|
|
if (model) {
|
|
|
|
|
const key = `${model.provider}/${model.id}`
|
|
|
|
|
if (!seen.has(key)) {
|
|
|
|
|
seen.add(key)
|
|
|
|
|
scopedModels.push({ model })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// Fallback: match by model id alone
|
|
|
|
|
const model = availableModels.find((m) => m.id === pattern)
|
|
|
|
|
if (model) {
|
|
|
|
|
const key = `${model.provider}/${model.id}`
|
|
|
|
|
if (!seen.has(key)) {
|
|
|
|
|
seen.add(key)
|
|
|
|
|
scopedModels.push({ model })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Only apply if we resolved some models and it's a genuine subset
|
|
|
|
|
if (scopedModels.length > 0 && scopedModels.length < availableModels.length) {
|
|
|
|
|
session.setScopedModels(scopedModels)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-20 09:11:06 -05:00
|
|
|
// Welcome screen — shown on every fresh interactive session before TUI takes over
|
|
|
|
|
{
|
|
|
|
|
const { printWelcomeScreen } = await import('./welcome-screen.js')
|
|
|
|
|
printWelcomeScreen({
|
|
|
|
|
version: process.env.GSD_VERSION || '0.0.0',
|
|
|
|
|
modelName: settingsManager.getDefaultModel() || undefined,
|
|
|
|
|
provider: settingsManager.getDefaultProvider() || undefined,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-10 22:28:37 -06:00
|
|
|
const interactiveMode = new InteractiveMode(session)
|
2026-03-19 08:38:50 -05:00
|
|
|
markStartup('InteractiveMode')
|
|
|
|
|
printStartupTimings()
|
2026-03-10 22:28:37 -06:00
|
|
|
await interactiveMode.run()
|