@cleocode/cleo 2026.2.5 → 2026.2.6
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 +111 -73
- package/dist/cli/index.js +25536 -23636
- package/dist/cli/index.js.map +4 -4
- package/dist/mcp/index.js +17101 -13563
- package/dist/mcp/index.js.map +4 -4
- package/drizzle/20260224040019_baseline/migration.sql +156 -0
- package/drizzle/20260224040019_baseline/snapshot.json +1480 -0
- package/drizzle/20260224040238_add-audit-log/migration.sql +14 -0
- package/drizzle/20260224040238_add-audit-log/snapshot.json +1615 -0
- package/drizzle/20260224144602_closed_grim_reaper/migration.sql +185 -0
- package/drizzle/20260224144602_closed_grim_reaper/snapshot.json +1702 -0
- package/drizzle/20260225024442_sync-lifecycle-enums-and-arch-decisions/migration.sql +61 -0
- package/drizzle/20260225024442_sync-lifecycle-enums-and-arch-decisions/snapshot.json +1855 -0
- package/drizzle/20260227014821_adr-system-and-status-registry/migration.sql +93 -0
- package/drizzle/20260227014821_adr-system-and-status-registry/snapshot.json +2160 -0
- package/drizzle/20260227021231_add-cancelled-pipeline-status/migration.sql +28 -0
- package/drizzle/20260227021231_add-cancelled-pipeline-status/snapshot.json +2160 -0
- package/drizzle/20260227022417_adr-cognitive-search-fields/migration.sql +3 -0
- package/drizzle/20260227022417_adr-cognitive-search-fields/snapshot.json +2190 -0
- package/drizzle/20260227172236_freezing_grey_gargoyle/migration.sql +8 -0
- package/drizzle/20260227172236_freezing_grey_gargoyle/snapshot.json +2278 -0
- package/drizzle/20260227183444_fix-orphaned-parent-ids/migration.sql +5 -0
- package/drizzle/20260227183444_fix-orphaned-parent-ids/snapshot.json +2278 -0
- package/drizzle/20260227183521_parent-id-on-delete-set-null/migration.sql +55 -0
- package/drizzle/20260227183521_parent-id-on-delete-set-null/snapshot.json +2278 -0
- package/drizzle/20260227200430_numerous_mysterio/migration.sql +3 -0
- package/drizzle/20260227200430_numerous_mysterio/snapshot.json +2323 -0
- package/package.json +20 -14
- package/packages/ct-skills/dispatch-config.json +404 -0
- package/packages/ct-skills/index.d.ts +178 -0
- package/packages/ct-skills/index.js +405 -0
- package/packages/ct-skills/package.json +16 -0
- package/packages/ct-skills/profiles/core.json +7 -0
- package/packages/ct-skills/profiles/full.json +11 -0
- package/packages/ct-skills/profiles/minimal.json +7 -0
- package/packages/ct-skills/profiles/recommended.json +7 -0
- package/packages/ct-skills/protocols/agent-protocol.md +260 -0
- package/packages/ct-skills/protocols/artifact-publish.md +587 -0
- package/packages/ct-skills/protocols/consensus.md +309 -0
- package/packages/ct-skills/protocols/contribution.md +375 -0
- package/packages/ct-skills/protocols/decomposition.md +352 -0
- package/packages/ct-skills/protocols/implementation.md +344 -0
- package/packages/ct-skills/protocols/provenance.md +600 -0
- package/packages/ct-skills/protocols/release.md +635 -0
- package/packages/ct-skills/protocols/research.md +248 -0
- package/packages/ct-skills/protocols/specification.md +287 -0
- package/packages/ct-skills/protocols/testing.md +346 -0
- package/packages/ct-skills/protocols/validation.md +229 -0
- package/packages/ct-skills/skills/_shared/cleo-style-guide.md +84 -0
- package/packages/ct-skills/skills/_shared/manifest-operations.md +810 -0
- package/packages/ct-skills/skills/_shared/placeholders.json +433 -0
- package/packages/ct-skills/skills/_shared/skill-chaining-patterns.md +240 -0
- package/packages/ct-skills/skills/_shared/subagent-protocol-base.md +221 -0
- package/packages/ct-skills/skills/_shared/task-system-integration.md +232 -0
- package/packages/ct-skills/skills/_shared/testing-framework-config.md +110 -0
- package/packages/ct-skills/skills/ct-cleo/SKILL.md +169 -0
- package/packages/ct-skills/skills/ct-cleo/references/anti-patterns.md +19 -0
- package/packages/ct-skills/skills/ct-cleo/references/orchestrator-constraints.md +55 -0
- package/packages/ct-skills/skills/ct-cleo/references/rcsd-lifecycle.md +127 -0
- package/packages/ct-skills/skills/ct-cleo/references/session-protocol.md +162 -0
- package/packages/ct-skills/skills/ct-contribution/SKILL.md +521 -0
- package/packages/ct-skills/skills/ct-contribution/templates/contribution-init.json +21 -0
- package/packages/ct-skills/skills/ct-dev-workflow/SKILL.md +423 -0
- package/packages/ct-skills/skills/ct-docs-lookup/SKILL.md +66 -0
- package/packages/ct-skills/skills/ct-docs-review/SKILL.md +175 -0
- package/packages/ct-skills/skills/ct-docs-write/SKILL.md +108 -0
- package/packages/ct-skills/skills/ct-documentor/SKILL.md +231 -0
- package/packages/ct-skills/skills/ct-epic-architect/SKILL.md +305 -0
- package/packages/ct-skills/skills/ct-epic-architect/references/bug-epic-example.md +172 -0
- package/packages/ct-skills/skills/ct-epic-architect/references/commands.md +201 -0
- package/packages/ct-skills/skills/ct-epic-architect/references/feature-epic-example.md +210 -0
- package/packages/ct-skills/skills/ct-epic-architect/references/migration-epic-example.md +244 -0
- package/packages/ct-skills/skills/ct-epic-architect/references/output-format.md +92 -0
- package/packages/ct-skills/skills/ct-epic-architect/references/patterns.md +284 -0
- package/packages/ct-skills/skills/ct-epic-architect/references/refactor-epic-example.md +412 -0
- package/packages/ct-skills/skills/ct-epic-architect/references/research-epic-example.md +226 -0
- package/packages/ct-skills/skills/ct-epic-architect/references/shell-escaping.md +86 -0
- package/packages/ct-skills/skills/ct-epic-architect/references/skill-aware-execution.md +195 -0
- package/packages/ct-skills/skills/ct-gitbook/SKILL.md +516 -0
- package/packages/ct-skills/skills/ct-gitbook/assets/SUMMARY.md +28 -0
- package/packages/ct-skills/skills/ct-gitbook/assets/gitbook.yaml +14 -0
- package/packages/ct-skills/skills/ct-gitbook/references/api-sdk.md +318 -0
- package/packages/ct-skills/skills/ct-gitbook/references/auth-sso.md +208 -0
- package/packages/ct-skills/skills/ct-gitbook/references/change-requests.md +169 -0
- package/packages/ct-skills/skills/ct-gitbook/references/content-blocks.md +230 -0
- package/packages/ct-skills/skills/ct-gitbook/references/docs-sites.md +202 -0
- package/packages/ct-skills/skills/ct-gitbook/references/git-sync.md +175 -0
- package/packages/ct-skills/skills/ct-gitbook/references/llm-ready.md +178 -0
- package/packages/ct-skills/skills/ct-gitbook/references/migration.md +263 -0
- package/packages/ct-skills/skills/ct-library-implementer-bash/SKILL.md +316 -0
- package/packages/ct-skills/skills/ct-orchestrator/INSTALL.md +61 -0
- package/packages/ct-skills/skills/ct-orchestrator/README.md +69 -0
- package/packages/ct-skills/skills/ct-orchestrator/SKILL.md +330 -0
- package/packages/ct-skills/skills/ct-orchestrator/references/SUBAGENT-PROTOCOL-BLOCK.md +66 -0
- package/packages/ct-skills/skills/ct-orchestrator/references/autonomous-operation.md +167 -0
- package/packages/ct-skills/skills/ct-orchestrator/references/lifecycle-gates.md +98 -0
- package/packages/ct-skills/skills/ct-orchestrator/references/orchestrator-compliance.md +271 -0
- package/packages/ct-skills/skills/ct-orchestrator/references/orchestrator-handoffs.md +85 -0
- package/packages/ct-skills/skills/ct-orchestrator/references/orchestrator-patterns.md +164 -0
- package/packages/ct-skills/skills/ct-orchestrator/references/orchestrator-recovery.md +113 -0
- package/packages/ct-skills/skills/ct-orchestrator/references/orchestrator-spawning.md +271 -0
- package/packages/ct-skills/skills/ct-orchestrator/references/orchestrator-tokens.md +180 -0
- package/packages/ct-skills/skills/ct-research-agent/SKILL.md +226 -0
- package/packages/ct-skills/skills/ct-skill-creator/SKILL.md +368 -0
- package/packages/ct-skills/skills/ct-skill-creator/references/output-patterns.md +86 -0
- package/packages/ct-skills/skills/ct-skill-creator/references/workflows.md +28 -0
- package/packages/ct-skills/skills/ct-skill-creator/scripts/init_skill.py +300 -0
- package/packages/ct-skills/skills/ct-skill-creator/scripts/package_skill.py +110 -0
- package/packages/ct-skills/skills/ct-skill-creator/scripts/quick_validate.py +97 -0
- package/packages/ct-skills/skills/ct-skill-lookup/SKILL.md +179 -0
- package/packages/ct-skills/skills/ct-spec-writer/SKILL.md +189 -0
- package/packages/ct-skills/skills/ct-task-executor/SKILL.md +296 -0
- package/packages/ct-skills/skills/ct-test-writer-bats/SKILL.md +347 -0
- package/packages/ct-skills/skills/ct-validator/SKILL.md +216 -0
- package/packages/ct-skills/skills/manifest.json +1199 -0
- package/packages/ct-skills/skills/railway-platform/SKILL.md +506 -0
- package/packages/ct-skills/skills/railway-platform/_shared/scripts/railway-api.sh +180 -0
- package/packages/ct-skills/skills/railway-platform/_shared/scripts/railway-common.sh +262 -0
- package/packages/ct-skills/skills/railway-platform/references/01-getting-started.md +149 -0
- package/packages/ct-skills/skills/railway-platform/references/02-projects.md +116 -0
- package/packages/ct-skills/skills/railway-platform/references/03-services.md +147 -0
- package/packages/ct-skills/skills/railway-platform/references/04-deployments.md +210 -0
- package/packages/ct-skills/skills/railway-platform/references/05-databases.md +142 -0
- package/packages/ct-skills/skills/railway-platform/references/06-environments.md +261 -0
- package/packages/ct-skills/skills/railway-platform/references/07-domains.md +139 -0
- package/packages/ct-skills/skills/railway-platform/references/08-volumes.md +533 -0
- package/packages/ct-skills/skills/railway-platform/references/09-networking.md +592 -0
- package/packages/ct-skills/skills/railway-platform/references/10-cron.md +488 -0
- package/packages/ct-skills/skills/railway-platform/references/11-functions.md +170 -0
- package/packages/ct-skills/skills/railway-platform/references/12-monorepo.md +294 -0
- package/packages/ct-skills/skills/railway-platform/references/13-troubleshooting.md +335 -0
- package/packages/ct-skills/skills/railway-platform/references/14-railway-metal.md +197 -0
- package/packages/ct-skills/skills.json +5 -0
- package/schemas/adr-frontmatter.schema.json +72 -0
- package/schemas/archive/agent-configs.schema.json +120 -0
- package/schemas/archive/agent-registry.schema.json +132 -0
- package/schemas/archive/archive.schema.json +450 -0
- package/schemas/archive/claudedocs-frontmatter.schema.json +162 -0
- package/schemas/archive/commands-index.schema.json +158 -0
- package/schemas/archive/contribution.schema.json +722 -0
- package/schemas/archive/critical-path.schema.json +246 -0
- package/schemas/archive/deps-cache.schema.json +97 -0
- package/schemas/archive/doctor-output.schema.json +283 -0
- package/schemas/archive/error.schema.json +161 -0
- package/schemas/archive/export-package.schema.json +375 -0
- package/schemas/archive/global-config.schema.json +219 -0
- package/schemas/archive/log.schema.json +250 -0
- package/schemas/archive/metrics.schema.json +328 -0
- package/schemas/archive/migrations.schema.json +150 -0
- package/schemas/archive/nexus-registry.schema.json +90 -0
- package/schemas/archive/output.schema.json +164 -0
- package/schemas/archive/rcsd-consensus-report.schema.json +491 -0
- package/schemas/archive/rcsd-hitl-resolution.schema.json +216 -0
- package/schemas/archive/rcsd-index.schema.json +384 -0
- package/schemas/archive/rcsd-manifest.schema.json +264 -0
- package/schemas/archive/rcsd-research-output.schema.json +564 -0
- package/schemas/archive/rcsd-spec-frontmatter.schema.json +225 -0
- package/schemas/archive/releases.schema.json +267 -0
- package/schemas/archive/skills-manifest.schema.json +91 -0
- package/schemas/archive/skillsmp.schema.json +208 -0
- package/schemas/archive/spec-index.schema.json +196 -0
- package/schemas/archive/todo.schema.json +995 -0
- package/schemas/brain-decision.schema.json +69 -0
- package/schemas/brain-learning.schema.json +57 -0
- package/schemas/brain-pattern.schema.json +72 -0
- package/schemas/config.schema.json +33 -1
- package/schemas/grade.schema.json +49 -0
- package/schemas/project-info.schema.json +17 -7
- package/schemas/protocol-frontmatter.schema.json +72 -0
- package/schemas/rcasd-consensus-report.schema.json +10 -0
- package/schemas/rcasd-evidence.schema.json +42 -0
- package/schemas/rcasd-gate-result.schema.json +46 -0
- package/schemas/rcasd-hitl-resolution.schema.json +10 -0
- package/schemas/rcasd-index.schema.json +10 -0
- package/schemas/rcasd-manifest.schema.json +10 -0
- package/schemas/rcasd-research-output.schema.json +10 -0
- package/schemas/rcasd-spec-frontmatter.schema.json +10 -0
- package/schemas/rcasd-stage-transition.schema.json +38 -0
- package/schemas/rcsd-consensus-report.schema.json +4 -1
- package/schemas/rcsd-hitl-resolution.schema.json +4 -1
- package/schemas/rcsd-index.schema.json +4 -1
- package/schemas/rcsd-manifest.schema.json +4 -1
- package/schemas/rcsd-research-output.schema.json +4 -1
- package/skills/_shared/manifest-operations.md +1 -1
- package/skills/_shared/placeholders.json +3 -3
- package/skills/_shared/subagent-protocol-base.md +3 -3
- package/skills/_shared/task-system-integration.md +10 -10
- package/templates/AGENT-INJECTION.md +7 -7
- package/templates/CLEO-INJECTION.md +101 -393
- package/templates/README.md +2 -2
- package/templates/agents/BASE-SUBAGENT-PROTOCOL.md +4 -4
- package/templates/agents/README.md +4 -4
- package/templates/agents/cleo-subagent.md +4 -4
- package/templates/cleo-gitignore +4 -1
- package/templates/config.template.json +1 -1
- package/templates/git-hooks/commit-msg +187 -0
- package/templates/git-hooks/pre-commit +40 -0
- package/templates/todo.template.json +0 -1
- package/dist/cli/commands/add.d.ts +0 -12
- package/dist/cli/commands/add.d.ts.map +0 -1
- package/dist/cli/commands/add.js +0 -74
- package/dist/cli/commands/add.js.map +0 -1
- package/dist/cli/commands/analyze.d.ts +0 -12
- package/dist/cli/commands/analyze.d.ts.map +0 -1
- package/dist/cli/commands/analyze.js +0 -37
- package/dist/cli/commands/analyze.js.map +0 -1
- package/dist/cli/commands/archive-stats.d.ts +0 -26
- package/dist/cli/commands/archive-stats.d.ts.map +0 -1
- package/dist/cli/commands/archive-stats.js +0 -291
- package/dist/cli/commands/archive-stats.js.map +0 -1
- package/dist/cli/commands/archive.d.ts +0 -12
- package/dist/cli/commands/archive.d.ts.map +0 -1
- package/dist/cli/commands/archive.js +0 -43
- package/dist/cli/commands/archive.js.map +0 -1
- package/dist/cli/commands/backup.d.ts +0 -7
- package/dist/cli/commands/backup.d.ts.map +0 -1
- package/dist/cli/commands/backup.js +0 -122
- package/dist/cli/commands/backup.js.map +0 -1
- package/dist/cli/commands/blockers.d.ts +0 -7
- package/dist/cli/commands/blockers.d.ts.map +0 -1
- package/dist/cli/commands/blockers.js +0 -107
- package/dist/cli/commands/blockers.js.map +0 -1
- package/dist/cli/commands/checkpoint.d.ts +0 -13
- package/dist/cli/commands/checkpoint.d.ts.map +0 -1
- package/dist/cli/commands/checkpoint.js +0 -185
- package/dist/cli/commands/checkpoint.js.map +0 -1
- package/dist/cli/commands/claude-migrate.d.ts +0 -13
- package/dist/cli/commands/claude-migrate.d.ts.map +0 -1
- package/dist/cli/commands/claude-migrate.js +0 -355
- package/dist/cli/commands/claude-migrate.js.map +0 -1
- package/dist/cli/commands/commands.d.ts +0 -13
- package/dist/cli/commands/commands.d.ts.map +0 -1
- package/dist/cli/commands/commands.js +0 -114
- package/dist/cli/commands/commands.js.map +0 -1
- package/dist/cli/commands/complete.d.ts +0 -12
- package/dist/cli/commands/complete.d.ts.map +0 -1
- package/dist/cli/commands/complete.js +0 -45
- package/dist/cli/commands/complete.js.map +0 -1
- package/dist/cli/commands/compliance.d.ts +0 -12
- package/dist/cli/commands/compliance.d.ts.map +0 -1
- package/dist/cli/commands/compliance.js +0 -152
- package/dist/cli/commands/compliance.js.map +0 -1
- package/dist/cli/commands/config.d.ts +0 -7
- package/dist/cli/commands/config.d.ts.map +0 -1
- package/dist/cli/commands/config.js +0 -107
- package/dist/cli/commands/config.js.map +0 -1
- package/dist/cli/commands/consensus.d.ts +0 -12
- package/dist/cli/commands/consensus.d.ts.map +0 -1
- package/dist/cli/commands/consensus.js +0 -61
- package/dist/cli/commands/consensus.js.map +0 -1
- package/dist/cli/commands/context.d.ts +0 -12
- package/dist/cli/commands/context.d.ts.map +0 -1
- package/dist/cli/commands/context.js +0 -76
- package/dist/cli/commands/context.js.map +0 -1
- package/dist/cli/commands/contribution.d.ts +0 -12
- package/dist/cli/commands/contribution.d.ts.map +0 -1
- package/dist/cli/commands/contribution.js +0 -57
- package/dist/cli/commands/contribution.js.map +0 -1
- package/dist/cli/commands/current.d.ts +0 -13
- package/dist/cli/commands/current.d.ts.map +0 -1
- package/dist/cli/commands/current.js +0 -35
- package/dist/cli/commands/current.js.map +0 -1
- package/dist/cli/commands/dash.d.ts +0 -12
- package/dist/cli/commands/dash.d.ts.map +0 -1
- package/dist/cli/commands/dash.js +0 -44
- package/dist/cli/commands/dash.js.map +0 -1
- package/dist/cli/commands/decomposition.d.ts +0 -12
- package/dist/cli/commands/decomposition.d.ts.map +0 -1
- package/dist/cli/commands/decomposition.js +0 -61
- package/dist/cli/commands/decomposition.js.map +0 -1
- package/dist/cli/commands/delete.d.ts +0 -12
- package/dist/cli/commands/delete.d.ts.map +0 -1
- package/dist/cli/commands/delete.js +0 -45
- package/dist/cli/commands/delete.js.map +0 -1
- package/dist/cli/commands/deps.d.ts +0 -17
- package/dist/cli/commands/deps.d.ts.map +0 -1
- package/dist/cli/commands/deps.js +0 -139
- package/dist/cli/commands/deps.js.map +0 -1
- package/dist/cli/commands/detect-drift.d.ts +0 -8
- package/dist/cli/commands/detect-drift.d.ts.map +0 -1
- package/dist/cli/commands/detect-drift.js +0 -202
- package/dist/cli/commands/detect-drift.js.map +0 -1
- package/dist/cli/commands/docs.d.ts +0 -13
- package/dist/cli/commands/docs.d.ts.map +0 -1
- package/dist/cli/commands/docs.js +0 -167
- package/dist/cli/commands/docs.js.map +0 -1
- package/dist/cli/commands/doctor.d.ts +0 -7
- package/dist/cli/commands/doctor.d.ts.map +0 -1
- package/dist/cli/commands/doctor.js +0 -215
- package/dist/cli/commands/doctor.js.map +0 -1
- package/dist/cli/commands/env.d.ts +0 -12
- package/dist/cli/commands/env.d.ts.map +0 -1
- package/dist/cli/commands/env.js +0 -167
- package/dist/cli/commands/env.js.map +0 -1
- package/dist/cli/commands/exists.d.ts +0 -7
- package/dist/cli/commands/exists.d.ts.map +0 -1
- package/dist/cli/commands/exists.js +0 -78
- package/dist/cli/commands/exists.js.map +0 -1
- package/dist/cli/commands/export-tasks.d.ts +0 -13
- package/dist/cli/commands/export-tasks.d.ts.map +0 -1
- package/dist/cli/commands/export-tasks.js +0 -214
- package/dist/cli/commands/export-tasks.js.map +0 -1
- package/dist/cli/commands/export.d.ts +0 -7
- package/dist/cli/commands/export.d.ts.map +0 -1
- package/dist/cli/commands/export.js +0 -144
- package/dist/cli/commands/export.js.map +0 -1
- package/dist/cli/commands/extract.d.ts +0 -13
- package/dist/cli/commands/extract.d.ts.map +0 -1
- package/dist/cli/commands/extract.js +0 -208
- package/dist/cli/commands/extract.js.map +0 -1
- package/dist/cli/commands/find.d.ts +0 -14
- package/dist/cli/commands/find.d.ts.map +0 -1
- package/dist/cli/commands/find.js +0 -62
- package/dist/cli/commands/find.js.map +0 -1
- package/dist/cli/commands/focus.d.ts +0 -19
- package/dist/cli/commands/focus.d.ts.map +0 -1
- package/dist/cli/commands/focus.js +0 -95
- package/dist/cli/commands/focus.js.map +0 -1
- package/dist/cli/commands/generate-changelog.d.ts +0 -14
- package/dist/cli/commands/generate-changelog.d.ts.map +0 -1
- package/dist/cli/commands/generate-changelog.js +0 -252
- package/dist/cli/commands/generate-changelog.js.map +0 -1
- package/dist/cli/commands/history.d.ts +0 -12
- package/dist/cli/commands/history.d.ts.map +0 -1
- package/dist/cli/commands/history.js +0 -40
- package/dist/cli/commands/history.js.map +0 -1
- package/dist/cli/commands/implementation.d.ts +0 -12
- package/dist/cli/commands/implementation.d.ts.map +0 -1
- package/dist/cli/commands/implementation.js +0 -57
- package/dist/cli/commands/implementation.js.map +0 -1
- package/dist/cli/commands/import-tasks.d.ts +0 -13
- package/dist/cli/commands/import-tasks.d.ts.map +0 -1
- package/dist/cli/commands/import-tasks.js +0 -219
- package/dist/cli/commands/import-tasks.js.map +0 -1
- package/dist/cli/commands/import.d.ts +0 -7
- package/dist/cli/commands/import.d.ts.map +0 -1
- package/dist/cli/commands/import.js +0 -162
- package/dist/cli/commands/import.js.map +0 -1
- package/dist/cli/commands/init.d.ts +0 -34
- package/dist/cli/commands/init.d.ts.map +0 -1
- package/dist/cli/commands/init.js +0 -88
- package/dist/cli/commands/init.js.map +0 -1
- package/dist/cli/commands/inject.d.ts +0 -12
- package/dist/cli/commands/inject.d.ts.map +0 -1
- package/dist/cli/commands/inject.js +0 -45
- package/dist/cli/commands/inject.js.map +0 -1
- package/dist/cli/commands/issue.d.ts +0 -14
- package/dist/cli/commands/issue.d.ts.map +0 -1
- package/dist/cli/commands/issue.js +0 -256
- package/dist/cli/commands/issue.js.map +0 -1
- package/dist/cli/commands/labels.d.ts +0 -12
- package/dist/cli/commands/labels.d.ts.map +0 -1
- package/dist/cli/commands/labels.js +0 -89
- package/dist/cli/commands/labels.js.map +0 -1
- package/dist/cli/commands/lifecycle.d.ts +0 -12
- package/dist/cli/commands/lifecycle.d.ts.map +0 -1
- package/dist/cli/commands/lifecycle.js +0 -108
- package/dist/cli/commands/lifecycle.js.map +0 -1
- package/dist/cli/commands/list.d.ts +0 -14
- package/dist/cli/commands/list.d.ts.map +0 -1
- package/dist/cli/commands/list.js +0 -65
- package/dist/cli/commands/list.js.map +0 -1
- package/dist/cli/commands/log.d.ts +0 -12
- package/dist/cli/commands/log.d.ts.map +0 -1
- package/dist/cli/commands/log.js +0 -43
- package/dist/cli/commands/log.js.map +0 -1
- package/dist/cli/commands/mcp-install.d.ts +0 -17
- package/dist/cli/commands/mcp-install.d.ts.map +0 -1
- package/dist/cli/commands/mcp-install.js +0 -125
- package/dist/cli/commands/mcp-install.js.map +0 -1
- package/dist/cli/commands/migrate-storage.d.ts +0 -19
- package/dist/cli/commands/migrate-storage.d.ts.map +0 -1
- package/dist/cli/commands/migrate-storage.js +0 -494
- package/dist/cli/commands/migrate-storage.js.map +0 -1
- package/dist/cli/commands/migrate.d.ts +0 -12
- package/dist/cli/commands/migrate.d.ts.map +0 -1
- package/dist/cli/commands/migrate.js +0 -62
- package/dist/cli/commands/migrate.js.map +0 -1
- package/dist/cli/commands/next.d.ts +0 -7
- package/dist/cli/commands/next.d.ts.map +0 -1
- package/dist/cli/commands/next.js +0 -124
- package/dist/cli/commands/next.js.map +0 -1
- package/dist/cli/commands/nexus.d.ts +0 -19
- package/dist/cli/commands/nexus.d.ts.map +0 -1
- package/dist/cli/commands/nexus.js +0 -440
- package/dist/cli/commands/nexus.js.map +0 -1
- package/dist/cli/commands/orchestrate.d.ts +0 -12
- package/dist/cli/commands/orchestrate.d.ts.map +0 -1
- package/dist/cli/commands/orchestrate.js +0 -141
- package/dist/cli/commands/orchestrate.js.map +0 -1
- package/dist/cli/commands/otel.d.ts +0 -12
- package/dist/cli/commands/otel.d.ts.map +0 -1
- package/dist/cli/commands/otel.js +0 -130
- package/dist/cli/commands/otel.js.map +0 -1
- package/dist/cli/commands/phase.d.ts +0 -12
- package/dist/cli/commands/phase.d.ts.map +0 -1
- package/dist/cli/commands/phase.js +0 -161
- package/dist/cli/commands/phase.js.map +0 -1
- package/dist/cli/commands/phases.d.ts +0 -12
- package/dist/cli/commands/phases.d.ts.map +0 -1
- package/dist/cli/commands/phases.js +0 -67
- package/dist/cli/commands/phases.js.map +0 -1
- package/dist/cli/commands/promote.d.ts +0 -7
- package/dist/cli/commands/promote.d.ts.map +0 -1
- package/dist/cli/commands/promote.js +0 -64
- package/dist/cli/commands/promote.js.map +0 -1
- package/dist/cli/commands/relates.d.ts +0 -12
- package/dist/cli/commands/relates.d.ts.map +0 -1
- package/dist/cli/commands/relates.js +0 -91
- package/dist/cli/commands/relates.js.map +0 -1
- package/dist/cli/commands/release.d.ts +0 -12
- package/dist/cli/commands/release.d.ts.map +0 -1
- package/dist/cli/commands/release.js +0 -142
- package/dist/cli/commands/release.js.map +0 -1
- package/dist/cli/commands/reopen.d.ts +0 -7
- package/dist/cli/commands/reopen.d.ts.map +0 -1
- package/dist/cli/commands/reopen.js +0 -83
- package/dist/cli/commands/reopen.js.map +0 -1
- package/dist/cli/commands/reorder.d.ts +0 -7
- package/dist/cli/commands/reorder.d.ts.map +0 -1
- package/dist/cli/commands/reorder.js +0 -106
- package/dist/cli/commands/reorder.js.map +0 -1
- package/dist/cli/commands/reparent.d.ts +0 -10
- package/dist/cli/commands/reparent.d.ts.map +0 -1
- package/dist/cli/commands/reparent.js +0 -53
- package/dist/cli/commands/reparent.js.map +0 -1
- package/dist/cli/commands/research.d.ts +0 -12
- package/dist/cli/commands/research.d.ts.map +0 -1
- package/dist/cli/commands/research.js +0 -220
- package/dist/cli/commands/research.js.map +0 -1
- package/dist/cli/commands/restore.d.ts +0 -7
- package/dist/cli/commands/restore.d.ts.map +0 -1
- package/dist/cli/commands/restore.js +0 -202
- package/dist/cli/commands/restore.js.map +0 -1
- package/dist/cli/commands/roadmap.d.ts +0 -12
- package/dist/cli/commands/roadmap.d.ts.map +0 -1
- package/dist/cli/commands/roadmap.js +0 -37
- package/dist/cli/commands/roadmap.js.map +0 -1
- package/dist/cli/commands/safestop.d.ts +0 -13
- package/dist/cli/commands/safestop.d.ts.map +0 -1
- package/dist/cli/commands/safestop.js +0 -217
- package/dist/cli/commands/safestop.js.map +0 -1
- package/dist/cli/commands/self-update.d.ts +0 -15
- package/dist/cli/commands/self-update.d.ts.map +0 -1
- package/dist/cli/commands/self-update.js +0 -195
- package/dist/cli/commands/self-update.js.map +0 -1
- package/dist/cli/commands/sequence.d.ts +0 -12
- package/dist/cli/commands/sequence.d.ts.map +0 -1
- package/dist/cli/commands/sequence.js +0 -67
- package/dist/cli/commands/sequence.js.map +0 -1
- package/dist/cli/commands/session.d.ts +0 -12
- package/dist/cli/commands/session.d.ts.map +0 -1
- package/dist/cli/commands/session.js +0 -150
- package/dist/cli/commands/session.js.map +0 -1
- package/dist/cli/commands/show.d.ts +0 -13
- package/dist/cli/commands/show.d.ts.map +0 -1
- package/dist/cli/commands/show.js +0 -35
- package/dist/cli/commands/show.js.map +0 -1
- package/dist/cli/commands/skills.d.ts +0 -13
- package/dist/cli/commands/skills.d.ts.map +0 -1
- package/dist/cli/commands/skills.js +0 -215
- package/dist/cli/commands/skills.js.map +0 -1
- package/dist/cli/commands/specification.d.ts +0 -12
- package/dist/cli/commands/specification.d.ts.map +0 -1
- package/dist/cli/commands/specification.js +0 -61
- package/dist/cli/commands/specification.js.map +0 -1
- package/dist/cli/commands/start.d.ts +0 -13
- package/dist/cli/commands/start.d.ts.map +0 -1
- package/dist/cli/commands/start.js +0 -35
- package/dist/cli/commands/start.js.map +0 -1
- package/dist/cli/commands/stats.d.ts +0 -12
- package/dist/cli/commands/stats.d.ts.map +0 -1
- package/dist/cli/commands/stats.js +0 -37
- package/dist/cli/commands/stats.js.map +0 -1
- package/dist/cli/commands/stop.d.ts +0 -13
- package/dist/cli/commands/stop.d.ts.map +0 -1
- package/dist/cli/commands/stop.js +0 -35
- package/dist/cli/commands/stop.js.map +0 -1
- package/dist/cli/commands/sync.d.ts +0 -13
- package/dist/cli/commands/sync.d.ts.map +0 -1
- package/dist/cli/commands/sync.js +0 -129
- package/dist/cli/commands/sync.js.map +0 -1
- package/dist/cli/commands/testing.d.ts +0 -13
- package/dist/cli/commands/testing.d.ts.map +0 -1
- package/dist/cli/commands/testing.js +0 -160
- package/dist/cli/commands/testing.js.map +0 -1
- package/dist/cli/commands/unarchive.d.ts +0 -7
- package/dist/cli/commands/unarchive.d.ts.map +0 -1
- package/dist/cli/commands/unarchive.js +0 -93
- package/dist/cli/commands/unarchive.js.map +0 -1
- package/dist/cli/commands/uncancel.d.ts +0 -7
- package/dist/cli/commands/uncancel.d.ts.map +0 -1
- package/dist/cli/commands/uncancel.js +0 -93
- package/dist/cli/commands/uncancel.js.map +0 -1
- package/dist/cli/commands/update.d.ts +0 -12
- package/dist/cli/commands/update.d.ts.map +0 -1
- package/dist/cli/commands/update.js +0 -74
- package/dist/cli/commands/update.js.map +0 -1
- package/dist/cli/commands/upgrade.d.ts +0 -15
- package/dist/cli/commands/upgrade.d.ts.map +0 -1
- package/dist/cli/commands/upgrade.js +0 -59
- package/dist/cli/commands/upgrade.js.map +0 -1
- package/dist/cli/commands/validate.d.ts +0 -9
- package/dist/cli/commands/validate.d.ts.map +0 -1
- package/dist/cli/commands/validate.js +0 -211
- package/dist/cli/commands/validate.js.map +0 -1
- package/dist/cli/commands/verify.d.ts +0 -7
- package/dist/cli/commands/verify.d.ts.map +0 -1
- package/dist/cli/commands/verify.js +0 -153
- package/dist/cli/commands/verify.js.map +0 -1
- package/dist/cli/commands/web.d.ts +0 -13
- package/dist/cli/commands/web.d.ts.map +0 -1
- package/dist/cli/commands/web.js +0 -281
- package/dist/cli/commands/web.js.map +0 -1
- package/dist/cli/format-context.d.ts +0 -32
- package/dist/cli/format-context.d.ts.map +0 -1
- package/dist/cli/format-context.js +0 -50
- package/dist/cli/format-context.js.map +0 -1
- package/dist/cli/index.d.ts +0 -7
- package/dist/cli/index.d.ts.map +0 -1
- package/dist/cli/middleware/output-format.d.ts +0 -30
- package/dist/cli/middleware/output-format.d.ts.map +0 -1
- package/dist/cli/middleware/output-format.js +0 -35
- package/dist/cli/middleware/output-format.js.map +0 -1
- package/dist/cli/renderers/colors.d.ts +0 -41
- package/dist/cli/renderers/colors.d.ts.map +0 -1
- package/dist/cli/renderers/colors.js +0 -120
- package/dist/cli/renderers/colors.js.map +0 -1
- package/dist/cli/renderers/index.d.ts +0 -47
- package/dist/cli/renderers/index.d.ts.map +0 -1
- package/dist/cli/renderers/index.js +0 -103
- package/dist/cli/renderers/index.js.map +0 -1
- package/dist/cli/renderers/system.d.ts +0 -24
- package/dist/cli/renderers/system.d.ts.map +0 -1
- package/dist/cli/renderers/system.js +0 -317
- package/dist/cli/renderers/system.js.map +0 -1
- package/dist/cli/renderers/tasks.d.ts +0 -28
- package/dist/cli/renderers/tasks.d.ts.map +0 -1
- package/dist/cli/renderers/tasks.js +0 -307
- package/dist/cli/renderers/tasks.js.map +0 -1
- package/dist/core/caamp/adapter.d.ts +0 -141
- package/dist/core/caamp/adapter.d.ts.map +0 -1
- package/dist/core/caamp/adapter.js +0 -437
- package/dist/core/caamp/adapter.js.map +0 -1
- package/dist/core/caamp/index.d.ts +0 -11
- package/dist/core/caamp/index.d.ts.map +0 -1
- package/dist/core/caamp/index.js +0 -21
- package/dist/core/caamp/index.js.map +0 -1
- package/dist/core/compliance/index.d.ts +0 -38
- package/dist/core/compliance/index.d.ts.map +0 -1
- package/dist/core/compliance/index.js +0 -229
- package/dist/core/compliance/index.js.map +0 -1
- package/dist/core/config.d.ts +0 -20
- package/dist/core/config.d.ts.map +0 -1
- package/dist/core/config.js +0 -179
- package/dist/core/config.js.map +0 -1
- package/dist/core/context/index.d.ts +0 -20
- package/dist/core/context/index.d.ts.map +0 -1
- package/dist/core/context/index.js +0 -137
- package/dist/core/context/index.js.map +0 -1
- package/dist/core/error-registry.d.ts +0 -54
- package/dist/core/error-registry.d.ts.map +0 -1
- package/dist/core/error-registry.js +0 -109
- package/dist/core/error-registry.js.map +0 -1
- package/dist/core/errors.d.ts +0 -38
- package/dist/core/errors.d.ts.map +0 -1
- package/dist/core/errors.js +0 -105
- package/dist/core/errors.js.map +0 -1
- package/dist/core/focus/index.d.ts +0 -46
- package/dist/core/focus/index.d.ts.map +0 -1
- package/dist/core/focus/index.js +0 -118
- package/dist/core/focus/index.js.map +0 -1
- package/dist/core/index.d.ts +0 -14
- package/dist/core/index.d.ts.map +0 -1
- package/dist/core/index.js +0 -12
- package/dist/core/index.js.map +0 -1
- package/dist/core/init.d.ts +0 -76
- package/dist/core/init.d.ts.map +0 -1
- package/dist/core/init.js +0 -730
- package/dist/core/init.js.map +0 -1
- package/dist/core/inject/index.d.ts +0 -24
- package/dist/core/inject/index.d.ts.map +0 -1
- package/dist/core/inject/index.js +0 -84
- package/dist/core/inject/index.js.map +0 -1
- package/dist/core/issue/index.d.ts +0 -9
- package/dist/core/issue/index.d.ts.map +0 -1
- package/dist/core/issue/index.js +0 -8
- package/dist/core/issue/index.js.map +0 -1
- package/dist/core/issue/template-parser.d.ts +0 -45
- package/dist/core/issue/template-parser.d.ts.map +0 -1
- package/dist/core/issue/template-parser.js +0 -178
- package/dist/core/issue/template-parser.js.map +0 -1
- package/dist/core/lifecycle/index.d.ts +0 -71
- package/dist/core/lifecycle/index.d.ts.map +0 -1
- package/dist/core/lifecycle/index.js +0 -213
- package/dist/core/lifecycle/index.js.map +0 -1
- package/dist/core/log/index.d.ts +0 -15
- package/dist/core/log/index.d.ts.map +0 -1
- package/dist/core/log/index.js +0 -33
- package/dist/core/log/index.js.map +0 -1
- package/dist/core/mcp/index.d.ts +0 -37
- package/dist/core/mcp/index.d.ts.map +0 -1
- package/dist/core/mcp/index.js +0 -73
- package/dist/core/mcp/index.js.map +0 -1
- package/dist/core/metrics/ab-test.d.ts +0 -52
- package/dist/core/metrics/ab-test.d.ts.map +0 -1
- package/dist/core/metrics/ab-test.js +0 -261
- package/dist/core/metrics/ab-test.js.map +0 -1
- package/dist/core/metrics/aggregation.d.ts +0 -41
- package/dist/core/metrics/aggregation.d.ts.map +0 -1
- package/dist/core/metrics/aggregation.js +0 -353
- package/dist/core/metrics/aggregation.js.map +0 -1
- package/dist/core/metrics/common.d.ts +0 -30
- package/dist/core/metrics/common.d.ts.map +0 -1
- package/dist/core/metrics/common.js +0 -64
- package/dist/core/metrics/common.js.map +0 -1
- package/dist/core/metrics/enums.d.ts +0 -68
- package/dist/core/metrics/enums.d.ts.map +0 -1
- package/dist/core/metrics/enums.js +0 -78
- package/dist/core/metrics/enums.js.map +0 -1
- package/dist/core/metrics/index.d.ts +0 -17
- package/dist/core/metrics/index.d.ts.map +0 -1
- package/dist/core/metrics/index.js +0 -19
- package/dist/core/metrics/index.js.map +0 -1
- package/dist/core/metrics/otel-integration.d.ts +0 -49
- package/dist/core/metrics/otel-integration.d.ts.map +0 -1
- package/dist/core/metrics/otel-integration.js +0 -261
- package/dist/core/metrics/otel-integration.js.map +0 -1
- package/dist/core/metrics/token-estimation.d.ts +0 -70
- package/dist/core/metrics/token-estimation.d.ts.map +0 -1
- package/dist/core/metrics/token-estimation.js +0 -253
- package/dist/core/metrics/token-estimation.js.map +0 -1
- package/dist/core/migration/checksum.d.ts +0 -55
- package/dist/core/migration/checksum.d.ts.map +0 -1
- package/dist/core/migration/checksum.js +0 -90
- package/dist/core/migration/checksum.js.map +0 -1
- package/dist/core/migration/index.d.ts +0 -77
- package/dist/core/migration/index.d.ts.map +0 -1
- package/dist/core/migration/index.js +0 -278
- package/dist/core/migration/index.js.map +0 -1
- package/dist/core/migration/logger.d.ts +0 -161
- package/dist/core/migration/logger.d.ts.map +0 -1
- package/dist/core/migration/logger.js +0 -364
- package/dist/core/migration/logger.js.map +0 -1
- package/dist/core/migration/preflight.d.ts +0 -43
- package/dist/core/migration/preflight.d.ts.map +0 -1
- package/dist/core/migration/preflight.js +0 -164
- package/dist/core/migration/preflight.js.map +0 -1
- package/dist/core/migration/state.d.ts +0 -186
- package/dist/core/migration/state.d.ts.map +0 -1
- package/dist/core/migration/state.js +0 -419
- package/dist/core/migration/state.js.map +0 -1
- package/dist/core/migration/validate.d.ts +0 -57
- package/dist/core/migration/validate.d.ts.map +0 -1
- package/dist/core/migration/validate.js +0 -242
- package/dist/core/migration/validate.js.map +0 -1
- package/dist/core/nexus/deps.d.ts +0 -112
- package/dist/core/nexus/deps.d.ts.map +0 -1
- package/dist/core/nexus/deps.js +0 -394
- package/dist/core/nexus/deps.js.map +0 -1
- package/dist/core/nexus/index.d.ts +0 -14
- package/dist/core/nexus/index.d.ts.map +0 -1
- package/dist/core/nexus/index.js +0 -36
- package/dist/core/nexus/index.js.map +0 -1
- package/dist/core/nexus/permissions.d.ts +0 -75
- package/dist/core/nexus/permissions.d.ts.map +0 -1
- package/dist/core/nexus/permissions.js +0 -126
- package/dist/core/nexus/permissions.js.map +0 -1
- package/dist/core/nexus/query.d.ts +0 -55
- package/dist/core/nexus/query.d.ts.map +0 -1
- package/dist/core/nexus/query.js +0 -181
- package/dist/core/nexus/query.js.map +0 -1
- package/dist/core/nexus/registry.d.ts +0 -135
- package/dist/core/nexus/registry.d.ts.map +0 -1
- package/dist/core/nexus/registry.js +0 -296
- package/dist/core/nexus/registry.js.map +0 -1
- package/dist/core/orchestration/index.d.ts +0 -114
- package/dist/core/orchestration/index.d.ts.map +0 -1
- package/dist/core/orchestration/index.js +0 -295
- package/dist/core/orchestration/index.js.map +0 -1
- package/dist/core/orchestration/protocol-validators.d.ts +0 -94
- package/dist/core/orchestration/protocol-validators.d.ts.map +0 -1
- package/dist/core/orchestration/protocol-validators.js +0 -510
- package/dist/core/orchestration/protocol-validators.js.map +0 -1
- package/dist/core/otel/index.d.ts +0 -27
- package/dist/core/otel/index.d.ts.map +0 -1
- package/dist/core/otel/index.js +0 -126
- package/dist/core/otel/index.js.map +0 -1
- package/dist/core/output.d.ts +0 -64
- package/dist/core/output.d.ts.map +0 -1
- package/dist/core/output.js +0 -134
- package/dist/core/output.js.map +0 -1
- package/dist/core/pagination.d.ts +0 -45
- package/dist/core/pagination.d.ts.map +0 -1
- package/dist/core/pagination.js +0 -61
- package/dist/core/pagination.js.map +0 -1
- package/dist/core/paths.d.ts +0 -122
- package/dist/core/paths.d.ts.map +0 -1
- package/dist/core/paths.js +0 -269
- package/dist/core/paths.js.map +0 -1
- package/dist/core/phases/deps.d.ts +0 -142
- package/dist/core/phases/deps.d.ts.map +0 -1
- package/dist/core/phases/deps.js +0 -390
- package/dist/core/phases/deps.js.map +0 -1
- package/dist/core/phases/index.d.ts +0 -123
- package/dist/core/phases/index.d.ts.map +0 -1
- package/dist/core/phases/index.js +0 -409
- package/dist/core/phases/index.js.map +0 -1
- package/dist/core/platform.d.ts +0 -55
- package/dist/core/platform.d.ts.map +0 -1
- package/dist/core/platform.js +0 -117
- package/dist/core/platform.js.map +0 -1
- package/dist/core/release/artifacts.d.ts +0 -71
- package/dist/core/release/artifacts.d.ts.map +0 -1
- package/dist/core/release/artifacts.js +0 -412
- package/dist/core/release/artifacts.js.map +0 -1
- package/dist/core/release/ci.d.ts +0 -35
- package/dist/core/release/ci.d.ts.map +0 -1
- package/dist/core/release/ci.js +0 -162
- package/dist/core/release/ci.js.map +0 -1
- package/dist/core/release/guards.d.ts +0 -47
- package/dist/core/release/guards.d.ts.map +0 -1
- package/dist/core/release/guards.js +0 -110
- package/dist/core/release/guards.js.map +0 -1
- package/dist/core/release/index.d.ts +0 -97
- package/dist/core/release/index.d.ts.map +0 -1
- package/dist/core/release/index.js +0 -459
- package/dist/core/release/index.js.map +0 -1
- package/dist/core/release/provenance.d.ts +0 -75
- package/dist/core/release/provenance.d.ts.map +0 -1
- package/dist/core/release/provenance.js +0 -213
- package/dist/core/release/provenance.js.map +0 -1
- package/dist/core/release/release-config.d.ts +0 -55
- package/dist/core/release/release-config.d.ts.map +0 -1
- package/dist/core/release/release-config.js +0 -105
- package/dist/core/release/release-config.js.map +0 -1
- package/dist/core/release/version-bump.d.ts +0 -51
- package/dist/core/release/version-bump.d.ts.map +0 -1
- package/dist/core/release/version-bump.js +0 -251
- package/dist/core/release/version-bump.js.map +0 -1
- package/dist/core/research/index.d.ts +0 -129
- package/dist/core/research/index.d.ts.map +0 -1
- package/dist/core/research/index.js +0 -251
- package/dist/core/research/index.js.map +0 -1
- package/dist/core/roadmap/index.d.ts +0 -13
- package/dist/core/roadmap/index.d.ts.map +0 -1
- package/dist/core/roadmap/index.js +0 -63
- package/dist/core/roadmap/index.js.map +0 -1
- package/dist/core/schema.d.ts +0 -20
- package/dist/core/schema.d.ts.map +0 -1
- package/dist/core/schema.js +0 -75
- package/dist/core/schema.js.map +0 -1
- package/dist/core/sequence/index.d.ts +0 -21
- package/dist/core/sequence/index.d.ts.map +0 -1
- package/dist/core/sequence/index.js +0 -108
- package/dist/core/sequence/index.js.map +0 -1
- package/dist/core/sessions/context-alert.d.ts +0 -48
- package/dist/core/sessions/context-alert.d.ts.map +0 -1
- package/dist/core/sessions/context-alert.js +0 -222
- package/dist/core/sessions/context-alert.js.map +0 -1
- package/dist/core/sessions/context-monitor.d.ts +0 -31
- package/dist/core/sessions/context-monitor.d.ts.map +0 -1
- package/dist/core/sessions/context-monitor.js +0 -83
- package/dist/core/sessions/context-monitor.js.map +0 -1
- package/dist/core/sessions/hitl-warnings.d.ts +0 -58
- package/dist/core/sessions/hitl-warnings.d.ts.map +0 -1
- package/dist/core/sessions/hitl-warnings.js +0 -253
- package/dist/core/sessions/hitl-warnings.js.map +0 -1
- package/dist/core/sessions/index.d.ts +0 -65
- package/dist/core/sessions/index.d.ts.map +0 -1
- package/dist/core/sessions/index.js +0 -244
- package/dist/core/sessions/index.js.map +0 -1
- package/dist/core/sessions/session-enforcement.d.ts +0 -50
- package/dist/core/sessions/session-enforcement.d.ts.map +0 -1
- package/dist/core/sessions/session-enforcement.js +0 -139
- package/dist/core/sessions/session-enforcement.js.map +0 -1
- package/dist/core/sessions/session-migration.d.ts +0 -31
- package/dist/core/sessions/session-migration.d.ts.map +0 -1
- package/dist/core/sessions/session-migration.js +0 -122
- package/dist/core/sessions/session-migration.js.map +0 -1
- package/dist/core/sessions/statusline-setup.d.ts +0 -24
- package/dist/core/sessions/statusline-setup.d.ts.map +0 -1
- package/dist/core/sessions/statusline-setup.js +0 -82
- package/dist/core/sessions/statusline-setup.js.map +0 -1
- package/dist/core/skills/agents/config.d.ts +0 -39
- package/dist/core/skills/agents/config.d.ts.map +0 -1
- package/dist/core/skills/agents/config.js +0 -94
- package/dist/core/skills/agents/config.js.map +0 -1
- package/dist/core/skills/agents/install.d.ts +0 -33
- package/dist/core/skills/agents/install.d.ts.map +0 -1
- package/dist/core/skills/agents/install.js +0 -105
- package/dist/core/skills/agents/install.js.map +0 -1
- package/dist/core/skills/agents/registry.d.ts +0 -56
- package/dist/core/skills/agents/registry.d.ts.map +0 -1
- package/dist/core/skills/agents/registry.js +0 -161
- package/dist/core/skills/agents/registry.js.map +0 -1
- package/dist/core/skills/discovery.d.ts +0 -102
- package/dist/core/skills/discovery.d.ts.map +0 -1
- package/dist/core/skills/discovery.js +0 -331
- package/dist/core/skills/discovery.js.map +0 -1
- package/dist/core/skills/dispatch.d.ts +0 -67
- package/dist/core/skills/dispatch.d.ts.map +0 -1
- package/dist/core/skills/dispatch.js +0 -327
- package/dist/core/skills/dispatch.js.map +0 -1
- package/dist/core/skills/index.d.ts +0 -39
- package/dist/core/skills/index.d.ts.map +0 -1
- package/dist/core/skills/index.js +0 -44
- package/dist/core/skills/index.js.map +0 -1
- package/dist/core/skills/injection/subagent.d.ts +0 -47
- package/dist/core/skills/injection/subagent.d.ts.map +0 -1
- package/dist/core/skills/injection/subagent.js +0 -143
- package/dist/core/skills/injection/subagent.js.map +0 -1
- package/dist/core/skills/injection/token.d.ts +0 -121
- package/dist/core/skills/injection/token.d.ts.map +0 -1
- package/dist/core/skills/injection/token.js +0 -255
- package/dist/core/skills/injection/token.js.map +0 -1
- package/dist/core/skills/install.d.ts +0 -42
- package/dist/core/skills/install.d.ts.map +0 -1
- package/dist/core/skills/install.js +0 -129
- package/dist/core/skills/install.js.map +0 -1
- package/dist/core/skills/manifests/contribution.d.ts +0 -74
- package/dist/core/skills/manifests/contribution.d.ts.map +0 -1
- package/dist/core/skills/manifests/contribution.js +0 -180
- package/dist/core/skills/manifests/contribution.js.map +0 -1
- package/dist/core/skills/manifests/research.d.ts +0 -73
- package/dist/core/skills/manifests/research.d.ts.map +0 -1
- package/dist/core/skills/manifests/research.js +0 -264
- package/dist/core/skills/manifests/research.js.map +0 -1
- package/dist/core/skills/manifests/resolver.d.ts +0 -40
- package/dist/core/skills/manifests/resolver.d.ts.map +0 -1
- package/dist/core/skills/manifests/resolver.js +0 -146
- package/dist/core/skills/manifests/resolver.js.map +0 -1
- package/dist/core/skills/marketplace.d.ts +0 -45
- package/dist/core/skills/marketplace.d.ts.map +0 -1
- package/dist/core/skills/marketplace.js +0 -90
- package/dist/core/skills/marketplace.js.map +0 -1
- package/dist/core/skills/orchestrator/spawn.d.ts +0 -66
- package/dist/core/skills/orchestrator/spawn.d.ts.map +0 -1
- package/dist/core/skills/orchestrator/spawn.js +0 -186
- package/dist/core/skills/orchestrator/spawn.js.map +0 -1
- package/dist/core/skills/orchestrator/startup.d.ts +0 -89
- package/dist/core/skills/orchestrator/startup.d.ts.map +0 -1
- package/dist/core/skills/orchestrator/startup.js +0 -434
- package/dist/core/skills/orchestrator/startup.js.map +0 -1
- package/dist/core/skills/orchestrator/validator.d.ts +0 -40
- package/dist/core/skills/orchestrator/validator.d.ts.map +0 -1
- package/dist/core/skills/orchestrator/validator.js +0 -297
- package/dist/core/skills/orchestrator/validator.js.map +0 -1
- package/dist/core/skills/skill-paths.d.ts +0 -79
- package/dist/core/skills/skill-paths.d.ts.map +0 -1
- package/dist/core/skills/skill-paths.js +0 -220
- package/dist/core/skills/skill-paths.js.map +0 -1
- package/dist/core/skills/test-utility.d.ts +0 -39
- package/dist/core/skills/test-utility.d.ts.map +0 -1
- package/dist/core/skills/test-utility.js +0 -55
- package/dist/core/skills/test-utility.js.map +0 -1
- package/dist/core/skills/types.d.ts +0 -290
- package/dist/core/skills/types.d.ts.map +0 -1
- package/dist/core/skills/types.js +0 -86
- package/dist/core/skills/types.js.map +0 -1
- package/dist/core/skills/validation.d.ts +0 -46
- package/dist/core/skills/validation.d.ts.map +0 -1
- package/dist/core/skills/validation.js +0 -176
- package/dist/core/skills/validation.js.map +0 -1
- package/dist/core/skills/version.d.ts +0 -87
- package/dist/core/skills/version.d.ts.map +0 -1
- package/dist/core/skills/version.js +0 -241
- package/dist/core/skills/version.js.map +0 -1
- package/dist/core/stats/index.d.ts +0 -30
- package/dist/core/stats/index.d.ts.map +0 -1
- package/dist/core/stats/index.js +0 -152
- package/dist/core/stats/index.js.map +0 -1
- package/dist/core/task-work/index.d.ts +0 -66
- package/dist/core/task-work/index.d.ts.map +0 -1
- package/dist/core/task-work/index.js +0 -148
- package/dist/core/task-work/index.js.map +0 -1
- package/dist/core/tasks/add.d.ts +0 -125
- package/dist/core/tasks/add.d.ts.map +0 -1
- package/dist/core/tasks/add.js +0 -489
- package/dist/core/tasks/add.js.map +0 -1
- package/dist/core/tasks/analyze.d.ts +0 -49
- package/dist/core/tasks/analyze.d.ts.map +0 -1
- package/dist/core/tasks/analyze.js +0 -94
- package/dist/core/tasks/analyze.js.map +0 -1
- package/dist/core/tasks/archive.d.ts +0 -31
- package/dist/core/tasks/archive.d.ts.map +0 -1
- package/dist/core/tasks/archive.js +0 -126
- package/dist/core/tasks/archive.js.map +0 -1
- package/dist/core/tasks/cancel-ops.d.ts +0 -42
- package/dist/core/tasks/cancel-ops.d.ts.map +0 -1
- package/dist/core/tasks/cancel-ops.js +0 -83
- package/dist/core/tasks/cancel-ops.js.map +0 -1
- package/dist/core/tasks/complete.d.ts +0 -25
- package/dist/core/tasks/complete.d.ts.map +0 -1
- package/dist/core/tasks/complete.js +0 -109
- package/dist/core/tasks/complete.js.map +0 -1
- package/dist/core/tasks/crossref-extract.d.ts +0 -39
- package/dist/core/tasks/crossref-extract.d.ts.map +0 -1
- package/dist/core/tasks/crossref-extract.js +0 -75
- package/dist/core/tasks/crossref-extract.js.map +0 -1
- package/dist/core/tasks/delete-preview.d.ts +0 -69
- package/dist/core/tasks/delete-preview.d.ts.map +0 -1
- package/dist/core/tasks/delete-preview.js +0 -192
- package/dist/core/tasks/delete-preview.js.map +0 -1
- package/dist/core/tasks/delete.d.ts +0 -24
- package/dist/core/tasks/delete.d.ts.map +0 -1
- package/dist/core/tasks/delete.js +0 -130
- package/dist/core/tasks/delete.js.map +0 -1
- package/dist/core/tasks/deletion-strategy.d.ts +0 -46
- package/dist/core/tasks/deletion-strategy.d.ts.map +0 -1
- package/dist/core/tasks/deletion-strategy.js +0 -200
- package/dist/core/tasks/deletion-strategy.js.map +0 -1
- package/dist/core/tasks/dependency-check.d.ts +0 -70
- package/dist/core/tasks/dependency-check.d.ts.map +0 -1
- package/dist/core/tasks/dependency-check.js +0 -226
- package/dist/core/tasks/dependency-check.js.map +0 -1
- package/dist/core/tasks/find.d.ts +0 -48
- package/dist/core/tasks/find.d.ts.map +0 -1
- package/dist/core/tasks/find.js +0 -155
- package/dist/core/tasks/find.js.map +0 -1
- package/dist/core/tasks/graph-cache.d.ts +0 -70
- package/dist/core/tasks/graph-cache.d.ts.map +0 -1
- package/dist/core/tasks/graph-cache.js +0 -127
- package/dist/core/tasks/graph-cache.js.map +0 -1
- package/dist/core/tasks/graph-ops.d.ts +0 -36
- package/dist/core/tasks/graph-ops.d.ts.map +0 -1
- package/dist/core/tasks/graph-ops.js +0 -173
- package/dist/core/tasks/graph-ops.js.map +0 -1
- package/dist/core/tasks/graph-rag.d.ts +0 -49
- package/dist/core/tasks/graph-rag.d.ts.map +0 -1
- package/dist/core/tasks/graph-rag.js +0 -253
- package/dist/core/tasks/graph-rag.js.map +0 -1
- package/dist/core/tasks/hierarchy.d.ts +0 -82
- package/dist/core/tasks/hierarchy.d.ts.map +0 -1
- package/dist/core/tasks/hierarchy.js +0 -188
- package/dist/core/tasks/hierarchy.js.map +0 -1
- package/dist/core/tasks/index.d.ts +0 -15
- package/dist/core/tasks/index.d.ts.map +0 -1
- package/dist/core/tasks/index.js +0 -15
- package/dist/core/tasks/index.js.map +0 -1
- package/dist/core/tasks/labels.d.ts +0 -19
- package/dist/core/tasks/labels.d.ts.map +0 -1
- package/dist/core/tasks/labels.js +0 -56
- package/dist/core/tasks/labels.js.map +0 -1
- package/dist/core/tasks/list.d.ts +0 -36
- package/dist/core/tasks/list.d.ts.map +0 -1
- package/dist/core/tasks/list.js +0 -72
- package/dist/core/tasks/list.js.map +0 -1
- package/dist/core/tasks/phase-tracking.d.ts +0 -61
- package/dist/core/tasks/phase-tracking.d.ts.map +0 -1
- package/dist/core/tasks/phase-tracking.js +0 -133
- package/dist/core/tasks/phase-tracking.js.map +0 -1
- package/dist/core/tasks/relates.d.ts +0 -18
- package/dist/core/tasks/relates.d.ts.map +0 -1
- package/dist/core/tasks/relates.js +0 -115
- package/dist/core/tasks/relates.js.map +0 -1
- package/dist/core/tasks/show.d.ts +0 -25
- package/dist/core/tasks/show.d.ts.map +0 -1
- package/dist/core/tasks/show.js +0 -79
- package/dist/core/tasks/show.js.map +0 -1
- package/dist/core/tasks/size-weighting.d.ts +0 -38
- package/dist/core/tasks/size-weighting.d.ts.map +0 -1
- package/dist/core/tasks/size-weighting.js +0 -86
- package/dist/core/tasks/size-weighting.js.map +0 -1
- package/dist/core/tasks/staleness.d.ts +0 -56
- package/dist/core/tasks/staleness.d.ts.map +0 -1
- package/dist/core/tasks/staleness.js +0 -91
- package/dist/core/tasks/staleness.js.map +0 -1
- package/dist/core/tasks/todowrite-integration.d.ts +0 -46
- package/dist/core/tasks/todowrite-integration.d.ts.map +0 -1
- package/dist/core/tasks/todowrite-integration.js +0 -172
- package/dist/core/tasks/todowrite-integration.js.map +0 -1
- package/dist/core/tasks/update.d.ts +0 -41
- package/dist/core/tasks/update.d.ts.map +0 -1
- package/dist/core/tasks/update.js +0 -178
- package/dist/core/tasks/update.js.map +0 -1
- package/dist/core/ui/aliases.d.ts +0 -43
- package/dist/core/ui/aliases.d.ts.map +0 -1
- package/dist/core/ui/aliases.js +0 -150
- package/dist/core/ui/aliases.js.map +0 -1
- package/dist/core/ui/changelog.d.ts +0 -58
- package/dist/core/ui/changelog.d.ts.map +0 -1
- package/dist/core/ui/changelog.js +0 -195
- package/dist/core/ui/changelog.js.map +0 -1
- package/dist/core/ui/command-registry.d.ts +0 -44
- package/dist/core/ui/command-registry.d.ts.map +0 -1
- package/dist/core/ui/command-registry.js +0 -156
- package/dist/core/ui/command-registry.js.map +0 -1
- package/dist/core/ui/flags.d.ts +0 -34
- package/dist/core/ui/flags.d.ts.map +0 -1
- package/dist/core/ui/flags.js +0 -94
- package/dist/core/ui/flags.js.map +0 -1
- package/dist/core/ui/index.d.ts +0 -18
- package/dist/core/ui/index.d.ts.map +0 -1
- package/dist/core/ui/index.js +0 -28
- package/dist/core/ui/index.js.map +0 -1
- package/dist/core/ui/injection-legacy.d.ts +0 -26
- package/dist/core/ui/injection-legacy.d.ts.map +0 -1
- package/dist/core/ui/injection-legacy.js +0 -42
- package/dist/core/ui/injection-legacy.js.map +0 -1
- package/dist/core/ui/injection-registry.d.ts +0 -56
- package/dist/core/ui/injection-registry.d.ts.map +0 -1
- package/dist/core/ui/injection-registry.js +0 -68
- package/dist/core/ui/injection-registry.js.map +0 -1
- package/dist/core/ui/injection.d.ts +0 -51
- package/dist/core/ui/injection.d.ts.map +0 -1
- package/dist/core/ui/injection.js +0 -125
- package/dist/core/ui/injection.js.map +0 -1
- package/dist/core/ui/mcp-config.d.ts +0 -40
- package/dist/core/ui/mcp-config.d.ts.map +0 -1
- package/dist/core/ui/mcp-config.js +0 -173
- package/dist/core/ui/mcp-config.js.map +0 -1
- package/dist/core/ui/version-check.d.ts +0 -31
- package/dist/core/ui/version-check.d.ts.map +0 -1
- package/dist/core/ui/version-check.js +0 -121
- package/dist/core/ui/version-check.js.map +0 -1
- package/dist/core/upgrade.d.ts +0 -59
- package/dist/core/upgrade.d.ts.map +0 -1
- package/dist/core/upgrade.js +0 -649
- package/dist/core/upgrade.js.map +0 -1
- package/dist/core/validation/compliance.d.ts +0 -94
- package/dist/core/validation/compliance.d.ts.map +0 -1
- package/dist/core/validation/compliance.js +0 -157
- package/dist/core/validation/compliance.js.map +0 -1
- package/dist/core/validation/docs-sync.d.ts +0 -66
- package/dist/core/validation/docs-sync.d.ts.map +0 -1
- package/dist/core/validation/docs-sync.js +0 -204
- package/dist/core/validation/docs-sync.js.map +0 -1
- package/dist/core/validation/doctor/checks.d.ts +0 -61
- package/dist/core/validation/doctor/checks.d.ts.map +0 -1
- package/dist/core/validation/doctor/checks.js +0 -457
- package/dist/core/validation/doctor/checks.js.map +0 -1
- package/dist/core/validation/doctor/index.d.ts +0 -9
- package/dist/core/validation/doctor/index.d.ts.map +0 -1
- package/dist/core/validation/doctor/index.js +0 -9
- package/dist/core/validation/doctor/index.js.map +0 -1
- package/dist/core/validation/doctor/project-cache.d.ts +0 -79
- package/dist/core/validation/doctor/project-cache.d.ts.map +0 -1
- package/dist/core/validation/doctor/project-cache.js +0 -164
- package/dist/core/validation/doctor/project-cache.js.map +0 -1
- package/dist/core/validation/doctor/utils.d.ts +0 -68
- package/dist/core/validation/doctor/utils.d.ts.map +0 -1
- package/dist/core/validation/doctor/utils.js +0 -162
- package/dist/core/validation/doctor/utils.js.map +0 -1
- package/dist/core/validation/engine.d.ts +0 -172
- package/dist/core/validation/engine.d.ts.map +0 -1
- package/dist/core/validation/engine.js +0 -791
- package/dist/core/validation/engine.js.map +0 -1
- package/dist/core/validation/gap-check.d.ts +0 -74
- package/dist/core/validation/gap-check.d.ts.map +0 -1
- package/dist/core/validation/gap-check.js +0 -175
- package/dist/core/validation/gap-check.js.map +0 -1
- package/dist/core/validation/index.d.ts +0 -17
- package/dist/core/validation/index.d.ts.map +0 -1
- package/dist/core/validation/index.js +0 -25
- package/dist/core/validation/index.js.map +0 -1
- package/dist/core/validation/manifest.d.ts +0 -81
- package/dist/core/validation/manifest.d.ts.map +0 -1
- package/dist/core/validation/manifest.js +0 -225
- package/dist/core/validation/manifest.js.map +0 -1
- package/dist/core/validation/protocol-common.d.ts +0 -77
- package/dist/core/validation/protocol-common.d.ts.map +0 -1
- package/dist/core/validation/protocol-common.js +0 -240
- package/dist/core/validation/protocol-common.js.map +0 -1
- package/dist/core/validation/protocols/consensus.d.ts +0 -28
- package/dist/core/validation/protocols/consensus.d.ts.map +0 -1
- package/dist/core/validation/protocols/consensus.js +0 -70
- package/dist/core/validation/protocols/consensus.js.map +0 -1
- package/dist/core/validation/protocols/contribution.d.ts +0 -26
- package/dist/core/validation/protocols/contribution.d.ts.map +0 -1
- package/dist/core/validation/protocols/contribution.js +0 -58
- package/dist/core/validation/protocols/contribution.js.map +0 -1
- package/dist/core/validation/protocols/decomposition.d.ts +0 -28
- package/dist/core/validation/protocols/decomposition.d.ts.map +0 -1
- package/dist/core/validation/protocols/decomposition.js +0 -58
- package/dist/core/validation/protocols/decomposition.js.map +0 -1
- package/dist/core/validation/protocols/implementation.d.ts +0 -26
- package/dist/core/validation/protocols/implementation.d.ts.map +0 -1
- package/dist/core/validation/protocols/implementation.js +0 -58
- package/dist/core/validation/protocols/implementation.js.map +0 -1
- package/dist/core/validation/protocols/specification.d.ts +0 -28
- package/dist/core/validation/protocols/specification.d.ts.map +0 -1
- package/dist/core/validation/protocols/specification.js +0 -83
- package/dist/core/validation/protocols/specification.js.map +0 -1
- package/dist/core/validation/verification.d.ts +0 -153
- package/dist/core/validation/verification.d.ts.map +0 -1
- package/dist/core/validation/verification.js +0 -311
- package/dist/core/validation/verification.js.map +0 -1
- package/dist/dispatch/dispatcher.d.ts +0 -23
- package/dist/dispatch/dispatcher.d.ts.map +0 -1
- package/dist/dispatch/dispatcher.js +0 -90
- package/dist/dispatch/dispatcher.js.map +0 -1
- package/dist/dispatch/domains/_meta.d.ts +0 -23
- package/dist/dispatch/domains/_meta.d.ts.map +0 -1
- package/dist/dispatch/domains/_meta.js +0 -25
- package/dist/dispatch/domains/_meta.js.map +0 -1
- package/dist/dispatch/domains/admin.d.ts +0 -29
- package/dist/dispatch/domains/admin.d.ts.map +0 -1
- package/dist/dispatch/domains/admin.js +0 -200
- package/dist/dispatch/domains/admin.js.map +0 -1
- package/dist/dispatch/domains/check.d.ts +0 -28
- package/dist/dispatch/domains/check.d.ts.map +0 -1
- package/dist/dispatch/domains/check.js +0 -170
- package/dist/dispatch/domains/check.js.map +0 -1
- package/dist/dispatch/domains/index.d.ts +0 -26
- package/dist/dispatch/domains/index.d.ts.map +0 -1
- package/dist/dispatch/domains/index.js +0 -36
- package/dist/dispatch/domains/index.js.map +0 -1
- package/dist/dispatch/domains/memory.d.ts +0 -27
- package/dist/dispatch/domains/memory.d.ts.map +0 -1
- package/dist/dispatch/domains/memory.js +0 -169
- package/dist/dispatch/domains/memory.js.map +0 -1
- package/dist/dispatch/domains/nexus.d.ts +0 -18
- package/dist/dispatch/domains/nexus.d.ts.map +0 -1
- package/dist/dispatch/domains/nexus.js +0 -34
- package/dist/dispatch/domains/nexus.js.map +0 -1
- package/dist/dispatch/domains/orchestrate.d.ts +0 -24
- package/dist/dispatch/domains/orchestrate.d.ts.map +0 -1
- package/dist/dispatch/domains/orchestrate.js +0 -199
- package/dist/dispatch/domains/orchestrate.js.map +0 -1
- package/dist/dispatch/domains/pipeline.d.ts +0 -31
- package/dist/dispatch/domains/pipeline.d.ts.map +0 -1
- package/dist/dispatch/domains/pipeline.js +0 -284
- package/dist/dispatch/domains/pipeline.js.map +0 -1
- package/dist/dispatch/domains/session.d.ts +0 -27
- package/dist/dispatch/domains/session.d.ts.map +0 -1
- package/dist/dispatch/domains/session.js +0 -180
- package/dist/dispatch/domains/session.js.map +0 -1
- package/dist/dispatch/domains/tools.d.ts +0 -39
- package/dist/dispatch/domains/tools.d.ts.map +0 -1
- package/dist/dispatch/domains/tools.js +0 -314
- package/dist/dispatch/domains/tools.js.map +0 -1
- package/dist/dispatch/index.d.ts +0 -20
- package/dist/dispatch/index.d.ts.map +0 -1
- package/dist/dispatch/index.js +0 -19
- package/dist/dispatch/index.js.map +0 -1
- package/dist/dispatch/lib/meta.d.ts +0 -24
- package/dist/dispatch/lib/meta.d.ts.map +0 -1
- package/dist/dispatch/lib/meta.js +0 -34
- package/dist/dispatch/lib/meta.js.map +0 -1
- package/dist/dispatch/middleware/audit.d.ts +0 -123
- package/dist/dispatch/middleware/audit.d.ts.map +0 -1
- package/dist/dispatch/middleware/audit.js +0 -345
- package/dist/dispatch/middleware/audit.js.map +0 -1
- package/dist/dispatch/middleware/pipeline.d.ts +0 -20
- package/dist/dispatch/middleware/pipeline.d.ts.map +0 -1
- package/dist/dispatch/middleware/pipeline.js +0 -47
- package/dist/dispatch/middleware/pipeline.js.map +0 -1
- package/dist/dispatch/middleware/protocol-enforcement.d.ts +0 -6
- package/dist/dispatch/middleware/protocol-enforcement.d.ts.map +0 -1
- package/dist/dispatch/middleware/protocol-enforcement.js +0 -12
- package/dist/dispatch/middleware/protocol-enforcement.js.map +0 -1
- package/dist/dispatch/middleware/rate-limiter.d.ts +0 -30
- package/dist/dispatch/middleware/rate-limiter.d.ts.map +0 -1
- package/dist/dispatch/middleware/rate-limiter.js +0 -101
- package/dist/dispatch/middleware/rate-limiter.js.map +0 -1
- package/dist/dispatch/middleware/sanitizer.d.ts +0 -10
- package/dist/dispatch/middleware/sanitizer.d.ts.map +0 -1
- package/dist/dispatch/middleware/sanitizer.js +0 -39
- package/dist/dispatch/middleware/sanitizer.js.map +0 -1
- package/dist/dispatch/middleware/verification-gates.d.ts +0 -3
- package/dist/dispatch/middleware/verification-gates.d.ts.map +0 -1
- package/dist/dispatch/middleware/verification-gates.js +0 -40
- package/dist/dispatch/middleware/verification-gates.js.map +0 -1
- package/dist/dispatch/registry.d.ts +0 -89
- package/dist/dispatch/registry.d.ts.map +0 -1
- package/dist/dispatch/registry.js +0 -1591
- package/dist/dispatch/registry.js.map +0 -1
- package/dist/dispatch/types.d.ts +0 -137
- package/dist/dispatch/types.d.ts.map +0 -1
- package/dist/dispatch/types.js +0 -24
- package/dist/dispatch/types.js.map +0 -1
- package/dist/index.d.ts +0 -22
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -30
- package/dist/index.js.map +0 -1
- package/dist/mcp/domains/index.d.ts +0 -19
- package/dist/mcp/domains/index.d.ts.map +0 -1
- package/dist/mcp/domains/index.js +0 -19
- package/dist/mcp/domains/index.js.map +0 -1
- package/dist/mcp/domains/issues.d.ts +0 -69
- package/dist/mcp/domains/issues.d.ts.map +0 -1
- package/dist/mcp/domains/issues.js +0 -260
- package/dist/mcp/domains/issues.js.map +0 -1
- package/dist/mcp/domains/lifecycle.d.ts +0 -154
- package/dist/mcp/domains/lifecycle.d.ts.map +0 -1
- package/dist/mcp/domains/lifecycle.js +0 -508
- package/dist/mcp/domains/lifecycle.js.map +0 -1
- package/dist/mcp/domains/orchestrate.d.ts +0 -140
- package/dist/mcp/domains/orchestrate.d.ts.map +0 -1
- package/dist/mcp/domains/orchestrate.js +0 -542
- package/dist/mcp/domains/orchestrate.js.map +0 -1
- package/dist/mcp/domains/providers.d.ts +0 -28
- package/dist/mcp/domains/providers.d.ts.map +0 -1
- package/dist/mcp/domains/providers.js +0 -108
- package/dist/mcp/domains/providers.js.map +0 -1
- package/dist/mcp/domains/release.d.ts +0 -121
- package/dist/mcp/domains/release.d.ts.map +0 -1
- package/dist/mcp/domains/release.js +0 -486
- package/dist/mcp/domains/release.js.map +0 -1
- package/dist/mcp/domains/research.d.ts +0 -158
- package/dist/mcp/domains/research.d.ts.map +0 -1
- package/dist/mcp/domains/research.js +0 -698
- package/dist/mcp/domains/research.js.map +0 -1
- package/dist/mcp/domains/session.d.ts +0 -136
- package/dist/mcp/domains/session.d.ts.map +0 -1
- package/dist/mcp/domains/session.js +0 -583
- package/dist/mcp/domains/session.js.map +0 -1
- package/dist/mcp/domains/skills.d.ts +0 -129
- package/dist/mcp/domains/skills.d.ts.map +0 -1
- package/dist/mcp/domains/skills.js +0 -691
- package/dist/mcp/domains/skills.js.map +0 -1
- package/dist/mcp/domains/system.d.ts +0 -166
- package/dist/mcp/domains/system.d.ts.map +0 -1
- package/dist/mcp/domains/system.js +0 -1000
- package/dist/mcp/domains/system.js.map +0 -1
- package/dist/mcp/domains/tasks.d.ts +0 -241
- package/dist/mcp/domains/tasks.d.ts.map +0 -1
- package/dist/mcp/domains/tasks.js +0 -1152
- package/dist/mcp/domains/tasks.js.map +0 -1
- package/dist/mcp/domains/validate.d.ts +0 -163
- package/dist/mcp/domains/validate.d.ts.map +0 -1
- package/dist/mcp/domains/validate.js +0 -787
- package/dist/mcp/domains/validate.js.map +0 -1
- package/dist/mcp/engine/caamp-adapter.d.ts +0 -12
- package/dist/mcp/engine/caamp-adapter.d.ts.map +0 -1
- package/dist/mcp/engine/caamp-adapter.js +0 -23
- package/dist/mcp/engine/caamp-adapter.js.map +0 -1
- package/dist/mcp/engine/caamp-verify.d.ts +0 -2
- package/dist/mcp/engine/caamp-verify.d.ts.map +0 -1
- package/dist/mcp/engine/caamp-verify.js +0 -15
- package/dist/mcp/engine/caamp-verify.js.map +0 -1
- package/dist/mcp/engine/capability-matrix.d.ts +0 -67
- package/dist/mcp/engine/capability-matrix.d.ts.map +0 -1
- package/dist/mcp/engine/capability-matrix.js +0 -243
- package/dist/mcp/engine/capability-matrix.js.map +0 -1
- package/dist/mcp/engine/config-engine.d.ts +0 -29
- package/dist/mcp/engine/config-engine.d.ts.map +0 -1
- package/dist/mcp/engine/config-engine.js +0 -110
- package/dist/mcp/engine/config-engine.js.map +0 -1
- package/dist/mcp/engine/id-generator.d.ts +0 -34
- package/dist/mcp/engine/id-generator.d.ts.map +0 -1
- package/dist/mcp/engine/id-generator.js +0 -91
- package/dist/mcp/engine/id-generator.js.map +0 -1
- package/dist/mcp/engine/index.d.ts +0 -25
- package/dist/mcp/engine/index.d.ts.map +0 -1
- package/dist/mcp/engine/index.js +0 -42
- package/dist/mcp/engine/index.js.map +0 -1
- package/dist/mcp/engine/init-engine.d.ts +0 -52
- package/dist/mcp/engine/init-engine.d.ts.map +0 -1
- package/dist/mcp/engine/init-engine.js +0 -222
- package/dist/mcp/engine/init-engine.js.map +0 -1
- package/dist/mcp/engine/lifecycle-engine.d.ts +0 -119
- package/dist/mcp/engine/lifecycle-engine.d.ts.map +0 -1
- package/dist/mcp/engine/lifecycle-engine.js +0 -564
- package/dist/mcp/engine/lifecycle-engine.js.map +0 -1
- package/dist/mcp/engine/orchestrate-engine.d.ts +0 -127
- package/dist/mcp/engine/orchestrate-engine.d.ts.map +0 -1
- package/dist/mcp/engine/orchestrate-engine.js +0 -1233
- package/dist/mcp/engine/orchestrate-engine.js.map +0 -1
- package/dist/mcp/engine/release-engine.d.ts +0 -71
- package/dist/mcp/engine/release-engine.d.ts.map +0 -1
- package/dist/mcp/engine/release-engine.js +0 -515
- package/dist/mcp/engine/release-engine.js.map +0 -1
- package/dist/mcp/engine/research-engine.d.ts +0 -182
- package/dist/mcp/engine/research-engine.d.ts.map +0 -1
- package/dist/mcp/engine/research-engine.js +0 -747
- package/dist/mcp/engine/research-engine.js.map +0 -1
- package/dist/mcp/engine/schema-validator.d.ts +0 -47
- package/dist/mcp/engine/schema-validator.d.ts.map +0 -1
- package/dist/mcp/engine/schema-validator.js +0 -219
- package/dist/mcp/engine/schema-validator.js.map +0 -1
- package/dist/mcp/engine/session-engine.d.ts +0 -340
- package/dist/mcp/engine/session-engine.d.ts.map +0 -1
- package/dist/mcp/engine/session-engine.js +0 -1355
- package/dist/mcp/engine/session-engine.js.map +0 -1
- package/dist/mcp/engine/store.d.ts +0 -86
- package/dist/mcp/engine/store.d.ts.map +0 -1
- package/dist/mcp/engine/store.js +0 -393
- package/dist/mcp/engine/store.js.map +0 -1
- package/dist/mcp/engine/system-engine.d.ts +0 -458
- package/dist/mcp/engine/system-engine.d.ts.map +0 -1
- package/dist/mcp/engine/system-engine.js +0 -1568
- package/dist/mcp/engine/system-engine.js.map +0 -1
- package/dist/mcp/engine/task-engine.d.ts +0 -501
- package/dist/mcp/engine/task-engine.d.ts.map +0 -1
- package/dist/mcp/engine/task-engine.js +0 -1840
- package/dist/mcp/engine/task-engine.js.map +0 -1
- package/dist/mcp/engine/template-parser.d.ts +0 -83
- package/dist/mcp/engine/template-parser.d.ts.map +0 -1
- package/dist/mcp/engine/template-parser.js +0 -255
- package/dist/mcp/engine/template-parser.js.map +0 -1
- package/dist/mcp/engine/validate-engine.d.ts +0 -120
- package/dist/mcp/engine/validate-engine.d.ts.map +0 -1
- package/dist/mcp/engine/validate-engine.js +0 -828
- package/dist/mcp/engine/validate-engine.js.map +0 -1
- package/dist/mcp/engine/validation-rules.d.ts +0 -85
- package/dist/mcp/engine/validation-rules.d.ts.map +0 -1
- package/dist/mcp/engine/validation-rules.js +0 -220
- package/dist/mcp/engine/validation-rules.js.map +0 -1
- package/dist/mcp/gateways/mutate.d.ts +0 -100
- package/dist/mcp/gateways/mutate.d.ts.map +0 -1
- package/dist/mcp/gateways/mutate.js +0 -1070
- package/dist/mcp/gateways/mutate.js.map +0 -1
- package/dist/mcp/gateways/query.d.ts +0 -91
- package/dist/mcp/gateways/query.d.ts.map +0 -1
- package/dist/mcp/gateways/query.js +0 -278
- package/dist/mcp/gateways/query.js.map +0 -1
- package/dist/mcp/index.d.ts +0 -20
- package/dist/mcp/index.d.ts.map +0 -1
- package/dist/mcp/lib/audit.d.ts +0 -118
- package/dist/mcp/lib/audit.d.ts.map +0 -1
- package/dist/mcp/lib/audit.js +0 -310
- package/dist/mcp/lib/audit.js.map +0 -1
- package/dist/mcp/lib/background-jobs.d.ts +0 -86
- package/dist/mcp/lib/background-jobs.d.ts.map +0 -1
- package/dist/mcp/lib/background-jobs.js +0 -183
- package/dist/mcp/lib/background-jobs.js.map +0 -1
- package/dist/mcp/lib/budget.d.ts +0 -35
- package/dist/mcp/lib/budget.d.ts.map +0 -1
- package/dist/mcp/lib/budget.js +0 -101
- package/dist/mcp/lib/budget.js.map +0 -1
- package/dist/mcp/lib/cache.d.ts +0 -78
- package/dist/mcp/lib/cache.d.ts.map +0 -1
- package/dist/mcp/lib/cache.js +0 -204
- package/dist/mcp/lib/cache.js.map +0 -1
- package/dist/mcp/lib/command-builder.d.ts +0 -52
- package/dist/mcp/lib/command-builder.d.ts.map +0 -1
- package/dist/mcp/lib/command-builder.js +0 -269
- package/dist/mcp/lib/command-builder.js.map +0 -1
- package/dist/mcp/lib/config.d.ts +0 -42
- package/dist/mcp/lib/config.d.ts.map +0 -1
- package/dist/mcp/lib/config.js +0 -248
- package/dist/mcp/lib/config.js.map +0 -1
- package/dist/mcp/lib/defaults.d.ts +0 -115
- package/dist/mcp/lib/defaults.d.ts.map +0 -1
- package/dist/mcp/lib/defaults.js +0 -61
- package/dist/mcp/lib/defaults.js.map +0 -1
- package/dist/mcp/lib/error-handler.d.ts +0 -101
- package/dist/mcp/lib/error-handler.d.ts.map +0 -1
- package/dist/mcp/lib/error-handler.js +0 -277
- package/dist/mcp/lib/error-handler.js.map +0 -1
- package/dist/mcp/lib/executor.d.ts +0 -122
- package/dist/mcp/lib/executor.d.ts.map +0 -1
- package/dist/mcp/lib/executor.js +0 -391
- package/dist/mcp/lib/executor.js.map +0 -1
- package/dist/mcp/lib/exit-codes.d.ts +0 -192
- package/dist/mcp/lib/exit-codes.d.ts.map +0 -1
- package/dist/mcp/lib/exit-codes.js +0 -1029
- package/dist/mcp/lib/exit-codes.js.map +0 -1
- package/dist/mcp/lib/formatter.d.ts +0 -196
- package/dist/mcp/lib/formatter.d.ts.map +0 -1
- package/dist/mcp/lib/formatter.js +0 -260
- package/dist/mcp/lib/formatter.js.map +0 -1
- package/dist/mcp/lib/gate-validators.d.ts +0 -104
- package/dist/mcp/lib/gate-validators.d.ts.map +0 -1
- package/dist/mcp/lib/gate-validators.js +0 -709
- package/dist/mcp/lib/gate-validators.js.map +0 -1
- package/dist/mcp/lib/gateway-meta.d.ts +0 -37
- package/dist/mcp/lib/gateway-meta.d.ts.map +0 -1
- package/dist/mcp/lib/gateway-meta.js +0 -50
- package/dist/mcp/lib/gateway-meta.js.map +0 -1
- package/dist/mcp/lib/manifest-parser.d.ts +0 -61
- package/dist/mcp/lib/manifest-parser.d.ts.map +0 -1
- package/dist/mcp/lib/manifest-parser.js +0 -338
- package/dist/mcp/lib/manifest-parser.js.map +0 -1
- package/dist/mcp/lib/manifest.d.ts +0 -177
- package/dist/mcp/lib/manifest.d.ts.map +0 -1
- package/dist/mcp/lib/manifest.js +0 -301
- package/dist/mcp/lib/manifest.js.map +0 -1
- package/dist/mcp/lib/mode-detector.d.ts +0 -71
- package/dist/mcp/lib/mode-detector.d.ts.map +0 -1
- package/dist/mcp/lib/mode-detector.js +0 -184
- package/dist/mcp/lib/mode-detector.js.map +0 -1
- package/dist/mcp/lib/protocol-enforcement.d.ts +0 -105
- package/dist/mcp/lib/protocol-enforcement.d.ts.map +0 -1
- package/dist/mcp/lib/protocol-enforcement.js +0 -331
- package/dist/mcp/lib/protocol-enforcement.js.map +0 -1
- package/dist/mcp/lib/protocol-rules.d.ts +0 -55
- package/dist/mcp/lib/protocol-rules.d.ts.map +0 -1
- package/dist/mcp/lib/protocol-rules.js +0 -760
- package/dist/mcp/lib/protocol-rules.js.map +0 -1
- package/dist/mcp/lib/rate-limiter.d.ts +0 -110
- package/dist/mcp/lib/rate-limiter.d.ts.map +0 -1
- package/dist/mcp/lib/rate-limiter.js +0 -208
- package/dist/mcp/lib/rate-limiter.js.map +0 -1
- package/dist/mcp/lib/router.d.ts +0 -136
- package/dist/mcp/lib/router.d.ts.map +0 -1
- package/dist/mcp/lib/router.js +0 -298
- package/dist/mcp/lib/router.js.map +0 -1
- package/dist/mcp/lib/schema.d.ts +0 -55
- package/dist/mcp/lib/schema.d.ts.map +0 -1
- package/dist/mcp/lib/schema.js +0 -70
- package/dist/mcp/lib/schema.js.map +0 -1
- package/dist/mcp/lib/security.d.ts +0 -158
- package/dist/mcp/lib/security.d.ts.map +0 -1
- package/dist/mcp/lib/security.js +0 -353
- package/dist/mcp/lib/security.js.map +0 -1
- package/dist/mcp/lib/verification-gates.d.ts +0 -287
- package/dist/mcp/lib/verification-gates.d.ts.map +0 -1
- package/dist/mcp/lib/verification-gates.js +0 -547
- package/dist/mcp/lib/verification-gates.js.map +0 -1
- package/dist/mcp/types/domain.d.ts +0 -29
- package/dist/mcp/types/domain.d.ts.map +0 -1
- package/dist/mcp/types/domain.js +0 -7
- package/dist/mcp/types/domain.js.map +0 -1
- package/dist/mcp/types/error.d.ts +0 -101
- package/dist/mcp/types/error.d.ts.map +0 -1
- package/dist/mcp/types/error.js +0 -148
- package/dist/mcp/types/error.js.map +0 -1
- package/dist/mcp/types/gateway.d.ts +0 -78
- package/dist/mcp/types/gateway.d.ts.map +0 -1
- package/dist/mcp/types/gateway.js +0 -7
- package/dist/mcp/types/gateway.js.map +0 -1
- package/dist/mcp/types/index.d.ts +0 -23
- package/dist/mcp/types/index.d.ts.map +0 -1
- package/dist/mcp/types/index.js +0 -11
- package/dist/mcp/types/index.js.map +0 -1
- package/dist/mcp/types/operations/issues.d.ts +0 -3
- package/dist/mcp/types/operations/issues.d.ts.map +0 -1
- package/dist/mcp/types/operations/issues.js +0 -3
- package/dist/mcp/types/operations/issues.js.map +0 -1
- package/dist/mcp/types/operations/lifecycle.d.ts +0 -3
- package/dist/mcp/types/operations/lifecycle.d.ts.map +0 -1
- package/dist/mcp/types/operations/lifecycle.js +0 -3
- package/dist/mcp/types/operations/lifecycle.js.map +0 -1
- package/dist/mcp/types/operations/orchestrate.d.ts +0 -3
- package/dist/mcp/types/operations/orchestrate.d.ts.map +0 -1
- package/dist/mcp/types/operations/orchestrate.js +0 -3
- package/dist/mcp/types/operations/orchestrate.js.map +0 -1
- package/dist/mcp/types/operations/release.d.ts +0 -3
- package/dist/mcp/types/operations/release.d.ts.map +0 -1
- package/dist/mcp/types/operations/release.js +0 -3
- package/dist/mcp/types/operations/release.js.map +0 -1
- package/dist/mcp/types/operations/research.d.ts +0 -3
- package/dist/mcp/types/operations/research.d.ts.map +0 -1
- package/dist/mcp/types/operations/research.js +0 -3
- package/dist/mcp/types/operations/research.js.map +0 -1
- package/dist/mcp/types/operations/session.d.ts +0 -3
- package/dist/mcp/types/operations/session.d.ts.map +0 -1
- package/dist/mcp/types/operations/session.js +0 -3
- package/dist/mcp/types/operations/session.js.map +0 -1
- package/dist/mcp/types/operations/skills.d.ts +0 -3
- package/dist/mcp/types/operations/skills.d.ts.map +0 -1
- package/dist/mcp/types/operations/skills.js +0 -3
- package/dist/mcp/types/operations/skills.js.map +0 -1
- package/dist/mcp/types/operations/system.d.ts +0 -3
- package/dist/mcp/types/operations/system.d.ts.map +0 -1
- package/dist/mcp/types/operations/system.js +0 -3
- package/dist/mcp/types/operations/system.js.map +0 -1
- package/dist/mcp/types/operations/tasks.d.ts +0 -3
- package/dist/mcp/types/operations/tasks.d.ts.map +0 -1
- package/dist/mcp/types/operations/tasks.js +0 -3
- package/dist/mcp/types/operations/tasks.js.map +0 -1
- package/dist/mcp/types/operations/validate.d.ts +0 -3
- package/dist/mcp/types/operations/validate.d.ts.map +0 -1
- package/dist/mcp/types/operations/validate.js +0 -3
- package/dist/mcp/types/operations/validate.js.map +0 -1
- package/dist/scripts/migrate-todo-to-tasks.d.ts +0 -46
- package/dist/scripts/migrate-todo-to-tasks.d.ts.map +0 -1
- package/dist/scripts/migrate-todo-to-tasks.js +0 -379
- package/dist/scripts/migrate-todo-to-tasks.js.map +0 -1
- package/dist/store/atomic.d.ts +0 -75
- package/dist/store/atomic.d.ts.map +0 -1
- package/dist/store/atomic.js +0 -167
- package/dist/store/atomic.js.map +0 -1
- package/dist/store/backup.d.ts +0 -21
- package/dist/store/backup.d.ts.map +0 -1
- package/dist/store/backup.js +0 -94
- package/dist/store/backup.js.map +0 -1
- package/dist/store/cache.d.ts +0 -67
- package/dist/store/cache.d.ts.map +0 -1
- package/dist/store/cache.js +0 -168
- package/dist/store/cache.js.map +0 -1
- package/dist/store/data-accessor.d.ts +0 -77
- package/dist/store/data-accessor.d.ts.map +0 -1
- package/dist/store/data-accessor.js +0 -149
- package/dist/store/data-accessor.js.map +0 -1
- package/dist/store/data-safety-central.d.ts +0 -103
- package/dist/store/data-safety-central.d.ts.map +0 -1
- package/dist/store/data-safety-central.js +0 -291
- package/dist/store/data-safety-central.js.map +0 -1
- package/dist/store/data-safety.d.ts +0 -93
- package/dist/store/data-safety.d.ts.map +0 -1
- package/dist/store/data-safety.js +0 -298
- package/dist/store/data-safety.js.map +0 -1
- package/dist/store/export.d.ts +0 -87
- package/dist/store/export.d.ts.map +0 -1
- package/dist/store/export.js +0 -153
- package/dist/store/export.js.map +0 -1
- package/dist/store/git-checkpoint.d.ts +0 -65
- package/dist/store/git-checkpoint.d.ts.map +0 -1
- package/dist/store/git-checkpoint.js +0 -304
- package/dist/store/git-checkpoint.js.map +0 -1
- package/dist/store/import-logging.d.ts +0 -58
- package/dist/store/import-logging.d.ts.map +0 -1
- package/dist/store/import-logging.js +0 -139
- package/dist/store/import-logging.js.map +0 -1
- package/dist/store/import-remap.d.ts +0 -50
- package/dist/store/import-remap.d.ts.map +0 -1
- package/dist/store/import-remap.js +0 -145
- package/dist/store/import-remap.js.map +0 -1
- package/dist/store/import-sort.d.ts +0 -35
- package/dist/store/import-sort.d.ts.map +0 -1
- package/dist/store/import-sort.js +0 -123
- package/dist/store/import-sort.js.map +0 -1
- package/dist/store/index.d.ts +0 -28
- package/dist/store/index.d.ts.map +0 -1
- package/dist/store/index.js +0 -28
- package/dist/store/index.js.map +0 -1
- package/dist/store/json-data-accessor.d.ts +0 -16
- package/dist/store/json-data-accessor.d.ts.map +0 -1
- package/dist/store/json-data-accessor.js +0 -68
- package/dist/store/json-data-accessor.js.map +0 -1
- package/dist/store/json-provider.d.ts +0 -23
- package/dist/store/json-provider.d.ts.map +0 -1
- package/dist/store/json-provider.js +0 -263
- package/dist/store/json-provider.js.map +0 -1
- package/dist/store/json.d.ts +0 -57
- package/dist/store/json.d.ts.map +0 -1
- package/dist/store/json.js +0 -198
- package/dist/store/json.js.map +0 -1
- package/dist/store/lock.d.ts +0 -29
- package/dist/store/lock.d.ts.map +0 -1
- package/dist/store/lock.js +0 -70
- package/dist/store/lock.js.map +0 -1
- package/dist/store/migration-sqlite.d.ts +0 -68
- package/dist/store/migration-sqlite.d.ts.map +0 -1
- package/dist/store/migration-sqlite.js +0 -742
- package/dist/store/migration-sqlite.js.map +0 -1
- package/dist/store/project-detect.d.ts +0 -24
- package/dist/store/project-detect.d.ts.map +0 -1
- package/dist/store/project-detect.js +0 -93
- package/dist/store/project-detect.js.map +0 -1
- package/dist/store/project-registry.d.ts +0 -113
- package/dist/store/project-registry.d.ts.map +0 -1
- package/dist/store/project-registry.js +0 -194
- package/dist/store/project-registry.js.map +0 -1
- package/dist/store/provider.d.ts +0 -162
- package/dist/store/provider.d.ts.map +0 -1
- package/dist/store/provider.js +0 -319
- package/dist/store/provider.js.map +0 -1
- package/dist/store/safety-data-accessor.d.ts +0 -99
- package/dist/store/safety-data-accessor.d.ts.map +0 -1
- package/dist/store/safety-data-accessor.js +0 -167
- package/dist/store/safety-data-accessor.js.map +0 -1
- package/dist/store/schema.d.ts +0 -1094
- package/dist/store/schema.d.ts.map +0 -1
- package/dist/store/schema.js +0 -114
- package/dist/store/schema.js.map +0 -1
- package/dist/store/session-store.d.ts +0 -42
- package/dist/store/session-store.d.ts.map +0 -1
- package/dist/store/session-store.js +0 -227
- package/dist/store/session-store.js.map +0 -1
- package/dist/store/sqlite-data-accessor.d.ts +0 -24
- package/dist/store/sqlite-data-accessor.d.ts.map +0 -1
- package/dist/store/sqlite-data-accessor.js +0 -564
- package/dist/store/sqlite-data-accessor.js.map +0 -1
- package/dist/store/sqlite.d.ts +0 -51
- package/dist/store/sqlite.d.ts.map +0 -1
- package/dist/store/sqlite.js +0 -235
- package/dist/store/sqlite.js.map +0 -1
- package/dist/store/task-store.d.ts +0 -70
- package/dist/store/task-store.d.ts.map +0 -1
- package/dist/store/task-store.js +0 -401
- package/dist/store/task-store.js.map +0 -1
- package/dist/types/config.d.ts +0 -59
- package/dist/types/config.d.ts.map +0 -1
- package/dist/types/config.js +0 -8
- package/dist/types/config.js.map +0 -1
- package/dist/types/exit-codes.d.ts +0 -102
- package/dist/types/exit-codes.d.ts.map +0 -1
- package/dist/types/exit-codes.js +0 -150
- package/dist/types/exit-codes.js.map +0 -1
- package/dist/types/index.d.ts +0 -11
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/index.js +0 -11
- package/dist/types/index.js.map +0 -1
- package/dist/types/lafs.d.ts +0 -77
- package/dist/types/lafs.d.ts.map +0 -1
- package/dist/types/lafs.js +0 -28
- package/dist/types/lafs.js.map +0 -1
- package/dist/types/operations/issues.d.ts +0 -75
- package/dist/types/operations/issues.d.ts.map +0 -1
- package/dist/types/operations/issues.js +0 -10
- package/dist/types/operations/issues.js.map +0 -1
- package/dist/types/operations/lifecycle.d.ts +0 -140
- package/dist/types/operations/lifecycle.d.ts.map +0 -1
- package/dist/types/operations/lifecycle.js +0 -8
- package/dist/types/operations/lifecycle.js.map +0 -1
- package/dist/types/operations/orchestrate.d.ts +0 -187
- package/dist/types/operations/orchestrate.d.ts.map +0 -1
- package/dist/types/operations/orchestrate.js +0 -8
- package/dist/types/operations/orchestrate.js.map +0 -1
- package/dist/types/operations/release.d.ts +0 -97
- package/dist/types/operations/release.d.ts.map +0 -1
- package/dist/types/operations/release.js +0 -7
- package/dist/types/operations/release.js.map +0 -1
- package/dist/types/operations/research.d.ts +0 -122
- package/dist/types/operations/research.d.ts.map +0 -1
- package/dist/types/operations/research.js +0 -8
- package/dist/types/operations/research.js.map +0 -1
- package/dist/types/operations/session.d.ts +0 -93
- package/dist/types/operations/session.d.ts.map +0 -1
- package/dist/types/operations/session.js +0 -12
- package/dist/types/operations/session.js.map +0 -1
- package/dist/types/operations/skills.d.ts +0 -182
- package/dist/types/operations/skills.d.ts.map +0 -1
- package/dist/types/operations/skills.js +0 -10
- package/dist/types/operations/skills.js.map +0 -1
- package/dist/types/operations/system.d.ts +0 -147
- package/dist/types/operations/system.d.ts.map +0 -1
- package/dist/types/operations/system.js +0 -8
- package/dist/types/operations/system.js.map +0 -1
- package/dist/types/operations/tasks.d.ts +0 -219
- package/dist/types/operations/tasks.d.ts.map +0 -1
- package/dist/types/operations/tasks.js +0 -13
- package/dist/types/operations/tasks.js.map +0 -1
- package/dist/types/operations/validate.d.ts +0 -170
- package/dist/types/operations/validate.d.ts.map +0 -1
- package/dist/types/operations/validate.js +0 -8
- package/dist/types/operations/validate.js.map +0 -1
- package/dist/types/session.d.ts +0 -48
- package/dist/types/session.d.ts.map +0 -1
- package/dist/types/session.js +0 -8
- package/dist/types/session.js.map +0 -1
- package/dist/types/task.d.ts +0 -160
- package/dist/types/task.d.ts.map +0 -1
- package/dist/types/task.js +0 -7
- package/dist/types/task.js.map +0 -1
- package/schemas/sessions.schema.json +0 -406
|
@@ -1,1029 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Exit code mapping for CLEO CLI operations
|
|
3
|
-
*
|
|
4
|
-
* @task T2913
|
|
5
|
-
* @epic T2908
|
|
6
|
-
*
|
|
7
|
-
* SYNC: Source of truth is CLI at src/types/exit-codes.ts
|
|
8
|
-
* This file maintains MCP-specific metadata (ERROR_MAP, fix templates)
|
|
9
|
-
* but numeric values and semantics must stay aligned with CLI.
|
|
10
|
-
*
|
|
11
|
-
* Maps all CLEO exit codes (1-100+) to error metadata with automatic
|
|
12
|
-
* fix command generation and contextual suggestions.
|
|
13
|
-
*/
|
|
14
|
-
/**
|
|
15
|
-
* Exit code enumeration (complete mapping 0-100+)
|
|
16
|
-
*/
|
|
17
|
-
export var ExitCode;
|
|
18
|
-
(function (ExitCode) {
|
|
19
|
-
// Success (0)
|
|
20
|
-
ExitCode[ExitCode["SUCCESS"] = 0] = "SUCCESS";
|
|
21
|
-
// General Errors (1-9)
|
|
22
|
-
ExitCode[ExitCode["E_GENERAL_ERROR"] = 1] = "E_GENERAL_ERROR";
|
|
23
|
-
ExitCode[ExitCode["E_INVALID_INPUT"] = 2] = "E_INVALID_INPUT";
|
|
24
|
-
ExitCode[ExitCode["E_FILE_ERROR"] = 3] = "E_FILE_ERROR";
|
|
25
|
-
ExitCode[ExitCode["E_NOT_FOUND"] = 4] = "E_NOT_FOUND";
|
|
26
|
-
ExitCode[ExitCode["E_DEPENDENCY_ERROR"] = 5] = "E_DEPENDENCY_ERROR";
|
|
27
|
-
ExitCode[ExitCode["E_VALIDATION_ERROR"] = 6] = "E_VALIDATION_ERROR";
|
|
28
|
-
ExitCode[ExitCode["E_LOCK_TIMEOUT"] = 7] = "E_LOCK_TIMEOUT";
|
|
29
|
-
ExitCode[ExitCode["E_CONFIG_ERROR"] = 8] = "E_CONFIG_ERROR";
|
|
30
|
-
// Hierarchy Errors (10-19)
|
|
31
|
-
ExitCode[ExitCode["E_PARENT_NOT_FOUND"] = 10] = "E_PARENT_NOT_FOUND";
|
|
32
|
-
ExitCode[ExitCode["E_DEPTH_EXCEEDED"] = 11] = "E_DEPTH_EXCEEDED";
|
|
33
|
-
ExitCode[ExitCode["E_SIBLING_LIMIT"] = 12] = "E_SIBLING_LIMIT";
|
|
34
|
-
ExitCode[ExitCode["E_INVALID_PARENT_TYPE"] = 13] = "E_INVALID_PARENT_TYPE";
|
|
35
|
-
ExitCode[ExitCode["E_CIRCULAR_REFERENCE"] = 14] = "E_CIRCULAR_REFERENCE";
|
|
36
|
-
ExitCode[ExitCode["E_ORPHAN_DETECTED"] = 15] = "E_ORPHAN_DETECTED";
|
|
37
|
-
ExitCode[ExitCode["E_HAS_CHILDREN"] = 16] = "E_HAS_CHILDREN";
|
|
38
|
-
ExitCode[ExitCode["E_TASK_COMPLETED"] = 17] = "E_TASK_COMPLETED";
|
|
39
|
-
ExitCode[ExitCode["E_CASCADE_FAILED"] = 18] = "E_CASCADE_FAILED";
|
|
40
|
-
ExitCode[ExitCode["E_HAS_DEPENDENTS"] = 19] = "E_HAS_DEPENDENTS";
|
|
41
|
-
// Concurrency Errors (20-29)
|
|
42
|
-
ExitCode[ExitCode["E_CHECKSUM_MISMATCH"] = 20] = "E_CHECKSUM_MISMATCH";
|
|
43
|
-
ExitCode[ExitCode["E_CONCURRENT_MODIFICATION"] = 21] = "E_CONCURRENT_MODIFICATION";
|
|
44
|
-
ExitCode[ExitCode["E_ID_COLLISION"] = 22] = "E_ID_COLLISION";
|
|
45
|
-
// Session Errors (30-39)
|
|
46
|
-
ExitCode[ExitCode["E_SESSION_EXISTS"] = 30] = "E_SESSION_EXISTS";
|
|
47
|
-
ExitCode[ExitCode["E_SESSION_NOT_FOUND"] = 31] = "E_SESSION_NOT_FOUND";
|
|
48
|
-
ExitCode[ExitCode["E_SCOPE_CONFLICT"] = 32] = "E_SCOPE_CONFLICT";
|
|
49
|
-
ExitCode[ExitCode["E_SCOPE_INVALID"] = 33] = "E_SCOPE_INVALID";
|
|
50
|
-
ExitCode[ExitCode["E_TASK_NOT_IN_SCOPE"] = 34] = "E_TASK_NOT_IN_SCOPE";
|
|
51
|
-
ExitCode[ExitCode["E_TASK_CLAIMED"] = 35] = "E_TASK_CLAIMED";
|
|
52
|
-
ExitCode[ExitCode["E_SESSION_REQUIRED"] = 36] = "E_SESSION_REQUIRED";
|
|
53
|
-
ExitCode[ExitCode["E_SESSION_CLOSE_BLOCKED"] = 37] = "E_SESSION_CLOSE_BLOCKED";
|
|
54
|
-
ExitCode[ExitCode["E_FOCUS_REQUIRED"] = 38] = "E_FOCUS_REQUIRED";
|
|
55
|
-
ExitCode[ExitCode["E_NOTES_REQUIRED"] = 39] = "E_NOTES_REQUIRED";
|
|
56
|
-
// Verification Errors (40-49)
|
|
57
|
-
ExitCode[ExitCode["E_VERIFICATION_INIT_FAILED"] = 40] = "E_VERIFICATION_INIT_FAILED";
|
|
58
|
-
ExitCode[ExitCode["E_GATE_UPDATE_FAILED"] = 41] = "E_GATE_UPDATE_FAILED";
|
|
59
|
-
ExitCode[ExitCode["E_INVALID_GATE"] = 42] = "E_INVALID_GATE";
|
|
60
|
-
ExitCode[ExitCode["E_INVALID_AGENT"] = 43] = "E_INVALID_AGENT";
|
|
61
|
-
ExitCode[ExitCode["E_MAX_ROUNDS_EXCEEDED"] = 44] = "E_MAX_ROUNDS_EXCEEDED";
|
|
62
|
-
ExitCode[ExitCode["E_GATE_DEPENDENCY"] = 45] = "E_GATE_DEPENDENCY";
|
|
63
|
-
ExitCode[ExitCode["E_VERIFICATION_LOCKED"] = 46] = "E_VERIFICATION_LOCKED";
|
|
64
|
-
ExitCode[ExitCode["E_ROUND_MISMATCH"] = 47] = "E_ROUND_MISMATCH";
|
|
65
|
-
// Context Safeguard Errors (50-59)
|
|
66
|
-
ExitCode[ExitCode["E_CONTEXT_WARNING"] = 50] = "E_CONTEXT_WARNING";
|
|
67
|
-
ExitCode[ExitCode["E_CONTEXT_CAUTION"] = 51] = "E_CONTEXT_CAUTION";
|
|
68
|
-
ExitCode[ExitCode["E_CONTEXT_CRITICAL"] = 52] = "E_CONTEXT_CRITICAL";
|
|
69
|
-
ExitCode[ExitCode["E_CONTEXT_EMERGENCY"] = 53] = "E_CONTEXT_EMERGENCY";
|
|
70
|
-
ExitCode[ExitCode["E_CONTEXT_STALE"] = 54] = "E_CONTEXT_STALE";
|
|
71
|
-
// Protocol Violations (60-70)
|
|
72
|
-
ExitCode[ExitCode["E_PROTOCOL_RESEARCH"] = 60] = "E_PROTOCOL_RESEARCH";
|
|
73
|
-
ExitCode[ExitCode["E_PROTOCOL_CONSENSUS"] = 61] = "E_PROTOCOL_CONSENSUS";
|
|
74
|
-
ExitCode[ExitCode["E_PROTOCOL_SPECIFICATION"] = 62] = "E_PROTOCOL_SPECIFICATION";
|
|
75
|
-
ExitCode[ExitCode["E_PROTOCOL_DECOMPOSITION"] = 63] = "E_PROTOCOL_DECOMPOSITION";
|
|
76
|
-
ExitCode[ExitCode["E_PROTOCOL_IMPLEMENTATION"] = 64] = "E_PROTOCOL_IMPLEMENTATION";
|
|
77
|
-
ExitCode[ExitCode["E_PROTOCOL_CONTRIBUTION"] = 65] = "E_PROTOCOL_CONTRIBUTION";
|
|
78
|
-
ExitCode[ExitCode["E_PROTOCOL_RELEASE"] = 66] = "E_PROTOCOL_RELEASE";
|
|
79
|
-
ExitCode[ExitCode["E_PROTOCOL_GENERIC"] = 67] = "E_PROTOCOL_GENERIC";
|
|
80
|
-
ExitCode[ExitCode["E_PROTOCOL_VALIDATION"] = 68] = "E_PROTOCOL_VALIDATION";
|
|
81
|
-
ExitCode[ExitCode["E_TESTS_SKIPPED"] = 69] = "E_TESTS_SKIPPED";
|
|
82
|
-
ExitCode[ExitCode["E_COVERAGE_INSUFFICIENT"] = 70] = "E_COVERAGE_INSUFFICIENT";
|
|
83
|
-
// Nexus Errors (71-79)
|
|
84
|
-
ExitCode[ExitCode["E_NEXUS_NOT_INITIALIZED"] = 71] = "E_NEXUS_NOT_INITIALIZED";
|
|
85
|
-
ExitCode[ExitCode["E_NEXUS_PROJECT_NOT_FOUND"] = 72] = "E_NEXUS_PROJECT_NOT_FOUND";
|
|
86
|
-
ExitCode[ExitCode["E_NEXUS_PERMISSION_DENIED"] = 73] = "E_NEXUS_PERMISSION_DENIED";
|
|
87
|
-
ExitCode[ExitCode["E_NEXUS_INVALID_SYNTAX"] = 74] = "E_NEXUS_INVALID_SYNTAX";
|
|
88
|
-
ExitCode[ExitCode["E_NEXUS_SYNC_FAILED"] = 75] = "E_NEXUS_SYNC_FAILED";
|
|
89
|
-
ExitCode[ExitCode["E_NEXUS_REGISTRY_CORRUPT"] = 76] = "E_NEXUS_REGISTRY_CORRUPT";
|
|
90
|
-
ExitCode[ExitCode["E_NEXUS_PROJECT_EXISTS"] = 77] = "E_NEXUS_PROJECT_EXISTS";
|
|
91
|
-
ExitCode[ExitCode["E_NEXUS_QUERY_FAILED"] = 78] = "E_NEXUS_QUERY_FAILED";
|
|
92
|
-
ExitCode[ExitCode["E_NEXUS_GRAPH_ERROR"] = 79] = "E_NEXUS_GRAPH_ERROR";
|
|
93
|
-
// Lifecycle Enforcement Errors (80-84)
|
|
94
|
-
ExitCode[ExitCode["E_LIFECYCLE_GATE_FAILED"] = 80] = "E_LIFECYCLE_GATE_FAILED";
|
|
95
|
-
ExitCode[ExitCode["E_AUDIT_MISSING"] = 81] = "E_AUDIT_MISSING";
|
|
96
|
-
ExitCode[ExitCode["E_CIRCULAR_VALIDATION"] = 82] = "E_CIRCULAR_VALIDATION";
|
|
97
|
-
ExitCode[ExitCode["E_LIFECYCLE_TRANSITION_INVALID"] = 83] = "E_LIFECYCLE_TRANSITION_INVALID";
|
|
98
|
-
ExitCode[ExitCode["E_PROVENANCE_REQUIRED"] = 84] = "E_PROVENANCE_REQUIRED";
|
|
99
|
-
// Special Codes (100+)
|
|
100
|
-
ExitCode[ExitCode["E_NO_DATA"] = 100] = "E_NO_DATA";
|
|
101
|
-
ExitCode[ExitCode["E_ALREADY_EXISTS"] = 101] = "E_ALREADY_EXISTS";
|
|
102
|
-
ExitCode[ExitCode["E_NO_CHANGE"] = 102] = "E_NO_CHANGE";
|
|
103
|
-
})(ExitCode || (ExitCode = {}));
|
|
104
|
-
/**
|
|
105
|
-
* Error severity levels
|
|
106
|
-
*/
|
|
107
|
-
export var ErrorSeverity;
|
|
108
|
-
(function (ErrorSeverity) {
|
|
109
|
-
ErrorSeverity["INFO"] = "info";
|
|
110
|
-
ErrorSeverity["WARNING"] = "warning";
|
|
111
|
-
ErrorSeverity["ERROR"] = "error";
|
|
112
|
-
ErrorSeverity["CRITICAL"] = "critical";
|
|
113
|
-
})(ErrorSeverity || (ErrorSeverity = {}));
|
|
114
|
-
/**
|
|
115
|
-
* Error category for grouping
|
|
116
|
-
*/
|
|
117
|
-
export var ErrorCategory;
|
|
118
|
-
(function (ErrorCategory) {
|
|
119
|
-
ErrorCategory["GENERAL"] = "general";
|
|
120
|
-
ErrorCategory["HIERARCHY"] = "hierarchy";
|
|
121
|
-
ErrorCategory["CONCURRENCY"] = "concurrency";
|
|
122
|
-
ErrorCategory["SESSION"] = "session";
|
|
123
|
-
ErrorCategory["VERIFICATION"] = "verification";
|
|
124
|
-
ErrorCategory["CONTEXT"] = "context";
|
|
125
|
-
ErrorCategory["PROTOCOL"] = "protocol";
|
|
126
|
-
ErrorCategory["NEXUS"] = "nexus";
|
|
127
|
-
ErrorCategory["LIFECYCLE"] = "lifecycle";
|
|
128
|
-
ErrorCategory["SPECIAL"] = "special";
|
|
129
|
-
})(ErrorCategory || (ErrorCategory = {}));
|
|
130
|
-
/**
|
|
131
|
-
* Complete exit code to error mapping
|
|
132
|
-
*/
|
|
133
|
-
export const ERROR_MAP = {
|
|
134
|
-
// Success
|
|
135
|
-
[ExitCode.SUCCESS]: {
|
|
136
|
-
code: 'SUCCESS',
|
|
137
|
-
name: 'Success',
|
|
138
|
-
description: 'Operation completed successfully',
|
|
139
|
-
category: ErrorCategory.SPECIAL,
|
|
140
|
-
severity: ErrorSeverity.INFO,
|
|
141
|
-
retryable: false,
|
|
142
|
-
},
|
|
143
|
-
// General Errors (1-9)
|
|
144
|
-
[ExitCode.E_GENERAL_ERROR]: {
|
|
145
|
-
code: 'E_GENERAL_ERROR',
|
|
146
|
-
name: 'General Error',
|
|
147
|
-
description: 'Unspecified error occurred',
|
|
148
|
-
category: ErrorCategory.GENERAL,
|
|
149
|
-
severity: ErrorSeverity.ERROR,
|
|
150
|
-
retryable: true,
|
|
151
|
-
fixTemplate: 'Check command syntax and parameters',
|
|
152
|
-
},
|
|
153
|
-
[ExitCode.E_INVALID_INPUT]: {
|
|
154
|
-
code: 'E_INVALID_INPUT',
|
|
155
|
-
name: 'Invalid Input',
|
|
156
|
-
description: 'Invalid user input or command-line arguments',
|
|
157
|
-
category: ErrorCategory.GENERAL,
|
|
158
|
-
severity: ErrorSeverity.ERROR,
|
|
159
|
-
retryable: false,
|
|
160
|
-
fixTemplate: 'Verify command parameters: {details}',
|
|
161
|
-
alternatives: [
|
|
162
|
-
{ action: 'Show command help', command: 'cleo help {command}' },
|
|
163
|
-
],
|
|
164
|
-
},
|
|
165
|
-
[ExitCode.E_FILE_ERROR]: {
|
|
166
|
-
code: 'E_FILE_ERROR',
|
|
167
|
-
name: 'File Error',
|
|
168
|
-
description: 'File system operation failed',
|
|
169
|
-
category: ErrorCategory.GENERAL,
|
|
170
|
-
severity: ErrorSeverity.ERROR,
|
|
171
|
-
retryable: false,
|
|
172
|
-
fixTemplate: 'Check file permissions and disk space',
|
|
173
|
-
},
|
|
174
|
-
[ExitCode.E_NOT_FOUND]: {
|
|
175
|
-
code: 'E_NOT_FOUND',
|
|
176
|
-
name: 'Not Found',
|
|
177
|
-
description: 'Requested resource not found',
|
|
178
|
-
category: ErrorCategory.GENERAL,
|
|
179
|
-
severity: ErrorSeverity.ERROR,
|
|
180
|
-
retryable: false,
|
|
181
|
-
fixTemplate: 'Verify resource exists: {resource}',
|
|
182
|
-
alternatives: [
|
|
183
|
-
{ action: 'List available resources', command: 'cleo list' },
|
|
184
|
-
{ action: 'Search for resource', command: 'cleo find "{query}"' },
|
|
185
|
-
],
|
|
186
|
-
},
|
|
187
|
-
[ExitCode.E_DEPENDENCY_ERROR]: {
|
|
188
|
-
code: 'E_DEPENDENCY_ERROR',
|
|
189
|
-
name: 'Dependency Error',
|
|
190
|
-
description: 'Missing required dependency',
|
|
191
|
-
category: ErrorCategory.GENERAL,
|
|
192
|
-
severity: ErrorSeverity.CRITICAL,
|
|
193
|
-
retryable: false,
|
|
194
|
-
fixTemplate: 'Install required dependency: {dependency}',
|
|
195
|
-
},
|
|
196
|
-
[ExitCode.E_VALIDATION_ERROR]: {
|
|
197
|
-
code: 'E_VALIDATION_ERROR',
|
|
198
|
-
name: 'Validation Error',
|
|
199
|
-
description: 'Data validation failed',
|
|
200
|
-
category: ErrorCategory.GENERAL,
|
|
201
|
-
severity: ErrorSeverity.ERROR,
|
|
202
|
-
retryable: false,
|
|
203
|
-
fixTemplate: 'Fix validation errors: {violations}',
|
|
204
|
-
},
|
|
205
|
-
[ExitCode.E_LOCK_TIMEOUT]: {
|
|
206
|
-
code: 'E_LOCK_TIMEOUT',
|
|
207
|
-
name: 'Lock Timeout',
|
|
208
|
-
description: 'Failed to acquire file lock within timeout',
|
|
209
|
-
category: ErrorCategory.CONCURRENCY,
|
|
210
|
-
severity: ErrorSeverity.WARNING,
|
|
211
|
-
retryable: true,
|
|
212
|
-
fixTemplate: 'Wait for concurrent operation to complete, then retry',
|
|
213
|
-
},
|
|
214
|
-
[ExitCode.E_CONFIG_ERROR]: {
|
|
215
|
-
code: 'E_CONFIG_ERROR',
|
|
216
|
-
name: 'Configuration Error',
|
|
217
|
-
description: 'Configuration error',
|
|
218
|
-
category: ErrorCategory.GENERAL,
|
|
219
|
-
severity: ErrorSeverity.ERROR,
|
|
220
|
-
retryable: false,
|
|
221
|
-
fixTemplate: 'Check configuration file: .cleo/config.json',
|
|
222
|
-
alternatives: [
|
|
223
|
-
{ action: 'Show config', command: 'cleo config show' },
|
|
224
|
-
{ action: 'Validate config', command: 'cleo --validate' },
|
|
225
|
-
],
|
|
226
|
-
},
|
|
227
|
-
// Hierarchy Errors (10-19)
|
|
228
|
-
[ExitCode.E_PARENT_NOT_FOUND]: {
|
|
229
|
-
code: 'E_PARENT_NOT_FOUND',
|
|
230
|
-
name: 'Parent Not Found',
|
|
231
|
-
description: 'Parent task does not exist',
|
|
232
|
-
category: ErrorCategory.HIERARCHY,
|
|
233
|
-
severity: ErrorSeverity.ERROR,
|
|
234
|
-
retryable: false,
|
|
235
|
-
fixTemplate: 'Create parent task first or remove --parent flag',
|
|
236
|
-
alternatives: [
|
|
237
|
-
{ action: 'List tasks', command: 'cleo list' },
|
|
238
|
-
{ action: 'Check task exists', command: 'cleo exists {parentId}' },
|
|
239
|
-
],
|
|
240
|
-
},
|
|
241
|
-
[ExitCode.E_DEPTH_EXCEEDED]: {
|
|
242
|
-
code: 'E_DEPTH_EXCEEDED',
|
|
243
|
-
name: 'Depth Exceeded',
|
|
244
|
-
description: 'Maximum hierarchy depth (3) would be exceeded',
|
|
245
|
-
category: ErrorCategory.HIERARCHY,
|
|
246
|
-
severity: ErrorSeverity.ERROR,
|
|
247
|
-
retryable: false,
|
|
248
|
-
fixTemplate: 'Create task at higher level (max depth: epic→task→subtask)',
|
|
249
|
-
alternatives: [
|
|
250
|
-
{ action: 'View hierarchy', command: 'cleo tree {parentId}' },
|
|
251
|
-
{ action: 'Create as sibling', command: 'Remove --parent flag' },
|
|
252
|
-
],
|
|
253
|
-
},
|
|
254
|
-
[ExitCode.E_SIBLING_LIMIT]: {
|
|
255
|
-
code: 'E_SIBLING_LIMIT',
|
|
256
|
-
name: 'Sibling Limit',
|
|
257
|
-
description: 'Maximum siblings (7) would be exceeded',
|
|
258
|
-
category: ErrorCategory.HIERARCHY,
|
|
259
|
-
severity: ErrorSeverity.ERROR,
|
|
260
|
-
retryable: false,
|
|
261
|
-
fixTemplate: 'Create new parent to group related tasks',
|
|
262
|
-
alternatives: [
|
|
263
|
-
{ action: 'List siblings', command: 'cleo list --parent {parentId}' },
|
|
264
|
-
{ action: 'Create new epic', command: 'cleo add "New Group" --parent {grandparentId}' },
|
|
265
|
-
],
|
|
266
|
-
},
|
|
267
|
-
[ExitCode.E_INVALID_PARENT_TYPE]: {
|
|
268
|
-
code: 'E_INVALID_PARENT_TYPE',
|
|
269
|
-
name: 'Invalid Parent Type',
|
|
270
|
-
description: 'Subtask cannot have children',
|
|
271
|
-
category: ErrorCategory.HIERARCHY,
|
|
272
|
-
severity: ErrorSeverity.ERROR,
|
|
273
|
-
retryable: false,
|
|
274
|
-
fixTemplate: 'Promote subtask to task first: cleo promote {parentId}',
|
|
275
|
-
},
|
|
276
|
-
[ExitCode.E_CIRCULAR_REFERENCE]: {
|
|
277
|
-
code: 'E_CIRCULAR_REFERENCE',
|
|
278
|
-
name: 'Circular Reference',
|
|
279
|
-
description: 'Operation would create circular reference',
|
|
280
|
-
category: ErrorCategory.HIERARCHY,
|
|
281
|
-
severity: ErrorSeverity.ERROR,
|
|
282
|
-
retryable: false,
|
|
283
|
-
fixTemplate: 'Cannot create circular dependency: {cycle}',
|
|
284
|
-
alternatives: [
|
|
285
|
-
{ action: 'View dependencies', command: 'cleo deps {taskId}' },
|
|
286
|
-
],
|
|
287
|
-
},
|
|
288
|
-
[ExitCode.E_ORPHAN_DETECTED]: {
|
|
289
|
-
code: 'E_ORPHAN_DETECTED',
|
|
290
|
-
name: 'Orphan Detected',
|
|
291
|
-
description: 'Task has invalid parentId (orphan detected)',
|
|
292
|
-
category: ErrorCategory.HIERARCHY,
|
|
293
|
-
severity: ErrorSeverity.ERROR,
|
|
294
|
-
retryable: false,
|
|
295
|
-
fixTemplate: 'Remove parent reference or restore parent task',
|
|
296
|
-
alternatives: [
|
|
297
|
-
{ action: 'Remove parent', command: 'cleo update {taskId} --no-parent' },
|
|
298
|
-
{ action: 'Unarchive parent', command: 'cleo unarchive {parentId}' },
|
|
299
|
-
],
|
|
300
|
-
},
|
|
301
|
-
[ExitCode.E_HAS_CHILDREN]: {
|
|
302
|
-
code: 'E_HAS_CHILDREN',
|
|
303
|
-
name: 'Has Children',
|
|
304
|
-
description: 'Task has children, cannot delete without strategy',
|
|
305
|
-
category: ErrorCategory.HIERARCHY,
|
|
306
|
-
severity: ErrorSeverity.ERROR,
|
|
307
|
-
retryable: false,
|
|
308
|
-
fixTemplate: 'Specify deletion strategy: --cascade, --reparent, or --orphan',
|
|
309
|
-
alternatives: [
|
|
310
|
-
{ action: 'List children', command: 'cleo list --parent {taskId}' },
|
|
311
|
-
{ action: 'Cascade delete', command: 'cleo delete {taskId} --cascade' },
|
|
312
|
-
{ action: 'Reparent children', command: 'cleo delete {taskId} --reparent {newParentId}' },
|
|
313
|
-
],
|
|
314
|
-
},
|
|
315
|
-
[ExitCode.E_TASK_COMPLETED]: {
|
|
316
|
-
code: 'E_TASK_COMPLETED',
|
|
317
|
-
name: 'Task Completed',
|
|
318
|
-
description: 'Task is completed, should use archive instead',
|
|
319
|
-
category: ErrorCategory.HIERARCHY,
|
|
320
|
-
severity: ErrorSeverity.WARNING,
|
|
321
|
-
retryable: false,
|
|
322
|
-
fixTemplate: 'Archive completed task: cleo archive {taskId}',
|
|
323
|
-
},
|
|
324
|
-
[ExitCode.E_CASCADE_FAILED]: {
|
|
325
|
-
code: 'E_CASCADE_FAILED',
|
|
326
|
-
name: 'Cascade Failed',
|
|
327
|
-
description: 'Cascade deletion partially failed',
|
|
328
|
-
category: ErrorCategory.HIERARCHY,
|
|
329
|
-
severity: ErrorSeverity.ERROR,
|
|
330
|
-
retryable: false,
|
|
331
|
-
fixTemplate: 'Some child tasks failed to delete: {failures}',
|
|
332
|
-
},
|
|
333
|
-
[ExitCode.E_HAS_DEPENDENTS]: {
|
|
334
|
-
code: 'E_HAS_DEPENDENTS',
|
|
335
|
-
name: 'Has Dependents',
|
|
336
|
-
description: 'Task has dependents, cannot delete without --orphan flag',
|
|
337
|
-
category: ErrorCategory.HIERARCHY,
|
|
338
|
-
severity: ErrorSeverity.ERROR,
|
|
339
|
-
retryable: false,
|
|
340
|
-
fixTemplate: 'Other tasks depend on this: cleo delete {taskId} --orphan',
|
|
341
|
-
alternatives: [
|
|
342
|
-
{ action: 'List dependents', command: 'cleo deps {taskId} --reverse' },
|
|
343
|
-
{ action: 'Force delete', command: 'cleo delete {taskId} --orphan' },
|
|
344
|
-
],
|
|
345
|
-
},
|
|
346
|
-
// Concurrency Errors (20-29)
|
|
347
|
-
[ExitCode.E_CHECKSUM_MISMATCH]: {
|
|
348
|
-
code: 'E_CHECKSUM_MISMATCH',
|
|
349
|
-
name: 'Checksum Mismatch',
|
|
350
|
-
description: 'File was modified externally between read and write',
|
|
351
|
-
category: ErrorCategory.CONCURRENCY,
|
|
352
|
-
severity: ErrorSeverity.WARNING,
|
|
353
|
-
retryable: true,
|
|
354
|
-
fixTemplate: 'File modified by another process, retrying operation',
|
|
355
|
-
},
|
|
356
|
-
[ExitCode.E_CONCURRENT_MODIFICATION]: {
|
|
357
|
-
code: 'E_CONCURRENT_MODIFICATION',
|
|
358
|
-
name: 'Concurrent Modification',
|
|
359
|
-
description: 'Concurrent modification detected during multi-agent operation',
|
|
360
|
-
category: ErrorCategory.CONCURRENCY,
|
|
361
|
-
severity: ErrorSeverity.WARNING,
|
|
362
|
-
retryable: true,
|
|
363
|
-
fixTemplate: 'Wait for concurrent agent to complete, then retry',
|
|
364
|
-
},
|
|
365
|
-
[ExitCode.E_ID_COLLISION]: {
|
|
366
|
-
code: 'E_ID_COLLISION',
|
|
367
|
-
name: 'ID Collision',
|
|
368
|
-
description: 'ID generation collision',
|
|
369
|
-
category: ErrorCategory.CONCURRENCY,
|
|
370
|
-
severity: ErrorSeverity.WARNING,
|
|
371
|
-
retryable: true,
|
|
372
|
-
fixTemplate: 'ID collision detected, regenerating unique ID',
|
|
373
|
-
},
|
|
374
|
-
// Session Errors (30-39)
|
|
375
|
-
[ExitCode.E_SESSION_EXISTS]: {
|
|
376
|
-
code: 'E_SESSION_EXISTS',
|
|
377
|
-
name: 'Session Exists',
|
|
378
|
-
description: 'Session already active for this scope',
|
|
379
|
-
category: ErrorCategory.SESSION,
|
|
380
|
-
severity: ErrorSeverity.ERROR,
|
|
381
|
-
retryable: false,
|
|
382
|
-
fixTemplate: 'Resume existing session: cleo session resume {sessionId}',
|
|
383
|
-
alternatives: [
|
|
384
|
-
{ action: 'List sessions', command: 'cleo session list' },
|
|
385
|
-
{ action: 'Resume session', command: 'cleo session resume {sessionId}' },
|
|
386
|
-
],
|
|
387
|
-
},
|
|
388
|
-
[ExitCode.E_SESSION_NOT_FOUND]: {
|
|
389
|
-
code: 'E_SESSION_NOT_FOUND',
|
|
390
|
-
name: 'Session Not Found',
|
|
391
|
-
description: 'Session ID not found',
|
|
392
|
-
category: ErrorCategory.SESSION,
|
|
393
|
-
severity: ErrorSeverity.ERROR,
|
|
394
|
-
retryable: false,
|
|
395
|
-
fixTemplate: 'Start new session: cleo session start --scope epic:{epicId}',
|
|
396
|
-
alternatives: [
|
|
397
|
-
{ action: 'List sessions', command: 'cleo session list' },
|
|
398
|
-
{ action: 'Start session', command: 'cleo session start --scope epic:{epicId}' },
|
|
399
|
-
],
|
|
400
|
-
},
|
|
401
|
-
[ExitCode.E_SCOPE_CONFLICT]: {
|
|
402
|
-
code: 'E_SCOPE_CONFLICT',
|
|
403
|
-
name: 'Scope Conflict',
|
|
404
|
-
description: 'Session scope conflicts with existing session',
|
|
405
|
-
category: ErrorCategory.SESSION,
|
|
406
|
-
severity: ErrorSeverity.ERROR,
|
|
407
|
-
retryable: false,
|
|
408
|
-
fixTemplate: 'Another session is active for this epic',
|
|
409
|
-
alternatives: [
|
|
410
|
-
{ action: 'List active sessions', command: 'cleo session list --active' },
|
|
411
|
-
{ action: 'End conflicting session', command: 'cleo session end --session {conflictingId}' },
|
|
412
|
-
],
|
|
413
|
-
},
|
|
414
|
-
[ExitCode.E_SCOPE_INVALID]: {
|
|
415
|
-
code: 'E_SCOPE_INVALID',
|
|
416
|
-
name: 'Scope Invalid',
|
|
417
|
-
description: 'Invalid session scope (no epic, empty, etc.)',
|
|
418
|
-
category: ErrorCategory.SESSION,
|
|
419
|
-
severity: ErrorSeverity.ERROR,
|
|
420
|
-
retryable: false,
|
|
421
|
-
fixTemplate: 'Specify valid epic scope: --scope epic:{epicId}',
|
|
422
|
-
alternatives: [
|
|
423
|
-
{ action: 'List epics', command: 'cleo list --type epic' },
|
|
424
|
-
],
|
|
425
|
-
},
|
|
426
|
-
[ExitCode.E_TASK_NOT_IN_SCOPE]: {
|
|
427
|
-
code: 'E_TASK_NOT_IN_SCOPE',
|
|
428
|
-
name: 'Task Not In Scope',
|
|
429
|
-
description: 'Task is not within session scope',
|
|
430
|
-
category: ErrorCategory.SESSION,
|
|
431
|
-
severity: ErrorSeverity.ERROR,
|
|
432
|
-
retryable: false,
|
|
433
|
-
fixTemplate: 'Task {taskId} is not in current session scope',
|
|
434
|
-
alternatives: [
|
|
435
|
-
{ action: 'View session scope', command: 'cleo session status' },
|
|
436
|
-
{ action: 'View task tree', command: 'cleo tree {taskId}' },
|
|
437
|
-
],
|
|
438
|
-
},
|
|
439
|
-
[ExitCode.E_TASK_CLAIMED]: {
|
|
440
|
-
code: 'E_TASK_CLAIMED',
|
|
441
|
-
name: 'Task Claimed',
|
|
442
|
-
description: 'Task is already claimed by another agent',
|
|
443
|
-
category: ErrorCategory.SESSION,
|
|
444
|
-
severity: ErrorSeverity.ERROR,
|
|
445
|
-
retryable: false,
|
|
446
|
-
fixTemplate: 'Task claimed by another session: {claimingSession}',
|
|
447
|
-
alternatives: [
|
|
448
|
-
{ action: 'List active sessions', command: 'cleo session list --active' },
|
|
449
|
-
{ action: 'Choose different task', command: 'cleo next' },
|
|
450
|
-
],
|
|
451
|
-
},
|
|
452
|
-
[ExitCode.E_SESSION_REQUIRED]: {
|
|
453
|
-
code: 'E_SESSION_REQUIRED',
|
|
454
|
-
name: 'Session Required',
|
|
455
|
-
description: 'Operation requires an active session',
|
|
456
|
-
category: ErrorCategory.SESSION,
|
|
457
|
-
severity: ErrorSeverity.ERROR,
|
|
458
|
-
retryable: false,
|
|
459
|
-
fixTemplate: 'Start session first: cleo session start --scope epic:{epicId} --auto-start',
|
|
460
|
-
alternatives: [
|
|
461
|
-
{ action: 'Start session', command: 'cleo session start --scope epic:{epicId} --auto-start' },
|
|
462
|
-
{ action: 'Resume session', command: 'cleo session resume {sessionId}' },
|
|
463
|
-
],
|
|
464
|
-
},
|
|
465
|
-
[ExitCode.E_SESSION_CLOSE_BLOCKED]: {
|
|
466
|
-
code: 'E_SESSION_CLOSE_BLOCKED',
|
|
467
|
-
name: 'Session Close Blocked',
|
|
468
|
-
description: 'Cannot close session with incomplete tasks',
|
|
469
|
-
category: ErrorCategory.SESSION,
|
|
470
|
-
severity: ErrorSeverity.ERROR,
|
|
471
|
-
retryable: false,
|
|
472
|
-
fixTemplate: 'Complete pending tasks before closing session',
|
|
473
|
-
alternatives: [
|
|
474
|
-
{ action: 'List pending tasks', command: 'cleo list --status pending --parent {epicId}' },
|
|
475
|
-
{ action: 'Suspend session', command: 'cleo session suspend --note "Reason"' },
|
|
476
|
-
],
|
|
477
|
-
},
|
|
478
|
-
[ExitCode.E_FOCUS_REQUIRED]: {
|
|
479
|
-
code: 'E_FOCUS_REQUIRED',
|
|
480
|
-
name: 'Focus Required',
|
|
481
|
-
description: 'Operation requires a focused task',
|
|
482
|
-
category: ErrorCategory.SESSION,
|
|
483
|
-
severity: ErrorSeverity.ERROR,
|
|
484
|
-
retryable: false,
|
|
485
|
-
fixTemplate: 'Set focus first: cleo focus set {taskId}',
|
|
486
|
-
alternatives: [
|
|
487
|
-
{ action: 'Get next task', command: 'cleo next' },
|
|
488
|
-
{ action: 'Set focus', command: 'cleo focus set {taskId}' },
|
|
489
|
-
],
|
|
490
|
-
},
|
|
491
|
-
[ExitCode.E_NOTES_REQUIRED]: {
|
|
492
|
-
code: 'E_NOTES_REQUIRED',
|
|
493
|
-
name: 'Notes Required',
|
|
494
|
-
description: 'Session notes required for operation',
|
|
495
|
-
category: ErrorCategory.SESSION,
|
|
496
|
-
severity: ErrorSeverity.ERROR,
|
|
497
|
-
retryable: false,
|
|
498
|
-
fixTemplate: 'Add notes: --note "Session summary"',
|
|
499
|
-
},
|
|
500
|
-
// Verification Errors (40-49)
|
|
501
|
-
[ExitCode.E_VERIFICATION_INIT_FAILED]: {
|
|
502
|
-
code: 'E_VERIFICATION_INIT_FAILED',
|
|
503
|
-
name: 'Verification Init Failed',
|
|
504
|
-
description: 'Verification initialization failed',
|
|
505
|
-
category: ErrorCategory.VERIFICATION,
|
|
506
|
-
severity: ErrorSeverity.ERROR,
|
|
507
|
-
retryable: false,
|
|
508
|
-
fixTemplate: 'Cannot initialize verification object for task {taskId}',
|
|
509
|
-
},
|
|
510
|
-
[ExitCode.E_GATE_UPDATE_FAILED]: {
|
|
511
|
-
code: 'E_GATE_UPDATE_FAILED',
|
|
512
|
-
name: 'Gate Update Failed',
|
|
513
|
-
description: 'Gate update failed',
|
|
514
|
-
category: ErrorCategory.VERIFICATION,
|
|
515
|
-
severity: ErrorSeverity.ERROR,
|
|
516
|
-
retryable: false,
|
|
517
|
-
fixTemplate: 'Cannot update gate {gateName}: {reason}',
|
|
518
|
-
},
|
|
519
|
-
[ExitCode.E_INVALID_GATE]: {
|
|
520
|
-
code: 'E_INVALID_GATE',
|
|
521
|
-
name: 'Invalid Gate',
|
|
522
|
-
description: 'Invalid gate name',
|
|
523
|
-
category: ErrorCategory.VERIFICATION,
|
|
524
|
-
severity: ErrorSeverity.ERROR,
|
|
525
|
-
retryable: false,
|
|
526
|
-
fixTemplate: 'Unknown gate: {gateName}',
|
|
527
|
-
alternatives: [
|
|
528
|
-
{ action: 'List valid gates', command: 'cleo gate list' },
|
|
529
|
-
],
|
|
530
|
-
},
|
|
531
|
-
[ExitCode.E_INVALID_AGENT]: {
|
|
532
|
-
code: 'E_INVALID_AGENT',
|
|
533
|
-
name: 'Invalid Agent',
|
|
534
|
-
description: 'Invalid agent name',
|
|
535
|
-
category: ErrorCategory.VERIFICATION,
|
|
536
|
-
severity: ErrorSeverity.ERROR,
|
|
537
|
-
retryable: false,
|
|
538
|
-
fixTemplate: 'Unknown agent: {agentName}',
|
|
539
|
-
alternatives: [
|
|
540
|
-
{ action: 'List valid agents', command: 'skill list' },
|
|
541
|
-
],
|
|
542
|
-
},
|
|
543
|
-
[ExitCode.E_MAX_ROUNDS_EXCEEDED]: {
|
|
544
|
-
code: 'E_MAX_ROUNDS_EXCEEDED',
|
|
545
|
-
name: 'Max Rounds Exceeded',
|
|
546
|
-
description: 'Maximum implementation rounds exceeded',
|
|
547
|
-
category: ErrorCategory.VERIFICATION,
|
|
548
|
-
severity: ErrorSeverity.ERROR,
|
|
549
|
-
retryable: false,
|
|
550
|
-
fixTemplate: 'Exceeded max rounds ({maxRounds}), escalating to HITL',
|
|
551
|
-
},
|
|
552
|
-
[ExitCode.E_GATE_DEPENDENCY]: {
|
|
553
|
-
code: 'E_GATE_DEPENDENCY',
|
|
554
|
-
name: 'Gate Dependency',
|
|
555
|
-
description: 'Gate dependency not met',
|
|
556
|
-
category: ErrorCategory.VERIFICATION,
|
|
557
|
-
severity: ErrorSeverity.ERROR,
|
|
558
|
-
retryable: false,
|
|
559
|
-
fixTemplate: 'Complete prerequisite gate first: {prerequisiteGate}',
|
|
560
|
-
alternatives: [
|
|
561
|
-
{ action: 'View gate status', command: 'cleo lifecycle gates {taskId}' },
|
|
562
|
-
],
|
|
563
|
-
},
|
|
564
|
-
[ExitCode.E_VERIFICATION_LOCKED]: {
|
|
565
|
-
code: 'E_VERIFICATION_LOCKED',
|
|
566
|
-
name: 'Verification Locked',
|
|
567
|
-
description: 'Verification is locked (cannot modify)',
|
|
568
|
-
category: ErrorCategory.VERIFICATION,
|
|
569
|
-
severity: ErrorSeverity.ERROR,
|
|
570
|
-
retryable: false,
|
|
571
|
-
fixTemplate: 'Verification locked, cannot modify gates',
|
|
572
|
-
},
|
|
573
|
-
[ExitCode.E_ROUND_MISMATCH]: {
|
|
574
|
-
code: 'E_ROUND_MISMATCH',
|
|
575
|
-
name: 'Round Mismatch',
|
|
576
|
-
description: 'Round number mismatch',
|
|
577
|
-
category: ErrorCategory.VERIFICATION,
|
|
578
|
-
severity: ErrorSeverity.ERROR,
|
|
579
|
-
retryable: false,
|
|
580
|
-
fixTemplate: 'Round mismatch: expected {expectedRound}, got {actualRound}',
|
|
581
|
-
},
|
|
582
|
-
// Context Safeguard Errors (50-59)
|
|
583
|
-
[ExitCode.E_CONTEXT_WARNING]: {
|
|
584
|
-
code: 'E_CONTEXT_WARNING',
|
|
585
|
-
name: 'Context Warning',
|
|
586
|
-
description: 'Context warning threshold reached (70-84%)',
|
|
587
|
-
category: ErrorCategory.CONTEXT,
|
|
588
|
-
severity: ErrorSeverity.WARNING,
|
|
589
|
-
retryable: false,
|
|
590
|
-
fixTemplate: 'Context usage at {percentage}%, consider using cleo safestop',
|
|
591
|
-
alternatives: [
|
|
592
|
-
{ action: 'Check context', command: 'cleo context' },
|
|
593
|
-
{ action: 'Safe stop', command: 'cleo safestop' },
|
|
594
|
-
],
|
|
595
|
-
},
|
|
596
|
-
[ExitCode.E_CONTEXT_CAUTION]: {
|
|
597
|
-
code: 'E_CONTEXT_CAUTION',
|
|
598
|
-
name: 'Context Caution',
|
|
599
|
-
description: 'Context caution threshold reached (85-89%)',
|
|
600
|
-
category: ErrorCategory.CONTEXT,
|
|
601
|
-
severity: ErrorSeverity.WARNING,
|
|
602
|
-
retryable: false,
|
|
603
|
-
fixTemplate: 'Context usage at {percentage}%, recommend using cleo safestop',
|
|
604
|
-
alternatives: [
|
|
605
|
-
{ action: 'Check context', command: 'cleo context' },
|
|
606
|
-
{ action: 'Safe stop', command: 'cleo safestop' },
|
|
607
|
-
],
|
|
608
|
-
},
|
|
609
|
-
[ExitCode.E_CONTEXT_CRITICAL]: {
|
|
610
|
-
code: 'E_CONTEXT_CRITICAL',
|
|
611
|
-
name: 'Context Critical',
|
|
612
|
-
description: 'Context critical threshold reached (90-94%)',
|
|
613
|
-
category: ErrorCategory.CONTEXT,
|
|
614
|
-
severity: ErrorSeverity.CRITICAL,
|
|
615
|
-
retryable: false,
|
|
616
|
-
fixTemplate: 'Context usage at {percentage}%, MUST use cleo safestop now',
|
|
617
|
-
alternatives: [
|
|
618
|
-
{ action: 'Safe stop', command: 'cleo safestop' },
|
|
619
|
-
],
|
|
620
|
-
},
|
|
621
|
-
[ExitCode.E_CONTEXT_EMERGENCY]: {
|
|
622
|
-
code: 'E_CONTEXT_EMERGENCY',
|
|
623
|
-
name: 'Context Emergency',
|
|
624
|
-
description: 'Context emergency threshold reached (95%+)',
|
|
625
|
-
category: ErrorCategory.CONTEXT,
|
|
626
|
-
severity: ErrorSeverity.CRITICAL,
|
|
627
|
-
retryable: false,
|
|
628
|
-
fixTemplate: 'Context usage at {percentage}%, EMERGENCY - use cleo safestop immediately',
|
|
629
|
-
alternatives: [
|
|
630
|
-
{ action: 'Safe stop', command: 'cleo safestop' },
|
|
631
|
-
],
|
|
632
|
-
},
|
|
633
|
-
[ExitCode.E_CONTEXT_STALE]: {
|
|
634
|
-
code: 'E_CONTEXT_STALE',
|
|
635
|
-
name: 'Context Stale',
|
|
636
|
-
description: 'Context state file is stale or missing',
|
|
637
|
-
category: ErrorCategory.CONTEXT,
|
|
638
|
-
severity: ErrorSeverity.WARNING,
|
|
639
|
-
retryable: true,
|
|
640
|
-
fixTemplate: 'Context state file is stale, refresh with cleo context',
|
|
641
|
-
},
|
|
642
|
-
// Protocol Violations (60-70)
|
|
643
|
-
[ExitCode.E_PROTOCOL_RESEARCH]: {
|
|
644
|
-
code: 'E_PROTOCOL_RESEARCH',
|
|
645
|
-
name: 'Research Protocol Violation',
|
|
646
|
-
description: 'Research protocol requirements not met',
|
|
647
|
-
category: ErrorCategory.PROTOCOL,
|
|
648
|
-
severity: ErrorSeverity.ERROR,
|
|
649
|
-
retryable: true,
|
|
650
|
-
fixTemplate: 'Fix research protocol violations: {violations}',
|
|
651
|
-
documentation: 'protocols/research.md',
|
|
652
|
-
},
|
|
653
|
-
[ExitCode.E_PROTOCOL_CONSENSUS]: {
|
|
654
|
-
code: 'E_PROTOCOL_CONSENSUS',
|
|
655
|
-
name: 'Consensus Protocol Violation',
|
|
656
|
-
description: 'Consensus protocol requirements not met',
|
|
657
|
-
category: ErrorCategory.PROTOCOL,
|
|
658
|
-
severity: ErrorSeverity.ERROR,
|
|
659
|
-
retryable: true,
|
|
660
|
-
fixTemplate: 'Fix consensus protocol violations: {violations}',
|
|
661
|
-
documentation: 'protocols/consensus.md',
|
|
662
|
-
},
|
|
663
|
-
[ExitCode.E_PROTOCOL_SPECIFICATION]: {
|
|
664
|
-
code: 'E_PROTOCOL_SPECIFICATION',
|
|
665
|
-
name: 'Specification Protocol Violation',
|
|
666
|
-
description: 'Specification protocol requirements not met',
|
|
667
|
-
category: ErrorCategory.PROTOCOL,
|
|
668
|
-
severity: ErrorSeverity.ERROR,
|
|
669
|
-
retryable: true,
|
|
670
|
-
fixTemplate: 'Fix specification protocol violations: {violations}',
|
|
671
|
-
documentation: 'protocols/specification.md',
|
|
672
|
-
},
|
|
673
|
-
[ExitCode.E_PROTOCOL_DECOMPOSITION]: {
|
|
674
|
-
code: 'E_PROTOCOL_DECOMPOSITION',
|
|
675
|
-
name: 'Decomposition Protocol Violation',
|
|
676
|
-
description: 'Decomposition protocol requirements not met',
|
|
677
|
-
category: ErrorCategory.PROTOCOL,
|
|
678
|
-
severity: ErrorSeverity.ERROR,
|
|
679
|
-
retryable: true,
|
|
680
|
-
fixTemplate: 'Fix decomposition protocol violations: {violations}',
|
|
681
|
-
documentation: 'protocols/decomposition.md',
|
|
682
|
-
},
|
|
683
|
-
[ExitCode.E_PROTOCOL_IMPLEMENTATION]: {
|
|
684
|
-
code: 'E_PROTOCOL_IMPLEMENTATION',
|
|
685
|
-
name: 'Implementation Protocol Violation',
|
|
686
|
-
description: 'Implementation protocol requirements not met',
|
|
687
|
-
category: ErrorCategory.PROTOCOL,
|
|
688
|
-
severity: ErrorSeverity.ERROR,
|
|
689
|
-
retryable: false,
|
|
690
|
-
fixTemplate: 'Fix implementation protocol violations: {violations}',
|
|
691
|
-
documentation: 'protocols/implementation.md',
|
|
692
|
-
},
|
|
693
|
-
[ExitCode.E_PROTOCOL_CONTRIBUTION]: {
|
|
694
|
-
code: 'E_PROTOCOL_CONTRIBUTION',
|
|
695
|
-
name: 'Contribution Protocol Violation',
|
|
696
|
-
description: 'Contribution protocol requirements not met',
|
|
697
|
-
category: ErrorCategory.PROTOCOL,
|
|
698
|
-
severity: ErrorSeverity.ERROR,
|
|
699
|
-
retryable: false,
|
|
700
|
-
fixTemplate: 'Fix contribution protocol violations: {violations}',
|
|
701
|
-
documentation: 'protocols/contribution.md',
|
|
702
|
-
},
|
|
703
|
-
[ExitCode.E_PROTOCOL_RELEASE]: {
|
|
704
|
-
code: 'E_PROTOCOL_RELEASE',
|
|
705
|
-
name: 'Release Protocol Violation',
|
|
706
|
-
description: 'Release protocol requirements not met',
|
|
707
|
-
category: ErrorCategory.PROTOCOL,
|
|
708
|
-
severity: ErrorSeverity.ERROR,
|
|
709
|
-
retryable: false,
|
|
710
|
-
fixTemplate: 'Fix release protocol violations: {violations}',
|
|
711
|
-
documentation: 'protocols/release.md',
|
|
712
|
-
},
|
|
713
|
-
[ExitCode.E_PROTOCOL_GENERIC]: {
|
|
714
|
-
code: 'E_PROTOCOL_GENERIC',
|
|
715
|
-
name: 'Generic Protocol Violation',
|
|
716
|
-
description: 'Generic protocol violation or unknown protocol type',
|
|
717
|
-
category: ErrorCategory.PROTOCOL,
|
|
718
|
-
severity: ErrorSeverity.ERROR,
|
|
719
|
-
retryable: false,
|
|
720
|
-
fixTemplate: 'Fix protocol violations: {violations}',
|
|
721
|
-
},
|
|
722
|
-
[ExitCode.E_PROTOCOL_VALIDATION]: {
|
|
723
|
-
code: 'E_PROTOCOL_VALIDATION',
|
|
724
|
-
name: 'Validation Protocol Violation',
|
|
725
|
-
description: 'Validation protocol requirements not met',
|
|
726
|
-
category: ErrorCategory.PROTOCOL,
|
|
727
|
-
severity: ErrorSeverity.ERROR,
|
|
728
|
-
retryable: false,
|
|
729
|
-
fixTemplate: 'Fix validation protocol violations: {violations}',
|
|
730
|
-
documentation: 'protocols/validation.md',
|
|
731
|
-
},
|
|
732
|
-
[ExitCode.E_TESTS_SKIPPED]: {
|
|
733
|
-
code: 'E_TESTS_SKIPPED',
|
|
734
|
-
name: 'Tests Skipped',
|
|
735
|
-
description: 'Tests not run or incomplete',
|
|
736
|
-
category: ErrorCategory.PROTOCOL,
|
|
737
|
-
severity: ErrorSeverity.ERROR,
|
|
738
|
-
retryable: false,
|
|
739
|
-
fixTemplate: 'Run complete test suite: cleo test run',
|
|
740
|
-
alternatives: [
|
|
741
|
-
{ action: 'Run tests', command: 'cleo test run' },
|
|
742
|
-
{ action: 'Check test status', command: 'cleo test status' },
|
|
743
|
-
],
|
|
744
|
-
},
|
|
745
|
-
[ExitCode.E_COVERAGE_INSUFFICIENT]: {
|
|
746
|
-
code: 'E_COVERAGE_INSUFFICIENT',
|
|
747
|
-
name: 'Coverage Insufficient',
|
|
748
|
-
description: 'Test coverage below threshold',
|
|
749
|
-
category: ErrorCategory.PROTOCOL,
|
|
750
|
-
severity: ErrorSeverity.ERROR,
|
|
751
|
-
retryable: false,
|
|
752
|
-
fixTemplate: 'Increase test coverage to meet threshold',
|
|
753
|
-
alternatives: [
|
|
754
|
-
{ action: 'View coverage', command: 'cleo test coverage' },
|
|
755
|
-
],
|
|
756
|
-
},
|
|
757
|
-
// Nexus Errors (71-79)
|
|
758
|
-
[ExitCode.E_NEXUS_NOT_INITIALIZED]: {
|
|
759
|
-
code: 'E_NEXUS_NOT_INITIALIZED',
|
|
760
|
-
name: 'Nexus Not Initialized',
|
|
761
|
-
description: 'Nexus not initialized',
|
|
762
|
-
category: ErrorCategory.NEXUS,
|
|
763
|
-
severity: ErrorSeverity.ERROR,
|
|
764
|
-
retryable: false,
|
|
765
|
-
fixTemplate: 'Initialize Nexus: cleo nexus init',
|
|
766
|
-
},
|
|
767
|
-
[ExitCode.E_NEXUS_PROJECT_NOT_FOUND]: {
|
|
768
|
-
code: 'E_NEXUS_PROJECT_NOT_FOUND',
|
|
769
|
-
name: 'Nexus Project Not Found',
|
|
770
|
-
description: 'Project not found in global registry',
|
|
771
|
-
category: ErrorCategory.NEXUS,
|
|
772
|
-
severity: ErrorSeverity.ERROR,
|
|
773
|
-
retryable: false,
|
|
774
|
-
fixTemplate: 'Register project: cleo nexus register {projectPath}',
|
|
775
|
-
},
|
|
776
|
-
[ExitCode.E_NEXUS_PERMISSION_DENIED]: {
|
|
777
|
-
code: 'E_NEXUS_PERMISSION_DENIED',
|
|
778
|
-
name: 'Nexus Permission Denied',
|
|
779
|
-
description: 'Insufficient permission for cross-project operation',
|
|
780
|
-
category: ErrorCategory.NEXUS,
|
|
781
|
-
severity: ErrorSeverity.ERROR,
|
|
782
|
-
retryable: false,
|
|
783
|
-
fixTemplate: 'Check Nexus permissions for project {projectName}',
|
|
784
|
-
},
|
|
785
|
-
[ExitCode.E_NEXUS_INVALID_SYNTAX]: {
|
|
786
|
-
code: 'E_NEXUS_INVALID_SYNTAX',
|
|
787
|
-
name: 'Nexus Invalid Syntax',
|
|
788
|
-
description: 'Invalid task reference syntax',
|
|
789
|
-
category: ErrorCategory.NEXUS,
|
|
790
|
-
severity: ErrorSeverity.ERROR,
|
|
791
|
-
retryable: false,
|
|
792
|
-
fixTemplate: 'Use format: project:task_id (e.g., "myproject:T123")',
|
|
793
|
-
},
|
|
794
|
-
[ExitCode.E_NEXUS_SYNC_FAILED]: {
|
|
795
|
-
code: 'E_NEXUS_SYNC_FAILED',
|
|
796
|
-
name: 'Nexus Sync Failed',
|
|
797
|
-
description: 'Failed to sync project metadata',
|
|
798
|
-
category: ErrorCategory.NEXUS,
|
|
799
|
-
severity: ErrorSeverity.ERROR,
|
|
800
|
-
retryable: true,
|
|
801
|
-
fixTemplate: 'Retry Nexus sync: cleo nexus sync',
|
|
802
|
-
},
|
|
803
|
-
[ExitCode.E_NEXUS_REGISTRY_CORRUPT]: {
|
|
804
|
-
code: 'E_NEXUS_REGISTRY_CORRUPT',
|
|
805
|
-
name: 'Nexus Registry Corrupt',
|
|
806
|
-
description: 'Nexus registry file corrupted or invalid',
|
|
807
|
-
category: ErrorCategory.NEXUS,
|
|
808
|
-
severity: ErrorSeverity.CRITICAL,
|
|
809
|
-
retryable: false,
|
|
810
|
-
fixTemplate: 'Restore from backup: cleo nexus restore',
|
|
811
|
-
},
|
|
812
|
-
[ExitCode.E_NEXUS_PROJECT_EXISTS]: {
|
|
813
|
-
code: 'E_NEXUS_PROJECT_EXISTS',
|
|
814
|
-
name: 'Nexus Project Exists',
|
|
815
|
-
description: 'Project already registered in Nexus',
|
|
816
|
-
category: ErrorCategory.NEXUS,
|
|
817
|
-
severity: ErrorSeverity.ERROR,
|
|
818
|
-
retryable: false,
|
|
819
|
-
fixTemplate: 'Project already registered: {projectName}',
|
|
820
|
-
},
|
|
821
|
-
[ExitCode.E_NEXUS_QUERY_FAILED]: {
|
|
822
|
-
code: 'E_NEXUS_QUERY_FAILED',
|
|
823
|
-
name: 'Nexus Query Failed',
|
|
824
|
-
description: 'Cross-project query operation failed',
|
|
825
|
-
category: ErrorCategory.NEXUS,
|
|
826
|
-
severity: ErrorSeverity.ERROR,
|
|
827
|
-
retryable: true,
|
|
828
|
-
fixTemplate: 'Retry query: {query}',
|
|
829
|
-
},
|
|
830
|
-
[ExitCode.E_NEXUS_GRAPH_ERROR]: {
|
|
831
|
-
code: 'E_NEXUS_GRAPH_ERROR',
|
|
832
|
-
name: 'Nexus Graph Error',
|
|
833
|
-
description: 'Graph operation error',
|
|
834
|
-
category: ErrorCategory.NEXUS,
|
|
835
|
-
severity: ErrorSeverity.ERROR,
|
|
836
|
-
retryable: true,
|
|
837
|
-
fixTemplate: 'Rebuild Nexus graph: cleo nexus rebuild',
|
|
838
|
-
},
|
|
839
|
-
// Lifecycle Enforcement Errors (80-84)
|
|
840
|
-
[ExitCode.E_LIFECYCLE_GATE_FAILED]: {
|
|
841
|
-
code: 'E_LIFECYCLE_GATE_FAILED',
|
|
842
|
-
name: 'Lifecycle Gate Failed',
|
|
843
|
-
description: 'Lifecycle gate requirements not met',
|
|
844
|
-
category: ErrorCategory.LIFECYCLE,
|
|
845
|
-
severity: ErrorSeverity.ERROR,
|
|
846
|
-
retryable: false,
|
|
847
|
-
fixTemplate: 'Complete prerequisite stages: {missingStages}',
|
|
848
|
-
alternatives: [
|
|
849
|
-
{ action: 'Check lifecycle status', command: 'cleo lifecycle status {taskId}' },
|
|
850
|
-
{ action: 'View prerequisites', command: 'cleo lifecycle prerequisites {stage}' },
|
|
851
|
-
],
|
|
852
|
-
},
|
|
853
|
-
[ExitCode.E_AUDIT_MISSING]: {
|
|
854
|
-
code: 'E_AUDIT_MISSING',
|
|
855
|
-
name: 'Audit Missing',
|
|
856
|
-
description: 'Audit object missing or incomplete',
|
|
857
|
-
category: ErrorCategory.LIFECYCLE,
|
|
858
|
-
severity: ErrorSeverity.ERROR,
|
|
859
|
-
retryable: false,
|
|
860
|
-
fixTemplate: 'Add required audit fields: {missingFields}',
|
|
861
|
-
},
|
|
862
|
-
[ExitCode.E_CIRCULAR_VALIDATION]: {
|
|
863
|
-
code: 'E_CIRCULAR_VALIDATION',
|
|
864
|
-
name: 'Circular Validation',
|
|
865
|
-
description: 'Circular validation detected (agent validating own work)',
|
|
866
|
-
category: ErrorCategory.LIFECYCLE,
|
|
867
|
-
severity: ErrorSeverity.ERROR,
|
|
868
|
-
retryable: false,
|
|
869
|
-
fixTemplate: 'Use different agent for validation (not {creatingAgent})',
|
|
870
|
-
},
|
|
871
|
-
[ExitCode.E_LIFECYCLE_TRANSITION_INVALID]: {
|
|
872
|
-
code: 'E_LIFECYCLE_TRANSITION_INVALID',
|
|
873
|
-
name: 'Invalid Lifecycle Transition',
|
|
874
|
-
description: 'Invalid lifecycle state transition',
|
|
875
|
-
category: ErrorCategory.LIFECYCLE,
|
|
876
|
-
severity: ErrorSeverity.ERROR,
|
|
877
|
-
retryable: false,
|
|
878
|
-
fixTemplate: 'Cannot transition from {fromStage} to {toStage}',
|
|
879
|
-
},
|
|
880
|
-
[ExitCode.E_PROVENANCE_REQUIRED]: {
|
|
881
|
-
code: 'E_PROVENANCE_REQUIRED',
|
|
882
|
-
name: 'Provenance Required',
|
|
883
|
-
description: 'Provenance fields required but missing',
|
|
884
|
-
category: ErrorCategory.LIFECYCLE,
|
|
885
|
-
severity: ErrorSeverity.ERROR,
|
|
886
|
-
retryable: false,
|
|
887
|
-
fixTemplate: 'Add provenance tags: @task {taskId} to all new code',
|
|
888
|
-
},
|
|
889
|
-
// Special Codes (100+)
|
|
890
|
-
[ExitCode.E_NO_DATA]: {
|
|
891
|
-
code: 'E_NO_DATA',
|
|
892
|
-
name: 'No Data',
|
|
893
|
-
description: 'No data to process (query returned empty)',
|
|
894
|
-
category: ErrorCategory.SPECIAL,
|
|
895
|
-
severity: ErrorSeverity.INFO,
|
|
896
|
-
retryable: false,
|
|
897
|
-
fixTemplate: 'No results found for query: {query}',
|
|
898
|
-
},
|
|
899
|
-
[ExitCode.E_ALREADY_EXISTS]: {
|
|
900
|
-
code: 'E_ALREADY_EXISTS',
|
|
901
|
-
name: 'Already Exists',
|
|
902
|
-
description: 'Resource already exists (not an error)',
|
|
903
|
-
category: ErrorCategory.SPECIAL,
|
|
904
|
-
severity: ErrorSeverity.INFO,
|
|
905
|
-
retryable: false,
|
|
906
|
-
fixTemplate: 'Resource already exists: {resource}',
|
|
907
|
-
},
|
|
908
|
-
[ExitCode.E_NO_CHANGE]: {
|
|
909
|
-
code: 'E_NO_CHANGE',
|
|
910
|
-
name: 'No Change',
|
|
911
|
-
description: 'No changes needed or made (idempotent operation)',
|
|
912
|
-
category: ErrorCategory.SPECIAL,
|
|
913
|
-
severity: ErrorSeverity.INFO,
|
|
914
|
-
retryable: false,
|
|
915
|
-
fixTemplate: 'No changes made (already in target state)',
|
|
916
|
-
},
|
|
917
|
-
};
|
|
918
|
-
/**
|
|
919
|
-
* Get error mapping for exit code
|
|
920
|
-
*/
|
|
921
|
-
export function getErrorMapping(exitCode) {
|
|
922
|
-
return ERROR_MAP[exitCode] || {
|
|
923
|
-
code: 'E_UNKNOWN',
|
|
924
|
-
name: 'Unknown Error',
|
|
925
|
-
description: `Unknown exit code: ${exitCode}`,
|
|
926
|
-
category: ErrorCategory.GENERAL,
|
|
927
|
-
severity: ErrorSeverity.ERROR,
|
|
928
|
-
retryable: false,
|
|
929
|
-
};
|
|
930
|
-
}
|
|
931
|
-
/**
|
|
932
|
-
* Check if exit code represents an error
|
|
933
|
-
*/
|
|
934
|
-
export function isError(exitCode) {
|
|
935
|
-
return exitCode >= 1 && exitCode < 100;
|
|
936
|
-
}
|
|
937
|
-
/**
|
|
938
|
-
* Check if exit code is retryable
|
|
939
|
-
*/
|
|
940
|
-
export function isRetryable(exitCode) {
|
|
941
|
-
const mapping = getErrorMapping(exitCode);
|
|
942
|
-
return mapping.retryable;
|
|
943
|
-
}
|
|
944
|
-
/**
|
|
945
|
-
* Check if exit code represents success
|
|
946
|
-
*/
|
|
947
|
-
export function isSuccess(exitCode) {
|
|
948
|
-
return exitCode === 0 || exitCode >= 100;
|
|
949
|
-
}
|
|
950
|
-
/**
|
|
951
|
-
* Generate fix command from template
|
|
952
|
-
*/
|
|
953
|
-
export function generateFixCommand(exitCode, context) {
|
|
954
|
-
const mapping = getErrorMapping(exitCode);
|
|
955
|
-
if (!mapping.fixTemplate) {
|
|
956
|
-
return undefined;
|
|
957
|
-
}
|
|
958
|
-
let fix = mapping.fixTemplate;
|
|
959
|
-
for (const [key, value] of Object.entries(context)) {
|
|
960
|
-
fix = fix.replace(`{${key}}`, value);
|
|
961
|
-
}
|
|
962
|
-
return fix;
|
|
963
|
-
}
|
|
964
|
-
/**
|
|
965
|
-
* Generate suggestions from alternatives
|
|
966
|
-
*/
|
|
967
|
-
export function generateSuggestions(exitCode, context) {
|
|
968
|
-
const mapping = getErrorMapping(exitCode);
|
|
969
|
-
if (!mapping.alternatives) {
|
|
970
|
-
return [];
|
|
971
|
-
}
|
|
972
|
-
return mapping.alternatives.map((alt) => {
|
|
973
|
-
let command = alt.command;
|
|
974
|
-
for (const [key, value] of Object.entries(context)) {
|
|
975
|
-
command = command.replace(`{${key}}`, value);
|
|
976
|
-
}
|
|
977
|
-
return {
|
|
978
|
-
action: alt.action,
|
|
979
|
-
command,
|
|
980
|
-
};
|
|
981
|
-
});
|
|
982
|
-
}
|
|
983
|
-
/**
|
|
984
|
-
* Exit codes that support automatic retry with exponential backoff.
|
|
985
|
-
* Per MCP-SERVER-SPECIFICATION Section 9.1.
|
|
986
|
-
*
|
|
987
|
-
* @task T3142
|
|
988
|
-
*/
|
|
989
|
-
export const RETRYABLE_EXIT_CODES = new Set([
|
|
990
|
-
ExitCode.E_LOCK_TIMEOUT, // 7
|
|
991
|
-
ExitCode.E_CHECKSUM_MISMATCH, // 20
|
|
992
|
-
ExitCode.E_CONCURRENT_MODIFICATION, // 21
|
|
993
|
-
ExitCode.E_ID_COLLISION, // 22
|
|
994
|
-
ExitCode.E_PROTOCOL_RESEARCH, // 60
|
|
995
|
-
ExitCode.E_PROTOCOL_CONSENSUS, // 61
|
|
996
|
-
ExitCode.E_PROTOCOL_SPECIFICATION, // 62
|
|
997
|
-
ExitCode.E_PROTOCOL_DECOMPOSITION, // 63
|
|
998
|
-
]);
|
|
999
|
-
/**
|
|
1000
|
-
* Exit codes that require human intervention and must NEVER be retried.
|
|
1001
|
-
* Per MCP-SERVER-SPECIFICATION Section 9.2.
|
|
1002
|
-
*
|
|
1003
|
-
* @task T3142
|
|
1004
|
-
*/
|
|
1005
|
-
export const NON_RECOVERABLE_EXIT_CODES = new Set([
|
|
1006
|
-
ExitCode.E_LIFECYCLE_GATE_FAILED, // 80
|
|
1007
|
-
ExitCode.E_CIRCULAR_VALIDATION, // 82
|
|
1008
|
-
ExitCode.E_LIFECYCLE_TRANSITION_INVALID, // 83
|
|
1009
|
-
ExitCode.E_PROVENANCE_REQUIRED, // 84
|
|
1010
|
-
]);
|
|
1011
|
-
/**
|
|
1012
|
-
* Check if an exit code represents a non-recoverable error
|
|
1013
|
-
* requiring human intervention. These must NEVER be retried.
|
|
1014
|
-
*
|
|
1015
|
-
* @task T3142
|
|
1016
|
-
*/
|
|
1017
|
-
export function isNonRecoverable(exitCode) {
|
|
1018
|
-
return NON_RECOVERABLE_EXIT_CODES.has(exitCode);
|
|
1019
|
-
}
|
|
1020
|
-
/**
|
|
1021
|
-
* Check if an exit code represents a recoverable error
|
|
1022
|
-
* @param exitCode The exit code to check
|
|
1023
|
-
* @returns true if the error is retryable
|
|
1024
|
-
*/
|
|
1025
|
-
export function isRecoverable(exitCode) {
|
|
1026
|
-
// Retry codes: 7 (lock timeout), 20-22 (concurrency), 60-63 (protocol)
|
|
1027
|
-
return RETRYABLE_EXIT_CODES.has(exitCode);
|
|
1028
|
-
}
|
|
1029
|
-
//# sourceMappingURL=exit-codes.js.map
|