@opengsd/gsd-pi 1.2.0-dev.4813ead6 → 1.2.0-dev.5457a158
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/dist/cli-style.d.ts +17 -0
- package/dist/cli-style.js +28 -0
- package/dist/cli.js +1 -1
- package/dist/headless-events.d.ts +4 -2
- package/dist/headless-events.js +7 -29
- package/dist/models-resolver.d.ts +3 -13
- package/dist/models-resolver.js +3 -22
- package/dist/resource-loader.js +2 -14
- package/dist/resources/.managed-resources-content-hash +1 -1
- package/dist/resources/extensions/bg-shell/utilities.js +5 -2
- package/dist/resources/extensions/claude-code-cli/models.js +9 -0
- package/dist/resources/extensions/claude-code-cli/stream-adapter.js +35 -4
- package/dist/resources/extensions/gsd/auto/orchestrator.js +33 -4
- package/dist/resources/extensions/gsd/auto/phases.js +6 -1
- package/dist/resources/extensions/gsd/auto-post-unit.js +19 -8
- package/dist/resources/extensions/gsd/auto-prompts.js +3 -0
- package/dist/resources/extensions/gsd/auto-start.js +12 -14
- package/dist/resources/extensions/gsd/auto-tool-tracking.js +18 -0
- package/dist/resources/extensions/gsd/auto-unit-tool-scope.js +7 -16
- package/dist/resources/extensions/gsd/auto-worktree-repair.js +10 -2
- package/dist/resources/extensions/gsd/auto-worktree.js +35 -352
- package/dist/resources/extensions/gsd/auto.js +8 -20
- package/dist/resources/extensions/gsd/bootstrap/agent-end-recovery.js +3 -2
- package/dist/resources/extensions/gsd/bootstrap/dynamic-tools.js +9 -6
- package/dist/resources/extensions/gsd/bootstrap/register-hooks.js +86 -6
- package/dist/resources/extensions/gsd/bootstrap/write-gate.js +30 -4
- package/dist/resources/extensions/gsd/branch-patterns.js +2 -0
- package/dist/resources/extensions/gsd/captures.js +5 -15
- package/dist/resources/extensions/gsd/closeout-recovery.js +3 -2
- package/dist/resources/extensions/gsd/commands/catalog.js +6 -62
- package/dist/resources/extensions/gsd/crash-recovery.js +4 -12
- package/dist/resources/extensions/gsd/db/engine.js +755 -0
- package/dist/resources/extensions/gsd/db/queries.js +372 -0
- package/dist/resources/extensions/gsd/db/sql-constants.js +11 -0
- package/dist/resources/extensions/gsd/db/writers/cascades.js +194 -0
- package/dist/resources/extensions/gsd/db/writers/import-restore.js +182 -0
- package/dist/resources/extensions/gsd/db/writers/memory.js +149 -0
- package/dist/resources/extensions/gsd/db/writers/reconcile.js +458 -0
- package/dist/resources/extensions/gsd/db/writers/status.js +70 -0
- package/dist/resources/extensions/gsd/doctor-environment.js +5 -11
- package/dist/resources/extensions/gsd/doctor-format.js +9 -6
- package/dist/resources/extensions/gsd/doctor-git-checks.js +4 -3
- package/dist/resources/extensions/gsd/doctor-runtime-checks.js +21 -16
- package/dist/resources/extensions/gsd/error-classifier.js +9 -0
- package/dist/resources/extensions/gsd/git-service.js +1 -0
- package/dist/resources/extensions/gsd/gitignore.js +3 -0
- package/dist/resources/extensions/gsd/gsd-db.js +171 -2048
- package/dist/resources/extensions/gsd/guidance.js +98 -0
- package/dist/resources/extensions/gsd/guided-flow.js +51 -5
- package/dist/resources/extensions/gsd/mcp-tool-name.js +5 -13
- package/dist/resources/extensions/gsd/memory-consolidation-scanner.js +1 -1
- package/dist/resources/extensions/gsd/migrate/safety.js +20 -9
- package/dist/resources/extensions/gsd/migration-auto-check.js +24 -3
- package/dist/resources/extensions/gsd/model-cost-table.js +1 -0
- package/dist/resources/extensions/gsd/model-router.js +3 -0
- package/dist/resources/extensions/gsd/notification-store.js +11 -4
- package/dist/resources/extensions/gsd/parallel-merge.js +14 -11
- package/dist/resources/extensions/gsd/parallel-monitor-overlay.js +11 -7
- package/dist/resources/extensions/gsd/paths.js +37 -24
- package/dist/resources/extensions/gsd/pre-execution-checks.js +91 -3
- package/dist/resources/extensions/gsd/preferences-models.js +12 -46
- package/dist/resources/extensions/gsd/preferences.js +14 -0
- package/dist/resources/extensions/gsd/prompts/plan-slice.md +1 -1
- package/dist/resources/extensions/gsd/prompts/refine-slice.md +1 -1
- package/dist/resources/extensions/gsd/prompts/replan-slice.md +1 -1
- package/dist/resources/extensions/gsd/provider-error-guidance.js +1 -5
- package/dist/resources/extensions/gsd/provider-switch-observer.js +1 -1
- package/dist/resources/extensions/gsd/publication.js +87 -0
- package/dist/resources/extensions/gsd/recovery-classification.js +41 -87
- package/dist/resources/extensions/gsd/safety/evidence-collector.js +37 -4
- package/dist/resources/extensions/gsd/safety/evidence-cross-ref.js +7 -2
- package/dist/resources/extensions/gsd/safety/file-change-validator.js +10 -0
- package/dist/resources/extensions/gsd/state-transition-matrix.js +38 -0
- package/dist/resources/extensions/gsd/state.js +1 -20
- package/dist/resources/extensions/gsd/status-guards.js +56 -8
- package/dist/resources/extensions/gsd/stop-notice.js +57 -0
- package/dist/resources/extensions/gsd/tool-surface-readiness.js +56 -0
- package/dist/resources/extensions/gsd/tools/complete-slice.js +24 -43
- package/dist/resources/extensions/gsd/tools/exec-tool.js +5 -8
- package/dist/resources/extensions/gsd/tools/plan-slice.js +12 -6
- package/dist/resources/extensions/gsd/tools/reopen-milestone.js +11 -29
- package/dist/resources/extensions/gsd/tools/reopen-slice.js +14 -33
- package/dist/resources/extensions/gsd/tools/skip-slice.js +18 -36
- package/dist/resources/extensions/gsd/undo.js +8 -7
- package/dist/resources/extensions/gsd/unit-closeout.js +138 -0
- package/dist/resources/extensions/gsd/unit-context-composer.js +9 -1
- package/dist/resources/extensions/gsd/unit-context-manifest.js +4 -27
- package/dist/resources/extensions/gsd/unit-registry.js +350 -0
- package/dist/resources/extensions/gsd/unit-tool-contracts.js +9 -182
- package/dist/resources/extensions/gsd/workflow-tool-surface.js +1 -1
- package/dist/resources/extensions/gsd/worktree-git-recovery.js +293 -0
- package/dist/resources/extensions/gsd/worktree-lifecycle.js +9 -1
- package/dist/resources/extensions/gsd/worktree-manager.js +45 -28
- package/dist/resources/extensions/gsd/worktree-placement.js +59 -0
- package/dist/resources/extensions/gsd/worktree-reentry.js +12 -8
- package/dist/resources/extensions/gsd/worktree-root.js +28 -6
- package/dist/resources/extensions/gsd/worktree-safety.js +8 -5
- package/dist/resources/extensions/gsd/worktree-session-state.js +12 -11
- package/dist/resources/skills/gsd-browser/SKILL.md +1 -1
- package/dist/tsconfig.extensions.tsbuildinfo +1 -1
- package/dist/web/standalone/.next/BUILD_ID +1 -1
- package/dist/web/standalone/.next/app-path-routes-manifest.json +6 -6
- package/dist/web/standalone/.next/build-manifest.json +2 -2
- package/dist/web/standalone/.next/prerender-manifest.json +3 -3
- package/dist/web/standalone/.next/server/app/_global-error.html +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_global-error.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.html +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/api/boot/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/bridge-terminal/input/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/bridge-terminal/resize/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/bridge-terminal/stream/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/captures/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/cleanup/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/doctor/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/export-data/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/files/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/forensics/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/git/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/history/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/hooks/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/inspect/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/knowledge/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/live-state/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/mcp-connections/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/notifications/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/onboarding/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/projects/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/recovery/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/session/browser/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/session/command/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/session/events/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/session/manage/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/settings-data/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/shutdown/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/skill-health/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/steer/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/switch-root/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/terminal/sessions/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/terminal/stream/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/undo/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/api/visualizer/route.js.nft.json +1 -1
- package/dist/web/standalone/.next/server/app/index.html +1 -1
- package/dist/web/standalone/.next/server/app/index.rsc +1 -1
- package/dist/web/standalone/.next/server/app/index.segments/__PAGE__.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/index.segments/_full.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/index.segments/_head.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/index.segments/_index.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app/index.segments/_tree.segment.rsc +1 -1
- package/dist/web/standalone/.next/server/app-paths-manifest.json +6 -6
- package/dist/web/standalone/.next/server/chunks/5124.js +1 -1
- package/dist/web/standalone/.next/server/chunks/{5047.js → 5942.js} +2 -2
- package/dist/web/standalone/.next/server/chunks/8357.js +1 -1
- package/dist/web/standalone/.next/server/middleware-build-manifest.js +1 -1
- package/dist/web/standalone/.next/server/pages/404.html +1 -1
- package/dist/web/standalone/.next/server/pages/500.html +1 -1
- package/dist/web/standalone/.next/server/server-reference-manifest.json +1 -1
- package/dist/worktree-cli.js +3 -6
- package/dist/worktree-status-banner.js +7 -11
- package/package.json +1 -1
- package/packages/cloud-mcp-gateway/package.json +2 -2
- package/packages/contracts/dist/workflow.d.ts +4 -0
- package/packages/contracts/dist/workflow.d.ts.map +1 -1
- package/packages/contracts/dist/workflow.js.map +1 -1
- package/packages/contracts/package.json +1 -1
- package/packages/daemon/package.json +4 -4
- package/packages/gsd-agent-core/package.json +5 -5
- package/packages/gsd-agent-modes/package.json +7 -7
- package/packages/mcp-server/dist/cli.js +6 -3
- package/packages/mcp-server/dist/cli.js.map +1 -1
- package/packages/mcp-server/dist/workflow-tools.d.ts +8 -0
- package/packages/mcp-server/dist/workflow-tools.d.ts.map +1 -1
- package/packages/mcp-server/dist/workflow-tools.js +46 -21
- package/packages/mcp-server/dist/workflow-tools.js.map +1 -1
- package/packages/mcp-server/package.json +3 -3
- package/packages/native/package.json +1 -1
- package/packages/pi-agent-core/package.json +1 -1
- package/packages/pi-ai/dist/image-models.generated.d.ts +0 -30
- package/packages/pi-ai/dist/image-models.generated.d.ts.map +1 -1
- package/packages/pi-ai/dist/image-models.generated.js +0 -30
- package/packages/pi-ai/dist/image-models.generated.js.map +1 -1
- package/packages/pi-ai/dist/models.generated.d.ts +361 -255
- package/packages/pi-ai/dist/models.generated.d.ts.map +1 -1
- package/packages/pi-ai/dist/models.generated.js +311 -256
- package/packages/pi-ai/dist/models.generated.js.map +1 -1
- package/packages/pi-ai/package.json +1 -1
- package/packages/pi-coding-agent/dist/core/capability-patches.d.ts.map +1 -1
- package/packages/pi-coding-agent/dist/core/capability-patches.js +3 -1
- package/packages/pi-coding-agent/dist/core/capability-patches.js.map +1 -1
- package/packages/pi-coding-agent/package.json +7 -7
- package/packages/pi-tui/package.json +2 -2
- package/packages/rpc-client/package.json +2 -2
- package/pkg/package.json +1 -1
- package/src/resources/extensions/bg-shell/utilities.ts +5 -2
- package/src/resources/extensions/claude-code-cli/models.ts +9 -0
- package/src/resources/extensions/claude-code-cli/stream-adapter.ts +37 -2
- package/src/resources/extensions/claude-code-cli/tests/stream-adapter.test.ts +28 -0
- package/src/resources/extensions/gsd/auto/loop-deps.ts +1 -1
- package/src/resources/extensions/gsd/auto/orchestrator.ts +39 -5
- package/src/resources/extensions/gsd/auto/phases.ts +10 -1
- package/src/resources/extensions/gsd/auto-post-unit.ts +25 -7
- package/src/resources/extensions/gsd/auto-prompts.ts +3 -0
- package/src/resources/extensions/gsd/auto-start.ts +12 -15
- package/src/resources/extensions/gsd/auto-tool-tracking.ts +19 -0
- package/src/resources/extensions/gsd/auto-unit-tool-scope.ts +10 -17
- package/src/resources/extensions/gsd/auto-worktree-repair.ts +13 -2
- package/src/resources/extensions/gsd/auto-worktree.ts +41 -364
- package/src/resources/extensions/gsd/auto.ts +20 -24
- package/src/resources/extensions/gsd/bootstrap/agent-end-recovery.ts +3 -5
- package/src/resources/extensions/gsd/bootstrap/dynamic-tools.ts +10 -6
- package/src/resources/extensions/gsd/bootstrap/register-hooks.ts +87 -6
- package/src/resources/extensions/gsd/bootstrap/write-gate.ts +29 -3
- package/src/resources/extensions/gsd/branch-patterns.ts +3 -0
- package/src/resources/extensions/gsd/captures.ts +5 -16
- package/src/resources/extensions/gsd/closeout-recovery.ts +2 -1
- package/src/resources/extensions/gsd/commands/catalog.ts +6 -68
- package/src/resources/extensions/gsd/crash-recovery.ts +3 -9
- package/src/resources/extensions/gsd/db/engine.ts +809 -0
- package/src/resources/extensions/gsd/db/queries.ts +453 -0
- package/src/resources/extensions/gsd/db/sql-constants.ts +12 -0
- package/src/resources/extensions/gsd/db/writers/cascades.ts +237 -0
- package/src/resources/extensions/gsd/db/writers/import-restore.ts +310 -0
- package/src/resources/extensions/gsd/db/writers/memory.ts +220 -0
- package/src/resources/extensions/gsd/db/writers/reconcile.ts +500 -0
- package/src/resources/extensions/gsd/db/writers/status.ts +88 -0
- package/src/resources/extensions/gsd/doctor-environment.ts +5 -13
- package/src/resources/extensions/gsd/doctor-format.ts +12 -7
- package/src/resources/extensions/gsd/doctor-git-checks.ts +3 -3
- package/src/resources/extensions/gsd/doctor-runtime-checks.ts +22 -17
- package/src/resources/extensions/gsd/error-classifier.ts +11 -0
- package/src/resources/extensions/gsd/git-service.ts +1 -0
- package/src/resources/extensions/gsd/gitignore.ts +3 -0
- package/src/resources/extensions/gsd/gsd-db.ts +173 -2373
- package/src/resources/extensions/gsd/guidance.ts +139 -0
- package/src/resources/extensions/gsd/guided-flow.ts +50 -5
- package/src/resources/extensions/gsd/mcp-tool-name.ts +6 -11
- package/src/resources/extensions/gsd/memory-consolidation-scanner.ts +1 -1
- package/src/resources/extensions/gsd/migrate/safety.ts +18 -7
- package/src/resources/extensions/gsd/migration-auto-check.ts +28 -3
- package/src/resources/extensions/gsd/model-cost-table.ts +1 -0
- package/src/resources/extensions/gsd/model-router.ts +3 -0
- package/src/resources/extensions/gsd/notification-store.ts +26 -3
- package/src/resources/extensions/gsd/parallel-merge.ts +12 -9
- package/src/resources/extensions/gsd/parallel-monitor-overlay.ts +10 -7
- package/src/resources/extensions/gsd/paths.ts +42 -22
- package/src/resources/extensions/gsd/pre-execution-checks.ts +109 -3
- package/src/resources/extensions/gsd/preferences-models.ts +10 -46
- package/src/resources/extensions/gsd/preferences.ts +18 -0
- package/src/resources/extensions/gsd/prompts/plan-slice.md +1 -1
- package/src/resources/extensions/gsd/prompts/refine-slice.md +1 -1
- package/src/resources/extensions/gsd/prompts/replan-slice.md +1 -1
- package/src/resources/extensions/gsd/provider-error-guidance.ts +4 -9
- package/src/resources/extensions/gsd/provider-switch-observer.ts +1 -1
- package/src/resources/extensions/gsd/publication.ts +122 -0
- package/src/resources/extensions/gsd/recovery-classification.ts +47 -88
- package/src/resources/extensions/gsd/safety/evidence-collector.ts +36 -4
- package/src/resources/extensions/gsd/safety/evidence-cross-ref.ts +7 -2
- package/src/resources/extensions/gsd/safety/file-change-validator.ts +14 -0
- package/src/resources/extensions/gsd/state-transition-matrix.ts +42 -0
- package/src/resources/extensions/gsd/state.ts +4 -21
- package/src/resources/extensions/gsd/status-guards.ts +59 -8
- package/src/resources/extensions/gsd/stop-notice.ts +75 -0
- package/src/resources/extensions/gsd/tests/auto-loop.test.ts +123 -0
- package/src/resources/extensions/gsd/tests/auto-paused-ui-cleanup.test.ts +3 -1
- package/src/resources/extensions/gsd/tests/auto-post-unit-evidence-crossref-4909.test.ts +46 -0
- package/src/resources/extensions/gsd/tests/auto-worktree-registry.test.ts +2 -2
- package/src/resources/extensions/gsd/tests/auto-worktree-repair.test.ts +4 -2
- package/src/resources/extensions/gsd/tests/checkout-branch-stash-guard.test.ts +66 -1
- package/src/resources/extensions/gsd/tests/clear-stale-autostart.test.ts +44 -0
- package/src/resources/extensions/gsd/tests/commands-verdict.test.ts +8 -7
- package/src/resources/extensions/gsd/tests/evidence-xref-gsd-exec.test.ts +157 -0
- package/src/resources/extensions/gsd/tests/file-change-validator.test.ts +33 -1
- package/src/resources/extensions/gsd/tests/guidance.test.ts +125 -0
- package/src/resources/extensions/gsd/tests/integration/auto-worktree-milestone-merge.test.ts +51 -4
- package/src/resources/extensions/gsd/tests/integration/auto-worktree.test.ts +54 -1
- package/src/resources/extensions/gsd/tests/integration/git-service.test.ts +3 -2
- package/src/resources/extensions/gsd/tests/migration-auto-check.test.ts +85 -1
- package/src/resources/extensions/gsd/tests/notification-store.test.ts +32 -0
- package/src/resources/extensions/gsd/tests/pre-execution-checks.test.ts +193 -1
- package/src/resources/extensions/gsd/tests/provider-error-guidance.test.ts +3 -3
- package/src/resources/extensions/gsd/tests/publication.test.ts +120 -0
- package/src/resources/extensions/gsd/tests/recovery-classification-illegal-transition.test.ts +30 -0
- package/src/resources/extensions/gsd/tests/register-hooks-depth-verification.test.ts +248 -1
- package/src/resources/extensions/gsd/tests/runtime-invariant-modules.test.ts +1 -0
- package/src/resources/extensions/gsd/tests/safety-harness-false-positives.test.ts +38 -0
- package/src/resources/extensions/gsd/tests/session-switch-clears-pending-autostart.test.ts +108 -0
- package/src/resources/extensions/gsd/tests/single-writer-invariant.test.ts +43 -6
- package/src/resources/extensions/gsd/tests/state-transition-matrix.test.ts +36 -0
- package/src/resources/extensions/gsd/tests/status-guards.test.ts +38 -0
- package/src/resources/extensions/gsd/tests/stop-notice.test.ts +70 -0
- package/src/resources/extensions/gsd/tests/tool-invocation-error-loop-break.test.ts +8 -0
- package/src/resources/extensions/gsd/tests/tool-surface-readiness.test.ts +155 -0
- package/src/resources/extensions/gsd/tests/unit-closeout.test.ts +209 -0
- package/src/resources/extensions/gsd/tests/unit-context-composer.test.ts +23 -2
- package/src/resources/extensions/gsd/tests/unit-registry.test.ts +163 -0
- package/src/resources/extensions/gsd/tests/workflow-mcp.test.ts +2 -2
- package/src/resources/extensions/gsd/tests/workflow-tool-executors.test.ts +2 -2
- package/src/resources/extensions/gsd/tests/worktree-lifecycle.test.ts +41 -4
- package/src/resources/extensions/gsd/tests/worktree-manager.test.ts +22 -1
- package/src/resources/extensions/gsd/tests/worktree-placement.test.ts +113 -0
- package/src/resources/extensions/gsd/tests/worktree-reentry.test.ts +1 -1
- package/src/resources/extensions/gsd/tests/worktree-safety.test.ts +3 -1
- package/src/resources/extensions/gsd/tests/worktree-symlink-removal.test.ts +12 -6
- package/src/resources/extensions/gsd/tests/worktree-teardown-safety.test.ts +2 -2
- package/src/resources/extensions/gsd/tests/write-gate.test.ts +42 -0
- package/src/resources/extensions/gsd/tool-surface-readiness.ts +76 -0
- package/src/resources/extensions/gsd/tools/complete-slice.ts +23 -58
- package/src/resources/extensions/gsd/tools/exec-tool.ts +5 -8
- package/src/resources/extensions/gsd/tools/plan-slice.ts +12 -6
- package/src/resources/extensions/gsd/tools/reopen-milestone.ts +11 -38
- package/src/resources/extensions/gsd/tools/reopen-slice.ts +14 -42
- package/src/resources/extensions/gsd/tools/skip-slice.ts +18 -44
- package/src/resources/extensions/gsd/undo.ts +9 -8
- package/src/resources/extensions/gsd/unit-closeout.ts +201 -0
- package/src/resources/extensions/gsd/unit-context-composer.ts +12 -1
- package/src/resources/extensions/gsd/unit-context-manifest.ts +4 -28
- package/src/resources/extensions/gsd/unit-registry.ts +425 -0
- package/src/resources/extensions/gsd/unit-tool-contracts.ts +27 -192
- package/src/resources/extensions/gsd/workflow-tool-surface.ts +4 -1
- package/src/resources/extensions/gsd/worktree-git-recovery.ts +314 -0
- package/src/resources/extensions/gsd/worktree-lifecycle.ts +10 -1
- package/src/resources/extensions/gsd/worktree-manager.ts +47 -28
- package/src/resources/extensions/gsd/worktree-placement.ts +63 -0
- package/src/resources/extensions/gsd/worktree-reentry.ts +10 -7
- package/src/resources/extensions/gsd/worktree-root.ts +29 -6
- package/src/resources/extensions/gsd/worktree-safety.ts +8 -5
- package/src/resources/extensions/gsd/worktree-session-state.ts +11 -11
- package/src/resources/skills/gsd-browser/SKILL.md +1 -1
- /package/dist/web/standalone/.next/static/{tkLHUSzPA2kMmWz4DmGwI → 2p9Rv9pQflAxCBbGVI2vb}/_buildManifest.js +0 -0
- /package/dist/web/standalone/.next/static/{tkLHUSzPA2kMmWz4DmGwI → 2p9Rv9pQflAxCBbGVI2vb}/_ssgManifest.js +0 -0
|
@@ -68,6 +68,26 @@ export declare const MODELS: {
|
|
|
68
68
|
contextWindow: number;
|
|
69
69
|
maxTokens: number;
|
|
70
70
|
};
|
|
71
|
+
readonly "anthropic.claude-fable-5": {
|
|
72
|
+
id: string;
|
|
73
|
+
name: string;
|
|
74
|
+
api: "bedrock-converse-stream";
|
|
75
|
+
provider: string;
|
|
76
|
+
baseUrl: string;
|
|
77
|
+
reasoning: true;
|
|
78
|
+
thinkingLevelMap: {
|
|
79
|
+
xhigh: string;
|
|
80
|
+
};
|
|
81
|
+
input: ("text" | "image")[];
|
|
82
|
+
cost: {
|
|
83
|
+
input: number;
|
|
84
|
+
output: number;
|
|
85
|
+
cacheRead: number;
|
|
86
|
+
cacheWrite: number;
|
|
87
|
+
};
|
|
88
|
+
contextWindow: number;
|
|
89
|
+
maxTokens: number;
|
|
90
|
+
};
|
|
71
91
|
readonly "anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
72
92
|
id: string;
|
|
73
93
|
name: string;
|
|
@@ -355,6 +375,26 @@ export declare const MODELS: {
|
|
|
355
375
|
contextWindow: number;
|
|
356
376
|
maxTokens: number;
|
|
357
377
|
};
|
|
378
|
+
readonly "eu.anthropic.claude-fable-5": {
|
|
379
|
+
id: string;
|
|
380
|
+
name: string;
|
|
381
|
+
api: "bedrock-converse-stream";
|
|
382
|
+
provider: string;
|
|
383
|
+
baseUrl: string;
|
|
384
|
+
reasoning: true;
|
|
385
|
+
thinkingLevelMap: {
|
|
386
|
+
xhigh: string;
|
|
387
|
+
};
|
|
388
|
+
input: ("text" | "image")[];
|
|
389
|
+
cost: {
|
|
390
|
+
input: number;
|
|
391
|
+
output: number;
|
|
392
|
+
cacheRead: number;
|
|
393
|
+
cacheWrite: number;
|
|
394
|
+
};
|
|
395
|
+
contextWindow: number;
|
|
396
|
+
maxTokens: number;
|
|
397
|
+
};
|
|
358
398
|
readonly "eu.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
359
399
|
id: string;
|
|
360
400
|
name: string;
|
|
@@ -483,6 +523,26 @@ export declare const MODELS: {
|
|
|
483
523
|
contextWindow: number;
|
|
484
524
|
maxTokens: number;
|
|
485
525
|
};
|
|
526
|
+
readonly "global.anthropic.claude-fable-5": {
|
|
527
|
+
id: string;
|
|
528
|
+
name: string;
|
|
529
|
+
api: "bedrock-converse-stream";
|
|
530
|
+
provider: string;
|
|
531
|
+
baseUrl: string;
|
|
532
|
+
reasoning: true;
|
|
533
|
+
thinkingLevelMap: {
|
|
534
|
+
xhigh: string;
|
|
535
|
+
};
|
|
536
|
+
input: ("text" | "image")[];
|
|
537
|
+
cost: {
|
|
538
|
+
input: number;
|
|
539
|
+
output: number;
|
|
540
|
+
cacheRead: number;
|
|
541
|
+
cacheWrite: number;
|
|
542
|
+
};
|
|
543
|
+
contextWindow: number;
|
|
544
|
+
maxTokens: number;
|
|
545
|
+
};
|
|
486
546
|
readonly "global.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
487
547
|
id: string;
|
|
488
548
|
name: string;
|
|
@@ -1371,6 +1431,26 @@ export declare const MODELS: {
|
|
|
1371
1431
|
contextWindow: number;
|
|
1372
1432
|
maxTokens: number;
|
|
1373
1433
|
};
|
|
1434
|
+
readonly "us.anthropic.claude-fable-5": {
|
|
1435
|
+
id: string;
|
|
1436
|
+
name: string;
|
|
1437
|
+
api: "bedrock-converse-stream";
|
|
1438
|
+
provider: string;
|
|
1439
|
+
baseUrl: string;
|
|
1440
|
+
reasoning: true;
|
|
1441
|
+
thinkingLevelMap: {
|
|
1442
|
+
xhigh: string;
|
|
1443
|
+
};
|
|
1444
|
+
input: ("text" | "image")[];
|
|
1445
|
+
cost: {
|
|
1446
|
+
input: number;
|
|
1447
|
+
output: number;
|
|
1448
|
+
cacheRead: number;
|
|
1449
|
+
cacheWrite: number;
|
|
1450
|
+
};
|
|
1451
|
+
contextWindow: number;
|
|
1452
|
+
maxTokens: number;
|
|
1453
|
+
};
|
|
1374
1454
|
readonly "us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
1375
1455
|
id: string;
|
|
1376
1456
|
name: string;
|
|
@@ -1790,6 +1870,29 @@ export declare const MODELS: {
|
|
|
1790
1870
|
contextWindow: number;
|
|
1791
1871
|
maxTokens: number;
|
|
1792
1872
|
};
|
|
1873
|
+
readonly "claude-fable-5": {
|
|
1874
|
+
id: string;
|
|
1875
|
+
name: string;
|
|
1876
|
+
api: "anthropic-messages";
|
|
1877
|
+
provider: string;
|
|
1878
|
+
baseUrl: string;
|
|
1879
|
+
compat: {
|
|
1880
|
+
forceAdaptiveThinking: true;
|
|
1881
|
+
};
|
|
1882
|
+
reasoning: true;
|
|
1883
|
+
thinkingLevelMap: {
|
|
1884
|
+
xhigh: string;
|
|
1885
|
+
};
|
|
1886
|
+
input: ("text" | "image")[];
|
|
1887
|
+
cost: {
|
|
1888
|
+
input: number;
|
|
1889
|
+
output: number;
|
|
1890
|
+
cacheRead: number;
|
|
1891
|
+
cacheWrite: number;
|
|
1892
|
+
};
|
|
1893
|
+
contextWindow: number;
|
|
1894
|
+
maxTokens: number;
|
|
1895
|
+
};
|
|
1793
1896
|
readonly "claude-haiku-4-5": {
|
|
1794
1897
|
id: string;
|
|
1795
1898
|
name: string;
|
|
@@ -2102,6 +2205,29 @@ export declare const MODELS: {
|
|
|
2102
2205
|
contextWindow: number;
|
|
2103
2206
|
maxTokens: number;
|
|
2104
2207
|
};
|
|
2208
|
+
readonly "claude-fable-5": {
|
|
2209
|
+
id: string;
|
|
2210
|
+
name: string;
|
|
2211
|
+
api: "anthropic-vertex";
|
|
2212
|
+
provider: string;
|
|
2213
|
+
baseUrl: string;
|
|
2214
|
+
compat: {
|
|
2215
|
+
forceAdaptiveThinking: true;
|
|
2216
|
+
};
|
|
2217
|
+
reasoning: true;
|
|
2218
|
+
thinkingLevelMap: {
|
|
2219
|
+
xhigh: string;
|
|
2220
|
+
};
|
|
2221
|
+
input: ("text" | "image")[];
|
|
2222
|
+
cost: {
|
|
2223
|
+
input: number;
|
|
2224
|
+
output: number;
|
|
2225
|
+
cacheRead: number;
|
|
2226
|
+
cacheWrite: number;
|
|
2227
|
+
};
|
|
2228
|
+
contextWindow: number;
|
|
2229
|
+
maxTokens: number;
|
|
2230
|
+
};
|
|
2105
2231
|
readonly "claude-haiku-4-5@20251001": {
|
|
2106
2232
|
id: string;
|
|
2107
2233
|
name: string;
|
|
@@ -3251,6 +3377,29 @@ export declare const MODELS: {
|
|
|
3251
3377
|
contextWindow: number;
|
|
3252
3378
|
maxTokens: number;
|
|
3253
3379
|
};
|
|
3380
|
+
readonly "claude-fable-5": {
|
|
3381
|
+
id: string;
|
|
3382
|
+
name: string;
|
|
3383
|
+
api: "anthropic-messages";
|
|
3384
|
+
provider: string;
|
|
3385
|
+
baseUrl: string;
|
|
3386
|
+
compat: {
|
|
3387
|
+
forceAdaptiveThinking: true;
|
|
3388
|
+
};
|
|
3389
|
+
reasoning: true;
|
|
3390
|
+
thinkingLevelMap: {
|
|
3391
|
+
xhigh: string;
|
|
3392
|
+
};
|
|
3393
|
+
input: ("text" | "image")[];
|
|
3394
|
+
cost: {
|
|
3395
|
+
input: number;
|
|
3396
|
+
output: number;
|
|
3397
|
+
cacheRead: number;
|
|
3398
|
+
cacheWrite: number;
|
|
3399
|
+
};
|
|
3400
|
+
contextWindow: number;
|
|
3401
|
+
maxTokens: number;
|
|
3402
|
+
};
|
|
3254
3403
|
readonly "claude-haiku-4-5": {
|
|
3255
3404
|
id: string;
|
|
3256
3405
|
name: string;
|
|
@@ -5561,201 +5710,12 @@ export declare const MODELS: {
|
|
|
5561
5710
|
reasoning: true;
|
|
5562
5711
|
thinkingLevelMap: {
|
|
5563
5712
|
off: null;
|
|
5564
|
-
minimal: null;
|
|
5565
|
-
low: string;
|
|
5566
|
-
medium: null;
|
|
5567
|
-
high: string;
|
|
5568
|
-
};
|
|
5569
|
-
input: ("text" | "image")[];
|
|
5570
|
-
cost: {
|
|
5571
|
-
input: number;
|
|
5572
|
-
output: number;
|
|
5573
|
-
cacheRead: number;
|
|
5574
|
-
cacheWrite: number;
|
|
5575
|
-
};
|
|
5576
|
-
contextWindow: number;
|
|
5577
|
-
maxTokens: number;
|
|
5578
|
-
};
|
|
5579
|
-
};
|
|
5580
|
-
readonly groq: {
|
|
5581
|
-
readonly "deepseek-r1-distill-llama-70b": {
|
|
5582
|
-
id: string;
|
|
5583
|
-
name: string;
|
|
5584
|
-
api: "openai-completions";
|
|
5585
|
-
provider: string;
|
|
5586
|
-
baseUrl: string;
|
|
5587
|
-
reasoning: true;
|
|
5588
|
-
input: "text"[];
|
|
5589
|
-
cost: {
|
|
5590
|
-
input: number;
|
|
5591
|
-
output: number;
|
|
5592
|
-
cacheRead: number;
|
|
5593
|
-
cacheWrite: number;
|
|
5594
|
-
};
|
|
5595
|
-
contextWindow: number;
|
|
5596
|
-
maxTokens: number;
|
|
5597
|
-
};
|
|
5598
|
-
readonly "gemma2-9b-it": {
|
|
5599
|
-
id: string;
|
|
5600
|
-
name: string;
|
|
5601
|
-
api: "openai-completions";
|
|
5602
|
-
provider: string;
|
|
5603
|
-
baseUrl: string;
|
|
5604
|
-
reasoning: false;
|
|
5605
|
-
input: "text"[];
|
|
5606
|
-
cost: {
|
|
5607
|
-
input: number;
|
|
5608
|
-
output: number;
|
|
5609
|
-
cacheRead: number;
|
|
5610
|
-
cacheWrite: number;
|
|
5611
|
-
};
|
|
5612
|
-
contextWindow: number;
|
|
5613
|
-
maxTokens: number;
|
|
5614
|
-
};
|
|
5615
|
-
readonly "groq/compound": {
|
|
5616
|
-
id: string;
|
|
5617
|
-
name: string;
|
|
5618
|
-
api: "openai-completions";
|
|
5619
|
-
provider: string;
|
|
5620
|
-
baseUrl: string;
|
|
5621
|
-
reasoning: true;
|
|
5622
|
-
input: "text"[];
|
|
5623
|
-
cost: {
|
|
5624
|
-
input: number;
|
|
5625
|
-
output: number;
|
|
5626
|
-
cacheRead: number;
|
|
5627
|
-
cacheWrite: number;
|
|
5628
|
-
};
|
|
5629
|
-
contextWindow: number;
|
|
5630
|
-
maxTokens: number;
|
|
5631
|
-
};
|
|
5632
|
-
readonly "groq/compound-mini": {
|
|
5633
|
-
id: string;
|
|
5634
|
-
name: string;
|
|
5635
|
-
api: "openai-completions";
|
|
5636
|
-
provider: string;
|
|
5637
|
-
baseUrl: string;
|
|
5638
|
-
reasoning: true;
|
|
5639
|
-
input: "text"[];
|
|
5640
|
-
cost: {
|
|
5641
|
-
input: number;
|
|
5642
|
-
output: number;
|
|
5643
|
-
cacheRead: number;
|
|
5644
|
-
cacheWrite: number;
|
|
5645
|
-
};
|
|
5646
|
-
contextWindow: number;
|
|
5647
|
-
maxTokens: number;
|
|
5648
|
-
};
|
|
5649
|
-
readonly "llama-3.1-8b-instant": {
|
|
5650
|
-
id: string;
|
|
5651
|
-
name: string;
|
|
5652
|
-
api: "openai-completions";
|
|
5653
|
-
provider: string;
|
|
5654
|
-
baseUrl: string;
|
|
5655
|
-
reasoning: false;
|
|
5656
|
-
input: "text"[];
|
|
5657
|
-
cost: {
|
|
5658
|
-
input: number;
|
|
5659
|
-
output: number;
|
|
5660
|
-
cacheRead: number;
|
|
5661
|
-
cacheWrite: number;
|
|
5662
|
-
};
|
|
5663
|
-
contextWindow: number;
|
|
5664
|
-
maxTokens: number;
|
|
5665
|
-
};
|
|
5666
|
-
readonly "llama-3.3-70b-versatile": {
|
|
5667
|
-
id: string;
|
|
5668
|
-
name: string;
|
|
5669
|
-
api: "openai-completions";
|
|
5670
|
-
provider: string;
|
|
5671
|
-
baseUrl: string;
|
|
5672
|
-
reasoning: false;
|
|
5673
|
-
input: "text"[];
|
|
5674
|
-
cost: {
|
|
5675
|
-
input: number;
|
|
5676
|
-
output: number;
|
|
5677
|
-
cacheRead: number;
|
|
5678
|
-
cacheWrite: number;
|
|
5679
|
-
};
|
|
5680
|
-
contextWindow: number;
|
|
5681
|
-
maxTokens: number;
|
|
5682
|
-
};
|
|
5683
|
-
readonly "llama3-70b-8192": {
|
|
5684
|
-
id: string;
|
|
5685
|
-
name: string;
|
|
5686
|
-
api: "openai-completions";
|
|
5687
|
-
provider: string;
|
|
5688
|
-
baseUrl: string;
|
|
5689
|
-
reasoning: false;
|
|
5690
|
-
input: "text"[];
|
|
5691
|
-
cost: {
|
|
5692
|
-
input: number;
|
|
5693
|
-
output: number;
|
|
5694
|
-
cacheRead: number;
|
|
5695
|
-
cacheWrite: number;
|
|
5696
|
-
};
|
|
5697
|
-
contextWindow: number;
|
|
5698
|
-
maxTokens: number;
|
|
5699
|
-
};
|
|
5700
|
-
readonly "llama3-8b-8192": {
|
|
5701
|
-
id: string;
|
|
5702
|
-
name: string;
|
|
5703
|
-
api: "openai-completions";
|
|
5704
|
-
provider: string;
|
|
5705
|
-
baseUrl: string;
|
|
5706
|
-
reasoning: false;
|
|
5707
|
-
input: "text"[];
|
|
5708
|
-
cost: {
|
|
5709
|
-
input: number;
|
|
5710
|
-
output: number;
|
|
5711
|
-
cacheRead: number;
|
|
5712
|
-
cacheWrite: number;
|
|
5713
|
-
};
|
|
5714
|
-
contextWindow: number;
|
|
5715
|
-
maxTokens: number;
|
|
5716
|
-
};
|
|
5717
|
-
readonly "meta-llama/llama-4-maverick-17b-128e-instruct": {
|
|
5718
|
-
id: string;
|
|
5719
|
-
name: string;
|
|
5720
|
-
api: "openai-completions";
|
|
5721
|
-
provider: string;
|
|
5722
|
-
baseUrl: string;
|
|
5723
|
-
reasoning: false;
|
|
5724
|
-
input: ("text" | "image")[];
|
|
5725
|
-
cost: {
|
|
5726
|
-
input: number;
|
|
5727
|
-
output: number;
|
|
5728
|
-
cacheRead: number;
|
|
5729
|
-
cacheWrite: number;
|
|
5730
|
-
};
|
|
5731
|
-
contextWindow: number;
|
|
5732
|
-
maxTokens: number;
|
|
5733
|
-
};
|
|
5734
|
-
readonly "meta-llama/llama-4-scout-17b-16e-instruct": {
|
|
5735
|
-
id: string;
|
|
5736
|
-
name: string;
|
|
5737
|
-
api: "openai-completions";
|
|
5738
|
-
provider: string;
|
|
5739
|
-
baseUrl: string;
|
|
5740
|
-
reasoning: false;
|
|
5741
|
-
input: ("text" | "image")[];
|
|
5742
|
-
cost: {
|
|
5743
|
-
input: number;
|
|
5744
|
-
output: number;
|
|
5745
|
-
cacheRead: number;
|
|
5746
|
-
cacheWrite: number;
|
|
5747
|
-
};
|
|
5748
|
-
contextWindow: number;
|
|
5749
|
-
maxTokens: number;
|
|
5750
|
-
};
|
|
5751
|
-
readonly "mistral-saba-24b": {
|
|
5752
|
-
id: string;
|
|
5753
|
-
name: string;
|
|
5754
|
-
api: "openai-completions";
|
|
5755
|
-
provider: string;
|
|
5756
|
-
baseUrl: string;
|
|
5757
|
-
reasoning: false;
|
|
5758
|
-
input: "text"[];
|
|
5713
|
+
minimal: null;
|
|
5714
|
+
low: string;
|
|
5715
|
+
medium: null;
|
|
5716
|
+
high: string;
|
|
5717
|
+
};
|
|
5718
|
+
input: ("text" | "image")[];
|
|
5759
5719
|
cost: {
|
|
5760
5720
|
input: number;
|
|
5761
5721
|
output: number;
|
|
@@ -5765,7 +5725,9 @@ export declare const MODELS: {
|
|
|
5765
5725
|
contextWindow: number;
|
|
5766
5726
|
maxTokens: number;
|
|
5767
5727
|
};
|
|
5768
|
-
|
|
5728
|
+
};
|
|
5729
|
+
readonly groq: {
|
|
5730
|
+
readonly "llama-3.1-8b-instant": {
|
|
5769
5731
|
id: string;
|
|
5770
5732
|
name: string;
|
|
5771
5733
|
api: "openai-completions";
|
|
@@ -5782,7 +5744,7 @@ export declare const MODELS: {
|
|
|
5782
5744
|
contextWindow: number;
|
|
5783
5745
|
maxTokens: number;
|
|
5784
5746
|
};
|
|
5785
|
-
readonly "
|
|
5747
|
+
readonly "llama-3.3-70b-versatile": {
|
|
5786
5748
|
id: string;
|
|
5787
5749
|
name: string;
|
|
5788
5750
|
api: "openai-completions";
|
|
@@ -5799,14 +5761,14 @@ export declare const MODELS: {
|
|
|
5799
5761
|
contextWindow: number;
|
|
5800
5762
|
maxTokens: number;
|
|
5801
5763
|
};
|
|
5802
|
-
readonly "
|
|
5764
|
+
readonly "meta-llama/llama-4-scout-17b-16e-instruct": {
|
|
5803
5765
|
id: string;
|
|
5804
5766
|
name: string;
|
|
5805
5767
|
api: "openai-completions";
|
|
5806
5768
|
provider: string;
|
|
5807
5769
|
baseUrl: string;
|
|
5808
|
-
reasoning:
|
|
5809
|
-
input: "text"[];
|
|
5770
|
+
reasoning: false;
|
|
5771
|
+
input: ("text" | "image")[];
|
|
5810
5772
|
cost: {
|
|
5811
5773
|
input: number;
|
|
5812
5774
|
output: number;
|
|
@@ -5816,7 +5778,7 @@ export declare const MODELS: {
|
|
|
5816
5778
|
contextWindow: number;
|
|
5817
5779
|
maxTokens: number;
|
|
5818
5780
|
};
|
|
5819
|
-
readonly "openai/gpt-oss-
|
|
5781
|
+
readonly "openai/gpt-oss-120b": {
|
|
5820
5782
|
id: string;
|
|
5821
5783
|
name: string;
|
|
5822
5784
|
api: "openai-completions";
|
|
@@ -5833,7 +5795,7 @@ export declare const MODELS: {
|
|
|
5833
5795
|
contextWindow: number;
|
|
5834
5796
|
maxTokens: number;
|
|
5835
5797
|
};
|
|
5836
|
-
readonly "openai/gpt-oss-
|
|
5798
|
+
readonly "openai/gpt-oss-20b": {
|
|
5837
5799
|
id: string;
|
|
5838
5800
|
name: string;
|
|
5839
5801
|
api: "openai-completions";
|
|
@@ -5850,7 +5812,7 @@ export declare const MODELS: {
|
|
|
5850
5812
|
contextWindow: number;
|
|
5851
5813
|
maxTokens: number;
|
|
5852
5814
|
};
|
|
5853
|
-
readonly "
|
|
5815
|
+
readonly "openai/gpt-oss-safeguard-20b": {
|
|
5854
5816
|
id: string;
|
|
5855
5817
|
name: string;
|
|
5856
5818
|
api: "openai-completions";
|
|
@@ -8280,6 +8242,29 @@ export declare const MODELS: {
|
|
|
8280
8242
|
contextWindow: number;
|
|
8281
8243
|
maxTokens: number;
|
|
8282
8244
|
};
|
|
8245
|
+
readonly "claude-fable-5": {
|
|
8246
|
+
id: string;
|
|
8247
|
+
name: string;
|
|
8248
|
+
api: "anthropic-messages";
|
|
8249
|
+
provider: string;
|
|
8250
|
+
baseUrl: string;
|
|
8251
|
+
compat: {
|
|
8252
|
+
forceAdaptiveThinking: true;
|
|
8253
|
+
};
|
|
8254
|
+
reasoning: true;
|
|
8255
|
+
thinkingLevelMap: {
|
|
8256
|
+
xhigh: string;
|
|
8257
|
+
};
|
|
8258
|
+
input: ("text" | "image")[];
|
|
8259
|
+
cost: {
|
|
8260
|
+
input: number;
|
|
8261
|
+
output: number;
|
|
8262
|
+
cacheRead: number;
|
|
8263
|
+
cacheWrite: number;
|
|
8264
|
+
};
|
|
8265
|
+
contextWindow: number;
|
|
8266
|
+
maxTokens: number;
|
|
8267
|
+
};
|
|
8283
8268
|
readonly "claude-haiku-4-5": {
|
|
8284
8269
|
id: string;
|
|
8285
8270
|
name: string;
|
|
@@ -8510,6 +8495,34 @@ export declare const MODELS: {
|
|
|
8510
8495
|
contextWindow: number;
|
|
8511
8496
|
maxTokens: number;
|
|
8512
8497
|
};
|
|
8498
|
+
readonly "deepseek-v4-pro": {
|
|
8499
|
+
id: string;
|
|
8500
|
+
name: string;
|
|
8501
|
+
api: "openai-completions";
|
|
8502
|
+
provider: string;
|
|
8503
|
+
baseUrl: string;
|
|
8504
|
+
compat: {
|
|
8505
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
8506
|
+
thinkingFormat: "deepseek";
|
|
8507
|
+
};
|
|
8508
|
+
reasoning: true;
|
|
8509
|
+
thinkingLevelMap: {
|
|
8510
|
+
minimal: null;
|
|
8511
|
+
low: null;
|
|
8512
|
+
medium: null;
|
|
8513
|
+
high: string;
|
|
8514
|
+
xhigh: string;
|
|
8515
|
+
};
|
|
8516
|
+
input: "text"[];
|
|
8517
|
+
cost: {
|
|
8518
|
+
input: number;
|
|
8519
|
+
output: number;
|
|
8520
|
+
cacheRead: number;
|
|
8521
|
+
cacheWrite: number;
|
|
8522
|
+
};
|
|
8523
|
+
contextWindow: number;
|
|
8524
|
+
maxTokens: number;
|
|
8525
|
+
};
|
|
8513
8526
|
readonly "gemini-3-flash": {
|
|
8514
8527
|
id: string;
|
|
8515
8528
|
name: string;
|
|
@@ -9056,6 +9069,23 @@ export declare const MODELS: {
|
|
|
9056
9069
|
contextWindow: number;
|
|
9057
9070
|
maxTokens: number;
|
|
9058
9071
|
};
|
|
9072
|
+
readonly "north-mini-code-free": {
|
|
9073
|
+
id: string;
|
|
9074
|
+
name: string;
|
|
9075
|
+
api: "openai-completions";
|
|
9076
|
+
provider: string;
|
|
9077
|
+
baseUrl: string;
|
|
9078
|
+
reasoning: true;
|
|
9079
|
+
input: "text"[];
|
|
9080
|
+
cost: {
|
|
9081
|
+
input: number;
|
|
9082
|
+
output: number;
|
|
9083
|
+
cacheRead: number;
|
|
9084
|
+
cacheWrite: number;
|
|
9085
|
+
};
|
|
9086
|
+
contextWindow: number;
|
|
9087
|
+
maxTokens: number;
|
|
9088
|
+
};
|
|
9059
9089
|
readonly "qwen3.5-plus": {
|
|
9060
9090
|
id: string;
|
|
9061
9091
|
name: string;
|
|
@@ -9493,6 +9523,26 @@ export declare const MODELS: {
|
|
|
9493
9523
|
contextWindow: number;
|
|
9494
9524
|
maxTokens: number;
|
|
9495
9525
|
};
|
|
9526
|
+
readonly "anthropic/claude-fable-5": {
|
|
9527
|
+
id: string;
|
|
9528
|
+
name: string;
|
|
9529
|
+
api: "openai-completions";
|
|
9530
|
+
provider: string;
|
|
9531
|
+
baseUrl: string;
|
|
9532
|
+
reasoning: true;
|
|
9533
|
+
thinkingLevelMap: {
|
|
9534
|
+
xhigh: string;
|
|
9535
|
+
};
|
|
9536
|
+
input: ("text" | "image")[];
|
|
9537
|
+
cost: {
|
|
9538
|
+
input: number;
|
|
9539
|
+
output: number;
|
|
9540
|
+
cacheRead: number;
|
|
9541
|
+
cacheWrite: number;
|
|
9542
|
+
};
|
|
9543
|
+
contextWindow: number;
|
|
9544
|
+
maxTokens: number;
|
|
9545
|
+
};
|
|
9496
9546
|
readonly "anthropic/claude-haiku-4.5": {
|
|
9497
9547
|
id: string;
|
|
9498
9548
|
name: string;
|
|
@@ -11100,23 +11150,6 @@ export declare const MODELS: {
|
|
|
11100
11150
|
contextWindow: number;
|
|
11101
11151
|
maxTokens: number;
|
|
11102
11152
|
};
|
|
11103
|
-
readonly "moonshotai/kimi-k2.6:free": {
|
|
11104
|
-
id: string;
|
|
11105
|
-
name: string;
|
|
11106
|
-
api: "openai-completions";
|
|
11107
|
-
provider: string;
|
|
11108
|
-
baseUrl: string;
|
|
11109
|
-
reasoning: true;
|
|
11110
|
-
input: ("text" | "image")[];
|
|
11111
|
-
cost: {
|
|
11112
|
-
input: number;
|
|
11113
|
-
output: number;
|
|
11114
|
-
cacheRead: number;
|
|
11115
|
-
cacheWrite: number;
|
|
11116
|
-
};
|
|
11117
|
-
contextWindow: number;
|
|
11118
|
-
maxTokens: number;
|
|
11119
|
-
};
|
|
11120
11153
|
readonly "nex-agi/nex-n2-pro:free": {
|
|
11121
11154
|
id: string;
|
|
11122
11155
|
name: string;
|
|
@@ -13414,23 +13447,6 @@ export declare const MODELS: {
|
|
|
13414
13447
|
contextWindow: number;
|
|
13415
13448
|
maxTokens: number;
|
|
13416
13449
|
};
|
|
13417
|
-
readonly "z-ai/glm-4-32b": {
|
|
13418
|
-
id: string;
|
|
13419
|
-
name: string;
|
|
13420
|
-
api: "openai-completions";
|
|
13421
|
-
provider: string;
|
|
13422
|
-
baseUrl: string;
|
|
13423
|
-
reasoning: false;
|
|
13424
|
-
input: "text"[];
|
|
13425
|
-
cost: {
|
|
13426
|
-
input: number;
|
|
13427
|
-
output: number;
|
|
13428
|
-
cacheRead: number;
|
|
13429
|
-
cacheWrite: number;
|
|
13430
|
-
};
|
|
13431
|
-
contextWindow: number;
|
|
13432
|
-
maxTokens: number;
|
|
13433
|
-
};
|
|
13434
13450
|
readonly "z-ai/glm-4.5": {
|
|
13435
13451
|
id: string;
|
|
13436
13452
|
name: string;
|
|
@@ -13465,23 +13481,6 @@ export declare const MODELS: {
|
|
|
13465
13481
|
contextWindow: number;
|
|
13466
13482
|
maxTokens: number;
|
|
13467
13483
|
};
|
|
13468
|
-
readonly "z-ai/glm-4.5-air:free": {
|
|
13469
|
-
id: string;
|
|
13470
|
-
name: string;
|
|
13471
|
-
api: "openai-completions";
|
|
13472
|
-
provider: string;
|
|
13473
|
-
baseUrl: string;
|
|
13474
|
-
reasoning: true;
|
|
13475
|
-
input: "text"[];
|
|
13476
|
-
cost: {
|
|
13477
|
-
input: number;
|
|
13478
|
-
output: number;
|
|
13479
|
-
cacheRead: number;
|
|
13480
|
-
cacheWrite: number;
|
|
13481
|
-
};
|
|
13482
|
-
contextWindow: number;
|
|
13483
|
-
maxTokens: number;
|
|
13484
|
-
};
|
|
13485
13484
|
readonly "z-ai/glm-4.5v": {
|
|
13486
13485
|
id: string;
|
|
13487
13486
|
name: string;
|
|
@@ -13618,7 +13617,7 @@ export declare const MODELS: {
|
|
|
13618
13617
|
contextWindow: number;
|
|
13619
13618
|
maxTokens: number;
|
|
13620
13619
|
};
|
|
13621
|
-
readonly "
|
|
13620
|
+
readonly "~anthropic/claude-fable-latest": {
|
|
13622
13621
|
id: string;
|
|
13623
13622
|
name: string;
|
|
13624
13623
|
api: "openai-completions";
|
|
@@ -14755,6 +14754,29 @@ export declare const MODELS: {
|
|
|
14755
14754
|
contextWindow: number;
|
|
14756
14755
|
maxTokens: number;
|
|
14757
14756
|
};
|
|
14757
|
+
readonly "anthropic/claude-fable-5": {
|
|
14758
|
+
id: string;
|
|
14759
|
+
name: string;
|
|
14760
|
+
api: "anthropic-messages";
|
|
14761
|
+
provider: string;
|
|
14762
|
+
baseUrl: string;
|
|
14763
|
+
compat: {
|
|
14764
|
+
forceAdaptiveThinking: true;
|
|
14765
|
+
};
|
|
14766
|
+
reasoning: true;
|
|
14767
|
+
thinkingLevelMap: {
|
|
14768
|
+
xhigh: string;
|
|
14769
|
+
};
|
|
14770
|
+
input: ("text" | "image")[];
|
|
14771
|
+
cost: {
|
|
14772
|
+
input: number;
|
|
14773
|
+
output: number;
|
|
14774
|
+
cacheRead: number;
|
|
14775
|
+
cacheWrite: number;
|
|
14776
|
+
};
|
|
14777
|
+
contextWindow: number;
|
|
14778
|
+
maxTokens: number;
|
|
14779
|
+
};
|
|
14758
14780
|
readonly "anthropic/claude-haiku-4.5": {
|
|
14759
14781
|
id: string;
|
|
14760
14782
|
name: string;
|
|
@@ -17471,6 +17493,27 @@ export declare const MODELS: {
|
|
|
17471
17493
|
contextWindow: number;
|
|
17472
17494
|
maxTokens: number;
|
|
17473
17495
|
};
|
|
17496
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
17497
|
+
id: string;
|
|
17498
|
+
name: string;
|
|
17499
|
+
api: "openai-completions";
|
|
17500
|
+
provider: string;
|
|
17501
|
+
baseUrl: string;
|
|
17502
|
+
compat: {
|
|
17503
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
17504
|
+
thinkingFormat: "deepseek";
|
|
17505
|
+
};
|
|
17506
|
+
reasoning: true;
|
|
17507
|
+
input: "text"[];
|
|
17508
|
+
cost: {
|
|
17509
|
+
input: number;
|
|
17510
|
+
output: number;
|
|
17511
|
+
cacheRead: number;
|
|
17512
|
+
cacheWrite: number;
|
|
17513
|
+
};
|
|
17514
|
+
contextWindow: number;
|
|
17515
|
+
maxTokens: number;
|
|
17516
|
+
};
|
|
17474
17517
|
};
|
|
17475
17518
|
readonly "xiaomi-token-plan-ams": {
|
|
17476
17519
|
readonly "mimo-v2-flash": {
|
|
@@ -17578,6 +17621,27 @@ export declare const MODELS: {
|
|
|
17578
17621
|
contextWindow: number;
|
|
17579
17622
|
maxTokens: number;
|
|
17580
17623
|
};
|
|
17624
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
17625
|
+
id: string;
|
|
17626
|
+
name: string;
|
|
17627
|
+
api: "openai-completions";
|
|
17628
|
+
provider: string;
|
|
17629
|
+
baseUrl: string;
|
|
17630
|
+
compat: {
|
|
17631
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
17632
|
+
thinkingFormat: "deepseek";
|
|
17633
|
+
};
|
|
17634
|
+
reasoning: true;
|
|
17635
|
+
input: "text"[];
|
|
17636
|
+
cost: {
|
|
17637
|
+
input: number;
|
|
17638
|
+
output: number;
|
|
17639
|
+
cacheRead: number;
|
|
17640
|
+
cacheWrite: number;
|
|
17641
|
+
};
|
|
17642
|
+
contextWindow: number;
|
|
17643
|
+
maxTokens: number;
|
|
17644
|
+
};
|
|
17581
17645
|
};
|
|
17582
17646
|
readonly "xiaomi-token-plan-cn": {
|
|
17583
17647
|
readonly "mimo-v2-flash": {
|
|
@@ -17685,6 +17749,27 @@ export declare const MODELS: {
|
|
|
17685
17749
|
contextWindow: number;
|
|
17686
17750
|
maxTokens: number;
|
|
17687
17751
|
};
|
|
17752
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
17753
|
+
id: string;
|
|
17754
|
+
name: string;
|
|
17755
|
+
api: "openai-completions";
|
|
17756
|
+
provider: string;
|
|
17757
|
+
baseUrl: string;
|
|
17758
|
+
compat: {
|
|
17759
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
17760
|
+
thinkingFormat: "deepseek";
|
|
17761
|
+
};
|
|
17762
|
+
reasoning: true;
|
|
17763
|
+
input: "text"[];
|
|
17764
|
+
cost: {
|
|
17765
|
+
input: number;
|
|
17766
|
+
output: number;
|
|
17767
|
+
cacheRead: number;
|
|
17768
|
+
cacheWrite: number;
|
|
17769
|
+
};
|
|
17770
|
+
contextWindow: number;
|
|
17771
|
+
maxTokens: number;
|
|
17772
|
+
};
|
|
17688
17773
|
};
|
|
17689
17774
|
readonly "xiaomi-token-plan-sgp": {
|
|
17690
17775
|
readonly "mimo-v2-flash": {
|
|
@@ -17792,6 +17877,27 @@ export declare const MODELS: {
|
|
|
17792
17877
|
contextWindow: number;
|
|
17793
17878
|
maxTokens: number;
|
|
17794
17879
|
};
|
|
17880
|
+
readonly "mimo-v2.5-pro-ultraspeed": {
|
|
17881
|
+
id: string;
|
|
17882
|
+
name: string;
|
|
17883
|
+
api: "openai-completions";
|
|
17884
|
+
provider: string;
|
|
17885
|
+
baseUrl: string;
|
|
17886
|
+
compat: {
|
|
17887
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
17888
|
+
thinkingFormat: "deepseek";
|
|
17889
|
+
};
|
|
17890
|
+
reasoning: true;
|
|
17891
|
+
input: "text"[];
|
|
17892
|
+
cost: {
|
|
17893
|
+
input: number;
|
|
17894
|
+
output: number;
|
|
17895
|
+
cacheRead: number;
|
|
17896
|
+
cacheWrite: number;
|
|
17897
|
+
};
|
|
17898
|
+
contextWindow: number;
|
|
17899
|
+
maxTokens: number;
|
|
17900
|
+
};
|
|
17795
17901
|
};
|
|
17796
17902
|
readonly zai: {
|
|
17797
17903
|
readonly "glm-4.5-air": {
|