@deftai/directive-core 0.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/architecture/sor-preflight.d.ts +66 -0
- package/dist/architecture/sor-preflight.js +903 -0
- package/dist/branch/evaluate.d.ts +23 -0
- package/dist/branch/evaluate.js +136 -0
- package/dist/branch/git.d.ts +15 -0
- package/dist/branch/git.js +42 -0
- package/dist/branch/index.d.ts +3 -0
- package/dist/branch/index.js +3 -0
- package/dist/cache/cli.d.ts +3 -0
- package/dist/cache/cli.js +8 -0
- package/dist/cache/constants.d.ts +12 -0
- package/dist/cache/constants.js +14 -0
- package/dist/cache/errors.d.ts +34 -0
- package/dist/cache/errors.js +52 -0
- package/dist/cache/fetch.d.ts +101 -0
- package/dist/cache/fetch.js +413 -0
- package/dist/cache/index.d.ts +14 -0
- package/dist/cache/index.js +14 -0
- package/dist/cache/io.d.ts +15 -0
- package/dist/cache/io.js +53 -0
- package/dist/cache/json.d.ts +11 -0
- package/dist/cache/json.js +32 -0
- package/dist/cache/main.d.ts +3 -0
- package/dist/cache/main.js +319 -0
- package/dist/cache/operations.d.ts +34 -0
- package/dist/cache/operations.js +348 -0
- package/dist/cache/paths.d.ts +7 -0
- package/dist/cache/paths.js +27 -0
- package/dist/cache/quota.d.ts +56 -0
- package/dist/cache/quota.js +191 -0
- package/dist/cache/scanner.d.ts +28 -0
- package/dist/cache/scanner.js +362 -0
- package/dist/cache/test-helpers.d.ts +10 -0
- package/dist/cache/test-helpers.js +17 -0
- package/dist/cache/time.d.ts +9 -0
- package/dist/cache/time.js +20 -0
- package/dist/cache/types.d.ts +50 -0
- package/dist/cache/types.js +2 -0
- package/dist/cache/validate.d.ts +3 -0
- package/dist/cache/validate.js +118 -0
- package/dist/capacity/backfill.d.ts +52 -0
- package/dist/capacity/backfill.js +429 -0
- package/dist/capacity/index.d.ts +3 -0
- package/dist/capacity/index.js +3 -0
- package/dist/capacity/show.d.ts +73 -0
- package/dist/capacity/show.js +387 -0
- package/dist/check/index.d.ts +3 -0
- package/dist/check/index.js +2 -0
- package/dist/check/orchestrator.d.ts +51 -0
- package/dist/check/orchestrator.js +71 -0
- package/dist/codebase/constants.d.ts +2 -0
- package/dist/codebase/constants.js +2 -0
- package/dist/codebase/default-extractor.d.ts +28 -0
- package/dist/codebase/default-extractor.js +713 -0
- package/dist/codebase/index.d.ts +8 -0
- package/dist/codebase/index.js +8 -0
- package/dist/codebase/json.d.ts +14 -0
- package/dist/codebase/json.js +45 -0
- package/dist/codebase/map-fresh.d.ts +11 -0
- package/dist/codebase/map-fresh.js +125 -0
- package/dist/codebase/map.d.ts +19 -0
- package/dist/codebase/map.js +345 -0
- package/dist/codebase/projection-registry.d.ts +25 -0
- package/dist/codebase/projection-registry.js +93 -0
- package/dist/codebase/provider.d.ts +30 -0
- package/dist/codebase/provider.js +696 -0
- package/dist/content-contracts/skills/greptile-detector.d.ts +56 -0
- package/dist/content-contracts/skills/greptile-detector.js +368 -0
- package/dist/content-contracts/skills/helpers.d.ts +24 -0
- package/dist/content-contracts/skills/helpers.js +73 -0
- package/dist/content-contracts/skills/skill-frontmatter.d.ts +7 -0
- package/dist/content-contracts/skills/skill-frontmatter.js +65 -0
- package/dist/content-contracts/standards/_helpers.d.ts +49 -0
- package/dist/content-contracts/standards/_helpers.js +227 -0
- package/dist/content-contracts/standards/_shapes.d.ts +12 -0
- package/dist/content-contracts/standards/_shapes.js +45 -0
- package/dist/content-contracts/standards/_taskfile-helpers.d.ts +12 -0
- package/dist/content-contracts/standards/_taskfile-helpers.js +61 -0
- package/dist/content-root.d.ts +47 -0
- package/dist/content-root.js +89 -0
- package/dist/doctor/agents-md.d.ts +14 -0
- package/dist/doctor/agents-md.js +263 -0
- package/dist/doctor/checks.d.ts +16 -0
- package/dist/doctor/checks.js +351 -0
- package/dist/doctor/cli.d.ts +2 -0
- package/dist/doctor/cli.js +7 -0
- package/dist/doctor/constants.d.ts +15 -0
- package/dist/doctor/constants.js +40 -0
- package/dist/doctor/doctor-state.d.ts +16 -0
- package/dist/doctor/doctor-state.js +117 -0
- package/dist/doctor/flags.d.ts +5 -0
- package/dist/doctor/flags.js +63 -0
- package/dist/doctor/index.d.ts +14 -0
- package/dist/doctor/index.js +14 -0
- package/dist/doctor/json.d.ts +3 -0
- package/dist/doctor/json.js +21 -0
- package/dist/doctor/main.d.ts +3 -0
- package/dist/doctor/main.js +387 -0
- package/dist/doctor/manifest.d.ts +11 -0
- package/dist/doctor/manifest.js +114 -0
- package/dist/doctor/output.d.ts +19 -0
- package/dist/doctor/output.js +49 -0
- package/dist/doctor/paths.d.ts +16 -0
- package/dist/doctor/paths.js +106 -0
- package/dist/doctor/payload-staleness.d.ts +13 -0
- package/dist/doctor/payload-staleness.js +165 -0
- package/dist/doctor/taskfile.d.ts +6 -0
- package/dist/doctor/taskfile.js +65 -0
- package/dist/doctor/types.d.ts +76 -0
- package/dist/doctor/types.js +4 -0
- package/dist/doctor/which.d.ts +3 -0
- package/dist/doctor/which.js +17 -0
- package/dist/encoding/evaluate.d.ts +19 -0
- package/dist/encoding/evaluate.js +155 -0
- package/dist/encoding/git.d.ts +11 -0
- package/dist/encoding/git.js +36 -0
- package/dist/encoding/index.d.ts +6 -0
- package/dist/encoding/index.js +6 -0
- package/dist/encoding/patterns.d.ts +29 -0
- package/dist/encoding/patterns.js +109 -0
- package/dist/encoding/scan.d.ts +24 -0
- package/dist/encoding/scan.js +182 -0
- package/dist/encoding/text.d.ts +21 -0
- package/dist/encoding/text.js +111 -0
- package/dist/index.d.ts +54 -0
- package/dist/index.js +55 -0
- package/dist/intake/candidates-log.d.ts +20 -0
- package/dist/intake/candidates-log.js +224 -0
- package/dist/intake/github-auth-modes-cli.d.ts +3 -0
- package/dist/intake/github-auth-modes-cli.js +23 -0
- package/dist/intake/github-auth-modes.d.ts +54 -0
- package/dist/intake/github-auth-modes.js +275 -0
- package/dist/intake/github-body-cli.d.ts +3 -0
- package/dist/intake/github-body-cli.js +30 -0
- package/dist/intake/github-body.d.ts +48 -0
- package/dist/intake/github-body.js +151 -0
- package/dist/intake/index.d.ts +15 -0
- package/dist/intake/index.js +15 -0
- package/dist/intake/issue-emit-cli.d.ts +3 -0
- package/dist/intake/issue-emit-cli.js +34 -0
- package/dist/intake/issue-emit.d.ts +63 -0
- package/dist/intake/issue-emit.js +351 -0
- package/dist/intake/issue-ingest-cli.d.ts +3 -0
- package/dist/intake/issue-ingest-cli.js +33 -0
- package/dist/intake/issue-ingest.d.ts +53 -0
- package/dist/intake/issue-ingest.js +477 -0
- package/dist/intake/markdown-scanners.d.ts +23 -0
- package/dist/intake/markdown-scanners.js +247 -0
- package/dist/intake/parity-scenarios.d.ts +22 -0
- package/dist/intake/parity-scenarios.js +32 -0
- package/dist/intake/platform-capabilities.d.ts +11 -0
- package/dist/intake/platform-capabilities.js +34 -0
- package/dist/intake/reconcile-issues-cli.d.ts +3 -0
- package/dist/intake/reconcile-issues-cli.js +31 -0
- package/dist/intake/reconcile-issues.d.ts +60 -0
- package/dist/intake/reconcile-issues.js +756 -0
- package/dist/integration-e2e/bootstrap-cache-module.d.ts +5 -0
- package/dist/integration-e2e/bootstrap-cache-module.js +21 -0
- package/dist/integration-e2e/helpers.d.ts +28 -0
- package/dist/integration-e2e/helpers.js +157 -0
- package/dist/lifecycle/event-detect.d.ts +32 -0
- package/dist/lifecycle/event-detect.js +172 -0
- package/dist/lifecycle/events.d.ts +45 -0
- package/dist/lifecycle/events.js +340 -0
- package/dist/lifecycle/index.d.ts +4 -0
- package/dist/lifecycle/index.js +4 -0
- package/dist/lifecycle/lifecycle-hygiene.d.ts +59 -0
- package/dist/lifecycle/lifecycle-hygiene.js +388 -0
- package/dist/orchestration/index.d.ts +7 -0
- package/dist/orchestration/index.js +7 -0
- package/dist/orchestration/judgment-policy.d.ts +23 -0
- package/dist/orchestration/judgment-policy.js +228 -0
- package/dist/orchestration/pathspec.d.ts +11 -0
- package/dist/orchestration/pathspec.js +95 -0
- package/dist/orchestration/probe-session.d.ts +74 -0
- package/dist/orchestration/probe-session.js +478 -0
- package/dist/orchestration/subagent-monitor.d.ts +64 -0
- package/dist/orchestration/subagent-monitor.js +405 -0
- package/dist/orchestration/verify-investigation.d.ts +27 -0
- package/dist/orchestration/verify-investigation.js +314 -0
- package/dist/orchestration/verify-judgment-gates.d.ts +66 -0
- package/dist/orchestration/verify-judgment-gates.js +710 -0
- package/dist/packs/index.d.ts +4 -0
- package/dist/packs/index.js +4 -0
- package/dist/packs/pack-render.d.ts +31 -0
- package/dist/packs/pack-render.js +357 -0
- package/dist/packs/packs-slice.d.ts +58 -0
- package/dist/packs/packs-slice.js +649 -0
- package/dist/packs/quarantine-ext.d.ts +7 -0
- package/dist/packs/quarantine-ext.js +164 -0
- package/dist/platform/agents-md.d.ts +31 -0
- package/dist/platform/agents-md.js +320 -0
- package/dist/platform/changelog-cli.d.ts +3 -0
- package/dist/platform/changelog-cli.js +64 -0
- package/dist/platform/constants.d.ts +20 -0
- package/dist/platform/constants.js +27 -0
- package/dist/platform/index.d.ts +9 -0
- package/dist/platform/index.js +9 -0
- package/dist/platform/ip-risk.d.ts +10 -0
- package/dist/platform/ip-risk.js +235 -0
- package/dist/platform/linear-scan.d.ts +36 -0
- package/dist/platform/linear-scan.js +174 -0
- package/dist/platform/platform-capabilities.d.ts +45 -0
- package/dist/platform/platform-capabilities.js +190 -0
- package/dist/platform/resolve-changelog-unreleased.d.ts +24 -0
- package/dist/platform/resolve-changelog-unreleased.js +364 -0
- package/dist/platform/resolve-version.d.ts +22 -0
- package/dist/platform/resolve-version.js +303 -0
- package/dist/platform/slug-normalize.d.ts +9 -0
- package/dist/platform/slug-normalize.js +110 -0
- package/dist/policy/autonomy.d.ts +43 -0
- package/dist/policy/autonomy.js +220 -0
- package/dist/policy/capacity.d.ts +45 -0
- package/dist/policy/capacity.js +251 -0
- package/dist/policy/decisions.d.ts +26 -0
- package/dist/policy/decisions.js +114 -0
- package/dist/policy/disclosure.d.ts +4 -0
- package/dist/policy/disclosure.js +19 -0
- package/dist/policy/index.d.ts +43 -0
- package/dist/policy/index.js +298 -0
- package/dist/policy/resolve.d.ts +38 -0
- package/dist/policy/resolve.js +228 -0
- package/dist/policy/wip.d.ts +15 -0
- package/dist/policy/wip.js +81 -0
- package/dist/pr-closing-keywords/constants.d.ts +6 -0
- package/dist/pr-closing-keywords/constants.js +6 -0
- package/dist/pr-closing-keywords/detect.d.ts +5 -0
- package/dist/pr-closing-keywords/detect.js +113 -0
- package/dist/pr-closing-keywords/gh.d.ts +6 -0
- package/dist/pr-closing-keywords/gh.js +129 -0
- package/dist/pr-closing-keywords/index.d.ts +7 -0
- package/dist/pr-closing-keywords/index.js +6 -0
- package/dist/pr-closing-keywords/io.d.ts +3 -0
- package/dist/pr-closing-keywords/io.js +22 -0
- package/dist/pr-closing-keywords/main.d.ts +9 -0
- package/dist/pr-closing-keywords/main.js +246 -0
- package/dist/pr-closing-keywords/types.d.ts +23 -0
- package/dist/pr-closing-keywords/types.js +2 -0
- package/dist/pr-merge-readiness/compute.d.ts +7 -0
- package/dist/pr-merge-readiness/compute.js +210 -0
- package/dist/pr-merge-readiness/constants.d.ts +20 -0
- package/dist/pr-merge-readiness/constants.js +32 -0
- package/dist/pr-merge-readiness/evaluate.d.ts +5 -0
- package/dist/pr-merge-readiness/evaluate.js +48 -0
- package/dist/pr-merge-readiness/gh.d.ts +22 -0
- package/dist/pr-merge-readiness/gh.js +281 -0
- package/dist/pr-merge-readiness/index.d.ts +9 -0
- package/dist/pr-merge-readiness/index.js +8 -0
- package/dist/pr-merge-readiness/main.d.ts +14 -0
- package/dist/pr-merge-readiness/main.js +67 -0
- package/dist/pr-merge-readiness/output.d.ts +7 -0
- package/dist/pr-merge-readiness/output.js +98 -0
- package/dist/pr-merge-readiness/parse.d.ts +6 -0
- package/dist/pr-merge-readiness/parse.js +83 -0
- package/dist/pr-merge-readiness/types.d.ts +29 -0
- package/dist/pr-merge-readiness/types.js +2 -0
- package/dist/pr-monitor/cadence.d.ts +3 -0
- package/dist/pr-monitor/cadence.js +12 -0
- package/dist/pr-monitor/constants.d.ts +8 -0
- package/dist/pr-monitor/constants.js +12 -0
- package/dist/pr-monitor/index.d.ts +7 -0
- package/dist/pr-monitor/index.js +6 -0
- package/dist/pr-monitor/main.d.ts +17 -0
- package/dist/pr-monitor/main.js +169 -0
- package/dist/pr-monitor/monitor.d.ts +9 -0
- package/dist/pr-monitor/monitor.js +106 -0
- package/dist/pr-monitor/readiness.d.ts +6 -0
- package/dist/pr-monitor/readiness.js +64 -0
- package/dist/pr-monitor/types.d.ts +30 -0
- package/dist/pr-monitor/types.js +2 -0
- package/dist/pr-protected-issues/constants.d.ts +7 -0
- package/dist/pr-protected-issues/constants.js +7 -0
- package/dist/pr-protected-issues/gh.d.ts +9 -0
- package/dist/pr-protected-issues/gh.js +96 -0
- package/dist/pr-protected-issues/index.d.ts +6 -0
- package/dist/pr-protected-issues/index.js +5 -0
- package/dist/pr-protected-issues/main.d.ts +14 -0
- package/dist/pr-protected-issues/main.js +128 -0
- package/dist/pr-protected-issues/parse.d.ts +6 -0
- package/dist/pr-protected-issues/parse.js +21 -0
- package/dist/pr-protected-issues/types.d.ts +8 -0
- package/dist/pr-protected-issues/types.js +2 -0
- package/dist/pr-wait-mergeable/cascade.d.ts +12 -0
- package/dist/pr-wait-mergeable/cascade.js +107 -0
- package/dist/pr-wait-mergeable/classify.d.ts +5 -0
- package/dist/pr-wait-mergeable/classify.js +47 -0
- package/dist/pr-wait-mergeable/constants.d.ts +5 -0
- package/dist/pr-wait-mergeable/constants.js +5 -0
- package/dist/pr-wait-mergeable/index.d.ts +8 -0
- package/dist/pr-wait-mergeable/index.js +7 -0
- package/dist/pr-wait-mergeable/main.d.ts +18 -0
- package/dist/pr-wait-mergeable/main.js +213 -0
- package/dist/pr-wait-mergeable/result.d.ts +9 -0
- package/dist/pr-wait-mergeable/result.js +38 -0
- package/dist/pr-wait-mergeable/types.d.ts +16 -0
- package/dist/pr-wait-mergeable/types.js +2 -0
- package/dist/pr-wait-mergeable/wrappers.d.ts +26 -0
- package/dist/pr-wait-mergeable/wrappers.js +103 -0
- package/dist/preflight/evaluate.d.ts +22 -0
- package/dist/preflight/evaluate.js +137 -0
- package/dist/preflight/index.d.ts +3 -0
- package/dist/preflight/index.js +2 -0
- package/dist/preflight-cache/evaluate.d.ts +40 -0
- package/dist/preflight-cache/evaluate.js +481 -0
- package/dist/preflight-cache/index.d.ts +3 -0
- package/dist/preflight-cache/index.js +2 -0
- package/dist/preflight-gh/classifier.d.ts +56 -0
- package/dist/preflight-gh/classifier.js +415 -0
- package/dist/preflight-gh/index.d.ts +3 -0
- package/dist/preflight-gh/index.js +2 -0
- package/dist/release/changelog.d.ts +9 -0
- package/dist/release/changelog.js +105 -0
- package/dist/release/cli.d.ts +2 -0
- package/dist/release/cli.js +7 -0
- package/dist/release/constants.d.ts +22 -0
- package/dist/release/constants.js +85 -0
- package/dist/release/flags.d.ts +4 -0
- package/dist/release/flags.js +131 -0
- package/dist/release/gh.d.ts +16 -0
- package/dist/release/gh.js +210 -0
- package/dist/release/git.d.ts +11 -0
- package/dist/release/git.js +84 -0
- package/dist/release/index.d.ts +14 -0
- package/dist/release/index.js +15 -0
- package/dist/release/main.d.ts +3 -0
- package/dist/release/main.js +47 -0
- package/dist/release/paths.d.ts +6 -0
- package/dist/release/paths.js +39 -0
- package/dist/release/pipeline.d.ts +6 -0
- package/dist/release/pipeline.js +314 -0
- package/dist/release/pyproject-sync.d.ts +6 -0
- package/dist/release/pyproject-sync.js +52 -0
- package/dist/release/pyproject.d.ts +3 -0
- package/dist/release/pyproject.js +33 -0
- package/dist/release/python-bridge.d.ts +7 -0
- package/dist/release/python-bridge.js +144 -0
- package/dist/release/spawn.d.ts +8 -0
- package/dist/release/spawn.js +44 -0
- package/dist/release/types.d.ts +58 -0
- package/dist/release/types.js +2 -0
- package/dist/release/version.d.ts +11 -0
- package/dist/release/version.js +74 -0
- package/dist/release-e2e/constants.d.ts +22 -0
- package/dist/release-e2e/constants.js +43 -0
- package/dist/release-e2e/entrypoint-worker-thread.d.ts +2 -0
- package/dist/release-e2e/entrypoint-worker-thread.js +22 -0
- package/dist/release-e2e/entrypoint-worker.d.ts +13 -0
- package/dist/release-e2e/entrypoint-worker.js +50 -0
- package/dist/release-e2e/entrypoint.d.ts +40 -0
- package/dist/release-e2e/entrypoint.js +257 -0
- package/dist/release-e2e/flags.d.ts +5 -0
- package/dist/release-e2e/flags.js +80 -0
- package/dist/release-e2e/gh-ops.d.ts +5 -0
- package/dist/release-e2e/gh-ops.js +72 -0
- package/dist/release-e2e/git-ops.d.ts +6 -0
- package/dist/release-e2e/git-ops.js +47 -0
- package/dist/release-e2e/index.d.ts +10 -0
- package/dist/release-e2e/index.js +10 -0
- package/dist/release-e2e/main.d.ts +4 -0
- package/dist/release-e2e/main.js +78 -0
- package/dist/release-e2e/npm-ops.d.ts +29 -0
- package/dist/release-e2e/npm-ops.js +149 -0
- package/dist/release-e2e/rehearsal.d.ts +3 -0
- package/dist/release-e2e/rehearsal.js +51 -0
- package/dist/release-e2e/rollback-bridge.d.ts +3 -0
- package/dist/release-e2e/rollback-bridge.js +20 -0
- package/dist/release-e2e/types.d.ts +40 -0
- package/dist/release-e2e/types.js +2 -0
- package/dist/release-publish/cli.d.ts +2 -0
- package/dist/release-publish/cli.js +7 -0
- package/dist/release-publish/constants.d.ts +4 -0
- package/dist/release-publish/constants.js +24 -0
- package/dist/release-publish/flags.d.ts +5 -0
- package/dist/release-publish/flags.js +67 -0
- package/dist/release-publish/gh-api.d.ts +6 -0
- package/dist/release-publish/gh-api.js +102 -0
- package/dist/release-publish/index.d.ts +7 -0
- package/dist/release-publish/index.js +8 -0
- package/dist/release-publish/main.d.ts +3 -0
- package/dist/release-publish/main.js +38 -0
- package/dist/release-publish/pipeline.d.ts +4 -0
- package/dist/release-publish/pipeline.js +46 -0
- package/dist/release-publish/types.d.ts +25 -0
- package/dist/release-publish/types.js +2 -0
- package/dist/release-rollback/constants.d.ts +18 -0
- package/dist/release-rollback/constants.js +55 -0
- package/dist/release-rollback/flags.d.ts +4 -0
- package/dist/release-rollback/flags.js +136 -0
- package/dist/release-rollback/gh.d.ts +5 -0
- package/dist/release-rollback/gh.js +71 -0
- package/dist/release-rollback/git.d.ts +9 -0
- package/dist/release-rollback/git.js +87 -0
- package/dist/release-rollback/guard.d.ts +12 -0
- package/dist/release-rollback/guard.js +97 -0
- package/dist/release-rollback/index.d.ts +9 -0
- package/dist/release-rollback/index.js +10 -0
- package/dist/release-rollback/main.d.ts +3 -0
- package/dist/release-rollback/main.js +51 -0
- package/dist/release-rollback/pipeline.d.ts +7 -0
- package/dist/release-rollback/pipeline.js +221 -0
- package/dist/release-rollback/types.d.ts +41 -0
- package/dist/release-rollback/types.js +2 -0
- package/dist/render/constants.d.ts +16 -0
- package/dist/render/constants.js +78 -0
- package/dist/render/framework-commands.d.ts +41 -0
- package/dist/render/framework-commands.js +416 -0
- package/dist/render/index.d.ts +15 -0
- package/dist/render/index.js +15 -0
- package/dist/render/prd-render.d.ts +14 -0
- package/dist/render/prd-render.js +79 -0
- package/dist/render/project-render.d.ts +20 -0
- package/dist/render/project-render.js +169 -0
- package/dist/render/roadmap-render.d.ts +8 -0
- package/dist/render/roadmap-render.js +387 -0
- package/dist/render/spec-render.d.ts +13 -0
- package/dist/render/spec-render.js +362 -0
- package/dist/render/spec-validate.d.ts +6 -0
- package/dist/render/spec-validate.js +157 -0
- package/dist/render/text-utils.d.ts +8 -0
- package/dist/render/text-utils.js +72 -0
- package/dist/scm/argv.d.ts +7 -0
- package/dist/scm/argv.js +54 -0
- package/dist/scm/binary.d.ts +11 -0
- package/dist/scm/binary.js +35 -0
- package/dist/scm/build-command.d.ts +11 -0
- package/dist/scm/build-command.js +23 -0
- package/dist/scm/call.d.ts +25 -0
- package/dist/scm/call.js +38 -0
- package/dist/scm/cli.d.ts +3 -0
- package/dist/scm/cli.js +7 -0
- package/dist/scm/constants.d.ts +11 -0
- package/dist/scm/constants.js +11 -0
- package/dist/scm/errors.d.ts +5 -0
- package/dist/scm/errors.js +8 -0
- package/dist/scm/gh-rest.d.ts +74 -0
- package/dist/scm/gh-rest.js +326 -0
- package/dist/scm/index.d.ts +11 -0
- package/dist/scm/index.js +11 -0
- package/dist/scm/main.d.ts +12 -0
- package/dist/scm/main.js +65 -0
- package/dist/scm/py-format.d.ts +9 -0
- package/dist/scm/py-format.js +31 -0
- package/dist/scm/rest-dispatch.d.ts +14 -0
- package/dist/scm/rest-dispatch.js +175 -0
- package/dist/scope/audit-log.d.ts +14 -0
- package/dist/scope/audit-log.js +186 -0
- package/dist/scope/capacity-stamp.d.ts +3 -0
- package/dist/scope/capacity-stamp.js +45 -0
- package/dist/scope/cli.d.ts +4 -0
- package/dist/scope/cli.js +11 -0
- package/dist/scope/constants.d.ts +19 -0
- package/dist/scope/constants.js +44 -0
- package/dist/scope/decompose.d.ts +42 -0
- package/dist/scope/decompose.js +1016 -0
- package/dist/scope/decomposed-refs.d.ts +6 -0
- package/dist/scope/decomposed-refs.js +173 -0
- package/dist/scope/demote.d.ts +24 -0
- package/dist/scope/demote.js +209 -0
- package/dist/scope/index.d.ts +12 -0
- package/dist/scope/index.js +12 -0
- package/dist/scope/main.d.ts +30 -0
- package/dist/scope/main.js +365 -0
- package/dist/scope/project-context.d.ts +6 -0
- package/dist/scope/project-context.js +55 -0
- package/dist/scope/project-definition-sync.d.ts +3 -0
- package/dist/scope/project-definition-sync.js +157 -0
- package/dist/scope/transition.d.ts +10 -0
- package/dist/scope/transition.js +133 -0
- package/dist/scope/undo.d.ts +25 -0
- package/dist/scope/undo.js +334 -0
- package/dist/scope/vbrief-json.d.ts +4 -0
- package/dist/scope/vbrief-json.js +8 -0
- package/dist/scope/vbrief-ref.d.ts +11 -0
- package/dist/scope/vbrief-ref.js +100 -0
- package/dist/scope/wip-cap-check.d.ts +11 -0
- package/dist/scope/wip-cap-check.js +23 -0
- package/dist/session/git.d.ts +14 -0
- package/dist/session/git.js +49 -0
- package/dist/session/index.d.ts +9 -0
- package/dist/session/index.js +9 -0
- package/dist/session/json.d.ts +7 -0
- package/dist/session/json.js +29 -0
- package/dist/session/resume-conditions.d.ts +56 -0
- package/dist/session/resume-conditions.js +486 -0
- package/dist/session/ritual-entrypoint.d.ts +20 -0
- package/dist/session/ritual-entrypoint.js +86 -0
- package/dist/session/ritual-sentinel.d.ts +58 -0
- package/dist/session/ritual-sentinel.js +338 -0
- package/dist/session/session-start-hook.d.ts +14 -0
- package/dist/session/session-start-hook.js +53 -0
- package/dist/session/session-start.d.ts +41 -0
- package/dist/session/session-start.js +290 -0
- package/dist/session/staleness.d.ts +8 -0
- package/dist/session/staleness.js +91 -0
- package/dist/session/time.d.ts +5 -0
- package/dist/session/time.js +19 -0
- package/dist/session/verify-session-ritual.d.ts +29 -0
- package/dist/session/verify-session-ritual.js +222 -0
- package/dist/slice/cli.d.ts +21 -0
- package/dist/slice/cli.js +248 -0
- package/dist/slice/constants.d.ts +18 -0
- package/dist/slice/constants.js +30 -0
- package/dist/slice/errors.d.ts +9 -0
- package/dist/slice/errors.js +15 -0
- package/dist/slice/existing.d.ts +53 -0
- package/dist/slice/existing.js +344 -0
- package/dist/slice/index.d.ts +10 -0
- package/dist/slice/index.js +10 -0
- package/dist/slice/json.d.ts +7 -0
- package/dist/slice/json.js +25 -0
- package/dist/slice/lock.d.ts +9 -0
- package/dist/slice/lock.js +59 -0
- package/dist/slice/project-context.d.ts +15 -0
- package/dist/slice/project-context.js +87 -0
- package/dist/slice/record.d.ts +50 -0
- package/dist/slice/record.js +139 -0
- package/dist/slice/validate.d.ts +3 -0
- package/dist/slice/validate.js +86 -0
- package/dist/story-ready/allocation.d.ts +14 -0
- package/dist/story-ready/allocation.js +61 -0
- package/dist/story-ready/evaluate.d.ts +23 -0
- package/dist/story-ready/evaluate.js +161 -0
- package/dist/story-ready/git.d.ts +6 -0
- package/dist/story-ready/git.js +26 -0
- package/dist/story-ready/index.d.ts +4 -0
- package/dist/story-ready/index.js +4 -0
- package/dist/subprocess/max-buffer.d.ts +18 -0
- package/dist/subprocess/max-buffer.js +18 -0
- package/dist/swarm/complete-cohort-cli.d.ts +3 -0
- package/dist/swarm/complete-cohort-cli.js +42 -0
- package/dist/swarm/complete-cohort.d.ts +34 -0
- package/dist/swarm/complete-cohort.js +407 -0
- package/dist/swarm/constants.d.ts +18 -0
- package/dist/swarm/constants.js +24 -0
- package/dist/swarm/index.d.ts +18 -0
- package/dist/swarm/index.js +18 -0
- package/dist/swarm/launch-cli.d.ts +5 -0
- package/dist/swarm/launch-cli.js +111 -0
- package/dist/swarm/launch.d.ts +78 -0
- package/dist/swarm/launch.js +587 -0
- package/dist/swarm/readiness-cli.d.ts +3 -0
- package/dist/swarm/readiness-cli.js +25 -0
- package/dist/swarm/readiness.d.ts +24 -0
- package/dist/swarm/readiness.js +606 -0
- package/dist/swarm/routing-set-cli.d.ts +3 -0
- package/dist/swarm/routing-set-cli.js +82 -0
- package/dist/swarm/routing-verify-cli.d.ts +3 -0
- package/dist/swarm/routing-verify-cli.js +51 -0
- package/dist/swarm/routing-verify.d.ts +20 -0
- package/dist/swarm/routing-verify.js +104 -0
- package/dist/swarm/routing.d.ts +57 -0
- package/dist/swarm/routing.js +173 -0
- package/dist/swarm/subagent-backend.d.ts +22 -0
- package/dist/swarm/subagent-backend.js +162 -0
- package/dist/swarm/subprocess.d.ts +10 -0
- package/dist/swarm/subprocess.js +34 -0
- package/dist/swarm/verify-review-clean-cli.d.ts +3 -0
- package/dist/swarm/verify-review-clean-cli.js +38 -0
- package/dist/swarm/verify-review-clean.d.ts +40 -0
- package/dist/swarm/verify-review-clean.js +240 -0
- package/dist/swarm/worktrees-cli.d.ts +9 -0
- package/dist/swarm/worktrees-cli.js +57 -0
- package/dist/swarm/worktrees.d.ts +39 -0
- package/dist/swarm/worktrees.js +178 -0
- package/dist/text/redos-safe.d.ts +29 -0
- package/dist/text/redos-safe.js +338 -0
- package/dist/triage/actions/candidates-log.d.ts +8 -0
- package/dist/triage/actions/candidates-log.js +195 -0
- package/dist/triage/actions/errors.d.ts +17 -0
- package/dist/triage/actions/errors.js +29 -0
- package/dist/triage/actions/index.d.ts +19 -0
- package/dist/triage/actions/index.js +305 -0
- package/dist/triage/actions/resume-on.d.ts +3 -0
- package/dist/triage/actions/resume-on.js +65 -0
- package/dist/triage/actions/types.d.ts +57 -0
- package/dist/triage/actions/types.js +2 -0
- package/dist/triage/bootstrap/gitignore.d.ts +16 -0
- package/dist/triage/bootstrap/gitignore.js +414 -0
- package/dist/triage/bootstrap/index.d.ts +44 -0
- package/dist/triage/bootstrap/index.js +572 -0
- package/dist/triage/bootstrap/types.d.ts +60 -0
- package/dist/triage/bootstrap/types.js +2 -0
- package/dist/triage/bulk/index.d.ts +99 -0
- package/dist/triage/bulk/index.js +454 -0
- package/dist/triage/classify/index.d.ts +88 -0
- package/dist/triage/classify/index.js +738 -0
- package/dist/triage/help/index.d.ts +25 -0
- package/dist/triage/help/index.js +212 -0
- package/dist/triage/help/registry-data.d.ts +555 -0
- package/dist/triage/help/registry-data.js +841 -0
- package/dist/triage/index.d.ts +23 -0
- package/dist/triage/index.js +23 -0
- package/dist/triage/queue/audit.d.ts +12 -0
- package/dist/triage/queue/audit.js +47 -0
- package/dist/triage/queue/build-queue.d.ts +9 -0
- package/dist/triage/queue/build-queue.js +133 -0
- package/dist/triage/queue/cache.d.ts +20 -0
- package/dist/triage/queue/cache.js +169 -0
- package/dist/triage/queue/constants.d.ts +22 -0
- package/dist/triage/queue/constants.js +28 -0
- package/dist/triage/queue/derive-group.d.ts +7 -0
- package/dist/triage/queue/derive-group.js +20 -0
- package/dist/triage/queue/index.d.ts +12 -0
- package/dist/triage/queue/index.js +12 -0
- package/dist/triage/queue/project.d.ts +6 -0
- package/dist/triage/queue/project.js +18 -0
- package/dist/triage/queue/ranking-labels.d.ts +10 -0
- package/dist/triage/queue/ranking-labels.js +54 -0
- package/dist/triage/queue/render.d.ts +9 -0
- package/dist/triage/queue/render.js +35 -0
- package/dist/triage/queue/repo.d.ts +5 -0
- package/dist/triage/queue/repo.js +36 -0
- package/dist/triage/queue/scope-walk.d.ts +13 -0
- package/dist/triage/queue/scope-walk.js +170 -0
- package/dist/triage/queue/selection.d.ts +28 -0
- package/dist/triage/queue/selection.js +109 -0
- package/dist/triage/queue/types.d.ts +58 -0
- package/dist/triage/queue/types.js +2 -0
- package/dist/triage/reconcile/audit.d.ts +4 -0
- package/dist/triage/reconcile/audit.js +62 -0
- package/dist/triage/reconcile/index.d.ts +5 -0
- package/dist/triage/reconcile/index.js +5 -0
- package/dist/triage/reconcile/parse-uri.d.ts +4 -0
- package/dist/triage/reconcile/parse-uri.js +43 -0
- package/dist/triage/reconcile/reconcile.d.ts +17 -0
- package/dist/triage/reconcile/reconcile.js +163 -0
- package/dist/triage/reconcile/types.d.ts +23 -0
- package/dist/triage/reconcile/types.js +70 -0
- package/dist/triage/refresh/drift.d.ts +15 -0
- package/dist/triage/refresh/drift.js +72 -0
- package/dist/triage/refresh/extract.d.ts +3 -0
- package/dist/triage/refresh/extract.js +43 -0
- package/dist/triage/refresh/index.d.ts +5 -0
- package/dist/triage/refresh/index.js +5 -0
- package/dist/triage/refresh/refresh.d.ts +16 -0
- package/dist/triage/refresh/refresh.js +95 -0
- package/dist/triage/refresh/types.d.ts +18 -0
- package/dist/triage/refresh/types.js +7 -0
- package/dist/triage/scope/cli.d.ts +23 -0
- package/dist/triage/scope/cli.js +257 -0
- package/dist/triage/scope/constants.d.ts +16 -0
- package/dist/triage/scope/constants.js +25 -0
- package/dist/triage/scope/coverage.d.ts +24 -0
- package/dist/triage/scope/coverage.js +96 -0
- package/dist/triage/scope/duration.d.ts +6 -0
- package/dist/triage/scope/duration.js +44 -0
- package/dist/triage/scope/evaluate.d.ts +18 -0
- package/dist/triage/scope/evaluate.js +161 -0
- package/dist/triage/scope/index.d.ts +14 -0
- package/dist/triage/scope/index.js +14 -0
- package/dist/triage/scope/milestone.d.ts +13 -0
- package/dist/triage/scope/milestone.js +178 -0
- package/dist/triage/scope/mutations-core.d.ts +24 -0
- package/dist/triage/scope/mutations-core.js +216 -0
- package/dist/triage/scope/mutations.d.ts +21 -0
- package/dist/triage/scope/mutations.js +203 -0
- package/dist/triage/scope/normalize.d.ts +5 -0
- package/dist/triage/scope/normalize.js +45 -0
- package/dist/triage/scope/python-repr.d.ts +7 -0
- package/dist/triage/scope/python-repr.js +25 -0
- package/dist/triage/scope/renderers.d.ts +9 -0
- package/dist/triage/scope/renderers.js +177 -0
- package/dist/triage/scope/resolve.d.ts +15 -0
- package/dist/triage/scope/resolve.js +122 -0
- package/dist/triage/scope/time.d.ts +6 -0
- package/dist/triage/scope/time.js +18 -0
- package/dist/triage/scope/validate.d.ts +11 -0
- package/dist/triage/scope/validate.js +272 -0
- package/dist/triage/scope-drift/add-ignore.d.ts +10 -0
- package/dist/triage/scope-drift/add-ignore.js +78 -0
- package/dist/triage/scope-drift/cache-walker.d.ts +8 -0
- package/dist/triage/scope-drift/cache-walker.js +103 -0
- package/dist/triage/scope-drift/compute.d.ts +9 -0
- package/dist/triage/scope-drift/compute.js +92 -0
- package/dist/triage/scope-drift/index.d.ts +6 -0
- package/dist/triage/scope-drift/index.js +6 -0
- package/dist/triage/scope-drift/render.d.ts +4 -0
- package/dist/triage/scope-drift/render.js +45 -0
- package/dist/triage/scope-drift/scope-rules.d.ts +16 -0
- package/dist/triage/scope-drift/scope-rules.js +149 -0
- package/dist/triage/scope-drift/types.d.ts +13 -0
- package/dist/triage/scope-drift/types.js +8 -0
- package/dist/triage/smoketest/index.d.ts +81 -0
- package/dist/triage/smoketest/index.js +335 -0
- package/dist/triage/subscribe/index.d.ts +38 -0
- package/dist/triage/subscribe/index.js +303 -0
- package/dist/triage/summary/index.d.ts +70 -0
- package/dist/triage/summary/index.js +431 -0
- package/dist/triage/summary/reconcilable.d.ts +12 -0
- package/dist/triage/summary/reconcilable.js +150 -0
- package/dist/triage/summary/scope-drift.d.ts +5 -0
- package/dist/triage/summary/scope-drift.js +219 -0
- package/dist/triage/welcome/constants.d.ts +24 -0
- package/dist/triage/welcome/constants.js +34 -0
- package/dist/triage/welcome/default-mode.d.ts +21 -0
- package/dist/triage/welcome/default-mode.js +48 -0
- package/dist/triage/welcome/index.d.ts +6 -0
- package/dist/triage/welcome/index.js +6 -0
- package/dist/triage/welcome/prior-state.d.ts +17 -0
- package/dist/triage/welcome/prior-state.js +170 -0
- package/dist/triage/welcome/summary.d.ts +23 -0
- package/dist/triage/welcome/summary.js +303 -0
- package/dist/triage/welcome/writers.d.ts +17 -0
- package/dist/triage/welcome/writers.js +157 -0
- package/dist/ts-check-lane/index.d.ts +3 -0
- package/dist/ts-check-lane/index.js +2 -0
- package/dist/ts-check-lane/run-lane.d.ts +53 -0
- package/dist/ts-check-lane/run-lane.js +98 -0
- package/dist/validate-content/capacity-policy.d.ts +82 -0
- package/dist/validate-content/capacity-policy.js +399 -0
- package/dist/validate-content/capacity-show.d.ts +60 -0
- package/dist/validate-content/capacity-show.js +336 -0
- package/dist/validate-content/filename.d.ts +3 -0
- package/dist/validate-content/filename.js +54 -0
- package/dist/validate-content/index.d.ts +9 -0
- package/dist/validate-content/index.js +9 -0
- package/dist/validate-content/link-parser.d.ts +5 -0
- package/dist/validate-content/link-parser.js +42 -0
- package/dist/validate-content/types.d.ts +8 -0
- package/dist/validate-content/types.js +2 -0
- package/dist/validate-content/validate-links.d.ts +17 -0
- package/dist/validate-content/validate-links.js +114 -0
- package/dist/validate-content/validate-strategy-output.d.ts +11 -0
- package/dist/validate-content/validate-strategy-output.js +120 -0
- package/dist/validate-content/verify-capacity.d.ts +14 -0
- package/dist/validate-content/verify-capacity.js +96 -0
- package/dist/vbrief-activate/activate.d.ts +13 -0
- package/dist/vbrief-activate/activate.js +184 -0
- package/dist/vbrief-activate/constants.d.ts +9 -0
- package/dist/vbrief-activate/constants.js +11 -0
- package/dist/vbrief-activate/index.d.ts +6 -0
- package/dist/vbrief-activate/index.js +4 -0
- package/dist/vbrief-activate/main.d.ts +14 -0
- package/dist/vbrief-activate/main.js +33 -0
- package/dist/vbrief-build/build.d.ts +13 -0
- package/dist/vbrief-build/build.js +123 -0
- package/dist/vbrief-build/constants.d.ts +13 -0
- package/dist/vbrief-build/constants.js +34 -0
- package/dist/vbrief-build/index.d.ts +12 -0
- package/dist/vbrief-build/index.js +11 -0
- package/dist/vbrief-build/json.d.ts +3 -0
- package/dist/vbrief-build/json.js +5 -0
- package/dist/vbrief-build/main.d.ts +5 -0
- package/dist/vbrief-build/main.js +65 -0
- package/dist/vbrief-build/parity-scenarios.d.ts +19 -0
- package/dist/vbrief-build/parity-scenarios.js +321 -0
- package/dist/vbrief-build/project-definition-io.d.ts +13 -0
- package/dist/vbrief-build/project-definition-io.js +117 -0
- package/dist/vbrief-build/routing.d.ts +13 -0
- package/dist/vbrief-build/routing.js +110 -0
- package/dist/vbrief-build/sources.d.ts +16 -0
- package/dist/vbrief-build/sources.js +294 -0
- package/dist/vbrief-build/speckit.d.ts +23 -0
- package/dist/vbrief-build/speckit.js +212 -0
- package/dist/vbrief-build/types.d.ts +18 -0
- package/dist/vbrief-build/types.js +7 -0
- package/dist/vbrief-reconcile/graph.d.ts +11 -0
- package/dist/vbrief-reconcile/graph.js +171 -0
- package/dist/vbrief-reconcile/index.d.ts +10 -0
- package/dist/vbrief-reconcile/index.js +9 -0
- package/dist/vbrief-reconcile/labels.d.ts +22 -0
- package/dist/vbrief-reconcile/labels.js +252 -0
- package/dist/vbrief-reconcile/main.d.ts +18 -0
- package/dist/vbrief-reconcile/main.js +149 -0
- package/dist/vbrief-reconcile/parity-scenarios.d.ts +16 -0
- package/dist/vbrief-reconcile/parity-scenarios.js +385 -0
- package/dist/vbrief-reconcile/py-repr.d.ts +3 -0
- package/dist/vbrief-reconcile/py-repr.js +5 -0
- package/dist/vbrief-reconcile/reconciliation.d.ts +20 -0
- package/dist/vbrief-reconcile/reconciliation.js +542 -0
- package/dist/vbrief-reconcile/swarm-deps.d.ts +8 -0
- package/dist/vbrief-reconcile/swarm-deps.js +142 -0
- package/dist/vbrief-reconcile/types.d.ts +128 -0
- package/dist/vbrief-reconcile/types.js +2 -0
- package/dist/vbrief-reconcile/umbrellas.d.ts +48 -0
- package/dist/vbrief-reconcile/umbrellas.js +462 -0
- package/dist/vbrief-validate/conformance.d.ts +26 -0
- package/dist/vbrief-validate/conformance.js +273 -0
- package/dist/vbrief-validate/constants.d.ts +13 -0
- package/dist/vbrief-validate/constants.js +36 -0
- package/dist/vbrief-validate/decomposition.d.ts +3 -0
- package/dist/vbrief-validate/decomposition.js +38 -0
- package/dist/vbrief-validate/epic-links.d.ts +4 -0
- package/dist/vbrief-validate/epic-links.js +152 -0
- package/dist/vbrief-validate/filename.d.ts +5 -0
- package/dist/vbrief-validate/filename.js +62 -0
- package/dist/vbrief-validate/folder-status.d.ts +4 -0
- package/dist/vbrief-validate/folder-status.js +30 -0
- package/dist/vbrief-validate/index.d.ts +14 -0
- package/dist/vbrief-validate/index.js +11 -0
- package/dist/vbrief-validate/main.d.ts +17 -0
- package/dist/vbrief-validate/main.js +127 -0
- package/dist/vbrief-validate/origin.d.ts +4 -0
- package/dist/vbrief-validate/origin.js +76 -0
- package/dist/vbrief-validate/paths.d.ts +11 -0
- package/dist/vbrief-validate/paths.js +83 -0
- package/dist/vbrief-validate/placeholders.d.ts +3 -0
- package/dist/vbrief-validate/placeholders.js +33 -0
- package/dist/vbrief-validate/plan-hooks.d.ts +9 -0
- package/dist/vbrief-validate/plan-hooks.js +145 -0
- package/dist/vbrief-validate/precutover.d.ts +7 -0
- package/dist/vbrief-validate/precutover.js +30 -0
- package/dist/vbrief-validate/project-definition.d.ts +4 -0
- package/dist/vbrief-validate/project-definition.js +166 -0
- package/dist/vbrief-validate/schema.d.ts +8 -0
- package/dist/vbrief-validate/schema.js +150 -0
- package/dist/vbrief-validate/staleness.d.ts +3 -0
- package/dist/vbrief-validate/staleness.js +106 -0
- package/dist/vbrief-validate/validate-all.d.ts +17 -0
- package/dist/vbrief-validate/validate-all.js +119 -0
- package/dist/vbrief-validation/fidelity.d.ts +22 -0
- package/dist/vbrief-validation/fidelity.js +508 -0
- package/dist/vbrief-validation/index.d.ts +11 -0
- package/dist/vbrief-validation/index.js +8 -0
- package/dist/vbrief-validation/legacy-sections.d.ts +13 -0
- package/dist/vbrief-validation/legacy-sections.js +124 -0
- package/dist/vbrief-validation/main.d.ts +5 -0
- package/dist/vbrief-validation/main.js +65 -0
- package/dist/vbrief-validation/normalize.d.ts +22 -0
- package/dist/vbrief-validation/normalize.js +126 -0
- package/dist/vbrief-validation/parity-scenarios.d.ts +14 -0
- package/dist/vbrief-validation/parity-scenarios.js +523 -0
- package/dist/vbrief-validation/safety.d.ts +38 -0
- package/dist/vbrief-validation/safety.js +422 -0
- package/dist/vbrief-validation/story-quality.d.ts +29 -0
- package/dist/vbrief-validation/story-quality.js +452 -0
- package/dist/vbrief-validation/types.d.ts +58 -0
- package/dist/vbrief-validation/types.js +2 -0
- package/dist/vbrief-validation/validation.d.ts +15 -0
- package/dist/vbrief-validation/validation.js +123 -0
- package/dist/verify-env/index.d.ts +6 -0
- package/dist/verify-env/index.js +6 -0
- package/dist/verify-env/node-runtime.d.ts +6 -0
- package/dist/verify-env/node-runtime.js +11 -0
- package/dist/verify-env/toolchain-check.d.ts +28 -0
- package/dist/verify-env/toolchain-check.js +68 -0
- package/dist/verify-env/verify-hooks-installed.d.ts +21 -0
- package/dist/verify-env/verify-hooks-installed.js +162 -0
- package/dist/verify-env/verify-no-task-runtime.d.ts +20 -0
- package/dist/verify-env/verify-no-task-runtime.js +383 -0
- package/dist/verify-env/verify-tools.d.ts +59 -0
- package/dist/verify-env/verify-tools.js +354 -0
- package/dist/verify-source/code-structure-validate.d.ts +48 -0
- package/dist/verify-source/code-structure-validate.js +678 -0
- package/dist/verify-source/content-manifest.d.ts +102 -0
- package/dist/verify-source/content-manifest.js +282 -0
- package/dist/verify-source/index.d.ts +7 -0
- package/dist/verify-source/index.js +7 -0
- package/dist/verify-source/python-call-scan.d.ts +14 -0
- package/dist/verify-source/python-call-scan.js +137 -0
- package/dist/verify-source/rule-ownership-lint.d.ts +33 -0
- package/dist/verify-source/rule-ownership-lint.js +179 -0
- package/dist/verify-source/scm-boundary.d.ts +26 -0
- package/dist/verify-source/scm-boundary.js +170 -0
- package/dist/verify-source/verify-stubs.d.ts +19 -0
- package/dist/verify-source/verify-stubs.js +185 -0
- package/dist/wip-cap/evaluate.d.ts +17 -0
- package/dist/wip-cap/evaluate.js +62 -0
- package/dist/wip-cap/index.d.ts +2 -0
- package/dist/wip-cap/index.js +2 -0
- package/package.json +206 -0
|
@@ -0,0 +1,555 @@
|
|
|
1
|
+
/** Auto-generated from scripts/triage_help.py -- do not edit by hand. */
|
|
2
|
+
export declare const registryData: {
|
|
3
|
+
readonly registry: {
|
|
4
|
+
readonly "task triage:summary": {
|
|
5
|
+
readonly name: "task triage:summary";
|
|
6
|
+
readonly summary: "One-line state for session-start ritual";
|
|
7
|
+
readonly refs: "(D2 / #1122)";
|
|
8
|
+
readonly description: "Emit the one-line triage state consumed by the session-start ritual. Always exits 0 (status surface, not a gate); appends a JSONL record to vbrief/.eval/summary-history.jsonl for observability.";
|
|
9
|
+
readonly usage: "task triage:summary [-- --json] [--no-history]";
|
|
10
|
+
readonly flags: readonly [readonly ["--json", "(off)", "Emit the structured record as JSON instead of the one-liner."], readonly ["--no-history", "(off)", "Suppress the history sidecar append (test-only)."], readonly ["--project-root PATH", "(cwd)", "Project root override (Taskfile threads USER_WORKING_DIR)."]];
|
|
11
|
+
readonly examples: readonly ["task triage:summary", "task triage:summary -- --json | jq"];
|
|
12
|
+
readonly see_also: readonly ["task triage:queue", "task verify:cache-fresh", "#1119 / D2"];
|
|
13
|
+
readonly placeholder: false;
|
|
14
|
+
};
|
|
15
|
+
readonly "task verify:cache-fresh": {
|
|
16
|
+
readonly name: "task verify:cache-fresh";
|
|
17
|
+
readonly summary: "Pre-start_agent freshness gate";
|
|
18
|
+
readonly refs: "(D5 / #1127)";
|
|
19
|
+
readonly description: "Detection-bound gate that refuses dispatch when the local cache is stale or the target issue is outside the active subscription. Exit 0 = clear, 1 = blocked (stale / outside scope / wrong decision), 2 = config error (cache missing).";
|
|
20
|
+
readonly usage: "task verify:cache-fresh [-- --for-issue N] [--allow-stale]";
|
|
21
|
+
readonly flags: readonly [readonly ["--for-issue N", "(none)", "Gate on a specific upstream issue number."], readonly ["--allow-stale", "(off)", "Operator-audited override; logged to stderr."]];
|
|
22
|
+
readonly examples: readonly ["task verify:cache-fresh", "task verify:cache-fresh -- --for-issue 1150"];
|
|
23
|
+
readonly see_also: readonly ["task triage:bootstrap", "task cache:fetch-all", "#1119 / D5"];
|
|
24
|
+
readonly placeholder: false;
|
|
25
|
+
};
|
|
26
|
+
readonly "task triage:accept": {
|
|
27
|
+
readonly name: "task triage:accept";
|
|
28
|
+
readonly summary: "Mark issue accepted; chains into scope:promote w/ flag";
|
|
29
|
+
readonly refs: "(D18 / #845)";
|
|
30
|
+
readonly description: "Record an `accept` audit entry against an issue. With the D18 reciprocity flag, chains into scope:promote --from-issue so the upstream cache and the vBRIEF lifecycle stay in sync.";
|
|
31
|
+
readonly usage: "task triage:accept -- --issue N --repo owner/name [--actor STR]";
|
|
32
|
+
readonly flags: readonly [readonly ["--issue N", "(required)", "Issue number."], readonly ["--repo owner/name", "(required)", "Upstream repo."], readonly ["--actor STR", "(env DEFT_TRIAGE_ACTOR)", "Override the audit actor field."]];
|
|
33
|
+
readonly examples: readonly ["task triage:accept -- --issue 42 --repo deftai/directive"];
|
|
34
|
+
readonly see_also: readonly ["task triage:status", "task scope:promote", "#1119 / D18"];
|
|
35
|
+
readonly placeholder: false;
|
|
36
|
+
};
|
|
37
|
+
readonly "task triage:defer": {
|
|
38
|
+
readonly name: "task triage:defer";
|
|
39
|
+
readonly summary: "Defer with reason + optional resume-on condition";
|
|
40
|
+
readonly refs: "(D3 / #1123)";
|
|
41
|
+
readonly description: "Record a `defer` audit entry against an issue. --reason is required (replaces free-text defer per D3). --resume-on accepts the v1 grammar (ref:closed:#N | ref:merged:#N | date:>=YYYY-MM-DD | pending-count:>=N | pending-count:<=N, joined by AND/OR).";
|
|
42
|
+
readonly usage: "task triage:defer -- --issue N --repo owner/name --reason 'why' [--resume-on EXPR] [--actor STR]";
|
|
43
|
+
readonly flags: readonly [readonly ["--issue N", "(required)", "Issue number."], readonly ["--repo owner/name", "(required)", "Upstream repo."], readonly ["--reason 'why'", "(required)", "Structured rationale (D3 enforced)."], readonly ["--resume-on EXPR", "(none)", "Resume-condition expression."], readonly ["--actor STR", "(env DEFT_TRIAGE_ACTOR)", "Override the audit actor field."]];
|
|
44
|
+
readonly examples: readonly ["task triage:defer -- --issue 42 --repo deftai/directive --reason 'waiting on upstream'", "task triage:defer -- --issue 42 --repo deftai/directive --reason 'needs PR 99' --resume-on 'ref:merged:#99'"];
|
|
45
|
+
readonly see_also: readonly ["task triage:status", "task triage:history", "task triage:bulk-defer", "#1119 / D3"];
|
|
46
|
+
readonly placeholder: false;
|
|
47
|
+
};
|
|
48
|
+
readonly "task triage:reject": {
|
|
49
|
+
readonly name: "task triage:reject";
|
|
50
|
+
readonly summary: "Close upstream with comment + label";
|
|
51
|
+
readonly refs: "(#845)";
|
|
52
|
+
readonly description: "Close the upstream issue, apply the `triage-rejected` label, and record a `reject` audit entry. Rolls audit back on gh failure so the cache and upstream stay consistent.";
|
|
53
|
+
readonly usage: "task triage:reject -- --issue N --repo owner/name --reason 'why' [--actor STR]";
|
|
54
|
+
readonly flags: readonly [readonly ["--issue N", "(required)", "Issue number."], readonly ["--repo owner/name", "(required)", "Upstream repo."], readonly ["--reason 'why'", "(required)", "Reason recorded on the close comment."], readonly ["--actor STR", "(env DEFT_TRIAGE_ACTOR)", "Override the audit actor field."]];
|
|
55
|
+
readonly examples: readonly ["task triage:reject -- --issue 42 --repo deftai/directive --reason 'out of scope'"];
|
|
56
|
+
readonly see_also: readonly ["task triage:bulk-reject", "task triage:reset", "#1119 / #845"];
|
|
57
|
+
readonly placeholder: false;
|
|
58
|
+
};
|
|
59
|
+
readonly "task triage:needs-ac": {
|
|
60
|
+
readonly name: "task triage:needs-ac";
|
|
61
|
+
readonly summary: "Post comment requesting AC";
|
|
62
|
+
readonly refs: "(#845)";
|
|
63
|
+
readonly description: "Mark an issue as needing acceptance criteria and post an AC-request comment upstream. Records a `needs-ac` audit entry against the cache.";
|
|
64
|
+
readonly usage: "task triage:needs-ac -- --issue N --repo owner/name [--comment STR] [--actor STR]";
|
|
65
|
+
readonly flags: readonly [readonly ["--issue N", "(required)", "Issue number."], readonly ["--repo owner/name", "(required)", "Upstream repo."], readonly ["--comment STR", "(canned)", "Override the AC-request comment text."], readonly ["--actor STR", "(env DEFT_TRIAGE_ACTOR)", "Override the audit actor field."]];
|
|
66
|
+
readonly examples: readonly ["task triage:needs-ac -- --issue 42 --repo deftai/directive"];
|
|
67
|
+
readonly see_also: readonly ["task triage:bulk-needs-ac", "task triage:status", "#1119 / #845"];
|
|
68
|
+
readonly placeholder: false;
|
|
69
|
+
};
|
|
70
|
+
readonly "task triage:mark-duplicate": {
|
|
71
|
+
readonly name: "task triage:mark-duplicate";
|
|
72
|
+
readonly summary: "Link as duplicate of another (validated)";
|
|
73
|
+
readonly refs: "(#845)";
|
|
74
|
+
readonly description: "Link an issue as a duplicate of another cached issue. The target issue must already exist in the unified cache; the audit entry is rejected otherwise.";
|
|
75
|
+
readonly usage: "task triage:mark-duplicate -- --issue N --of M --repo owner/name [--actor STR]";
|
|
76
|
+
readonly flags: readonly [readonly ["--issue N", "(required)", "Issue number to mark as duplicate."], readonly ["--of M", "(required)", "Canonical issue number (validated against the cache)."], readonly ["--repo owner/name", "(required)", "Upstream repo."], readonly ["--actor STR", "(env DEFT_TRIAGE_ACTOR)", "Override the audit actor field."]];
|
|
77
|
+
readonly examples: readonly ["task triage:mark-duplicate -- --issue 42 --of 17 --repo deftai/directive"];
|
|
78
|
+
readonly see_also: readonly ["task triage:history", "#1119 / #845"];
|
|
79
|
+
readonly placeholder: false;
|
|
80
|
+
};
|
|
81
|
+
readonly "task triage:reset": {
|
|
82
|
+
readonly name: "task triage:reset";
|
|
83
|
+
readonly summary: "Undo prior decision (Layer 5 reversibility)";
|
|
84
|
+
readonly refs: "(#845)";
|
|
85
|
+
readonly description: "Append a `reset` audit entry that references the prior decision. Does NOT delete history -- the audit log is append-only by design; reset is the supported reversibility primitive.";
|
|
86
|
+
readonly usage: "task triage:reset -- --issue N --repo owner/name [--actor STR]";
|
|
87
|
+
readonly flags: readonly [readonly ["--issue N", "(required)", "Issue number."], readonly ["--repo owner/name", "(required)", "Upstream repo."], readonly ["--actor STR", "(env DEFT_TRIAGE_ACTOR)", "Override the audit actor field."]];
|
|
88
|
+
readonly examples: readonly ["task triage:reset -- --issue 42 --repo deftai/directive"];
|
|
89
|
+
readonly see_also: readonly ["task triage:history", "task scope:undo", "#1119 / #845"];
|
|
90
|
+
readonly placeholder: false;
|
|
91
|
+
};
|
|
92
|
+
readonly "task triage:status": {
|
|
93
|
+
readonly name: "task triage:status";
|
|
94
|
+
readonly summary: "Print latest triage decision (read-only)";
|
|
95
|
+
readonly refs: "(#845)";
|
|
96
|
+
readonly description: "Print the latest triage decision for an issue from the append-only audit log. Read-only; no mutations, no subprocess calls.";
|
|
97
|
+
readonly usage: "task triage:status -- --issue N --repo owner/name";
|
|
98
|
+
readonly flags: readonly [readonly ["--issue N", "(required)", "Issue number."], readonly ["--repo owner/name", "(required)", "Upstream repo."]];
|
|
99
|
+
readonly examples: readonly ["task triage:status -- --issue 42 --repo deftai/directive"];
|
|
100
|
+
readonly see_also: readonly ["task triage:history", "task triage:show", "#1119 / #845"];
|
|
101
|
+
readonly placeholder: false;
|
|
102
|
+
};
|
|
103
|
+
readonly "task triage:history": {
|
|
104
|
+
readonly name: "task triage:history";
|
|
105
|
+
readonly summary: "Print full triage timeline (read-only)";
|
|
106
|
+
readonly refs: "(#845)";
|
|
107
|
+
readonly description: "Print the full triage timeline for an issue ordered by timestamp ascending. Read-only.";
|
|
108
|
+
readonly usage: "task triage:history -- --issue N --repo owner/name";
|
|
109
|
+
readonly flags: readonly [readonly ["--issue N", "(required)", "Issue number."], readonly ["--repo owner/name", "(required)", "Upstream repo."]];
|
|
110
|
+
readonly examples: readonly ["task triage:history -- --issue 42 --repo deftai/directive"];
|
|
111
|
+
readonly see_also: readonly ["task triage:status", "task triage:audit", "#1119 / #845"];
|
|
112
|
+
readonly placeholder: false;
|
|
113
|
+
};
|
|
114
|
+
readonly "task triage:queue": {
|
|
115
|
+
readonly name: "task triage:queue";
|
|
116
|
+
readonly summary: "Ranked candidate list";
|
|
117
|
+
readonly refs: "(D11 / #1128)";
|
|
118
|
+
readonly description: "Print the ranked triage queue from the local cache. Groups (display order): [ORPHAN] -> [RESUME] -> [URGENT] -> untriaged -> other -> [BLOCKED]. Within-group default = updated_at desc; consumer plan.policy.triageRankingLabels[] re-orders within-group by matched-label declared order. Items whose linked vBRIEF is blocked (status:blocked / unresolved depends_on) are demoted into [BLOCKED] unless --include-blocked is passed (#1286).";
|
|
119
|
+
readonly usage: "task triage:queue [-- --limit=N] [--include-blocked] [--repo=owner/name]";
|
|
120
|
+
readonly flags: readonly [readonly ["--limit N", "10", "Max rows to print."], readonly ["--include-blocked", "(off)", "Re-surface blocked items into their natural group (#1286)."], readonly ["--repo owner/name", "(git remote)", "Explicit repo override."]];
|
|
121
|
+
readonly examples: readonly ["task triage:queue", "task triage:queue -- --limit=20 --state=accept", "task triage:queue -- --format=json | jq '.[] | select(.score > 5)'"];
|
|
122
|
+
readonly see_also: readonly ["task triage:show", "task triage:audit", "#1119 / D11"];
|
|
123
|
+
readonly placeholder: false;
|
|
124
|
+
};
|
|
125
|
+
readonly "task triage:audit": {
|
|
126
|
+
readonly name: "task triage:audit";
|
|
127
|
+
readonly summary: "Session-summary view + slice-aware audit flags";
|
|
128
|
+
readonly refs: "(D11/D13 / #1128, #1180)";
|
|
129
|
+
readonly description: "Audit-log surface used by D2 (#1122) for triage:summary integration and by D4 (#1124) for cap-reached error messages. --vbrief-staleness flags audit entries that reference vBRIEFs newer than their last decision.";
|
|
130
|
+
readonly usage: "task triage:audit [-- --format=text|json] [--vbrief-staleness] [--since=<window>] [--action=<verb>]";
|
|
131
|
+
readonly flags: readonly [readonly ["--format text|json", "text", "Output shape."], readonly ["--vbrief-staleness", "(off)", "Flag entries referencing newer vBRIEFs."], readonly ["--since WINDOW", "(all)", "Time window (e.g. '24h', '7d')."], readonly ["--action VERB", "(all)", "Filter by audit verb."], readonly ["--repo owner/name", "(git remote)", "Explicit repo override."]];
|
|
132
|
+
readonly examples: readonly ["task triage:audit", "task triage:audit -- --format=json --since=7d"];
|
|
133
|
+
readonly see_also: readonly ["task triage:queue", "task triage:history", "#1119 / D11"];
|
|
134
|
+
readonly placeholder: false;
|
|
135
|
+
};
|
|
136
|
+
readonly "task triage:show": {
|
|
137
|
+
readonly name: "task triage:show";
|
|
138
|
+
readonly summary: "Per-issue detail with optional drift diff";
|
|
139
|
+
readonly refs: "(D11 / #1128)";
|
|
140
|
+
readonly description: "Per-issue read-only detail (cached upstream payload + latest triage decision + audit timeline). Useful before running triage:accept / triage:defer to confirm context.";
|
|
141
|
+
readonly usage: "task triage:show -- <N> [--repo=owner/name]";
|
|
142
|
+
readonly flags: readonly [readonly ["<N>", "(required)", "Issue number (positional)."], readonly ["--repo owner/name", "(git remote)", "Explicit repo override."]];
|
|
143
|
+
readonly examples: readonly ["task triage:show -- 42", "task triage:show -- 42 --repo deftai/directive"];
|
|
144
|
+
readonly see_also: readonly ["task triage:queue", "task triage:status", "#1119 / D11"];
|
|
145
|
+
readonly placeholder: false;
|
|
146
|
+
};
|
|
147
|
+
readonly "task triage:scope": {
|
|
148
|
+
readonly name: "task triage:scope";
|
|
149
|
+
readonly summary: "Active subscription inspection";
|
|
150
|
+
readonly refs: "(D12 / #1131, D14 / #1133, D14c / #1182)";
|
|
151
|
+
readonly description: "Inspect / mutate / diff the typed plan.policy.triageScope[] subscription and the triageScopeIgnores[] companion list. Defaults to read-only --list.";
|
|
152
|
+
readonly usage: "task triage:scope -- [--list] [--add-label=L | --add-milestone=M | --ignore-label=L] [--diff-from-upstream --repo OWNER/NAME] [--refresh-denominator --repo OWNER/NAME --count N]";
|
|
153
|
+
readonly flags: readonly [readonly ["--list", "(default)", "Print the active subscription rules."], readonly ["--add-label L", "(none)", "Append a label rule to the subscription."], readonly ["--add-milestone M", "(none)", "Append a milestone rule."], readonly ["--ignore-label L", "(none)", "Append a label to triageScopeIgnores[]."], readonly ["--diff-from-upstream", "(off)", "Diff cached scope vs live upstream."], readonly ["--repo owner/name", "(git remote)", "Required for --diff-from-upstream."]];
|
|
154
|
+
readonly examples: readonly ["task triage:scope", "task triage:scope -- --add-label='area:swarm'"];
|
|
155
|
+
readonly see_also: readonly ["task triage:subscribe", "task triage:scope-drift", "#1119 / D12"];
|
|
156
|
+
readonly placeholder: false;
|
|
157
|
+
};
|
|
158
|
+
readonly "task triage:scope-drift": {
|
|
159
|
+
readonly name: "task triage:scope-drift";
|
|
160
|
+
readonly summary: "Detect labels/milestones outside subscription";
|
|
161
|
+
readonly refs: "(D14 / #1133)";
|
|
162
|
+
readonly description: "Detect subscription drift: labels / milestones that appear on cached open issues but are NOT in plan.policy.triageScope. Suggests `task triage:subscribe` follow-ups or explicit ignore-list mutations.";
|
|
163
|
+
readonly usage: "task triage:scope-drift [-- --ignore-label=L | --ignore-milestone=M]";
|
|
164
|
+
readonly flags: readonly [readonly ["--ignore-label L", "(none)", "Append label to triageScopeIgnores[]."], readonly ["--ignore-milestone M", "(none)", "Append milestone to triageScopeIgnores[]."]];
|
|
165
|
+
readonly examples: readonly ["task triage:scope-drift", "task triage:scope-drift -- --ignore-label='wontfix'"];
|
|
166
|
+
readonly see_also: readonly ["task triage:scope", "task triage:subscribe", "#1119 / D14"];
|
|
167
|
+
readonly placeholder: false;
|
|
168
|
+
};
|
|
169
|
+
readonly "task triage:classify": {
|
|
170
|
+
readonly name: "task triage:classify";
|
|
171
|
+
readonly summary: "Inspect / validate auto-classification surface";
|
|
172
|
+
readonly refs: "(D10 / #1129)";
|
|
173
|
+
readonly description: "Inspect or validate the auto-classification rule set. --list renders effective rules (framework universal first, consumer overrides next). --validate exits non-zero on a malformed plan.policy.triageAutoClassify.";
|
|
174
|
+
readonly usage: "task triage:classify -- [--list | --validate]";
|
|
175
|
+
readonly flags: readonly [readonly ["--list", "(default)", "Print effective rules + hold markers."], readonly ["--validate", "(off)", "Validate plan.policy.triageAutoClassify."]];
|
|
176
|
+
readonly examples: readonly ["task triage:classify -- --list", "task triage:classify -- --validate"];
|
|
177
|
+
readonly see_also: readonly ["task triage:bootstrap", "task triage:queue", "#1119 / D10"];
|
|
178
|
+
readonly placeholder: false;
|
|
179
|
+
};
|
|
180
|
+
readonly "task triage:bootstrap": {
|
|
181
|
+
readonly name: "task triage:bootstrap";
|
|
182
|
+
readonly summary: "Populate cache + auto-classify";
|
|
183
|
+
readonly refs: "(D10 / #845 Story 6)";
|
|
184
|
+
readonly description: "Idempotent bootstrap installer: populates the unified cache via cache:fetch-all, runs auto-classification, and emits a structured recap. --json emits one object per step for scripted consumers.";
|
|
185
|
+
readonly usage: "task triage:bootstrap [-- --repo owner/name] [--state STR] [--limit N] [--batch-size N] [--delay-ms N] [--fetch-timeout-s S] [--quiet] [--json]";
|
|
186
|
+
readonly flags: readonly [readonly ["--repo owner/name", "(git remote)", "Upstream repo to populate."], readonly ["--state STR", "open", "Issue state filter forwarded to cache:fetch-all."], readonly ["--limit N", "(none)", "Cap on issues fetched."], readonly ["--fetch-timeout-s S", "(env, 300)", "Watchdog wall-clock cap (#952)."], readonly ["--quiet", "(off)", "Suppress per-step progress lines."], readonly ["--json", "(off)", "Structured JSON output."]];
|
|
187
|
+
readonly examples: readonly ["task triage:bootstrap", "task triage:bootstrap -- --repo deftai/directive --limit 50"];
|
|
188
|
+
readonly see_also: readonly ["task triage:welcome", "task triage:classify", "task cache:fetch-all", "#1119 / D10"];
|
|
189
|
+
readonly placeholder: false;
|
|
190
|
+
};
|
|
191
|
+
readonly "task triage:welcome": {
|
|
192
|
+
readonly name: "task triage:welcome";
|
|
193
|
+
readonly summary: "Single-entry-point upgrade ritual";
|
|
194
|
+
readonly refs: "(N3 / #1143)";
|
|
195
|
+
readonly description: "6-phase onboarding ritual: detect prior state, prompt for subscription scope, run triage:bootstrap, prompt for wipCap, offer WIP relief, print triage:summary. Idempotent on re-run; safe entrypoint for fresh consumers.";
|
|
196
|
+
readonly usage: "task triage:welcome [-- --no-subprocess]";
|
|
197
|
+
readonly flags: readonly [readonly ["--no-subprocess", "(off)", "Dry-mode: don't shell out to sibling tasks."]];
|
|
198
|
+
readonly examples: readonly ["task triage:welcome"];
|
|
199
|
+
readonly see_also: readonly ["task triage:bootstrap", "task triage:summary", "#1119 / N3"];
|
|
200
|
+
readonly placeholder: false;
|
|
201
|
+
};
|
|
202
|
+
readonly "task triage:reconcile": {
|
|
203
|
+
readonly name: "task triage:reconcile";
|
|
204
|
+
readonly summary: "Self-heal audit log from on-disk vBRIEFs";
|
|
205
|
+
readonly refs: "(#1468)";
|
|
206
|
+
readonly description: "Idempotent repair verb: derive missing `accept` decisions for proposed/pending/active vBRIEFs that carry an x-vbrief/github-issue reference but have no entry in vbrief/.eval/candidates.jsonl. Recovers triage state after the gitignored audit log is reset/lost (#1464) without a full cache re-fetch. Never overrides an existing decision, so a re-run is a no-op.";
|
|
207
|
+
readonly usage: "task triage:reconcile [-- --repo owner/name] [--dry-run] [--json]";
|
|
208
|
+
readonly flags: readonly [readonly ["--repo owner/name", "(ref URI / git remote)", "Fallback repo for refs lacking owner/name."], readonly ["--dry-run", "(off)", "Report what would be restored without writing."], readonly ["--json", "(off)", "Structured JSON output."]];
|
|
209
|
+
readonly examples: readonly ["task triage:reconcile -- --dry-run", "task triage:reconcile -- --repo deftai/directive"];
|
|
210
|
+
readonly see_also: readonly ["task triage:summary", "task triage:bootstrap", "#1119 / #1468"];
|
|
211
|
+
readonly placeholder: false;
|
|
212
|
+
};
|
|
213
|
+
readonly "task triage:bulk-accept": {
|
|
214
|
+
readonly name: "task triage:bulk-accept";
|
|
215
|
+
readonly summary: "Bulk accept cached candidates by filter";
|
|
216
|
+
readonly refs: "(#845 Story 4 / #915)";
|
|
217
|
+
readonly description: "Bulk-accept every cached candidate matching the supplied filters. Terminal records (accept/reject/mark-duplicate) ALWAYS short-circuit. Add --re-action to act on issues whose LATEST audit record is defer/needs-ac.";
|
|
218
|
+
readonly usage: "task triage:bulk-accept -- --repo OWNER/NAME [--label L] [--author A] [--age-days N] [--cluster C] [--re-action]";
|
|
219
|
+
readonly flags: readonly [readonly ["--repo OWNER/NAME", "(required)", "Upstream repo."], readonly ["--label L", "(none)", "Filter: only issues carrying this label."], readonly ["--author A", "(none)", "Filter: only issues by this author."], readonly ["--age-days N", "(none)", "Filter: only issues older than N days."], readonly ["--cluster C", "(none)", "Filter: only issues tagged cluster:<C>."], readonly ["--re-action", "(off)", "Re-action defer/needs-ac records."]];
|
|
220
|
+
readonly examples: readonly ["task triage:bulk-accept -- --repo deftai/directive --label good-first-issue"];
|
|
221
|
+
readonly see_also: readonly ["task triage:accept", "task triage:bulk-defer", "#1119 / #845"];
|
|
222
|
+
readonly placeholder: false;
|
|
223
|
+
};
|
|
224
|
+
readonly "task triage:bulk-reject": {
|
|
225
|
+
readonly name: "task triage:bulk-reject";
|
|
226
|
+
readonly summary: "Bulk reject cached candidates by filter";
|
|
227
|
+
readonly refs: "(#845 Story 4 / #915)";
|
|
228
|
+
readonly description: "Bulk-reject every cached candidate matching the filters. --reason is required and is recorded both in the audit log and on the upstream close comment.";
|
|
229
|
+
readonly usage: "task triage:bulk-reject -- --repo OWNER/NAME --reason 'why' [--label L] [--author A] [--age-days N] [--cluster C] [--re-action]";
|
|
230
|
+
readonly flags: readonly [readonly ["--repo OWNER/NAME", "(required)", "Upstream repo."], readonly ["--reason 'why'", "(required)", "Reason recorded on close comments."], readonly ["--label L", "(none)", "Filter: only issues with this label."], readonly ["--re-action", "(off)", "Re-action defer/needs-ac records."]];
|
|
231
|
+
readonly examples: readonly ["task triage:bulk-reject -- --repo deftai/directive --reason 'no longer relevant' --age-days 365"];
|
|
232
|
+
readonly see_also: readonly ["task triage:reject", "task triage:bulk-accept", "#1119 / #845"];
|
|
233
|
+
readonly placeholder: false;
|
|
234
|
+
};
|
|
235
|
+
readonly "task triage:bulk-defer": {
|
|
236
|
+
readonly name: "task triage:bulk-defer";
|
|
237
|
+
readonly summary: "Bulk defer cached candidates by filter";
|
|
238
|
+
readonly refs: "(#845 Story 4 / #915)";
|
|
239
|
+
readonly description: "Bulk-defer every cached candidate matching the filters. Use --re-action to re-action issues whose latest record is already defer/needs-ac.";
|
|
240
|
+
readonly usage: "task triage:bulk-defer -- --repo OWNER/NAME [--label L] [--author A] [--age-days N] [--cluster C] [--re-action]";
|
|
241
|
+
readonly flags: readonly [readonly ["--repo OWNER/NAME", "(required)", "Upstream repo."], readonly ["--label L", "(none)", "Filter: only issues with this label."], readonly ["--re-action", "(off)", "Re-action defer/needs-ac records."]];
|
|
242
|
+
readonly examples: readonly ["task triage:bulk-defer -- --repo deftai/directive --label needs-design"];
|
|
243
|
+
readonly see_also: readonly ["task triage:defer", "task triage:bulk-accept", "#1119 / #845"];
|
|
244
|
+
readonly placeholder: false;
|
|
245
|
+
};
|
|
246
|
+
readonly "task triage:bulk-needs-ac": {
|
|
247
|
+
readonly name: "task triage:bulk-needs-ac";
|
|
248
|
+
readonly summary: "Bulk needs-ac cached candidates by filter";
|
|
249
|
+
readonly refs: "(#845 Story 4 / #915)";
|
|
250
|
+
readonly description: "Bulk-needs-ac every cached candidate matching the filters; posts the canned AC-request comment upstream on each.";
|
|
251
|
+
readonly usage: "task triage:bulk-needs-ac -- --repo OWNER/NAME [--label L] [--author A] [--age-days N] [--cluster C] [--re-action]";
|
|
252
|
+
readonly flags: readonly [readonly ["--repo OWNER/NAME", "(required)", "Upstream repo."], readonly ["--label L", "(none)", "Filter: only issues with this label."], readonly ["--re-action", "(off)", "Re-action defer/needs-ac records."]];
|
|
253
|
+
readonly examples: readonly ["task triage:bulk-needs-ac -- --repo deftai/directive --age-days 30"];
|
|
254
|
+
readonly see_also: readonly ["task triage:needs-ac", "#1119 / #845"];
|
|
255
|
+
readonly placeholder: false;
|
|
256
|
+
};
|
|
257
|
+
readonly "task triage:refresh-active": {
|
|
258
|
+
readonly name: "task triage:refresh-active";
|
|
259
|
+
readonly summary: "Pre-swarm freshness gate for vbrief/active/";
|
|
260
|
+
readonly refs: "(#845 Story 4)";
|
|
261
|
+
readonly description: "Detect drift between cached and live `gh issue view` for every issue referenced from vbrief/active/*.vbrief.json. Interactive prompts on each drift: proceed-with-stale, refresh-and-update-local, or defer-from-this-batch.";
|
|
262
|
+
readonly usage: "task triage:refresh-active [-- --project-root PATH]";
|
|
263
|
+
readonly flags: readonly [readonly ["--project-root PATH", "(cwd)", "Project root containing vbrief/active/."]];
|
|
264
|
+
readonly examples: readonly ["task triage:refresh-active"];
|
|
265
|
+
readonly see_also: readonly ["task verify:cache-fresh", "task triage:audit", "#1119 / #845"];
|
|
266
|
+
readonly placeholder: false;
|
|
267
|
+
};
|
|
268
|
+
readonly "task triage:smoketest": {
|
|
269
|
+
readonly name: "task triage:smoketest";
|
|
270
|
+
readonly summary: "End-to-end synthetic smoketest (hermetic)";
|
|
271
|
+
readonly refs: "(N6 / #1146)";
|
|
272
|
+
readonly description: "End-to-end synthetic test of the cache-as-operator-working-set surface. Runs the full triage lifecycle against the bundled fixture and asserts the expected audit-log shape at every stage. Exit 0 on PASS, 1 on first failure.";
|
|
273
|
+
readonly usage: "task triage:smoketest [-- --verbose] [--keep-tempdir] [--cache-only]";
|
|
274
|
+
readonly flags: readonly [readonly ["--verbose", "(off)", "Print each assertion to stderr as it runs."], readonly ["--keep-tempdir", "(off)", "Don't clean up the temp working dir on exit."], readonly ["--cache-only", "(off)", "Skip vBRIEF-mutating stages (faster)."]];
|
|
275
|
+
readonly examples: readonly ["task triage:smoketest", "task triage:smoketest -- --cache-only --verbose"];
|
|
276
|
+
readonly see_also: readonly ["task triage:bootstrap", "#1119 / N6"];
|
|
277
|
+
readonly placeholder: false;
|
|
278
|
+
};
|
|
279
|
+
readonly "task triage:subscribe": {
|
|
280
|
+
readonly name: "task triage:subscribe";
|
|
281
|
+
readonly summary: "Add label/milestone/issue to subscription";
|
|
282
|
+
readonly refs: "(D14 / #1133)";
|
|
283
|
+
readonly description: "Subscribe to a label / milestone / issue by appending a rule to plan.policy.triageScope[]. Emits a JSONL audit record to vbrief/.eval/subscription-history.jsonl.";
|
|
284
|
+
readonly usage: "task triage:subscribe -- (--label=L | --milestone=M | --issue=N)";
|
|
285
|
+
readonly flags: readonly [readonly ["--label L", "(none)", "Subscribe to a label."], readonly ["--milestone M", "(none)", "Subscribe to a milestone."], readonly ["--issue N", "(none)", "Subscribe to a single issue."]];
|
|
286
|
+
readonly examples: readonly ["task triage:subscribe -- --label='area:swarm'", "task triage:subscribe -- --milestone='v0.32.0'"];
|
|
287
|
+
readonly see_also: readonly ["task triage:unsubscribe", "task triage:scope", "#1119 / D14"];
|
|
288
|
+
readonly placeholder: false;
|
|
289
|
+
};
|
|
290
|
+
readonly "task triage:unsubscribe": {
|
|
291
|
+
readonly name: "task triage:unsubscribe";
|
|
292
|
+
readonly summary: "Remove label/milestone/issue from subscription";
|
|
293
|
+
readonly refs: "(D14 / #1133)";
|
|
294
|
+
readonly description: "Unsubscribe a label / milestone / issue by removing the matching rule from plan.policy.triageScope[]. Idempotent (no-op on already-missing entries). Emits a JSONL audit record.";
|
|
295
|
+
readonly usage: "task triage:unsubscribe -- (--label=L | --milestone=M | --issue=N)";
|
|
296
|
+
readonly flags: readonly [readonly ["--label L", "(none)", "Unsubscribe a label."], readonly ["--milestone M", "(none)", "Unsubscribe a milestone."], readonly ["--issue N", "(none)", "Unsubscribe a single issue."]];
|
|
297
|
+
readonly examples: readonly ["task triage:unsubscribe -- --label='area:swarm'"];
|
|
298
|
+
readonly see_also: readonly ["task triage:subscribe", "task triage:scope", "#1119 / D14"];
|
|
299
|
+
readonly placeholder: false;
|
|
300
|
+
};
|
|
301
|
+
readonly "task triage:audit:prune": {
|
|
302
|
+
readonly name: "task triage:audit:prune";
|
|
303
|
+
readonly summary: "Operator-invoked archive of closed-terminal entries";
|
|
304
|
+
readonly refs: "(D19, coming)";
|
|
305
|
+
readonly description: "Move closed-terminal audit entries (accept/reject/mark-duplicate after the upstream issue is closed) into the archive sidecar so the live cache stays focused on open work.";
|
|
306
|
+
readonly usage: "task triage:audit:prune [-- --dry-run] [--older-than-days N]";
|
|
307
|
+
readonly flags: readonly [readonly ["--dry-run", "(off)", "Preview eligible entries without writing."], readonly ["--older-than-days N", "30", "Age threshold."]];
|
|
308
|
+
readonly examples: readonly ["task triage:audit:prune -- --dry-run"];
|
|
309
|
+
readonly see_also: readonly ["task triage:archive-list", "task triage:restore-from-archive", "#1119 / D19"];
|
|
310
|
+
readonly placeholder: true;
|
|
311
|
+
};
|
|
312
|
+
readonly "task triage:archive-list": {
|
|
313
|
+
readonly name: "task triage:archive-list";
|
|
314
|
+
readonly summary: "List archived entries";
|
|
315
|
+
readonly refs: "(D19, coming)";
|
|
316
|
+
readonly description: "Read-only listing of archived audit entries from the archive sidecar. Useful before restoring an entry.";
|
|
317
|
+
readonly usage: "task triage:archive-list [-- --since=WINDOW]";
|
|
318
|
+
readonly flags: readonly [readonly ["--since WINDOW", "(all)", "Time window (e.g. '30d', '6mo')."]];
|
|
319
|
+
readonly examples: readonly ["task triage:archive-list"];
|
|
320
|
+
readonly see_also: readonly ["task triage:audit:prune", "#1119 / D19"];
|
|
321
|
+
readonly placeholder: true;
|
|
322
|
+
};
|
|
323
|
+
readonly "task triage:restore-from-archive": {
|
|
324
|
+
readonly name: "task triage:restore-from-archive";
|
|
325
|
+
readonly summary: "Restore archived entry to live cache";
|
|
326
|
+
readonly refs: "(D19, coming)";
|
|
327
|
+
readonly description: "Move an archived entry back to the live audit log so it becomes visible to triage:queue / triage:audit again.";
|
|
328
|
+
readonly usage: "task triage:restore-from-archive -- <N>";
|
|
329
|
+
readonly flags: readonly [readonly ["<N>", "(required)", "Archived entry number to restore."]];
|
|
330
|
+
readonly examples: readonly ["task triage:restore-from-archive -- 42"];
|
|
331
|
+
readonly see_also: readonly ["task triage:archive-list", "#1119 / D19"];
|
|
332
|
+
readonly placeholder: true;
|
|
333
|
+
};
|
|
334
|
+
readonly "task triage:audit-log:rotate": {
|
|
335
|
+
readonly name: "task triage:audit-log:rotate";
|
|
336
|
+
readonly summary: "Rotate candidates.jsonl when bounded";
|
|
337
|
+
readonly refs: "(D20, coming)";
|
|
338
|
+
readonly description: "Rotate vbrief/.eval/candidates.jsonl when it exceeds the configured bound. Compacts terminal entries and preserves the open-work tail.";
|
|
339
|
+
readonly usage: "task triage:audit-log:rotate [-- --max-lines N]";
|
|
340
|
+
readonly flags: readonly [readonly ["--max-lines N", "(consumer default)", "Bound at which rotation fires."]];
|
|
341
|
+
readonly examples: readonly ["task triage:audit-log:rotate -- --max-lines 10000"];
|
|
342
|
+
readonly see_also: readonly ["task triage:audit:prune", "#1119 / D20"];
|
|
343
|
+
readonly placeholder: true;
|
|
344
|
+
};
|
|
345
|
+
readonly "task triage:metrics": {
|
|
346
|
+
readonly name: "task triage:metrics";
|
|
347
|
+
readonly summary: "Trend lines from summary-history.jsonl";
|
|
348
|
+
readonly refs: "(D17, coming)";
|
|
349
|
+
readonly description: "Print trend lines computed from vbrief/.eval/summary-history.jsonl: decisions-per-day, defer/accept ratio, stale-defer drift, etc.";
|
|
350
|
+
readonly usage: "task triage:metrics [-- --window=7d] [--format=text|json]";
|
|
351
|
+
readonly flags: readonly [readonly ["--window WINDOW", "7d", "Time window over which to aggregate."], readonly ["--format text|json", "text", "Output shape."]];
|
|
352
|
+
readonly examples: readonly ["task triage:metrics -- --window 30d"];
|
|
353
|
+
readonly see_also: readonly ["task triage:summary", "#1119 / D17"];
|
|
354
|
+
readonly placeholder: true;
|
|
355
|
+
};
|
|
356
|
+
readonly "task scope:promote": {
|
|
357
|
+
readonly name: "task scope:promote";
|
|
358
|
+
readonly summary: "proposed/ -> pending/ (set status pending)";
|
|
359
|
+
readonly refs: "(#845, D18 / #1119)";
|
|
360
|
+
readonly description: "Promote a vBRIEF scope from vbrief/proposed/ to vbrief/pending/ and set plan.status='pending'. D18 adds --from-issue=N for cache-reciprocity-checked promotion.";
|
|
361
|
+
readonly usage: "task scope:promote -- <file> [--force] | task scope:promote -- --from-issue=N";
|
|
362
|
+
readonly flags: readonly [readonly ["<file>", "(required)", "Path to vBRIEF (relative resolved against project root)."], readonly ["--from-issue=N", "(none)", "Promote with cache-reciprocity check (D18)."], readonly ["--force", "(off)", "Override the WIP cap (#1124 / D4); records audit entry."], readonly ["--project-root PATH", "(detected)", "Consumer project root override."]];
|
|
363
|
+
readonly examples: readonly ["task scope:promote -- vbrief/proposed/2026-05-19-foo.vbrief.json", "task scope:promote -- --from-issue=1150"];
|
|
364
|
+
readonly see_also: readonly ["task scope:demote", "task scope:activate", "task vbrief:activate", "#1119 / D18"];
|
|
365
|
+
readonly placeholder: false;
|
|
366
|
+
};
|
|
367
|
+
readonly "task scope:demote": {
|
|
368
|
+
readonly name: "task scope:demote";
|
|
369
|
+
readonly summary: "pending/ -> proposed/ (set status proposed)";
|
|
370
|
+
readonly refs: "(D1 / #1121)";
|
|
371
|
+
readonly description: "Demote a vBRIEF scope from vbrief/pending/ back to vbrief/proposed/ and append a structured audit entry (including a demote_meta block) to vbrief/.eval/scope-lifecycle.jsonl. Supports single-file and --batch (cohort shrink / cap relief) modes.";
|
|
372
|
+
readonly usage: "task scope:demote -- <file> [--reason TEXT] | task scope:demote -- --batch [--older-than-days N]";
|
|
373
|
+
readonly flags: readonly [readonly ["<file>", "(required for single)", "Path to vBRIEF."], readonly ["--batch", "(off)", "Batch mode: demote every pending older than --older-than-days."], readonly ["--older-than-days N", "45", "Batch-mode age threshold."], readonly ["--reason TEXT", "operator-requested", "Free-text reason for single-demote."], readonly ["--actor STR", "operator", "Actor identity recorded in the audit entry."]];
|
|
374
|
+
readonly examples: readonly ["task scope:demote -- vbrief/pending/2026-05-19-foo.vbrief.json", "task scope:demote -- --batch --older-than-days 60"];
|
|
375
|
+
readonly see_also: readonly ["task scope:undo", "task scope:promote", "#1119 / D1"];
|
|
376
|
+
readonly placeholder: false;
|
|
377
|
+
};
|
|
378
|
+
readonly "task scope:activate": {
|
|
379
|
+
readonly name: "task scope:activate";
|
|
380
|
+
readonly summary: "pending/ -> active/ (set status running)";
|
|
381
|
+
readonly refs: "(#845)";
|
|
382
|
+
readonly description: "Activate a pending vBRIEF: move to vbrief/active/ and set plan.status='running'. Required step before vbrief:preflight will exit 0 (the #810 implementation intent gate).";
|
|
383
|
+
readonly usage: "task scope:activate -- <file>";
|
|
384
|
+
readonly flags: readonly [readonly ["<file>", "(required)", "Path to vBRIEF."], readonly ["--project-root PATH", "(detected)", "Consumer project root override."]];
|
|
385
|
+
readonly examples: readonly ["task scope:activate -- vbrief/pending/2026-05-19-foo.vbrief.json"];
|
|
386
|
+
readonly see_also: readonly ["task vbrief:activate", "task scope:complete", "#1119 / #845"];
|
|
387
|
+
readonly placeholder: false;
|
|
388
|
+
};
|
|
389
|
+
readonly "task scope:complete": {
|
|
390
|
+
readonly name: "task scope:complete";
|
|
391
|
+
readonly summary: "active/ -> completed/ (set status completed)";
|
|
392
|
+
readonly refs: "(#845)";
|
|
393
|
+
readonly description: "Mark an active vBRIEF complete and move it to vbrief/completed/. Terminal transition; use scope:undo if you need reversibility (refused on terminal actions per D15).";
|
|
394
|
+
readonly usage: "task scope:complete -- <file>";
|
|
395
|
+
readonly flags: readonly [readonly ["<file>", "(required)", "Path to vBRIEF."], readonly ["--project-root PATH", "(detected)", "Consumer project root override."]];
|
|
396
|
+
readonly examples: readonly ["task scope:complete -- vbrief/active/2026-05-19-foo.vbrief.json"];
|
|
397
|
+
readonly see_also: readonly ["task scope:fail", "task scope:cancel", "#1119 / #845"];
|
|
398
|
+
readonly placeholder: false;
|
|
399
|
+
};
|
|
400
|
+
readonly "task scope:fail": {
|
|
401
|
+
readonly name: "task scope:fail";
|
|
402
|
+
readonly summary: "active/ -> completed/ (set status failed)";
|
|
403
|
+
readonly refs: "(#845, #614)";
|
|
404
|
+
readonly description: "Terminal failed transition. Mirrors scope:complete but sets plan.status='failed'. Use when a scope was attempted but could not be completed (external blocker, infeasibility, exhausted retries) and should NOT be cancelled.";
|
|
405
|
+
readonly usage: "task scope:fail -- <file>";
|
|
406
|
+
readonly flags: readonly [readonly ["<file>", "(required)", "Path to vBRIEF."], readonly ["--project-root PATH", "(detected)", "Consumer project root override."]];
|
|
407
|
+
readonly examples: readonly ["task scope:fail -- vbrief/active/2026-05-19-foo.vbrief.json"];
|
|
408
|
+
readonly see_also: readonly ["task scope:complete", "task scope:cancel", "#1119 / #845"];
|
|
409
|
+
readonly placeholder: false;
|
|
410
|
+
};
|
|
411
|
+
readonly "task scope:cancel": {
|
|
412
|
+
readonly name: "task scope:cancel";
|
|
413
|
+
readonly summary: "any -> cancelled/ (set status cancelled)";
|
|
414
|
+
readonly refs: "(#845)";
|
|
415
|
+
readonly description: "Cancel a vBRIEF from any folder. Use when the scope is no longer wanted / superseded / obsolete (vs scope:fail which means \"tried and failed\").";
|
|
416
|
+
readonly usage: "task scope:cancel -- <file>";
|
|
417
|
+
readonly flags: readonly [readonly ["<file>", "(required)", "Path to vBRIEF."], readonly ["--project-root PATH", "(detected)", "Consumer project root override."]];
|
|
418
|
+
readonly examples: readonly ["task scope:cancel -- vbrief/pending/2026-05-19-foo.vbrief.json"];
|
|
419
|
+
readonly see_also: readonly ["task scope:restore", "task scope:undo", "#1119 / #845"];
|
|
420
|
+
readonly placeholder: false;
|
|
421
|
+
};
|
|
422
|
+
readonly "task scope:restore": {
|
|
423
|
+
readonly name: "task scope:restore";
|
|
424
|
+
readonly summary: "cancelled/ -> proposed/ (set status proposed)";
|
|
425
|
+
readonly refs: "(#845)";
|
|
426
|
+
readonly description: "Restore a cancelled vBRIEF back to vbrief/proposed/ (status='proposed'). Use to re-enter the lifecycle after a scope:cancel.";
|
|
427
|
+
readonly usage: "task scope:restore -- <file>";
|
|
428
|
+
readonly flags: readonly [readonly ["<file>", "(required)", "Path to vBRIEF."], readonly ["--project-root PATH", "(detected)", "Consumer project root override."]];
|
|
429
|
+
readonly examples: readonly ["task scope:restore -- vbrief/cancelled/2026-05-19-foo.vbrief.json"];
|
|
430
|
+
readonly see_also: readonly ["task scope:cancel", "task scope:promote", "#1119 / #845"];
|
|
431
|
+
readonly placeholder: false;
|
|
432
|
+
};
|
|
433
|
+
readonly "task scope:block": {
|
|
434
|
+
readonly name: "task scope:block";
|
|
435
|
+
readonly summary: "stays in active/ (set status blocked)";
|
|
436
|
+
readonly refs: "(#845)";
|
|
437
|
+
readonly description: "Mark an active scope as blocked without moving it out of active/. Use when waiting on an external dependency.";
|
|
438
|
+
readonly usage: "task scope:block -- <file>";
|
|
439
|
+
readonly flags: readonly [readonly ["<file>", "(required)", "Path to vBRIEF."], readonly ["--project-root PATH", "(detected)", "Consumer project root override."]];
|
|
440
|
+
readonly examples: readonly ["task scope:block -- vbrief/active/2026-05-19-foo.vbrief.json"];
|
|
441
|
+
readonly see_also: readonly ["task scope:unblock", "#1119 / #845"];
|
|
442
|
+
readonly placeholder: false;
|
|
443
|
+
};
|
|
444
|
+
readonly "task scope:unblock": {
|
|
445
|
+
readonly name: "task scope:unblock";
|
|
446
|
+
readonly summary: "stays in active/ (set status running)";
|
|
447
|
+
readonly refs: "(#845)";
|
|
448
|
+
readonly description: "Clear a blocked status on an active scope, returning it to plan.status='running'.";
|
|
449
|
+
readonly usage: "task scope:unblock -- <file>";
|
|
450
|
+
readonly flags: readonly [readonly ["<file>", "(required)", "Path to vBRIEF."], readonly ["--project-root PATH", "(detected)", "Consumer project root override."]];
|
|
451
|
+
readonly examples: readonly ["task scope:unblock -- vbrief/active/2026-05-19-foo.vbrief.json"];
|
|
452
|
+
readonly see_also: readonly ["task scope:block", "#1119 / #845"];
|
|
453
|
+
readonly placeholder: false;
|
|
454
|
+
};
|
|
455
|
+
readonly "task scope:undo": {
|
|
456
|
+
readonly name: "task scope:undo";
|
|
457
|
+
readonly summary: "Undo demote/cancel/restore via audit-log id";
|
|
458
|
+
readonly refs: "(D15 / #1134)";
|
|
459
|
+
readonly description: "Reverse a scope-lifecycle audit entry by decision_id or every entry tagged with batch_id. Terminal actions (complete / fail) are REFUSED -- use a fresh scope:promote instead. Supports --dry-run preview and --latest convenience selector.";
|
|
460
|
+
readonly usage: "task scope:undo -- <decision_id> | --decision-id=<uuid> | --batch-id=<uuid> | --latest [--dry-run]";
|
|
461
|
+
readonly flags: readonly [readonly ["<decision_id>", "(one of)", "Positional decision_id (shorthand for --decision-id)."], readonly ["--decision-id UUID", "(one of)", "Decision id of a single audit entry to undo."], readonly ["--batch-id UUID", "(one of)", "Reverse every entry tagged with this batch_id."], readonly ["--latest", "(one of)", "Reverse the most-recent reversible entry."], readonly ["--dry-run", "(off)", "Preview the reversal without writing."], readonly ["--actor STR", "operator", "Actor identity recorded on the new undo entry."]];
|
|
462
|
+
readonly examples: readonly ["task scope:undo -- --latest --dry-run", "task scope:undo -- --batch-id=00000000-0000-0000-0000-000000000001"];
|
|
463
|
+
readonly see_also: readonly ["task scope:demote", "task triage:reset", "#1119 / D15"];
|
|
464
|
+
readonly placeholder: false;
|
|
465
|
+
};
|
|
466
|
+
readonly "task scope:decompose": {
|
|
467
|
+
readonly name: "task scope:decompose";
|
|
468
|
+
readonly summary: "Apply/check an approved epic story decomposition";
|
|
469
|
+
readonly refs: "(deft-directive-decompose skill)";
|
|
470
|
+
readonly description: "Validate or apply an approved epic/phase -> story decomposition draft. The draft is a temporary proposal artifact, not a vBRIEF. Writes pending child vBRIEFs and wires references back into the parent epic.";
|
|
471
|
+
readonly usage: "task scope:decompose -- <parent> --draft <draft> [--check] [--date YYYY-MM-DD]";
|
|
472
|
+
readonly flags: readonly [readonly ["<parent>", "(conditional)", "Parent epic/phase vBRIEF path; required with --draft, omit only for --check no-op."], readonly ["--draft PATH", "(required)", "Approved decomposition JSON draft; prefer vbrief/.eval/decompositions/<parent-slug>.json."], readonly ["--check", "(off)", "Validate only; do not write."], readonly ["--date YYYY-MM-DD", "today", "Creation date for generated child filenames."]];
|
|
473
|
+
readonly examples: readonly ["task scope:decompose -- vbrief/active/epic.vbrief.json --draft vbrief/.eval/decompositions/epic.json --check"];
|
|
474
|
+
readonly see_also: readonly ["task scope:promote", "skills/deft-directive-decompose/SKILL.md"];
|
|
475
|
+
readonly placeholder: false;
|
|
476
|
+
};
|
|
477
|
+
};
|
|
478
|
+
readonly categoriesTriage: readonly [readonly ["Session-start", readonly ["task triage:summary", "task verify:cache-fresh"]], readonly ["State verbs (mutate audit log)", readonly ["task triage:accept", "task triage:defer", "task triage:reject", "task triage:needs-ac", "task triage:mark-duplicate", "task triage:reset", "task triage:status", "task triage:history"]], readonly ["Read verbs", readonly ["task triage:queue", "task triage:audit", "task triage:show", "task triage:scope", "task triage:scope-drift", "task triage:classify"]], readonly ["Lifecycle", readonly ["task triage:bootstrap", "task triage:welcome", "task triage:reconcile"]], readonly ["Bulk variants", readonly ["task triage:bulk-accept", "task triage:bulk-reject", "task triage:bulk-defer", "task triage:bulk-needs-ac", "task triage:refresh-active", "task triage:smoketest"]], readonly ["Subscription mutation", readonly ["task triage:subscribe", "task triage:unsubscribe"]], readonly ["Archive / rotation", readonly ["task triage:audit:prune", "task triage:archive-list", "task triage:restore-from-archive", "task triage:audit-log:rotate", "task triage:metrics"]]];
|
|
479
|
+
readonly categoriesScope: readonly [readonly ["Promote / demote", readonly ["task scope:promote", "task scope:demote"]], readonly ["Activate / complete", readonly ["task scope:activate", "task scope:complete", "task scope:fail", "task scope:cancel", "task scope:block", "task scope:unblock"]], readonly ["Reversibility", readonly ["task scope:undo", "task scope:restore"]], readonly ["Decomposition", readonly ["task scope:decompose"]]];
|
|
480
|
+
readonly scriptSubcommandMap: {
|
|
481
|
+
readonly triage_actions: {
|
|
482
|
+
readonly accept: "task triage:accept";
|
|
483
|
+
readonly reject: "task triage:reject";
|
|
484
|
+
readonly defer: "task triage:defer";
|
|
485
|
+
readonly "needs-ac": "task triage:needs-ac";
|
|
486
|
+
readonly "mark-duplicate": "task triage:mark-duplicate";
|
|
487
|
+
readonly status: "task triage:status";
|
|
488
|
+
readonly reset: "task triage:reset";
|
|
489
|
+
readonly history: "task triage:history";
|
|
490
|
+
};
|
|
491
|
+
readonly triage_bootstrap: {
|
|
492
|
+
readonly __default__: "task triage:bootstrap";
|
|
493
|
+
};
|
|
494
|
+
readonly triage_bulk: {
|
|
495
|
+
readonly accept: "task triage:bulk-accept";
|
|
496
|
+
readonly reject: "task triage:bulk-reject";
|
|
497
|
+
readonly defer: "task triage:bulk-defer";
|
|
498
|
+
readonly "needs-ac": "task triage:bulk-needs-ac";
|
|
499
|
+
};
|
|
500
|
+
readonly triage_refresh: {
|
|
501
|
+
readonly __default__: "task triage:refresh-active";
|
|
502
|
+
};
|
|
503
|
+
readonly triage_classify: {
|
|
504
|
+
readonly __default__: "task triage:classify";
|
|
505
|
+
};
|
|
506
|
+
readonly triage_scope: {
|
|
507
|
+
readonly __default__: "task triage:scope";
|
|
508
|
+
};
|
|
509
|
+
readonly triage_scope_drift: {
|
|
510
|
+
readonly __default__: "task triage:scope-drift";
|
|
511
|
+
};
|
|
512
|
+
readonly triage_subscribe: {
|
|
513
|
+
readonly subscribe: "task triage:subscribe";
|
|
514
|
+
readonly unsubscribe: "task triage:unsubscribe";
|
|
515
|
+
readonly __default__: "task triage:subscribe";
|
|
516
|
+
};
|
|
517
|
+
readonly triage_summary: {
|
|
518
|
+
readonly __default__: "task triage:summary";
|
|
519
|
+
};
|
|
520
|
+
readonly triage_reconcile: {
|
|
521
|
+
readonly __default__: "task triage:reconcile";
|
|
522
|
+
};
|
|
523
|
+
readonly triage_queue: {
|
|
524
|
+
readonly queue: "task triage:queue";
|
|
525
|
+
readonly show: "task triage:show";
|
|
526
|
+
readonly audit: "task triage:audit";
|
|
527
|
+
};
|
|
528
|
+
readonly triage_welcome: {
|
|
529
|
+
readonly __default__: "task triage:welcome";
|
|
530
|
+
};
|
|
531
|
+
readonly triage_smoketest: {
|
|
532
|
+
readonly __default__: "task triage:smoketest";
|
|
533
|
+
};
|
|
534
|
+
readonly scope_lifecycle: {
|
|
535
|
+
readonly promote: "task scope:promote";
|
|
536
|
+
readonly activate: "task scope:activate";
|
|
537
|
+
readonly complete: "task scope:complete";
|
|
538
|
+
readonly fail: "task scope:fail";
|
|
539
|
+
readonly cancel: "task scope:cancel";
|
|
540
|
+
readonly restore: "task scope:restore";
|
|
541
|
+
readonly block: "task scope:block";
|
|
542
|
+
readonly unblock: "task scope:unblock";
|
|
543
|
+
};
|
|
544
|
+
readonly scope_demote: {
|
|
545
|
+
readonly __default__: "task scope:demote";
|
|
546
|
+
};
|
|
547
|
+
readonly scope_undo: {
|
|
548
|
+
readonly __default__: "task scope:undo";
|
|
549
|
+
};
|
|
550
|
+
readonly scope_decompose: {
|
|
551
|
+
readonly __default__: "task scope:decompose";
|
|
552
|
+
};
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
//# sourceMappingURL=registry-data.d.ts.map
|