aiwcli 0.15.5 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +108 -1124
- package/bin/run.js +0 -4
- package/dist/capabilities/branch/adapters.d.ts +2 -0
- package/dist/capabilities/branch/adapters.js +21 -0
- package/dist/capabilities/branch/contracts.d.ts +57 -0
- package/dist/capabilities/branch/contracts.js +1 -0
- package/dist/capabilities/branch/control-plane.d.ts +2 -0
- package/dist/capabilities/branch/control-plane.js +343 -0
- package/dist/capabilities/branch/runtime-core.d.ts +5 -0
- package/dist/capabilities/branch/runtime-core.js +36 -0
- package/dist/capabilities/installation/control-plane/clean-command.d.ts +41 -0
- package/dist/capabilities/installation/control-plane/clean-command.js +196 -0
- package/dist/capabilities/installation/control-plane/clear-command.d.ts +162 -0
- package/dist/capabilities/installation/control-plane/clear-command.js +1249 -0
- package/dist/capabilities/installation/control-plane/init-command.d.ts +81 -0
- package/dist/capabilities/installation/control-plane/init-command.js +449 -0
- package/dist/capabilities/launch/contracts.d.ts +86 -0
- package/dist/capabilities/launch/contracts.js +1 -0
- package/dist/capabilities/launch/control-plane/execute-launch.d.ts +2 -0
- package/dist/capabilities/launch/control-plane/execute-launch.js +261 -0
- package/dist/capabilities/launch/runtime-core/launch-decisions.d.ts +82 -0
- package/dist/capabilities/launch/runtime-core/launch-decisions.js +202 -0
- package/dist/capabilities/launch/runtime-core/launch-options.d.ts +14 -0
- package/dist/capabilities/launch/runtime-core/launch-options.js +69 -0
- package/dist/cli/base-command.d.ts +18 -0
- package/dist/cli/base-command.js +55 -0
- package/dist/commands/branch.d.ts +1 -21
- package/dist/commands/branch.js +25 -417
- package/dist/commands/clean.d.ts +1 -41
- package/dist/commands/clean.js +1 -196
- package/dist/commands/clear.d.ts +1 -161
- package/dist/commands/clear.js +1 -1121
- package/dist/commands/init/index.d.ts +1 -98
- package/dist/commands/init/index.js +4 -478
- package/dist/commands/launch.d.ts +32 -12
- package/dist/commands/launch.js +107 -166
- package/dist/lib/claude-settings-types.d.ts +31 -19
- package/dist/lib/config.js +1 -2
- package/dist/lib/context/context-formatter.d.ts +74 -0
- package/dist/lib/context/context-formatter.js +493 -0
- package/dist/lib/context/context-selector.d.ts +42 -0
- package/dist/lib/context/context-selector.js +451 -0
- package/dist/lib/context/context-store.d.ts +100 -0
- package/dist/lib/context/context-store.js +644 -0
- package/dist/lib/context/plan-manager.d.ts +54 -0
- package/dist/lib/context/plan-manager.js +282 -0
- package/dist/lib/context/task-tracker.d.ts +44 -0
- package/dist/lib/context/task-tracker.js +146 -0
- package/dist/lib/core-ide-base.d.ts +4 -0
- package/dist/lib/core-ide-base.js +77 -0
- package/dist/lib/core-installer.d.ts +5 -0
- package/dist/lib/core-installer.js +33 -0
- package/dist/lib/debug.d.ts +0 -10
- package/dist/lib/debug.js +0 -10
- package/dist/lib/env-sanitizer.d.ts +25 -0
- package/dist/lib/env-sanitizer.js +46 -0
- package/dist/lib/errors.d.ts +0 -13
- package/dist/lib/errors.js +0 -15
- package/dist/lib/git-exclude-manager.d.ts +2 -2
- package/dist/lib/git-exclude-manager.js +3 -3
- package/dist/lib/hooks/context-monitor-logic.d.ts +6 -0
- package/dist/lib/hooks/context-monitor-logic.js +25 -0
- package/dist/lib/hooks/hook-utils.d.ts +143 -0
- package/dist/lib/hooks/hook-utils.js +620 -0
- package/dist/lib/hooks/prompt-binding-logic.d.ts +7 -0
- package/dist/lib/hooks/prompt-binding-logic.js +50 -0
- package/dist/lib/hooks/session-end-logic.d.ts +5 -0
- package/dist/lib/hooks/session-end-logic.js +51 -0
- package/dist/lib/hooks-merger.js +25 -19
- package/dist/lib/ide-path-resolver.d.ts +19 -7
- package/dist/lib/ide-path-resolver.js +25 -9
- package/dist/lib/install-state.d.ts +34 -0
- package/dist/lib/install-state.js +154 -0
- package/dist/lib/json-io.d.ts +12 -0
- package/dist/lib/json-io.js +30 -0
- package/dist/lib/lsp-patch.d.ts +12 -0
- package/dist/lib/lsp-patch.js +156 -0
- package/dist/lib/multiplexer.d.ts +65 -0
- package/dist/lib/multiplexer.js +38 -0
- package/dist/lib/multiplexers/psmux.d.ts +55 -0
- package/dist/lib/multiplexers/psmux.js +324 -0
- package/dist/lib/multiplexers/tmux.d.ts +36 -0
- package/dist/lib/multiplexers/tmux.js +221 -0
- package/dist/lib/multiplexers/wezterm.d.ts +38 -0
- package/dist/lib/multiplexers/wezterm.js +225 -0
- package/dist/lib/mux-utils.d.ts +6 -0
- package/dist/lib/mux-utils.js +36 -0
- package/dist/lib/paths.d.ts +2 -2
- package/dist/lib/paths.js +2 -2
- package/dist/lib/platform-commands.d.ts +27 -0
- package/dist/lib/platform-commands.js +49 -0
- package/dist/lib/prompt-file-manager.d.ts +23 -0
- package/dist/lib/prompt-file-manager.js +41 -0
- package/dist/lib/runtime/agent-launcher.d.ts +67 -0
- package/dist/lib/runtime/agent-launcher.js +262 -0
- package/dist/lib/runtime/aiw-cli.d.ts +39 -0
- package/dist/lib/runtime/aiw-cli.js +76 -0
- package/dist/lib/runtime/atomic-write.d.ts +19 -0
- package/dist/lib/runtime/atomic-write.js +121 -0
- package/dist/lib/runtime/cli-args.d.ts +58 -0
- package/dist/lib/runtime/cli-args.js +200 -0
- package/dist/lib/runtime/constants.d.ts +56 -0
- package/dist/lib/runtime/constants.js +230 -0
- package/dist/lib/runtime/executable-policy.d.ts +16 -0
- package/dist/lib/runtime/executable-policy.js +57 -0
- package/dist/lib/runtime/git-state.d.ts +9 -0
- package/dist/lib/runtime/git-state.js +59 -0
- package/dist/lib/runtime/inference.d.ts +37 -0
- package/dist/lib/runtime/inference.js +251 -0
- package/dist/lib/runtime/lint-dispatch.d.ts +40 -0
- package/dist/lib/runtime/lint-dispatch.js +285 -0
- package/dist/lib/runtime/logger.d.ts +66 -0
- package/dist/lib/runtime/logger.js +201 -0
- package/dist/lib/runtime/models.d.ts +20 -0
- package/dist/lib/runtime/models.js +20 -0
- package/dist/lib/runtime/platform-adapter.d.ts +7 -0
- package/dist/lib/runtime/platform-adapter.js +21 -0
- package/dist/lib/runtime/preflight.d.ts +24 -0
- package/dist/lib/runtime/preflight.js +65 -0
- package/dist/lib/runtime/sentinel-ipc.d.ts +14 -0
- package/dist/lib/runtime/sentinel-ipc.js +67 -0
- package/dist/lib/runtime/state-io.d.ts +31 -0
- package/dist/lib/runtime/state-io.js +179 -0
- package/dist/lib/runtime/stop-words.d.ts +20 -0
- package/dist/lib/runtime/stop-words.js +150 -0
- package/dist/lib/runtime/subprocess-utils.d.ts +29 -0
- package/dist/lib/runtime/subprocess-utils.js +96 -0
- package/dist/lib/runtime/tmux-preflight.d.ts +13 -0
- package/dist/lib/runtime/tmux-preflight.js +78 -0
- package/dist/lib/runtime/utils.d.ts +62 -0
- package/dist/lib/runtime/utils.js +192 -0
- package/dist/lib/schemas.d.ts +250 -0
- package/dist/lib/schemas.js +216 -0
- package/dist/lib/sentinel-manager.d.ts +32 -0
- package/dist/lib/sentinel-manager.js +62 -0
- package/dist/lib/sentinel-wrapper.d.ts +10 -0
- package/dist/lib/sentinel-wrapper.js +29 -0
- package/dist/lib/settings-hierarchy.js +3 -20
- package/dist/lib/shell-adapters/bash-adapter.d.ts +18 -0
- package/dist/lib/shell-adapters/bash-adapter.js +69 -0
- package/dist/lib/shell-adapters/index.d.ts +5 -0
- package/dist/lib/shell-adapters/index.js +7 -0
- package/dist/lib/shell-adapters/powershell-adapter.d.ts +18 -0
- package/dist/lib/shell-adapters/powershell-adapter.js +62 -0
- package/dist/lib/shell-adapters/shell-adapter.d.ts +45 -0
- package/dist/lib/shell-adapters/shell-adapter.js +5 -0
- package/dist/lib/shell-quoting.d.ts +5 -0
- package/dist/lib/shell-quoting.js +17 -0
- package/dist/lib/spawn-errors.d.ts +9 -0
- package/dist/lib/spawn-errors.js +29 -0
- package/dist/lib/spawn.js +5 -11
- package/dist/lib/spinner.d.ts +0 -5
- package/dist/lib/spinner.js +0 -16
- package/dist/lib/template-installer.d.ts +14 -5
- package/dist/lib/template-installer.js +40 -38
- package/dist/lib/template-resolver.d.ts +6 -7
- package/dist/lib/template-resolver.js +26 -21
- package/dist/lib/template-settings-reconstructor.d.ts +7 -2
- package/dist/lib/template-settings-reconstructor.js +76 -45
- package/dist/lib/terminal-strategy.d.ts +12 -0
- package/dist/lib/terminal-strategy.js +55 -0
- package/dist/lib/terminal.d.ts +34 -4
- package/dist/lib/terminal.js +192 -119
- package/dist/lib/tmux-pane-placement.d.ts +17 -0
- package/dist/lib/tmux-pane-placement.js +58 -0
- package/dist/lib/tmux-primitives.d.ts +3 -0
- package/dist/lib/tmux-primitives.js +11 -0
- package/dist/lib/tmux-session.d.ts +32 -0
- package/dist/lib/tmux-session.js +87 -0
- package/dist/lib/tty-detection.js +1 -1
- package/dist/lib/types.d.ts +168 -0
- package/dist/lib/types.js +6 -0
- package/dist/lib/version.d.ts +1 -1
- package/dist/lib/version.js +1 -1
- package/dist/lib/windsurf-hooks-hierarchy.js +6 -23
- package/dist/platform/launch.d.ts +11 -0
- package/dist/platform/launch.js +11 -0
- package/dist/templates/CLAUDE.md +30 -40
- package/dist/templates/cc-native/.claude/settings.json +26 -36
- package/dist/templates/cc-native/CC-NATIVE-README.md +1 -1
- package/dist/templates/cc-native/TEMPLATE-SCHEMA.md +20 -12
- package/dist/templates/cc-native/_cc-native/cc-native.config.json +2 -6
- package/dist/templates/cc-native/_cc-native/hooks/CLAUDE.md +39 -59
- package/dist/templates/cc-native/_cc-native/hooks/cc-native-plan-review.ts +9 -11
- package/dist/templates/cc-native/_cc-native/hooks/enhance_plan_post_subagent.ts +2 -2
- package/dist/templates/cc-native/_cc-native/hooks/enhance_plan_post_write.ts +4 -5
- package/dist/templates/cc-native/_cc-native/hooks/mark_questions_asked.ts +4 -4
- package/dist/templates/cc-native/_cc-native/hooks/plan_questions_early.ts +2 -27
- package/dist/templates/cc-native/_cc-native/hooks/validate_task_prompt.ts +7 -7
- package/dist/templates/cc-native/_cc-native/lib-ts/.mocharc.json +9 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/aggregate-agents.test.ts +118 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/artifacts.test.ts +234 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/cc-native-state.test.ts +170 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/cli-output-parser.test.ts +73 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/config.test.ts +64 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/constants.test.ts +40 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/debug.test.ts +42 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/exports.test.ts +58 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/helpers.ts +107 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/hooks/add-plan-context.hook.test.ts +97 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/hooks/plan-questions.hook.test.ts +81 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/hooks/plan-review.hook.test.ts +71 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/json-parser.test.ts +99 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/orchestrator-agent.test.ts +288 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/orchestrator.test.ts +48 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/reviewers.test.ts +32 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/state.test.ts +124 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/__tests__/verdict.test.ts +93 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/agent-selection.ts +163 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/aggregate-agents.ts +6 -14
- package/dist/templates/cc-native/_cc-native/{artifacts/lib → lib-ts/artifacts}/format.ts +597 -599
- package/dist/templates/cc-native/_cc-native/{artifacts/lib → lib-ts/artifacts}/index.ts +26 -26
- package/dist/templates/cc-native/_cc-native/{artifacts/lib → lib-ts/artifacts}/tracker.ts +106 -107
- package/dist/templates/cc-native/_cc-native/{artifacts/lib → lib-ts/artifacts}/write.ts +118 -119
- package/dist/templates/cc-native/_cc-native/lib-ts/artifacts.ts +21 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/cc-native-state.ts +17 -16
- package/dist/templates/cc-native/_cc-native/lib-ts/cli-output-parser.ts +132 -10
- package/dist/templates/cc-native/_cc-native/lib-ts/config.ts +1 -1
- package/dist/templates/cc-native/_cc-native/lib-ts/constants.ts +6 -6
- package/dist/templates/cc-native/_cc-native/lib-ts/corroboration.ts +119 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/debug.ts +2 -3
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/graduation.ts +132 -132
- package/dist/templates/cc-native/_cc-native/lib-ts/index.ts +88 -86
- package/dist/templates/cc-native/_cc-native/lib-ts/json-parser.ts +5 -6
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/orchestrator.ts +70 -70
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/output-builder.ts +130 -121
- package/dist/templates/cc-native/_cc-native/lib-ts/package-lock.json +1679 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/package.json +24 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/plan-discovery.ts +5 -5
- package/dist/templates/cc-native/_cc-native/lib-ts/plan-enhancement.ts +1 -6
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/plan-questions.ts +101 -101
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/review-pipeline.ts +511 -543
- package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/__tests__/agent-providers.test.ts +262 -0
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/reviewers/agent.ts +71 -85
- package/dist/templates/{_shared/lib-ts/agent-exec → cc-native/_cc-native/lib-ts/reviewers/base}/base-agent.ts +138 -150
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/reviewers/index.ts +12 -12
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/reviewers/providers/claude-agent.ts +66 -57
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/reviewers/providers/codex-agent.ts +185 -200
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/reviewers/providers/gemini-agent.ts +39 -40
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/reviewers/providers/orchestrator-claude-agent.ts +196 -225
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/reviewers/schemas.ts +201 -201
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/reviewers/types.ts +21 -23
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/__tests__/hyde.test.ts +365 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/__tests__/ollama-client.test.ts +223 -0
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/embedding-indexer.ts +12 -16
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/hyde.ts +3 -2
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/index.ts +31 -31
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/logger.ts +7 -8
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/ollama-client.ts +7 -9
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/retrieval-pipeline.ts +16 -19
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/transcript-indexer.ts +37 -41
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/transcript-loader.ts +33 -43
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/transcript-searcher.ts +20 -20
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/types.ts +9 -10
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/vector-store.ts +3 -4
- package/dist/templates/cc-native/_cc-native/lib-ts/settings.ts +50 -126
- package/dist/templates/cc-native/_cc-native/lib-ts/state.ts +20 -22
- package/dist/templates/cc-native/_cc-native/lib-ts/tsconfig.json +2 -2
- package/dist/templates/cc-native/_cc-native/lib-ts/types.ts +14 -89
- package/dist/templates/cc-native/_cc-native/{plan-review/lib → lib-ts}/verdict.ts +72 -72
- package/dist/templates/cc-native/_cc-native/plan-review/CLAUDE.md +38 -1
- package/dist/templates/cc-native/_cc-native/plan-review/lib/__tests__/agent-selection.test.ts +345 -0
- package/dist/templates/cc-native/_cc-native/plan-review/lib/__tests__/preflight.test.ts +344 -0
- package/dist/templates/cc-native/_cc-native/plan-review/lib/agent-selection.ts +38 -16
- package/dist/templates/cc-native/_cc-native/plan-review/lib/preflight.ts +56 -26
- package/dist/templates/cc-native/_cc-native/scripts/council_debate.ts +242 -0
- package/dist/templates/cc-native/_cc-native/scripts/council_debate_simple.ts +294 -0
- package/dist/templates/cc-native/_cc-native/{plan-review/workflows → workflows}/specdev.md +9 -9
- package/dist/templates/core/.claude/skills/codex/SKILL.md +25 -0
- package/dist/templates/core/.claude/skills/devin/SKILL.md +25 -0
- package/dist/templates/core/.claude/skills/handoff/SKILL.md +11 -0
- package/dist/templates/core/.claude/skills/handoff-resume/SKILL.md +11 -0
- package/dist/templates/core/.claude/skills/meta-plan/SKILL.md +13 -0
- package/dist/templates/core/.codex/skills/codex/SKILL.md +13 -0
- package/dist/templates/core/.codex/skills/devin/SKILL.md +19 -0
- package/dist/templates/core/.codex/skills/handoff/SKILL.md +11 -0
- package/dist/templates/core/.codex/skills/handoff-resume/SKILL.md +11 -0
- package/dist/templates/core/.codex/skills/meta-plan/SKILL.md +13 -0
- package/dist/templates/core/.devin/AGENTS.md +5 -0
- package/dist/templates/core/.devin/config.json +12 -0
- package/dist/templates/core/.devin/skills/codex/SKILL.md +19 -0
- package/dist/templates/core/.devin/skills/devin/SKILL.md +13 -0
- package/dist/templates/core/.devin/skills/handoff/SKILL.md +11 -0
- package/dist/templates/core/.devin/skills/handoff-resume/SKILL.md +11 -0
- package/dist/templates/core/.devin/skills/meta-plan/SKILL.md +13 -0
- package/dist/templates/core/.windsurf/workflows/handoff-resume.md +9 -0
- package/dist/templates/{_shared → core}/.windsurf/workflows/handoff.md +1 -1
- package/dist/templates/{_shared → core}/.windsurf/workflows/meta-plan.md +1 -1
- package/dist/templates/core/hooks-ts/_utils/git-state.ts +2 -0
- package/dist/templates/{_shared → core}/hooks-ts/archive_plan.ts +15 -44
- package/dist/templates/core/hooks-ts/codex_explorer.ts +160 -0
- package/dist/templates/{_shared → core}/hooks-ts/context_monitor.ts +23 -55
- package/dist/templates/{_shared → core}/hooks-ts/file-suggestion.ts +5 -22
- package/dist/templates/{_shared → core}/hooks-ts/lint_after_edit.ts +7 -9
- package/dist/templates/core/hooks-ts/pre_compact.ts +36 -0
- package/dist/templates/{_shared → core}/hooks-ts/session_end.ts +38 -78
- package/dist/templates/{_shared → core}/hooks-ts/session_start.ts +5 -5
- package/dist/templates/core/hooks-ts/task_create_capture.ts +32 -0
- package/dist/templates/{_shared → core}/hooks-ts/task_update_capture.ts +9 -24
- package/dist/templates/core/hooks-ts/user_prompt_submit.ts +46 -0
- package/dist/templates/{_shared → core}/lib-ts/CLAUDE.md +27 -16
- package/dist/templates/{_shared → core}/lib-ts/context/CLAUDE.md +9 -6
- package/dist/templates/{_shared → core}/lib-ts/context/context-formatter.ts +16 -21
- package/dist/templates/{_shared → core}/lib-ts/context/context-selector.ts +8 -6
- package/dist/templates/{_shared → core}/lib-ts/context/context-store.ts +59 -20
- package/dist/templates/{_shared → core}/lib-ts/context/plan-manager.ts +19 -15
- package/dist/templates/{_shared → core}/lib-ts/context/task-tracker.ts +3 -3
- package/dist/templates/core/lib-ts/hooks/context-monitor-logic.ts +32 -0
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/hooks}/hook-utils.ts +179 -41
- package/dist/templates/core/lib-ts/hooks/prompt-binding-logic.ts +80 -0
- package/dist/templates/core/lib-ts/hooks/session-end-logic.ts +82 -0
- package/dist/templates/core/lib-ts/package.json +19 -0
- package/dist/templates/core/lib-ts/runtime/agent-launcher.ts +369 -0
- package/dist/templates/core/lib-ts/runtime/aiw-cli.ts +108 -0
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/atomic-write.ts +12 -7
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/cli-args.ts +24 -8
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/constants.ts +326 -324
- package/dist/templates/core/lib-ts/runtime/executable-policy.ts +89 -0
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/git-state.ts +6 -4
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/inference.ts +60 -23
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/lint-dispatch.ts +25 -23
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/logger.ts +32 -29
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/models.ts +9 -2
- package/dist/templates/core/lib-ts/runtime/platform-adapter.ts +33 -0
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/preflight.ts +4 -3
- package/dist/templates/core/lib-ts/runtime/sentinel-ipc.ts +91 -0
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/state-io.ts +20 -11
- package/dist/templates/core/lib-ts/runtime/stop-words.ts +185 -0
- package/dist/templates/core/lib-ts/runtime/subprocess-utils.ts +147 -0
- package/dist/templates/core/lib-ts/runtime/tmux-preflight.ts +93 -0
- package/dist/templates/{_shared/lib-ts/base → core/lib-ts/runtime}/utils.ts +34 -4
- package/dist/templates/core/lib-ts/schemas.ts +233 -0
- package/dist/templates/{_shared → core}/lib-ts/templates/formatters.ts +7 -5
- package/dist/templates/{_shared → core}/lib-ts/templates/plan-context.ts +2 -1
- package/dist/templates/{_shared → core}/lib-ts/tsconfig.json +3 -1
- package/dist/templates/{_shared → core}/lib-ts/types.ts +78 -77
- package/dist/templates/core/scripts/resolve-run.ts +93 -0
- package/dist/templates/{_shared → core}/scripts/resolve_context.ts +3 -3
- package/dist/templates/{_shared → core}/scripts/status_line.ts +26 -21
- package/dist/templates/core/skills/codex/CLAUDE.md +83 -0
- package/dist/templates/{_shared → core}/skills/codex/SKILL.md +27 -18
- package/dist/templates/{_shared → core}/skills/codex/lib/codex-watcher.ts +79 -113
- package/dist/templates/{_shared → core}/skills/codex/scripts/launch-codex.ts +134 -148
- package/dist/templates/{_shared → core}/skills/codex/scripts/watch-codex.ts +6 -4
- package/dist/templates/core/skills/devin/CLAUDE.md +122 -0
- package/dist/templates/core/skills/devin/SKILL.md +73 -0
- package/dist/templates/core/skills/devin/lib/devin-watcher.ts +300 -0
- package/dist/templates/core/skills/devin/scripts/launch-devin.ts +258 -0
- package/dist/templates/{_shared → core}/skills/handoff-system/CLAUDE.md +436 -433
- package/dist/templates/{_shared → core}/skills/handoff-system/lib/document-generator.ts +9 -7
- package/dist/templates/{_shared → core}/skills/handoff-system/lib/handoff-reader.ts +6 -4
- package/dist/templates/{_shared → core}/skills/handoff-system/scripts/resume_handoff.ts +10 -8
- package/dist/templates/{_shared → core}/skills/handoff-system/scripts/save_handoff.ts +12 -10
- package/dist/templates/{_shared → core}/skills/handoff-system/workflows/handoff-resume.md +2 -2
- package/dist/templates/{_shared → core}/skills/handoff-system/workflows/handoff.md +6 -5
- package/dist/templates/{_shared → core}/skills/meta-plan/CLAUDE.md +2 -1
- package/dist/templates/{_shared → core}/skills/meta-plan/workflows/meta-plan.md +8 -7
- package/oclif.manifest.json +89 -13
- package/package.json +13 -12
- package/dist/lib/base-command.d.ts +0 -114
- package/dist/lib/base-command.js +0 -153
- package/dist/lib/env-compat.d.ts +0 -18
- package/dist/lib/env-compat.js +0 -23
- package/dist/lib/stdin.d.ts +0 -48
- package/dist/lib/stdin.js +0 -60
- package/dist/templates/_shared/.claude/settings.json +0 -120
- package/dist/templates/_shared/.claude/skills/codex/SKILL.md +0 -35
- package/dist/templates/_shared/.claude/skills/handoff/SKILL.md +0 -13
- package/dist/templates/_shared/.claude/skills/handoff-resume/SKILL.md +0 -13
- package/dist/templates/_shared/.claude/skills/meta-plan/SKILL.md +0 -43
- package/dist/templates/_shared/.codex/workflows/codex.md +0 -11
- package/dist/templates/_shared/.codex/workflows/handoff.md +0 -226
- package/dist/templates/_shared/.codex/workflows/meta-plan.md +0 -347
- package/dist/templates/_shared/hooks-ts/_utils/git-state.ts +0 -2
- package/dist/templates/_shared/hooks-ts/pre_compact.ts +0 -49
- package/dist/templates/_shared/hooks-ts/task_create_capture.ts +0 -48
- package/dist/templates/_shared/hooks-ts/user_prompt_submit.ts +0 -93
- package/dist/templates/_shared/lib-ts/agent-exec/backends/headless.ts +0 -33
- package/dist/templates/_shared/lib-ts/agent-exec/backends/index.ts +0 -6
- package/dist/templates/_shared/lib-ts/agent-exec/backends/tmux.ts +0 -119
- package/dist/templates/_shared/lib-ts/agent-exec/execution-backend.ts +0 -50
- package/dist/templates/_shared/lib-ts/agent-exec/index.ts +0 -6
- package/dist/templates/_shared/lib-ts/agent-exec/structured-output.ts +0 -166
- package/dist/templates/_shared/lib-ts/base/launchers/tmux-launcher.ts +0 -173
- package/dist/templates/_shared/lib-ts/base/launchers/window-launcher.ts +0 -93
- package/dist/templates/_shared/lib-ts/base/launchers/wt-launcher.ts +0 -64
- package/dist/templates/_shared/lib-ts/base/pane-launcher.ts +0 -55
- package/dist/templates/_shared/lib-ts/base/sentinel-ipc.ts +0 -87
- package/dist/templates/_shared/lib-ts/base/stop-words.ts +0 -184
- package/dist/templates/_shared/lib-ts/base/subprocess-utils.ts +0 -249
- package/dist/templates/_shared/lib-ts/base/tmux-driver.ts +0 -341
- package/dist/templates/_shared/lib-ts/base/tmux-pane-placement.ts +0 -78
- package/dist/templates/_shared/lib-ts/package.json +0 -20
- package/dist/templates/_shared/scripts/resolve-run.ts +0 -62
- package/dist/templates/_shared/skills/codex/CLAUDE.md +0 -70
- package/dist/templates/cc-native/_cc-native/CLAUDE.md +0 -73
- package/dist/templates/cc-native/_cc-native/artifacts/CLAUDE.md +0 -64
- package/dist/templates/cc-native/_cc-native/lib-ts/CLAUDE.md +0 -70
- package/dist/templates/cc-native/_cc-native/plan-review/CODING-STANDARDS-CHECKLIST.md +0 -75
- package/dist/templates/cc-native/_cc-native/plan-review/agents/CLAUDE.md +0 -143
- package/dist/templates/cc-native/_cc-native/plan-review/agents/PLAN-ORCHESTRATOR.md +0 -213
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-questions/PLAN-QUESTIONER.md +0 -70
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/ARCH-EVOLUTION.md +0 -62
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/ARCH-PATTERNS.md +0 -61
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/ARCH-STRUCTURE.md +0 -62
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/ASSUMPTION-TRACER.md +0 -56
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/CLARITY-AUDITOR.md +0 -53
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/COMPLETENESS-FEASIBILITY.md +0 -66
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/COMPLETENESS-GAPS.md +0 -70
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/COMPLETENESS-ORDERING.md +0 -62
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/CONSTRAINT-VALIDATOR.md +0 -72
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/DESIGN-ADR-VALIDATOR.md +0 -61
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/DESIGN-SCALE-MATCHER.md +0 -64
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/DEVILS-ADVOCATE.md +0 -56
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/DOCUMENTATION-PHILOSOPHY.md +0 -86
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/HANDOFF-READINESS.md +0 -59
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/HIDDEN-COMPLEXITY.md +0 -58
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/INCREMENTAL-DELIVERY.md +0 -66
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/RISK-DEPENDENCY.md +0 -62
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/RISK-FMEA.md +0 -66
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/RISK-PREMORTEM.md +0 -71
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/RISK-REVERSIBILITY.md +0 -74
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/SCOPE-BOUNDARY.md +0 -77
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/SIMPLICITY-GUARDIAN.md +0 -62
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/SKEPTIC.md +0 -68
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/TESTDRIVEN-BEHAVIOR-AUDITOR.md +0 -61
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/TESTDRIVEN-CHARACTERIZATION.md +0 -71
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/TESTDRIVEN-FIRST-VALIDATOR.md +0 -61
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/TESTDRIVEN-PYRAMID-ANALYZER.md +0 -61
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/TRADEOFF-COSTS.md +0 -67
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/TRADEOFF-STAKEHOLDERS.md +0 -65
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/VERIFY-COVERAGE.md +0 -74
- package/dist/templates/cc-native/_cc-native/plan-review/agents/plan-review/VERIFY-STRENGTH.md +0 -69
- package/dist/templates/cc-native/_cc-native/plan-review/lib/corroboration.ts +0 -172
- package/dist/templates/cc-native/_cc-native/plan-review/lib/reviewers/base/base-agent.ts +0 -7
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zod schemas mirroring types.ts for runtime validation at JSON.parse boundaries.
|
|
3
|
+
* All object schemas use .passthrough() to preserve method-specific extension fields.
|
|
4
|
+
* See types.ts for corresponding TypeScript interfaces.
|
|
5
|
+
*/
|
|
6
|
+
import { z } from "zod";
|
|
7
|
+
export declare const ModeSchema: z.ZodEnum<{
|
|
8
|
+
idle: "idle";
|
|
9
|
+
active: "active";
|
|
10
|
+
has_staged_work: "has_staged_work";
|
|
11
|
+
}>;
|
|
12
|
+
export declare const GitStateSchema: z.ZodObject<{
|
|
13
|
+
branch: z.ZodOptional<z.ZodString>;
|
|
14
|
+
last_commit_short: z.ZodOptional<z.ZodString>;
|
|
15
|
+
uncommitted_files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16
|
+
}, z.core.$loose>;
|
|
17
|
+
export declare const LastSessionSchema: z.ZodObject<{
|
|
18
|
+
context_remaining_pct: z.ZodOptional<z.ZodNumber>;
|
|
19
|
+
context_warnings_fired: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
20
|
+
git_state: z.ZodOptional<z.ZodObject<{
|
|
21
|
+
branch: z.ZodOptional<z.ZodString>;
|
|
22
|
+
last_commit_short: z.ZodOptional<z.ZodString>;
|
|
23
|
+
uncommitted_files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
24
|
+
}, z.core.$loose>>;
|
|
25
|
+
save_reason: z.ZodOptional<z.ZodString>;
|
|
26
|
+
saved_at: z.ZodOptional<z.ZodString>;
|
|
27
|
+
session_id: z.ZodOptional<z.ZodString>;
|
|
28
|
+
transcript_path: z.ZodOptional<z.ZodString>;
|
|
29
|
+
}, z.core.$loose>;
|
|
30
|
+
export declare const TaskSchema: z.ZodObject<{
|
|
31
|
+
active_form: z.ZodString;
|
|
32
|
+
completed_at: z.ZodNullable<z.ZodString>;
|
|
33
|
+
created_at: z.ZodString;
|
|
34
|
+
description: z.ZodString;
|
|
35
|
+
evidence: z.ZodString;
|
|
36
|
+
files_changed: z.ZodArray<z.ZodString>;
|
|
37
|
+
id: z.ZodString;
|
|
38
|
+
session_id: z.ZodOptional<z.ZodString>;
|
|
39
|
+
status: z.ZodEnum<{
|
|
40
|
+
blocked: "blocked";
|
|
41
|
+
completed: "completed";
|
|
42
|
+
in_progress: "in_progress";
|
|
43
|
+
pending: "pending";
|
|
44
|
+
}>;
|
|
45
|
+
subject: z.ZodString;
|
|
46
|
+
work_summary: z.ZodString;
|
|
47
|
+
}, z.core.$loose>;
|
|
48
|
+
export declare const ContextStateSchema: z.ZodObject<{
|
|
49
|
+
created_at: z.ZodString;
|
|
50
|
+
handoff_consumed: z.ZodOptional<z.ZodBoolean>;
|
|
51
|
+
handoff_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
52
|
+
id: z.ZodString;
|
|
53
|
+
last_active: z.ZodString;
|
|
54
|
+
last_session: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
55
|
+
context_remaining_pct: z.ZodOptional<z.ZodNumber>;
|
|
56
|
+
context_warnings_fired: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
57
|
+
git_state: z.ZodOptional<z.ZodObject<{
|
|
58
|
+
branch: z.ZodOptional<z.ZodString>;
|
|
59
|
+
last_commit_short: z.ZodOptional<z.ZodString>;
|
|
60
|
+
uncommitted_files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
61
|
+
}, z.core.$loose>>;
|
|
62
|
+
save_reason: z.ZodOptional<z.ZodString>;
|
|
63
|
+
saved_at: z.ZodOptional<z.ZodString>;
|
|
64
|
+
session_id: z.ZodOptional<z.ZodString>;
|
|
65
|
+
transcript_path: z.ZodOptional<z.ZodString>;
|
|
66
|
+
}, z.core.$loose>>>;
|
|
67
|
+
method: z.ZodString;
|
|
68
|
+
mode: z.ZodEnum<{
|
|
69
|
+
idle: "idle";
|
|
70
|
+
active: "active";
|
|
71
|
+
has_staged_work: "has_staged_work";
|
|
72
|
+
}>;
|
|
73
|
+
next_artifact_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
74
|
+
handoff: "handoff";
|
|
75
|
+
plan: "plan";
|
|
76
|
+
}>>>;
|
|
77
|
+
plan_anchors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
78
|
+
plan_consumed: z.ZodOptional<z.ZodBoolean>;
|
|
79
|
+
plan_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
80
|
+
plan_hash_consumed: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
81
|
+
plan_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
82
|
+
plan_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
83
|
+
plan_signature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
84
|
+
session_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
85
|
+
status: z.ZodEnum<{
|
|
86
|
+
active: "active";
|
|
87
|
+
completed: "completed";
|
|
88
|
+
}>;
|
|
89
|
+
summary: z.ZodString;
|
|
90
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
91
|
+
tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
92
|
+
active_form: z.ZodString;
|
|
93
|
+
completed_at: z.ZodNullable<z.ZodString>;
|
|
94
|
+
created_at: z.ZodString;
|
|
95
|
+
description: z.ZodString;
|
|
96
|
+
evidence: z.ZodString;
|
|
97
|
+
files_changed: z.ZodArray<z.ZodString>;
|
|
98
|
+
id: z.ZodString;
|
|
99
|
+
session_id: z.ZodOptional<z.ZodString>;
|
|
100
|
+
status: z.ZodEnum<{
|
|
101
|
+
blocked: "blocked";
|
|
102
|
+
completed: "completed";
|
|
103
|
+
in_progress: "in_progress";
|
|
104
|
+
pending: "pending";
|
|
105
|
+
}>;
|
|
106
|
+
subject: z.ZodString;
|
|
107
|
+
work_summary: z.ZodString;
|
|
108
|
+
}, z.core.$loose>>>;
|
|
109
|
+
work_consumed: z.ZodOptional<z.ZodBoolean>;
|
|
110
|
+
}, z.core.$loose>;
|
|
111
|
+
export declare const IndexEntrySchema: z.ZodObject<{
|
|
112
|
+
last_active: z.ZodString;
|
|
113
|
+
mode: z.ZodString;
|
|
114
|
+
summary: z.ZodString;
|
|
115
|
+
}, z.core.$loose>;
|
|
116
|
+
export declare const IndexFileSchema: z.ZodObject<{
|
|
117
|
+
contexts: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
118
|
+
last_active: z.ZodString;
|
|
119
|
+
mode: z.ZodString;
|
|
120
|
+
summary: z.ZodString;
|
|
121
|
+
}, z.core.$loose>>;
|
|
122
|
+
sessions: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
123
|
+
updated_at: z.ZodString;
|
|
124
|
+
version: z.ZodLiteral<"3.0">;
|
|
125
|
+
}, z.core.$loose>;
|
|
126
|
+
export declare const LogEntrySchema: z.ZodObject<{
|
|
127
|
+
component: z.ZodOptional<z.ZodString>;
|
|
128
|
+
data: z.ZodOptional<z.ZodUnknown>;
|
|
129
|
+
hook: z.ZodString;
|
|
130
|
+
level: z.ZodEnum<{
|
|
131
|
+
error: "error";
|
|
132
|
+
warn: "warn";
|
|
133
|
+
debug: "debug";
|
|
134
|
+
info: "info";
|
|
135
|
+
}>;
|
|
136
|
+
msg: z.ZodString;
|
|
137
|
+
tb: z.ZodOptional<z.ZodString>;
|
|
138
|
+
ts: z.ZodString;
|
|
139
|
+
}, z.core.$loose>;
|
|
140
|
+
export declare const HookInputSchema: z.ZodObject<{
|
|
141
|
+
context_window: z.ZodOptional<z.ZodObject<{
|
|
142
|
+
context_window_size: z.ZodOptional<z.ZodNumber>;
|
|
143
|
+
current_usage: z.ZodOptional<z.ZodObject<{
|
|
144
|
+
cache_creation_input_tokens: z.ZodOptional<z.ZodNumber>;
|
|
145
|
+
cache_read_input_tokens: z.ZodOptional<z.ZodNumber>;
|
|
146
|
+
input_tokens: z.ZodOptional<z.ZodNumber>;
|
|
147
|
+
output_tokens: z.ZodOptional<z.ZodNumber>;
|
|
148
|
+
}, z.core.$loose>>;
|
|
149
|
+
}, z.core.$loose>>;
|
|
150
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
151
|
+
hook_event_name: z.ZodString;
|
|
152
|
+
permission_mode: z.ZodOptional<z.ZodString>;
|
|
153
|
+
session_id: z.ZodOptional<z.ZodString>;
|
|
154
|
+
source: z.ZodOptional<z.ZodString>;
|
|
155
|
+
tool_input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
156
|
+
tool_name: z.ZodOptional<z.ZodString>;
|
|
157
|
+
tool_result: z.ZodOptional<z.ZodString>;
|
|
158
|
+
transcript_path: z.ZodOptional<z.ZodString>;
|
|
159
|
+
}, z.core.$loose>;
|
|
160
|
+
export declare const HookOutputSchema: z.ZodObject<{
|
|
161
|
+
decision: z.ZodOptional<z.ZodLiteral<"block">>;
|
|
162
|
+
hookSpecificOutput: z.ZodOptional<z.ZodObject<{
|
|
163
|
+
additionalContext: z.ZodOptional<z.ZodString>;
|
|
164
|
+
hookEventName: z.ZodOptional<z.ZodString>;
|
|
165
|
+
permissionDecision: z.ZodOptional<z.ZodEnum<{
|
|
166
|
+
allow: "allow";
|
|
167
|
+
deny: "deny";
|
|
168
|
+
ask: "ask";
|
|
169
|
+
}>>;
|
|
170
|
+
permissionDecisionReason: z.ZodOptional<z.ZodString>;
|
|
171
|
+
updatedInput: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
172
|
+
}, z.core.$loose>>;
|
|
173
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
174
|
+
}, z.core.$loose>;
|
|
175
|
+
export declare const PermissionRequestOutputSchema: z.ZodObject<{
|
|
176
|
+
decision: z.ZodObject<{
|
|
177
|
+
behavior: z.ZodEnum<{
|
|
178
|
+
allow: "allow";
|
|
179
|
+
deny: "deny";
|
|
180
|
+
}>;
|
|
181
|
+
message: z.ZodOptional<z.ZodString>;
|
|
182
|
+
updatedInput: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
183
|
+
updatedPermissions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
184
|
+
}, z.core.$strip>;
|
|
185
|
+
}, z.core.$loose>;
|
|
186
|
+
export declare const InferenceResultSchema: z.ZodObject<{
|
|
187
|
+
error: z.ZodOptional<z.ZodString>;
|
|
188
|
+
latency_ms: z.ZodNumber;
|
|
189
|
+
output: z.ZodString;
|
|
190
|
+
success: z.ZodBoolean;
|
|
191
|
+
}, z.core.$loose>;
|
|
192
|
+
export declare const HandoffDocumentSchema: z.ZodObject<{
|
|
193
|
+
active_tasks: z.ZodArray<z.ZodObject<{
|
|
194
|
+
active_form: z.ZodString;
|
|
195
|
+
completed_at: z.ZodNullable<z.ZodString>;
|
|
196
|
+
created_at: z.ZodString;
|
|
197
|
+
description: z.ZodString;
|
|
198
|
+
evidence: z.ZodString;
|
|
199
|
+
files_changed: z.ZodArray<z.ZodString>;
|
|
200
|
+
id: z.ZodString;
|
|
201
|
+
session_id: z.ZodOptional<z.ZodString>;
|
|
202
|
+
status: z.ZodEnum<{
|
|
203
|
+
blocked: "blocked";
|
|
204
|
+
completed: "completed";
|
|
205
|
+
in_progress: "in_progress";
|
|
206
|
+
pending: "pending";
|
|
207
|
+
}>;
|
|
208
|
+
subject: z.ZodString;
|
|
209
|
+
work_summary: z.ZodString;
|
|
210
|
+
}, z.core.$loose>>;
|
|
211
|
+
completed_tasks_this_session: z.ZodArray<z.ZodObject<{
|
|
212
|
+
subject: z.ZodString;
|
|
213
|
+
}, z.core.$loose>>;
|
|
214
|
+
context_folder: z.ZodString;
|
|
215
|
+
context_id: z.ZodString;
|
|
216
|
+
context_summary: z.ZodString;
|
|
217
|
+
created_at: z.ZodString;
|
|
218
|
+
events_log_path: z.ZodString;
|
|
219
|
+
file_path: z.ZodNullable<z.ZodString>;
|
|
220
|
+
important_notes: z.ZodArray<z.ZodString>;
|
|
221
|
+
next_steps: z.ZodArray<z.ZodString>;
|
|
222
|
+
plan_path: z.ZodNullable<z.ZodString>;
|
|
223
|
+
reason: z.ZodString;
|
|
224
|
+
session_id: z.ZodString;
|
|
225
|
+
work_summary: z.ZodString;
|
|
226
|
+
}, z.core.$loose>;
|
|
227
|
+
export declare const HandoffSectionsSchema: z.ZodObject<{
|
|
228
|
+
completedWork: z.ZodNullable<z.ZodString>;
|
|
229
|
+
context: z.ZodNullable<z.ZodString>;
|
|
230
|
+
deadEnds: z.ZodNullable<z.ZodString>;
|
|
231
|
+
decisions: z.ZodNullable<z.ZodString>;
|
|
232
|
+
index: z.ZodNullable<z.ZodString>;
|
|
233
|
+
pending: z.ZodNullable<z.ZodString>;
|
|
234
|
+
plan: z.ZodNullable<z.ZodString>;
|
|
235
|
+
}, z.core.$loose>;
|
|
236
|
+
export declare const CaretCommandSchema: z.ZodObject<{
|
|
237
|
+
ends: z.ZodArray<z.ZodString>;
|
|
238
|
+
new_context_desc: z.ZodNullable<z.ZodString>;
|
|
239
|
+
remaining_prompt: z.ZodString;
|
|
240
|
+
select: z.ZodNullable<z.ZodString>;
|
|
241
|
+
}, z.core.$loose>;
|
|
242
|
+
export declare const AgentConfigSchema: z.ZodObject<{
|
|
243
|
+
categories: z.ZodArray<z.ZodString>;
|
|
244
|
+
description: z.ZodString;
|
|
245
|
+
focus: z.ZodString;
|
|
246
|
+
model: z.ZodString;
|
|
247
|
+
name: z.ZodString;
|
|
248
|
+
provider: z.ZodString;
|
|
249
|
+
system_prompt: z.ZodString;
|
|
250
|
+
}, z.core.$loose>;
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zod schemas mirroring types.ts for runtime validation at JSON.parse boundaries.
|
|
3
|
+
* All object schemas use .passthrough() to preserve method-specific extension fields.
|
|
4
|
+
* See types.ts for corresponding TypeScript interfaces.
|
|
5
|
+
*/
|
|
6
|
+
import { z } from "zod";
|
|
7
|
+
// §1.1
|
|
8
|
+
export const ModeSchema = z.enum(["active", "has_staged_work", "idle"]);
|
|
9
|
+
// §1.2
|
|
10
|
+
export const GitStateSchema = z
|
|
11
|
+
.object({
|
|
12
|
+
branch: z.string().optional(),
|
|
13
|
+
last_commit_short: z.string().optional(),
|
|
14
|
+
uncommitted_files: z.array(z.string()).optional(),
|
|
15
|
+
})
|
|
16
|
+
.passthrough();
|
|
17
|
+
export const LastSessionSchema = z
|
|
18
|
+
.object({
|
|
19
|
+
context_remaining_pct: z.number().optional(),
|
|
20
|
+
context_warnings_fired: z.array(z.number()).optional(),
|
|
21
|
+
git_state: GitStateSchema.optional(),
|
|
22
|
+
save_reason: z.string().optional(),
|
|
23
|
+
saved_at: z.string().optional(),
|
|
24
|
+
session_id: z.string().optional(),
|
|
25
|
+
transcript_path: z.string().optional(),
|
|
26
|
+
})
|
|
27
|
+
.passthrough();
|
|
28
|
+
// §1.3
|
|
29
|
+
export const TaskSchema = z
|
|
30
|
+
.object({
|
|
31
|
+
active_form: z.string(),
|
|
32
|
+
completed_at: z.string().nullable(),
|
|
33
|
+
created_at: z.string(),
|
|
34
|
+
description: z.string(),
|
|
35
|
+
evidence: z.string(),
|
|
36
|
+
files_changed: z.array(z.string()),
|
|
37
|
+
id: z.string(),
|
|
38
|
+
session_id: z.string().optional(),
|
|
39
|
+
status: z.enum(["blocked", "completed", "in_progress", "pending"]),
|
|
40
|
+
subject: z.string(),
|
|
41
|
+
work_summary: z.string(),
|
|
42
|
+
})
|
|
43
|
+
.passthrough();
|
|
44
|
+
// §1.1 (continued)
|
|
45
|
+
export const ContextStateSchema = z
|
|
46
|
+
.object({
|
|
47
|
+
created_at: z.string(),
|
|
48
|
+
handoff_consumed: z.boolean().optional(), // deprecated
|
|
49
|
+
handoff_path: z.string().nullable().optional(),
|
|
50
|
+
id: z.string(),
|
|
51
|
+
last_active: z.string(),
|
|
52
|
+
last_session: LastSessionSchema.nullable().optional(),
|
|
53
|
+
method: z.string(),
|
|
54
|
+
mode: ModeSchema,
|
|
55
|
+
next_artifact_type: z.enum(["handoff", "plan"]).nullable().optional(),
|
|
56
|
+
plan_anchors: z.array(z.string()).optional(),
|
|
57
|
+
plan_consumed: z.boolean().optional(), // deprecated
|
|
58
|
+
plan_hash: z.string().nullable().optional(),
|
|
59
|
+
plan_hash_consumed: z.string().nullable().optional(),
|
|
60
|
+
plan_id: z.string().nullable().optional(),
|
|
61
|
+
plan_path: z.string().nullable().optional(),
|
|
62
|
+
plan_signature: z.string().nullable().optional(),
|
|
63
|
+
session_ids: z.array(z.string()).optional(),
|
|
64
|
+
status: z.enum(["active", "completed"]),
|
|
65
|
+
summary: z.string(),
|
|
66
|
+
tags: z.array(z.string()).optional(),
|
|
67
|
+
tasks: z.array(TaskSchema).optional(),
|
|
68
|
+
work_consumed: z.boolean().optional(),
|
|
69
|
+
})
|
|
70
|
+
.passthrough();
|
|
71
|
+
// §1.4
|
|
72
|
+
export const IndexEntrySchema = z
|
|
73
|
+
.object({
|
|
74
|
+
last_active: z.string(),
|
|
75
|
+
mode: z.string(),
|
|
76
|
+
summary: z.string(),
|
|
77
|
+
})
|
|
78
|
+
.passthrough();
|
|
79
|
+
export const IndexFileSchema = z
|
|
80
|
+
.object({
|
|
81
|
+
contexts: z.record(z.string(), IndexEntrySchema),
|
|
82
|
+
sessions: z.record(z.string(), z.string()),
|
|
83
|
+
updated_at: z.string(),
|
|
84
|
+
version: z.literal("3.0"),
|
|
85
|
+
})
|
|
86
|
+
.passthrough();
|
|
87
|
+
// §1.5
|
|
88
|
+
export const LogEntrySchema = z
|
|
89
|
+
.object({
|
|
90
|
+
component: z.string().optional(),
|
|
91
|
+
data: z.unknown().optional(),
|
|
92
|
+
hook: z.string(),
|
|
93
|
+
level: z.enum(["debug", "error", "info", "warn"]),
|
|
94
|
+
msg: z.string(),
|
|
95
|
+
tb: z.string().optional(),
|
|
96
|
+
ts: z.string(),
|
|
97
|
+
})
|
|
98
|
+
.passthrough();
|
|
99
|
+
// §1.6
|
|
100
|
+
export const HookInputSchema = z
|
|
101
|
+
.object({
|
|
102
|
+
context_window: z
|
|
103
|
+
.object({
|
|
104
|
+
context_window_size: z.number().optional(),
|
|
105
|
+
current_usage: z
|
|
106
|
+
.object({
|
|
107
|
+
cache_creation_input_tokens: z.number().optional(),
|
|
108
|
+
cache_read_input_tokens: z.number().optional(),
|
|
109
|
+
input_tokens: z.number().optional(),
|
|
110
|
+
output_tokens: z.number().optional(),
|
|
111
|
+
})
|
|
112
|
+
.passthrough()
|
|
113
|
+
.optional(),
|
|
114
|
+
})
|
|
115
|
+
.passthrough()
|
|
116
|
+
.optional(),
|
|
117
|
+
cwd: z.string().optional(),
|
|
118
|
+
hook_event_name: z.string(),
|
|
119
|
+
permission_mode: z.string().optional(),
|
|
120
|
+
session_id: z.string().optional(),
|
|
121
|
+
source: z.string().optional(),
|
|
122
|
+
tool_input: z.record(z.string(), z.unknown()).optional(),
|
|
123
|
+
tool_name: z.string().optional(),
|
|
124
|
+
tool_result: z.string().optional(),
|
|
125
|
+
transcript_path: z.string().optional(),
|
|
126
|
+
})
|
|
127
|
+
.passthrough();
|
|
128
|
+
// §1.7
|
|
129
|
+
export const HookOutputSchema = z
|
|
130
|
+
.object({
|
|
131
|
+
decision: z.literal("block").optional(),
|
|
132
|
+
hookSpecificOutput: z
|
|
133
|
+
.object({
|
|
134
|
+
additionalContext: z.string().optional(),
|
|
135
|
+
hookEventName: z.string().optional(),
|
|
136
|
+
permissionDecision: z.enum(["allow", "ask", "deny"]).optional(),
|
|
137
|
+
permissionDecisionReason: z.string().optional(),
|
|
138
|
+
updatedInput: z.record(z.string(), z.unknown()).optional(),
|
|
139
|
+
})
|
|
140
|
+
.passthrough()
|
|
141
|
+
.optional(),
|
|
142
|
+
reason: z.string().optional(),
|
|
143
|
+
})
|
|
144
|
+
.passthrough();
|
|
145
|
+
// §1.7b
|
|
146
|
+
export const PermissionRequestOutputSchema = z
|
|
147
|
+
.object({
|
|
148
|
+
decision: z.object({
|
|
149
|
+
behavior: z.enum(["allow", "deny"]),
|
|
150
|
+
message: z.string().optional(),
|
|
151
|
+
updatedInput: z.record(z.string(), z.unknown()).optional(),
|
|
152
|
+
updatedPermissions: z.record(z.string(), z.unknown()).optional(),
|
|
153
|
+
}),
|
|
154
|
+
})
|
|
155
|
+
.passthrough();
|
|
156
|
+
// §1.8
|
|
157
|
+
export const InferenceResultSchema = z
|
|
158
|
+
.object({
|
|
159
|
+
error: z.string().optional(),
|
|
160
|
+
latency_ms: z.number(),
|
|
161
|
+
output: z.string(),
|
|
162
|
+
success: z.boolean(),
|
|
163
|
+
})
|
|
164
|
+
.passthrough();
|
|
165
|
+
// §1.9
|
|
166
|
+
export const HandoffDocumentSchema = z
|
|
167
|
+
.object({
|
|
168
|
+
active_tasks: z.array(TaskSchema),
|
|
169
|
+
completed_tasks_this_session: z.array(z.object({ subject: z.string() }).passthrough()),
|
|
170
|
+
context_folder: z.string(),
|
|
171
|
+
context_id: z.string(),
|
|
172
|
+
context_summary: z.string(),
|
|
173
|
+
created_at: z.string(),
|
|
174
|
+
events_log_path: z.string(),
|
|
175
|
+
file_path: z.string().nullable(),
|
|
176
|
+
important_notes: z.array(z.string()),
|
|
177
|
+
next_steps: z.array(z.string()),
|
|
178
|
+
plan_path: z.string().nullable(),
|
|
179
|
+
reason: z.string(),
|
|
180
|
+
session_id: z.string(),
|
|
181
|
+
work_summary: z.string(),
|
|
182
|
+
})
|
|
183
|
+
.passthrough();
|
|
184
|
+
// §1.10
|
|
185
|
+
export const HandoffSectionsSchema = z
|
|
186
|
+
.object({
|
|
187
|
+
completedWork: z.string().nullable(),
|
|
188
|
+
context: z.string().nullable(),
|
|
189
|
+
deadEnds: z.string().nullable(),
|
|
190
|
+
decisions: z.string().nullable(),
|
|
191
|
+
index: z.string().nullable(),
|
|
192
|
+
pending: z.string().nullable(),
|
|
193
|
+
plan: z.string().nullable(),
|
|
194
|
+
})
|
|
195
|
+
.passthrough();
|
|
196
|
+
// §1.11
|
|
197
|
+
export const CaretCommandSchema = z
|
|
198
|
+
.object({
|
|
199
|
+
ends: z.array(z.string()),
|
|
200
|
+
new_context_desc: z.string().nullable(),
|
|
201
|
+
remaining_prompt: z.string(),
|
|
202
|
+
select: z.string().nullable(),
|
|
203
|
+
})
|
|
204
|
+
.passthrough();
|
|
205
|
+
// §1.13
|
|
206
|
+
export const AgentConfigSchema = z
|
|
207
|
+
.object({
|
|
208
|
+
categories: z.array(z.string()),
|
|
209
|
+
description: z.string(),
|
|
210
|
+
focus: z.string(),
|
|
211
|
+
model: z.string(),
|
|
212
|
+
name: z.string(),
|
|
213
|
+
provider: z.string(),
|
|
214
|
+
system_prompt: z.string(),
|
|
215
|
+
})
|
|
216
|
+
.passthrough();
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SentinelManager — owns sentinel IPC lifecycle (creation, wait, cleanup).
|
|
3
|
+
* Replaces scattered createSentinelIpcPaths + cleanupSentinelIpc across backends.
|
|
4
|
+
*/
|
|
5
|
+
import { type SentinelIpcPaths } from './runtime/sentinel-ipc.js';
|
|
6
|
+
export interface SentinelIO {
|
|
7
|
+
create(toolName: string): SentinelIpcPaths;
|
|
8
|
+
waitForExit(sentinelPath: string, timeoutMs: number): Promise<number | null>;
|
|
9
|
+
cleanup(paths: SentinelIpcPaths): void;
|
|
10
|
+
}
|
|
11
|
+
export declare class SentinelManager {
|
|
12
|
+
private readonly tracked;
|
|
13
|
+
private readonly io;
|
|
14
|
+
constructor(io?: SentinelIO);
|
|
15
|
+
/**
|
|
16
|
+
* Create a sentinel IPC path set for tracking a pane's exit code.
|
|
17
|
+
* Returns the sentinelPath string, or undefined if disabled.
|
|
18
|
+
*/
|
|
19
|
+
create(toolName: string, enabled?: boolean): string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* Wait for the sentinel file to be written, then read the exit code.
|
|
22
|
+
*/
|
|
23
|
+
waitForExit(sentinelPath: string, timeoutMs?: number): Promise<number | null>;
|
|
24
|
+
/**
|
|
25
|
+
* Clean up a specific sentinel by its path.
|
|
26
|
+
*/
|
|
27
|
+
cleanup(sentinelPath: string): void;
|
|
28
|
+
/**
|
|
29
|
+
* Clean up all tracked sentinels. Call in finally block.
|
|
30
|
+
*/
|
|
31
|
+
cleanupAll(): void;
|
|
32
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SentinelManager — owns sentinel IPC lifecycle (creation, wait, cleanup).
|
|
3
|
+
* Replaces scattered createSentinelIpcPaths + cleanupSentinelIpc across backends.
|
|
4
|
+
*/
|
|
5
|
+
import { cleanupSentinelIpc, createSentinelIpcPaths, readSentinelExitCode, waitForSentinelFile, } from './runtime/sentinel-ipc.js';
|
|
6
|
+
const defaultIO = {
|
|
7
|
+
create(toolName) {
|
|
8
|
+
return createSentinelIpcPaths(`aiwcli-pane-${toolName}`);
|
|
9
|
+
},
|
|
10
|
+
async waitForExit(sentinelPath, timeoutMs) {
|
|
11
|
+
const found = await waitForSentinelFile(sentinelPath, timeoutMs);
|
|
12
|
+
return found ? readSentinelExitCode(sentinelPath, 1) : null;
|
|
13
|
+
},
|
|
14
|
+
cleanup(paths) {
|
|
15
|
+
cleanupSentinelIpc(paths);
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
export class SentinelManager {
|
|
19
|
+
tracked = [];
|
|
20
|
+
io;
|
|
21
|
+
constructor(io) {
|
|
22
|
+
this.io = io ?? defaultIO;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Create a sentinel IPC path set for tracking a pane's exit code.
|
|
26
|
+
* Returns the sentinelPath string, or undefined if disabled.
|
|
27
|
+
*/
|
|
28
|
+
create(toolName, enabled = true) {
|
|
29
|
+
if (!enabled)
|
|
30
|
+
return undefined;
|
|
31
|
+
const paths = this.io.create(toolName);
|
|
32
|
+
this.tracked.push(paths);
|
|
33
|
+
return paths.sentinelPath;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Wait for the sentinel file to be written, then read the exit code.
|
|
37
|
+
*/
|
|
38
|
+
async waitForExit(sentinelPath, timeoutMs = 14_400_000) {
|
|
39
|
+
return this.io.waitForExit(sentinelPath, timeoutMs);
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Clean up a specific sentinel by its path.
|
|
43
|
+
*/
|
|
44
|
+
cleanup(sentinelPath) {
|
|
45
|
+
const entry = this.tracked.find((p) => p.sentinelPath === sentinelPath);
|
|
46
|
+
if (entry) {
|
|
47
|
+
this.io.cleanup(entry);
|
|
48
|
+
const index = this.tracked.indexOf(entry);
|
|
49
|
+
if (index >= 0)
|
|
50
|
+
this.tracked.splice(index, 1);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Clean up all tracked sentinels. Call in finally block.
|
|
55
|
+
*/
|
|
56
|
+
cleanupAll() {
|
|
57
|
+
for (const paths of this.tracked) {
|
|
58
|
+
this.io.cleanup(paths);
|
|
59
|
+
}
|
|
60
|
+
this.tracked.length = 0;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface SentinelWrapParams {
|
|
2
|
+
autoClose: boolean;
|
|
3
|
+
autoCloseCommand?: string | undefined;
|
|
4
|
+
command: string;
|
|
5
|
+
holdMessage: string;
|
|
6
|
+
holdPane: boolean;
|
|
7
|
+
sentinelPath: string;
|
|
8
|
+
}
|
|
9
|
+
export declare function wrapSentinelSh(params: SentinelWrapParams): string;
|
|
10
|
+
export declare function wrapSentinelPowerShell(params: SentinelWrapParams): string;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { quoteForPowerShell, quoteForSh } from './shell-quoting.js';
|
|
2
|
+
export function wrapSentinelSh(params) {
|
|
3
|
+
const { command, sentinelPath, autoClose, holdPane, holdMessage } = params;
|
|
4
|
+
const quoted = quoteForSh(sentinelPath);
|
|
5
|
+
// Trap HUP/INT/TERM so the sentinel is written even if the pane is killed.
|
|
6
|
+
const trap = `trap 'printf "%s" "130" > ${quoted}; exit 130' HUP INT TERM`;
|
|
7
|
+
const base = `${trap}; ${command}; code=$?; printf '%s' "$code" > ${quoted}`;
|
|
8
|
+
if (autoClose) {
|
|
9
|
+
const killCmd = params.autoCloseCommand
|
|
10
|
+
?? 'tmux kill-pane -t "$TMUX_PANE" >/dev/null 2>&1 || true';
|
|
11
|
+
return `${base}; ${killCmd}; exit $code`;
|
|
12
|
+
}
|
|
13
|
+
if (holdPane) {
|
|
14
|
+
// Launch an interactive login shell to hold the pane open.
|
|
15
|
+
// Use "$BASH" (current bash) to avoid resolving to WSL's bash.
|
|
16
|
+
// Do NOT use 'exec' — on MSYS2/Windows exec emulates by spawning a new
|
|
17
|
+
// process and exiting the original, which causes WezTerm to close the pane.
|
|
18
|
+
return `${base}; echo; echo ${quoteForSh(holdMessage)}; "$BASH" -li`;
|
|
19
|
+
}
|
|
20
|
+
return `${base}; exit $code`;
|
|
21
|
+
}
|
|
22
|
+
export function wrapSentinelPowerShell(params) {
|
|
23
|
+
const { command, sentinelPath, autoClose, holdPane, holdMessage } = params;
|
|
24
|
+
const base = `${command}; $code = $LASTEXITCODE; Set-Content -Path ${quoteForPowerShell(sentinelPath)} -Value $code -NoNewline`;
|
|
25
|
+
if (holdPane && !autoClose) {
|
|
26
|
+
return `${base}; Write-Host ''; Write-Host ${quoteForPowerShell(holdMessage)}; Read-Host -Prompt 'Press Enter to close' | Out-Null`;
|
|
27
|
+
}
|
|
28
|
+
return `${base}; exit $code`;
|
|
29
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { promises as fs } from 'node:fs';
|
|
2
1
|
import { homedir } from 'node:os';
|
|
3
2
|
import { join } from 'node:path';
|
|
4
3
|
import { IdePathResolver } from './ide-path-resolver.js';
|
|
4
|
+
import { readJsonFile, writeJsonFile } from './json-io.js';
|
|
5
5
|
import { pathExists } from './paths.js';
|
|
6
6
|
/**
|
|
7
7
|
* Discover Claude settings files in the hierarchy
|
|
@@ -46,14 +46,7 @@ export async function discoverSettingsFiles(projectDir) {
|
|
|
46
46
|
* @returns Parsed settings or undefined if file doesn't exist or is invalid
|
|
47
47
|
*/
|
|
48
48
|
export async function readClaudeSettings(path) {
|
|
49
|
-
|
|
50
|
-
const content = await fs.readFile(path, 'utf8');
|
|
51
|
-
return JSON.parse(content);
|
|
52
|
-
}
|
|
53
|
-
catch {
|
|
54
|
-
// File doesn't exist or invalid JSON
|
|
55
|
-
return undefined;
|
|
56
|
-
}
|
|
49
|
+
return readJsonFile(path);
|
|
57
50
|
}
|
|
58
51
|
/**
|
|
59
52
|
* Write Claude settings to file
|
|
@@ -66,17 +59,7 @@ export async function readClaudeSettings(path) {
|
|
|
66
59
|
* @throws Error if write fails
|
|
67
60
|
*/
|
|
68
61
|
export async function writeClaudeSettings(path, settings) {
|
|
69
|
-
|
|
70
|
-
const dir = join(path, '..');
|
|
71
|
-
await fs.mkdir(dir, { recursive: true });
|
|
72
|
-
// Backup existing file if it exists
|
|
73
|
-
if (await pathExists(path)) {
|
|
74
|
-
const backupPath = `${path}.backup`;
|
|
75
|
-
await fs.copyFile(path, backupPath);
|
|
76
|
-
}
|
|
77
|
-
// Write settings with pretty formatting
|
|
78
|
-
const content = JSON.stringify(settings, null, 2);
|
|
79
|
-
await fs.writeFile(path, content, 'utf8');
|
|
62
|
+
return writeJsonFile(path, settings, { backup: true });
|
|
80
63
|
}
|
|
81
64
|
/**
|
|
82
65
|
* Get the target settings file for template hook merging
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BashAdapter — ShellAdapter for bash (Unix + MSYS2/Git Bash on Windows).
|
|
3
|
+
* Delegates to low-level primitives in shell-quoting.ts, sentinel-wrapper.ts, etc.
|
|
4
|
+
*/
|
|
5
|
+
import type { SentinelWrapOptions, ShellAdapter, ToolCommandParams } from './shell-adapter.js';
|
|
6
|
+
export declare class BashAdapter implements ShellAdapter {
|
|
7
|
+
readonly dialect: "bash";
|
|
8
|
+
quote(value: string): string;
|
|
9
|
+
buildEnvPreamble(env: Record<string, string>): string;
|
|
10
|
+
buildToolCommand(params: ToolCommandParams): string;
|
|
11
|
+
wrapSentinel(params: SentinelWrapOptions): string;
|
|
12
|
+
resolveToolPath(toolName: string, nativePath: string): Promise<string | null>;
|
|
13
|
+
buildNestingCleanup(): string;
|
|
14
|
+
normalizeCwd(cwd: string): string;
|
|
15
|
+
wrapQuickExitRetry(command: string, toolPath: string, thresholdSec?: number): string;
|
|
16
|
+
encodeForExecution(command: string): string;
|
|
17
|
+
private appendPromptArg;
|
|
18
|
+
}
|