@jtf19/vibecoding-kit 0.1.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/AGENTS.md +84 -0
- package/CHANGELOG.md +28 -0
- package/CLAUDE.md +137 -0
- package/CODE_OF_CONDUCT.md +30 -0
- package/CONTRIBUTING.md +69 -0
- package/LICENSE +67 -0
- package/README.md +162 -0
- package/SECURITY.md +34 -0
- package/adapters/claude/install.md +70 -0
- package/adapters/claude/plugin.json +38 -0
- package/adapters/claude/settings.example.json +15 -0
- package/adapters/codex/hooks.example.json +15 -0
- package/adapters/codex/install.md +72 -0
- package/adapters/codex/plugin.json +58 -0
- package/adapters/cursor/hooks.example.json +17 -0
- package/adapters/cursor/install.md +72 -0
- package/adapters/cursor/plugin.json +42 -0
- package/adapters/opencode/install.md +95 -0
- package/adapters/opencode/plugin.js +56 -0
- package/adapters/opencode/plugin.json +58 -0
- package/adapters/pi/extension.ts +56 -0
- package/adapters/pi/install.md +95 -0
- package/adapters/pi/plugin.json +58 -0
- package/bin/vibe-cli-usage.mjs +43 -0
- package/bin/vibe.mjs +120 -0
- package/docs/acceptance-checklist.md +1226 -0
- package/docs/architecture-debt-burndown.md +537 -0
- package/docs/architecture.md +77 -0
- package/docs/ci-evidence-onboarding.md +143 -0
- package/docs/development.md +71 -0
- package/docs/evidence-authoring.md +188 -0
- package/docs/golden-path.md +179 -0
- package/docs/install-acceptance-checklist.md +90 -0
- package/docs/install-claude.md +41 -0
- package/docs/install-codex.md +41 -0
- package/docs/install-cursor.md +41 -0
- package/docs/install-experience-roadmap.md +394 -0
- package/docs/install.md +119 -0
- package/docs/maintainer-guide.md +197 -0
- package/docs/phase-1-implementation.md +848 -0
- package/docs/phase-2-roadmap.md +142 -0
- package/docs/quick-recipes.md +115 -0
- package/docs/readiness-interpretation.md +105 -0
- package/docs/readiness-troubleshooting.md +209 -0
- package/docs/release-check-reference.md +63 -0
- package/docs/release-guide.md +481 -0
- package/docs/release-notes.md +75 -0
- package/docs/runtime-contract.md +1010 -0
- package/docs/runtime-maintainer-validation.md +212 -0
- package/docs/runtime-roadmap.md +2265 -0
- package/docs/skill-authoring-guide.md +150 -0
- package/docs/submodule-guide.md +131 -0
- package/docs/team-adoption.md +113 -0
- package/docs/user-guide.md +108 -0
- package/docs/vibecoding-fork-analysis.md +398 -0
- package/docs/workflow-chaining.md +539 -0
- package/examples/ci/README.md +61 -0
- package/examples/ci/ci-evidence-input.example.json +56 -0
- package/examples/ci/generate-diff-coverage.mjs +90 -0
- package/examples/ci/generate-test-evidence.mjs +82 -0
- package/examples/ci/github-actions-readiness.yml +108 -0
- package/examples/claude-project/README.md +57 -0
- package/examples/codex-project/README.md +57 -0
- package/examples/cursor-project/README.md +57 -0
- package/examples/full-chain/README.md +63 -0
- package/examples/full-chain/architecture-design.md +128 -0
- package/examples/full-chain/commit-readiness.json +31 -0
- package/examples/full-chain/delivery-traceability.yaml +32 -0
- package/examples/full-chain/diff-coverage.json +73 -0
- package/examples/full-chain/evidence.json +20 -0
- package/examples/full-chain/implementation-plan.md +54 -0
- package/examples/full-chain/product-acceptance.md +86 -0
- package/examples/full-chain/product-discovery.md +84 -0
- package/examples/full-chain/product-spec.md +88 -0
- package/examples/full-chain/scenario-acceptance.yaml +32 -0
- package/examples/full-chain/test-evidence.json +29 -0
- package/examples/full-chain/ui-design-contract.md +87 -0
- package/examples/golden-path/README.md +84 -0
- package/examples/golden-path/diff-coverage.json +66 -0
- package/examples/golden-path/implementation-plan.md +62 -0
- package/examples/golden-path/product-spec.md +96 -0
- package/examples/golden-path/test-evidence.json +29 -0
- package/examples/runtime-fixtures/architecture-design.md +128 -0
- package/examples/runtime-fixtures/commit-readiness.json +31 -0
- package/examples/runtime-fixtures/delivery-traceability.yaml +32 -0
- package/examples/runtime-fixtures/diff-coverage.json +73 -0
- package/examples/runtime-fixtures/evidence.json +20 -0
- package/examples/runtime-fixtures/implementation-plan.md +54 -0
- package/examples/runtime-fixtures/negative/commit-readiness-boundary-escalated.json +27 -0
- package/examples/runtime-fixtures/negative/delivery-traceability-bad-ref.yaml +32 -0
- package/examples/runtime-fixtures/negative/diff-coverage-changed-file-without-task-ref.json +40 -0
- package/examples/runtime-fixtures/negative/diff-coverage-operation-mismatch.json +38 -0
- package/examples/runtime-fixtures/negative/diff-coverage-required-task-missing.json +24 -0
- package/examples/runtime-fixtures/negative/diff-coverage-unexpected-file.json +20 -0
- package/examples/runtime-fixtures/negative/test-evidence-missing-output-digest.json +23 -0
- package/examples/runtime-fixtures/negative/test-evidence-risky-task-missing.json +29 -0
- package/examples/runtime-fixtures/product-acceptance.md +86 -0
- package/examples/runtime-fixtures/product-discovery.md +84 -0
- package/examples/runtime-fixtures/product-spec.md +88 -0
- package/examples/runtime-fixtures/scenario-acceptance.yaml +32 -0
- package/examples/runtime-fixtures/test-evidence.json +29 -0
- package/examples/runtime-fixtures/ui-design-contract.md +87 -0
- package/hooks/post-tool-compact/README.md +47 -0
- package/hooks/session-start/README.md +112 -0
- package/hooks/session-start/session-start-state-boundary-contract.mjs +161 -0
- package/hooks/session-start/session-start.md +29 -0
- package/hooks/session-start/session-start.mjs +49 -0
- package/hooks/workflow-handoff/README.md +44 -0
- package/hooks/workflow-handoff/workflow-handoff.md +11 -0
- package/package.json +72 -0
- package/skills/using-vibecoding/SKILL.md +396 -0
- package/skills/vibe-brainstorming/SKILL.md +98 -0
- package/skills/vibe-context-compact/SKILL.md +95 -0
- package/skills/vibe-debugging/SKILL.md +87 -0
- package/skills/vibe-dispatching-parallel-work/SKILL.md +144 -0
- package/skills/vibe-executing-plans/SKILL.md +114 -0
- package/skills/vibe-finishing-a-development-branch/SKILL.md +110 -0
- package/skills/vibe-implementation/SKILL.md +84 -0
- package/skills/vibe-planning/SKILL.md +102 -0
- package/skills/vibe-product-acceptance/SKILL.md +106 -0
- package/skills/vibe-product-discovery/SKILL.md +107 -0
- package/skills/vibe-product-spec/SKILL.md +105 -0
- package/skills/vibe-receiving-code-review/SKILL.md +110 -0
- package/skills/vibe-requesting-code-review/SKILL.md +106 -0
- package/skills/vibe-review/SKILL.md +106 -0
- package/skills/vibe-subagent-driven-development/SKILL.md +198 -0
- package/skills/vibe-systematic-debugging/SKILL.md +106 -0
- package/skills/vibe-test-driven-development/SKILL.md +112 -0
- package/skills/vibe-ui-design/SKILL.md +107 -0
- package/skills/vibe-verification/SKILL.md +84 -0
- package/skills/vibe-verification-before-completion/SKILL.md +170 -0
- package/skills/vibe-workspace-isolation/SKILL.md +158 -0
- package/skills/vibe-writing-plans/SKILL.md +137 -0
- package/skills/vibe-writing-skills/SKILL.md +118 -0
- package/templates/AGENTS.md +88 -0
- package/templates/CLAUDE.md +88 -0
- package/templates/VIBE-CODING.md +157 -0
- package/templates/architecture-design.md +139 -0
- package/templates/delivery-traceability.yaml +52 -0
- package/templates/evidence/README.md +117 -0
- package/templates/evidence/diff-coverage.json +34 -0
- package/templates/evidence/test-evidence.json +29 -0
- package/templates/implementation-plan.md +73 -0
- package/templates/product-acceptance.md +84 -0
- package/templates/product-discovery.md +81 -0
- package/templates/product-spec.md +84 -0
- package/templates/scenario-acceptance.yaml +37 -0
- package/templates/ui-design-contract.md +86 -0
- package/tools/vibe-architecture-check/README.md +66 -0
- package/tools/vibe-architecture-check/index.mjs +691 -0
- package/tools/vibe-compact/README.md +65 -0
- package/tools/vibe-compact/compact-contract.mjs +63 -0
- package/tools/vibe-compact/index.mjs +111 -0
- package/tools/vibe-doctor/README.md +200 -0
- package/tools/vibe-doctor/index.mjs +1721 -0
- package/tools/vibe-init/README.md +231 -0
- package/tools/vibe-init/index.mjs +369 -0
- package/tools/vibe-init/init-cli-args.mjs +100 -0
- package/tools/vibe-init/init-entry-merge-model.mjs +33 -0
- package/tools/vibe-init/init-install-manifest-model.mjs +137 -0
- package/tools/vibe-init/init-installed-agent-experience-contract.mjs +172 -0
- package/tools/vibe-init/init-platform-model.mjs +11 -0
- package/tools/vibe-init/init-presentation.mjs +149 -0
- package/tools/vibe-lifecycle/README.md +37 -0
- package/tools/vibe-lifecycle/index.mjs +365 -0
- package/tools/vibe-lifecycle/lifecycle-cli-args.mjs +104 -0
- package/tools/vibe-lifecycle/lifecycle-summary-model.mjs +67 -0
- package/tools/vibe-lifecycle/lifecycle-uninstall-plan-model.mjs +11 -0
- package/tools/vibe-plugin-pack/README.md +105 -0
- package/tools/vibe-plugin-pack/index.mjs +302 -0
- package/tools/vibe-plugin-pack/plugin-pack-cli.mjs +39 -0
- package/tools/vibe-plugin-pack/plugin-pack-manifest.mjs +37 -0
- package/tools/vibe-profile/index.mjs +212 -0
- package/tools/vibe-release-check/README.md +123 -0
- package/tools/vibe-release-check/command-manifest/release-check-base-commands.mjs +23 -0
- package/tools/vibe-release-check/command-manifest/release-check-closeout-commands.mjs +16 -0
- package/tools/vibe-release-check/command-manifest/release-check-command-metadata.mjs +32 -0
- package/tools/vibe-release-check/command-manifest/release-check-completion-commands.mjs +41 -0
- package/tools/vibe-release-check/command-manifest/release-check-full-chain-commands.mjs +12 -0
- package/tools/vibe-release-check/command-manifest/release-check-golden-path-commands.mjs +12 -0
- package/tools/vibe-release-check/command-manifest/release-check-install-commands.mjs +26 -0
- package/tools/vibe-release-check/command-manifest/release-check-learning-smoke-commands.mjs +21 -0
- package/tools/vibe-release-check/command-manifest/release-check-methodology-commands.mjs +27 -0
- package/tools/vibe-release-check/command-manifest/release-check-runtime-smoke-commands.mjs +116 -0
- package/tools/vibe-release-check/command-manifest/release-check-token-smoke-commands.mjs +21 -0
- package/tools/vibe-release-check/index.mjs +223 -0
- package/tools/vibe-release-check/release-check-behavior-smoke.mjs +177 -0
- package/tools/vibe-release-check/release-check-cli.mjs +37 -0
- package/tools/vibe-release-check/release-check-command-manifest.mjs +49 -0
- package/tools/vibe-release-check/release-check-completion-fixtures.mjs +151 -0
- package/tools/vibe-release-check/release-check-completion-suite.mjs +110 -0
- package/tools/vibe-release-check/release-check-dispatch.mjs +116 -0
- package/tools/vibe-release-check/release-check-full-chain-suite.mjs +55 -0
- package/tools/vibe-release-check/release-check-golden-path-suite.mjs +85 -0
- package/tools/vibe-release-check/release-check-install-marker-specs.mjs +133 -0
- package/tools/vibe-release-check/release-check-install-suite.mjs +112 -0
- package/tools/vibe-release-check/release-check-json-assertion-helpers.mjs +157 -0
- package/tools/vibe-release-check/release-check-json-markers.mjs +33 -0
- package/tools/vibe-release-check/release-check-learning-fixture-specs.mjs +199 -0
- package/tools/vibe-release-check/release-check-learning-suite.mjs +249 -0
- package/tools/vibe-release-check/release-check-live-behavior-smoke-fixture.mjs +406 -0
- package/tools/vibe-release-check/release-check-methodology-suite.mjs +108 -0
- package/tools/vibe-release-check/release-check-package-boundary-smoke.mjs +111 -0
- package/tools/vibe-release-check/release-check-platform-transcript-smoke-fixture.mjs +150 -0
- package/tools/vibe-release-check/release-check-readonly-marker-data.mjs +1 -0
- package/tools/vibe-release-check/release-check-readonly-marker-smoke-specs.mjs +170 -0
- package/tools/vibe-release-check/release-check-run-summary.mjs +67 -0
- package/tools/vibe-release-check/release-check-runtime-automation-fixtures.mjs +1 -0
- package/tools/vibe-release-check/release-check-runtime-automation-governance-reply-trace-smoke-helpers.mjs +224 -0
- package/tools/vibe-release-check/release-check-runtime-automation-governance-smoke-specs.mjs +215 -0
- package/tools/vibe-release-check/release-check-runtime-automation-governance-suite.mjs +5 -0
- package/tools/vibe-release-check/release-check-runtime-automation-methodology-smoke-specs.mjs +157 -0
- package/tools/vibe-release-check/release-check-runtime-automation-methodology-suite.mjs +130 -0
- package/tools/vibe-release-check/release-check-runtime-automation-platform-smoke-helpers.mjs +306 -0
- package/tools/vibe-release-check/release-check-runtime-automation-platform-suite.mjs +30 -0
- package/tools/vibe-release-check/release-check-runtime-automation-smoke-fixtures.mjs +53 -0
- package/tools/vibe-release-check/release-check-runtime-automation-source-candidate-smoke-helpers.mjs +506 -0
- package/tools/vibe-release-check/release-check-runtime-automation-source-suite.mjs +5 -0
- package/tools/vibe-release-check/release-check-runtime-automation-subagents-lifecycle-smoke-helpers.mjs +305 -0
- package/tools/vibe-release-check/release-check-runtime-automation-subagents-suite.mjs +25 -0
- package/tools/vibe-release-check/release-check-runtime-automation-suite.mjs +25 -0
- package/tools/vibe-release-check/release-check-runtime-daemon-bounded-run-smoke-helpers.mjs +243 -0
- package/tools/vibe-release-check/release-check-runtime-daemon-suite.mjs +5 -0
- package/tools/vibe-release-check/release-check-runtime-dispatch-fixtures.mjs +129 -0
- package/tools/vibe-release-check/release-check-runtime-dispatch-suite.mjs +5 -0
- package/tools/vibe-release-check/release-check-runtime-execution-approval-smoke-helpers.mjs +274 -0
- package/tools/vibe-release-check/release-check-runtime-execution-approval-suite.mjs +5 -0
- package/tools/vibe-release-check/release-check-runtime-execution-base-suite.mjs +388 -0
- package/tools/vibe-release-check/release-check-runtime-execution-recovery-suite.mjs +412 -0
- package/tools/vibe-release-check/release-check-runtime-execution-scheduler-suite.mjs +261 -0
- package/tools/vibe-release-check/release-check-runtime-execution-suite.mjs +11 -0
- package/tools/vibe-release-check/release-check-runtime-flow-smoke.mjs +347 -0
- package/tools/vibe-release-check/release-check-runtime-handoff-fixture-specs.mjs +211 -0
- package/tools/vibe-release-check/release-check-runtime-handoff-fixtures.mjs +11 -0
- package/tools/vibe-release-check/release-check-runtime-handoff-smoke-specs.mjs +86 -0
- package/tools/vibe-release-check/release-check-runtime-handoff-suite.mjs +316 -0
- package/tools/vibe-release-check/release-check-runtime-ledger-fixture-specs.mjs +9 -0
- package/tools/vibe-release-check/release-check-runtime-ledger-fixtures.mjs +51 -0
- package/tools/vibe-release-check/release-check-runtime-ledger-suite.mjs +24 -0
- package/tools/vibe-release-check/release-check-runtime-scheduler-fixture-specs.mjs +129 -0
- package/tools/vibe-release-check/release-check-runtime-scheduler-fixtures.mjs +10 -0
- package/tools/vibe-release-check/release-check-runtime-sdd-suite.mjs +535 -0
- package/tools/vibe-release-check/release-check-runtime-smoke-harness.mjs +140 -0
- package/tools/vibe-release-check/release-check-runtime-surface-expectations.mjs +106 -0
- package/tools/vibe-release-check/release-check-runtime-surface-smoke.mjs +112 -0
- package/tools/vibe-release-check/release-check-runtime-task-artifact-suite.mjs +105 -0
- package/tools/vibe-release-check/release-check-runtime-task-fixture-specs.mjs +270 -0
- package/tools/vibe-release-check/release-check-runtime-task-fixtures.mjs +19 -0
- package/tools/vibe-release-check/release-check-runtime.mjs +53 -0
- package/tools/vibe-release-check/release-check-stage103-118-fixtures.mjs +214 -0
- package/tools/vibe-release-check/release-check-stage103-118-smoke-specs.mjs +97 -0
- package/tools/vibe-release-check/release-check-stage103-118-smoke.mjs +861 -0
- package/tools/vibe-release-check/release-check-stage11-smoke.mjs +66 -0
- package/tools/vibe-release-check/release-check-stage119-120-fixture-specs.mjs +119 -0
- package/tools/vibe-release-check/release-check-stage119-120-smoke.mjs +325 -0
- package/tools/vibe-release-check/release-check-stage12-smoke.mjs +59 -0
- package/tools/vibe-release-check/release-check-stage121-136-fixture-specs.mjs +26 -0
- package/tools/vibe-release-check/release-check-stage121-136-fixtures.mjs +591 -0
- package/tools/vibe-release-check/release-check-stage121-136-smoke.mjs +917 -0
- package/tools/vibe-release-check/release-check-stage13-smoke.mjs +78 -0
- package/tools/vibe-release-check/release-check-stage137-140-smoke.mjs +534 -0
- package/tools/vibe-release-check/release-check-stage14-smoke.mjs +101 -0
- package/tools/vibe-release-check/release-check-stage141-148-smoke.mjs +1143 -0
- package/tools/vibe-release-check/release-check-stage15-smoke.mjs +132 -0
- package/tools/vibe-release-check/release-check-stage50-53-smoke.mjs +429 -0
- package/tools/vibe-release-check/release-check-subagent-adapter-bridge-smoke.mjs +162 -0
- package/tools/vibe-release-check/release-check-suite-plan-smoke.mjs +86 -0
- package/tools/vibe-release-check/release-check-suites.mjs +164 -0
- package/tools/vibe-release-check/release-check-test-run-smoke.mjs +59 -0
- package/tools/vibe-release-check/release-check-timing.mjs +98 -0
- package/tools/vibe-release-check/release-check-token-suite.mjs +260 -0
- package/tools/vibe-release-check/release-check-workflow-entry-suite.mjs +195 -0
- package/tools/vibe-release-check/release-check-workflow-governance-fixtures.mjs +138 -0
- package/tools/vibe-release-check/release-check-workflow-governance-smoke-suite.mjs +768 -0
- package/tools/vibe-release-check/release-check-workflow-ux-smoke.mjs +456 -0
- package/tools/vibe-runtime/README.md +2637 -0
- package/tools/vibe-runtime/index.mjs +3117 -0
- package/tools/vibe-runtime/runtime-adapter-bootstrap-matrix.mjs +264 -0
- package/tools/vibe-runtime/runtime-adapter-entry-acceptance.mjs +310 -0
- package/tools/vibe-runtime/runtime-adapter-packaging-consistency-command.mjs +131 -0
- package/tools/vibe-runtime/runtime-adapter-packaging-consistency.mjs +253 -0
- package/tools/vibe-runtime/runtime-advice-hub-model.mjs +175 -0
- package/tools/vibe-runtime/runtime-agent-session-start-contract.mjs +138 -0
- package/tools/vibe-runtime/runtime-artifact-ref-validation.mjs +281 -0
- package/tools/vibe-runtime/runtime-automatic-verification-gate-contract.mjs +134 -0
- package/tools/vibe-runtime/runtime-automation-boundary-text.mjs +7 -0
- package/tools/vibe-runtime/runtime-automation-command.mjs +367 -0
- package/tools/vibe-runtime/runtime-automation-plan-model.mjs +239 -0
- package/tools/vibe-runtime/runtime-automation-policy-model.mjs +175 -0
- package/tools/vibe-runtime/runtime-automation-readiness.mjs +347 -0
- package/tools/vibe-runtime/runtime-autopilot-lab-profile-contract.mjs +223 -0
- package/tools/vibe-runtime/runtime-behavioral-evaluation-contract.mjs +529 -0
- package/tools/vibe-runtime/runtime-behavioral-negative-gate-matrix.mjs +274 -0
- package/tools/vibe-runtime/runtime-bounded-attempt-policy-model.mjs +13 -0
- package/tools/vibe-runtime/runtime-bounded-foreground-command-executor-contract.mjs +288 -0
- package/tools/vibe-runtime/runtime-capability-registry.mjs +250 -0
- package/tools/vibe-runtime/runtime-cli-args.mjs +550 -0
- package/tools/vibe-runtime/runtime-cli-command-specs.mjs +63 -0
- package/tools/vibe-runtime/runtime-cli-dispatch.mjs +21 -0
- package/tools/vibe-runtime/runtime-cli-evidence-option-specs.mjs +193 -0
- package/tools/vibe-runtime/runtime-cli-evidence-options.mjs +28 -0
- package/tools/vibe-runtime/runtime-cli-from-options.mjs +222 -0
- package/tools/vibe-runtime/runtime-cli-low-risk-option-specs.mjs +128 -0
- package/tools/vibe-runtime/runtime-cli-main.mjs +32 -0
- package/tools/vibe-runtime/runtime-cli-option-default-families.mjs +454 -0
- package/tools/vibe-runtime/runtime-cli-option-defaults.mjs +33 -0
- package/tools/vibe-runtime/runtime-cli-option-handlers.mjs +82 -0
- package/tools/vibe-runtime/runtime-cli-usage.mjs +316 -0
- package/tools/vibe-runtime/runtime-cli-value-options.mjs +74 -0
- package/tools/vibe-runtime/runtime-close-loop-dashboard.mjs +283 -0
- package/tools/vibe-runtime/runtime-closeout-parity-contract.mjs +214 -0
- package/tools/vibe-runtime/runtime-command-container.mjs +26 -0
- package/tools/vibe-runtime/runtime-command-surface-registry.mjs +383 -0
- package/tools/vibe-runtime/runtime-command-wrapper-deps.mjs +13 -0
- package/tools/vibe-runtime/runtime-commit-readiness-envelope.mjs +281 -0
- package/tools/vibe-runtime/runtime-completion-boundary-text.mjs +7 -0
- package/tools/vibe-runtime/runtime-completion-bundle-contract.mjs +71 -0
- package/tools/vibe-runtime/runtime-completion-chain-assembly.mjs +48 -0
- package/tools/vibe-runtime/runtime-completion-command.mjs +50 -0
- package/tools/vibe-runtime/runtime-completion-evidence-bundle.mjs +269 -0
- package/tools/vibe-runtime/runtime-completion-evidence-descriptors.mjs +156 -0
- package/tools/vibe-runtime/runtime-completion-local-evidence-gates.mjs +164 -0
- package/tools/vibe-runtime/runtime-completion-presentation.mjs +71 -0
- package/tools/vibe-runtime/runtime-completion-readiness-summary.mjs +159 -0
- package/tools/vibe-runtime/runtime-confirmed-one-shot-plan.mjs +300 -0
- package/tools/vibe-runtime/runtime-context-budget-entry-defaults-command.mjs +77 -0
- package/tools/vibe-runtime/runtime-context-budget-entry-defaults.mjs +341 -0
- package/tools/vibe-runtime/runtime-contract-marker-registry.mjs +13 -0
- package/tools/vibe-runtime/runtime-contributor-guardrail-command.mjs +78 -0
- package/tools/vibe-runtime/runtime-contributor-guardrail-evidence.mjs +319 -0
- package/tools/vibe-runtime/runtime-control-plane-command.mjs +237 -0
- package/tools/vibe-runtime/runtime-control-plane-evals-artifacts.mjs +123 -0
- package/tools/vibe-runtime/runtime-control-plane-evals-boundary-model.mjs +75 -0
- package/tools/vibe-runtime/runtime-control-plane-evals-cases.mjs +547 -0
- package/tools/vibe-runtime/runtime-control-plane-evals-command.mjs +527 -0
- package/tools/vibe-runtime/runtime-control-plane-evals-report-validation.mjs +209 -0
- package/tools/vibe-runtime/runtime-control-plane-planner-artifacts.mjs +457 -0
- package/tools/vibe-runtime/runtime-control-plane-planning-command.mjs +563 -0
- package/tools/vibe-runtime/runtime-control-plane-planning-input.mjs +99 -0
- package/tools/vibe-runtime/runtime-control-plane-planning-listing.mjs +48 -0
- package/tools/vibe-runtime/runtime-control-plane-planning-presentation.mjs +246 -0
- package/tools/vibe-runtime/runtime-control-plane-planning-validation.mjs +529 -0
- package/tools/vibe-runtime/runtime-control-plane-readonly-command.mjs +537 -0
- package/tools/vibe-runtime/runtime-control-plane-readonly-deps.mjs +146 -0
- package/tools/vibe-runtime/runtime-control-plane-release-evidence.mjs +525 -0
- package/tools/vibe-runtime/runtime-control-plane-release-gates.mjs +369 -0
- package/tools/vibe-runtime/runtime-control-plane-router-planning-model.mjs +152 -0
- package/tools/vibe-runtime/runtime-control-plane-routing-artifacts.mjs +588 -0
- package/tools/vibe-runtime/runtime-controlled-change-delivery-contract.mjs +165 -0
- package/tools/vibe-runtime/runtime-controlled-execution-gate-contract.mjs +141 -0
- package/tools/vibe-runtime/runtime-controlled-long-running-automation-contract.mjs +184 -0
- package/tools/vibe-runtime/runtime-controlled-subagent-orchestration-contract.mjs +169 -0
- package/tools/vibe-runtime/runtime-daemon-command.mjs +166 -0
- package/tools/vibe-runtime/runtime-daemon-state-lifecycle-model.mjs +359 -0
- package/tools/vibe-runtime/runtime-delivery-methodology-command.mjs +17 -0
- package/tools/vibe-runtime/runtime-delivery-methodology-gates.mjs +277 -0
- package/tools/vibe-runtime/runtime-diff-coverage-envelope.mjs +301 -0
- package/tools/vibe-runtime/runtime-dispatch-command.mjs +484 -0
- package/tools/vibe-runtime/runtime-dispatch-readonly-artifacts.mjs +406 -0
- package/tools/vibe-runtime/runtime-dispatch-state-lifecycle-model.mjs +199 -0
- package/tools/vibe-runtime/runtime-durable-state-recovery-contract.mjs +172 -0
- package/tools/vibe-runtime/runtime-entry-advice-model.mjs +201 -0
- package/tools/vibe-runtime/runtime-entry-deps-builder.mjs +54 -0
- package/tools/vibe-runtime/runtime-entry-presentation.mjs +82 -0
- package/tools/vibe-runtime/runtime-entry-summary-model.mjs +343 -0
- package/tools/vibe-runtime/runtime-entry-trigger-discipline.mjs +341 -0
- package/tools/vibe-runtime/runtime-entry-trigger-tightening-command.mjs +79 -0
- package/tools/vibe-runtime/runtime-entry-trigger-tightening.mjs +357 -0
- package/tools/vibe-runtime/runtime-eval-catalog-model.mjs +101 -0
- package/tools/vibe-runtime/runtime-eval-transcript-fixtures.mjs +218 -0
- package/tools/vibe-runtime/runtime-evidence-intake-envelope.mjs +278 -0
- package/tools/vibe-runtime/runtime-evidence-repair-model.mjs +180 -0
- package/tools/vibe-runtime/runtime-executable-plan-contract.mjs +428 -0
- package/tools/vibe-runtime/runtime-execution-approval-lifecycle-models.mjs +278 -0
- package/tools/vibe-runtime/runtime-execution-candidate-approval-artifacts.mjs +227 -0
- package/tools/vibe-runtime/runtime-execution-command.mjs +544 -0
- package/tools/vibe-runtime/runtime-execution-enabled-bridge-model.mjs +113 -0
- package/tools/vibe-runtime/runtime-execution-enabled-closeout-boundary.mjs +89 -0
- package/tools/vibe-runtime/runtime-execution-enabled-preflight-model.mjs +185 -0
- package/tools/vibe-runtime/runtime-execution-enabled-profile-contract.mjs +127 -0
- package/tools/vibe-runtime/runtime-execution-enabled-run-envelope.mjs +153 -0
- package/tools/vibe-runtime/runtime-execution-evidence-binder.mjs +537 -0
- package/tools/vibe-runtime/runtime-execution-plan-artifacts.mjs +136 -0
- package/tools/vibe-runtime/runtime-execution-policy-artifacts.mjs +377 -0
- package/tools/vibe-runtime/runtime-execution-presentation.mjs +174 -0
- package/tools/vibe-runtime/runtime-execution-readonly-artifacts.mjs +228 -0
- package/tools/vibe-runtime/runtime-execution-run-preflight-artifacts.mjs +265 -0
- package/tools/vibe-runtime/runtime-execution-safety-artifacts.mjs +131 -0
- package/tools/vibe-runtime/runtime-execution-state-write-lifecycle-model.mjs +99 -0
- package/tools/vibe-runtime/runtime-experience-friction-matrix.mjs +395 -0
- package/tools/vibe-runtime/runtime-experience-learning-pattern.mjs +354 -0
- package/tools/vibe-runtime/runtime-experience-regression-dashboard.mjs +398 -0
- package/tools/vibe-runtime/runtime-experience-upgrade-command.mjs +92 -0
- package/tools/vibe-runtime/runtime-experience-upgrade-prioritizer.mjs +451 -0
- package/tools/vibe-runtime/runtime-foreground-worker-plan.mjs +275 -0
- package/tools/vibe-runtime/runtime-git-diff-read-model.mjs +322 -0
- package/tools/vibe-runtime/runtime-governance-attestation.mjs +304 -0
- package/tools/vibe-runtime/runtime-governance-command.mjs +609 -0
- package/tools/vibe-runtime/runtime-governance-convergence-reports.mjs +601 -0
- package/tools/vibe-runtime/runtime-governance-pr-models.mjs +551 -0
- package/tools/vibe-runtime/runtime-governance-presentation.mjs +67 -0
- package/tools/vibe-runtime/runtime-governance-route-model.mjs +194 -0
- package/tools/vibe-runtime/runtime-governance-surface-reports.mjs +495 -0
- package/tools/vibe-runtime/runtime-hooks-boundary-model.mjs +356 -0
- package/tools/vibe-runtime/runtime-hooks-command.mjs +286 -0
- package/tools/vibe-runtime/runtime-human-completion-evidence-model.mjs +220 -0
- package/tools/vibe-runtime/runtime-human-friendly-aliases.mjs +250 -0
- package/tools/vibe-runtime/runtime-implementation-methodology-command.mjs +17 -0
- package/tools/vibe-runtime/runtime-implementation-methodology-gates.mjs +164 -0
- package/tools/vibe-runtime/runtime-implementation-task-registry.mjs +334 -0
- package/tools/vibe-runtime/runtime-install-experience-command.mjs +120 -0
- package/tools/vibe-runtime/runtime-install-experience-score.mjs +334 -0
- package/tools/vibe-runtime/runtime-installed-multiround-ux-acceptance.mjs +149 -0
- package/tools/vibe-runtime/runtime-interaction-command-domain-registry.mjs +46 -0
- package/tools/vibe-runtime/runtime-interaction-command.mjs +648 -0
- package/tools/vibe-runtime/runtime-interaction-completion-command.mjs +220 -0
- package/tools/vibe-runtime/runtime-interaction-entry-command.mjs +130 -0
- package/tools/vibe-runtime/runtime-interaction-workflow-envelopes.mjs +412 -0
- package/tools/vibe-runtime/runtime-learning-advice-model.mjs +157 -0
- package/tools/vibe-runtime/runtime-learning-artifact-model.mjs +509 -0
- package/tools/vibe-runtime/runtime-learning-audit-model.mjs +106 -0
- package/tools/vibe-runtime/runtime-learning-interaction-command.mjs +220 -0
- package/tools/vibe-runtime/runtime-learning-observation-model.mjs +124 -0
- package/tools/vibe-runtime/runtime-learning-presentation.mjs +84 -0
- package/tools/vibe-runtime/runtime-learning-run-preview-model.mjs +184 -0
- package/tools/vibe-runtime/runtime-lease-command.mjs +95 -0
- package/tools/vibe-runtime/runtime-lease-state-lifecycle-model.mjs +247 -0
- package/tools/vibe-runtime/runtime-list-presentation.mjs +7 -0
- package/tools/vibe-runtime/runtime-live-behavior-transcript-model.mjs +164 -0
- package/tools/vibe-runtime/runtime-local-behavior-eval-contracts-command.mjs +76 -0
- package/tools/vibe-runtime/runtime-local-behavior-eval-contracts.mjs +382 -0
- package/tools/vibe-runtime/runtime-local-commit-automation-gate.mjs +254 -0
- package/tools/vibe-runtime/runtime-local-json-input.mjs +32 -0
- package/tools/vibe-runtime/runtime-methodology-coverage-map.mjs +398 -0
- package/tools/vibe-runtime/runtime-methodology-coverage-marker-specs.mjs +61 -0
- package/tools/vibe-runtime/runtime-methodology-coverage-presentation.mjs +26 -0
- package/tools/vibe-runtime/runtime-methodology-gate-model.mjs +154 -0
- package/tools/vibe-runtime/runtime-methodology-gate-output-envelope.mjs +4 -0
- package/tools/vibe-runtime/runtime-methodology-interaction-command.mjs +147 -0
- package/tools/vibe-runtime/runtime-methodology-presentation.mjs +76 -0
- package/tools/vibe-runtime/runtime-methodology-route-model.mjs +93 -0
- package/tools/vibe-runtime/runtime-next-action-console.mjs +388 -0
- package/tools/vibe-runtime/runtime-next-action-evidence-prompts-command.mjs +84 -0
- package/tools/vibe-runtime/runtime-next-action-evidence-prompts.mjs +327 -0
- package/tools/vibe-runtime/runtime-observability-command.mjs +96 -0
- package/tools/vibe-runtime/runtime-observability-presentation.mjs +30 -0
- package/tools/vibe-runtime/runtime-observability-readiness-model.mjs +204 -0
- package/tools/vibe-runtime/runtime-patch-queue-contract.mjs +151 -0
- package/tools/vibe-runtime/runtime-plan-action-manifest.mjs +334 -0
- package/tools/vibe-runtime/runtime-planner-route-model.mjs +75 -0
- package/tools/vibe-runtime/runtime-platform-acceptance-command.mjs +216 -0
- package/tools/vibe-runtime/runtime-platform-capability-artifacts.mjs +156 -0
- package/tools/vibe-runtime/runtime-platform-capability-model.mjs +105 -0
- package/tools/vibe-runtime/runtime-platform-command.mjs +329 -0
- package/tools/vibe-runtime/runtime-platform-presentation.mjs +78 -0
- package/tools/vibe-runtime/runtime-platform-session-artifacts.mjs +857 -0
- package/tools/vibe-runtime/runtime-platform-transcript-example-pack.mjs +293 -0
- package/tools/vibe-runtime/runtime-platform-transcript-intake-model.mjs +247 -0
- package/tools/vibe-runtime/runtime-platform-transcript-replay-model.mjs +371 -0
- package/tools/vibe-runtime/runtime-policy-catalog.mjs +54 -0
- package/tools/vibe-runtime/runtime-product-methodology-command.mjs +17 -0
- package/tools/vibe-runtime/runtime-product-methodology-gates.mjs +316 -0
- package/tools/vibe-runtime/runtime-progressive-entry-ux.mjs +237 -0
- package/tools/vibe-runtime/runtime-queue-command.mjs +98 -0
- package/tools/vibe-runtime/runtime-queue-state-lifecycle-model.mjs +318 -0
- package/tools/vibe-runtime/runtime-readiness-gate-split.mjs +196 -0
- package/tools/vibe-runtime/runtime-readonly-local-json-output-envelope.mjs +24 -0
- package/tools/vibe-runtime/runtime-recovery-classification-models.mjs +412 -0
- package/tools/vibe-runtime/runtime-recovery-command.mjs +107 -0
- package/tools/vibe-runtime/runtime-recovery-presentation.mjs +65 -0
- package/tools/vibe-runtime/runtime-recovery-state-lifecycle-model.mjs +419 -0
- package/tools/vibe-runtime/runtime-release-command-deps.mjs +4 -0
- package/tools/vibe-runtime/runtime-release-command.mjs +225 -0
- package/tools/vibe-runtime/runtime-release-state-lifecycle-model.mjs +48 -0
- package/tools/vibe-runtime/runtime-reply-artifact-lifecycle-model.mjs +84 -0
- package/tools/vibe-runtime/runtime-reply-command.mjs +488 -0
- package/tools/vibe-runtime/runtime-retry-command.mjs +223 -0
- package/tools/vibe-runtime/runtime-retry-run-gate-model.mjs +151 -0
- package/tools/vibe-runtime/runtime-review-envelope.mjs +449 -0
- package/tools/vibe-runtime/runtime-review-feedback-gate.mjs +160 -0
- package/tools/vibe-runtime/runtime-runbook-executor-preview-contract.mjs +361 -0
- package/tools/vibe-runtime/runtime-scheduler-command.mjs +8 -0
- package/tools/vibe-runtime/runtime-scheduler-risk-artifacts.mjs +775 -0
- package/tools/vibe-runtime/runtime-scheduler-state-lifecycle-model.mjs +53 -0
- package/tools/vibe-runtime/runtime-sdd-consumption-command.mjs +386 -0
- package/tools/vibe-runtime/runtime-sdd-evidence-chain-model.mjs +200 -0
- package/tools/vibe-runtime/runtime-sdd-handoff-chain-model.mjs +168 -0
- package/tools/vibe-runtime/runtime-sdd-implementer-artifact-model.mjs +90 -0
- package/tools/vibe-runtime/runtime-sdd-loop-command.mjs +659 -0
- package/tools/vibe-runtime/runtime-sdd-plan-preflight-model.mjs +121 -0
- package/tools/vibe-runtime/runtime-sdd-review-package-command.mjs +197 -0
- package/tools/vibe-runtime/runtime-sdd-review-package-model.mjs +183 -0
- package/tools/vibe-runtime/runtime-sdd-task-brief-model.mjs +144 -0
- package/tools/vibe-runtime/runtime-self-test-gate-profile.mjs +225 -0
- package/tools/vibe-runtime/runtime-sequential-stage-runbook.mjs +406 -0
- package/tools/vibe-runtime/runtime-session-checkpoint-model.mjs +217 -0
- package/tools/vibe-runtime/runtime-session-skill-command.mjs +241 -0
- package/tools/vibe-runtime/runtime-session-start-example-command.mjs +122 -0
- package/tools/vibe-runtime/runtime-session-start-example-pack.mjs +290 -0
- package/tools/vibe-runtime/runtime-session-start-shape-acceptance.mjs +344 -0
- package/tools/vibe-runtime/runtime-skill-contract-schema.mjs +221 -0
- package/tools/vibe-runtime/runtime-skill-route-registry.mjs +47 -0
- package/tools/vibe-runtime/runtime-skill-runtime-traceability-map.mjs +268 -0
- package/tools/vibe-runtime/runtime-source-merge-apply-boundary-model.mjs +130 -0
- package/tools/vibe-runtime/runtime-source-merge-artifacts.mjs +920 -0
- package/tools/vibe-runtime/runtime-source-merge-command.mjs +160 -0
- package/tools/vibe-runtime/runtime-source-merge-entry-command.mjs +153 -0
- package/tools/vibe-runtime/runtime-source-patch-plan-model.mjs +119 -0
- package/tools/vibe-runtime/runtime-stage-scriptlet.mjs +430 -0
- package/tools/vibe-runtime/runtime-staged-commit-readiness.mjs +469 -0
- package/tools/vibe-runtime/runtime-state-directory-model.mjs +7 -0
- package/tools/vibe-runtime/runtime-state-io.mjs +41 -0
- package/tools/vibe-runtime/runtime-state-paths.mjs +231 -0
- package/tools/vibe-runtime/runtime-state-presence-model.mjs +6 -0
- package/tools/vibe-runtime/runtime-state-risk-paths.mjs +70 -0
- package/tools/vibe-runtime/runtime-subagent-adapter-dispatch-command.mjs +266 -0
- package/tools/vibe-runtime/runtime-subagent-boundary-contracts.mjs +118 -0
- package/tools/vibe-runtime/runtime-subagent-permission-command.mjs +78 -0
- package/tools/vibe-runtime/runtime-subagent-permission-gate-model.mjs +131 -0
- package/tools/vibe-runtime/runtime-subagent-permission-visibility.mjs +294 -0
- package/tools/vibe-runtime/runtime-subagents-artifact-specs.mjs +257 -0
- package/tools/vibe-runtime/runtime-subagents-command.mjs +10 -0
- package/tools/vibe-runtime/runtime-subagents-eligibility-model.mjs +340 -0
- package/tools/vibe-runtime/runtime-subagents-platform-session-proxies.mjs +54 -0
- package/tools/vibe-runtime/runtime-subagents-presentation.mjs +91 -0
- package/tools/vibe-runtime/runtime-subagents-risk-artifacts.mjs +853 -0
- package/tools/vibe-runtime/runtime-subagents-stage-artifact-model.mjs +538 -0
- package/tools/vibe-runtime/runtime-subagents-tail-routing-model.mjs +48 -0
- package/tools/vibe-runtime/runtime-suite-plan-model.mjs +194 -0
- package/tools/vibe-runtime/runtime-superpowers-comparison-matrix.mjs +399 -0
- package/tools/vibe-runtime/runtime-superpowers-gap-matrix.mjs +307 -0
- package/tools/vibe-runtime/runtime-superpowers-parity-command.mjs +102 -0
- package/tools/vibe-runtime/runtime-superpowers-parity-profile-contract.mjs +183 -0
- package/tools/vibe-runtime/runtime-superpowers-parity-scorecard.mjs +460 -0
- package/tools/vibe-runtime/runtime-superpowers-regression-guard.mjs +270 -0
- package/tools/vibe-runtime/runtime-superpowers-style-eval-pack.mjs +367 -0
- package/tools/vibe-runtime/runtime-task-commit-gates.mjs +62 -0
- package/tools/vibe-runtime/runtime-task-commit-readiness.mjs +66 -0
- package/tools/vibe-runtime/runtime-task-commit-sidecar.mjs +65 -0
- package/tools/vibe-runtime/runtime-tdd-trace-contract.mjs +277 -0
- package/tools/vibe-runtime/runtime-test-evidence-model.mjs +196 -0
- package/tools/vibe-runtime/runtime-test-run-command-deps.mjs +7 -0
- package/tools/vibe-runtime/runtime-test-run-command.mjs +108 -0
- package/tools/vibe-runtime/runtime-token-economy-model.mjs +336 -0
- package/tools/vibe-runtime/runtime-token-interaction-command.mjs +381 -0
- package/tools/vibe-runtime/runtime-token-savior-budget.mjs +370 -0
- package/tools/vibe-runtime/runtime-tokens-command-deps.mjs +17 -0
- package/tools/vibe-runtime/runtime-tokens-command.mjs +117 -0
- package/tools/vibe-runtime/runtime-tokens-presentation.mjs +45 -0
- package/tools/vibe-runtime/runtime-trace-command.mjs +283 -0
- package/tools/vibe-runtime/runtime-trace-source-registry.mjs +132 -0
- package/tools/vibe-runtime/runtime-verification-gate-chain-model.mjs +131 -0
- package/tools/vibe-runtime/runtime-verification-repair-loop-plan.mjs +188 -0
- package/tools/vibe-runtime/runtime-workflow-alias-boundary-text.mjs +7 -0
- package/tools/vibe-runtime/runtime-workflow-alias-interaction-command.mjs +145 -0
- package/tools/vibe-runtime/runtime-workflow-command-deps.mjs +41 -0
- package/tools/vibe-runtime/runtime-workflow-command.mjs +191 -0
- package/tools/vibe-runtime/runtime-workflow-discipline-summary.mjs +164 -0
- package/tools/vibe-runtime/runtime-workflow-entry-envelopes.mjs +156 -0
- package/tools/vibe-runtime/runtime-workflow-ledger-command.mjs +239 -0
- package/tools/vibe-runtime/runtime-workflow-ledger-state-lifecycle-model.mjs +46 -0
- package/tools/vibe-runtime/runtime-workflow-loop-contract.mjs +259 -0
- package/tools/vibe-runtime/runtime-workflow-next-step-gate-model.mjs +106 -0
- package/tools/vibe-runtime/runtime-workflow-presentation.mjs +355 -0
- package/tools/vibe-runtime/runtime-workflow-readiness-model.mjs +176 -0
- package/tools/vibe-runtime/runtime-workflow-run-plan-model.mjs +207 -0
- package/tools/vibe-runtime/runtime-workflow-start-model.mjs +229 -0
- package/tools/vibe-runtime/runtime-workflow-state-artifacts.mjs +381 -0
- package/tools/vibe-runtime/runtime-workflow-state-helpers.mjs +456 -0
- package/tools/vibe-runtime/runtime-workflow-state-summary.mjs +65 -0
- package/tools/vibe-runtime/runtime-workflow-state-validation.mjs +104 -0
- package/tools/vibe-runtime/runtime-workflow-ux-model.mjs +205 -0
- package/tools/vibe-runtime/runtime-workspace-boundary-text.mjs +7 -0
- package/tools/vibe-runtime/runtime-workspace-isolation-command.mjs +295 -0
- package/tools/vibe-runtime/state-core-paths.mjs +113 -0
- package/tools/vibe-runtime/state-extension-paths.mjs +198 -0
- package/tools/vibe-runtime/state-safe-paths.mjs +2 -0
- package/tools/vibe-runtime-check/README.md +110 -0
- package/tools/vibe-runtime-check/architecture-tool-contracts.mjs +150 -0
- package/tools/vibe-runtime-check/index.mjs +186 -0
- package/tools/vibe-runtime-check/install-summary-adoption-contracts.mjs +115 -0
- package/tools/vibe-runtime-check/marker-contract-core.mjs +20 -0
- package/tools/vibe-runtime-check/product-artifact-contracts.mjs +24 -0
- package/tools/vibe-runtime-check/release-check-install-placement-contracts.mjs +166 -0
- package/tools/vibe-runtime-check/release-runtime-suite-layer-contracts.mjs +137 -0
- package/tools/vibe-runtime-check/runtime-architecture-manifest-drift-contracts.mjs +128 -0
- package/tools/vibe-runtime-check/runtime-automation-readiness-contracts.mjs +404 -0
- package/tools/vibe-runtime-check/runtime-capability-registry-contracts.mjs +299 -0
- package/tools/vibe-runtime-check/runtime-check-diagnostics-presentation.mjs +71 -0
- package/tools/vibe-runtime-check/runtime-cli-surface-contracts.mjs +156 -0
- package/tools/vibe-runtime-check/runtime-close-loop-contracts.mjs +163 -0
- package/tools/vibe-runtime-check/runtime-contract-delivery-registry.mjs +19 -0
- package/tools/vibe-runtime-check/runtime-contract-implementation-registry.mjs +23 -0
- package/tools/vibe-runtime-check/runtime-contract-local-evidence-registry.mjs +43 -0
- package/tools/vibe-runtime-check/runtime-contract-product-registry.mjs +83 -0
- package/tools/vibe-runtime-check/runtime-contract-registry.mjs +19 -0
- package/tools/vibe-runtime-check/runtime-control-plane-contracts.mjs +14 -0
- package/tools/vibe-runtime-check/runtime-doc-contract-marker-specs.mjs +349 -0
- package/tools/vibe-runtime-check/runtime-doc-contracts.mjs +24 -0
- package/tools/vibe-runtime-check/runtime-doc-marker-contracts.mjs +25 -0
- package/tools/vibe-runtime-check/runtime-entry-size-contracts.mjs +477 -0
- package/tools/vibe-runtime-check/runtime-experience-cli-contract-specs.mjs +98 -0
- package/tools/vibe-runtime-check/runtime-experience-cli-contracts.mjs +12 -0
- package/tools/vibe-runtime-check/runtime-experience-contracts.mjs +187 -0
- package/tools/vibe-runtime-check/runtime-governance-learning-token-contract-specs.mjs +92 -0
- package/tools/vibe-runtime-check/runtime-governance-learning-token-contracts.mjs +12 -0
- package/tools/vibe-runtime-check/runtime-high-risk-boundary-contracts.mjs +35 -0
- package/tools/vibe-runtime-check/runtime-high-risk-boundary-matrix.mjs +75 -0
- package/tools/vibe-runtime-check/runtime-index-import-boundary-contracts.mjs +192 -0
- package/tools/vibe-runtime-check/runtime-optimization-boundary-contracts.mjs +49 -0
- package/tools/vibe-runtime-check/runtime-pure-model-boundary-contracts.mjs +176 -0
- package/tools/vibe-runtime-check/runtime-release-closeout-contracts.mjs +25 -0
- package/tools/vibe-runtime-check/runtime-roadmap-marker-specs.mjs +559 -0
- package/tools/vibe-runtime-check/runtime-source-bundle.mjs +119 -0
- package/tools/vibe-runtime-check/runtime-tool-readme-contracts.mjs +93 -0
- package/tools/vibe-runtime-check/runtime-tool-readme-marker-specs.mjs +952 -0
- package/tools/vibe-runtime-check/workflow-skill-contracts.mjs +129 -0
- package/tools/vibe-runtime-check/workflow-skill-route-registry-contracts.mjs +106 -0
- package/tools/vibe-runtime-check/workflow-ux-contracts.mjs +46 -0
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
# 第二阶段路线图
|
|
2
|
+
|
|
3
|
+
本文档固化 Vibecoding Kit 第二阶段首轮建设边界。
|
|
4
|
+
|
|
5
|
+
## 阶段目标
|
|
6
|
+
|
|
7
|
+
在第一阶段“可安装、可触发、可复验”的基础上,推进到:
|
|
8
|
+
|
|
9
|
+
- 更好安装:安装前可检查,已有入口文件可预览合并建议。
|
|
10
|
+
- 更好交接:长上下文可整理为固定 handoff 结构。
|
|
11
|
+
- 更好诊断:doctor 不只指出问题,也给出修复动作。
|
|
12
|
+
- 更好平台适配:Claude、Cursor、Codex 的入口、skills 路径、adapter 路径表达一致。
|
|
13
|
+
- 更好维护:submodule、发布边界和 release check 有明确路径。
|
|
14
|
+
|
|
15
|
+
## 当前边界
|
|
16
|
+
|
|
17
|
+
继续保持第一阶段已确认的 installed layout:
|
|
18
|
+
|
|
19
|
+
```text
|
|
20
|
+
CLAUDE.md # Claude 按需生成
|
|
21
|
+
AGENTS.md # Cursor / Codex 按需生成
|
|
22
|
+
.vibecoding/
|
|
23
|
+
skills/
|
|
24
|
+
adapters/
|
|
25
|
+
hooks/
|
|
26
|
+
VIBE-CODING.md
|
|
27
|
+
config.json
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
默认不把源码仓库中的 `skills/`、`adapters/`、`hooks/`、`docs/`、`examples/` 铺到业务项目根目录。
|
|
31
|
+
|
|
32
|
+
`docs/` 和 `examples/` 只在 `--with-docs` 时安装到 `.vibecoding/`。
|
|
33
|
+
|
|
34
|
+
## 首轮范围
|
|
35
|
+
|
|
36
|
+
### 1. 安装体验增强
|
|
37
|
+
|
|
38
|
+
交付:
|
|
39
|
+
|
|
40
|
+
- `vibe-init --check`:只检查目标项目安装状态,不写入。
|
|
41
|
+
- `vibe-init --merge=preview`:入口文件已存在时输出建议合并片段,不覆盖;`--merge-preview` 仅作为兼容别名保留。
|
|
42
|
+
- `vibe-init --platform auto`:根据目标项目已有入口文件推断平台。
|
|
43
|
+
- 安装后输出更明确的下一步。
|
|
44
|
+
|
|
45
|
+
边界:仍不自动覆盖或自动合并已有 `CLAUDE.md` / `AGENTS.md`。
|
|
46
|
+
|
|
47
|
+
### 2. doctor 诊断增强
|
|
48
|
+
|
|
49
|
+
交付:
|
|
50
|
+
|
|
51
|
+
- warn / fail 输出修复建议。
|
|
52
|
+
- repo layout 检查 `fork/` submodule 状态。
|
|
53
|
+
- 检查 README、release guide、acceptance checklist 中的关键入口。
|
|
54
|
+
- installed layout 检查平台 adapter 与入口文件是否一致。
|
|
55
|
+
|
|
56
|
+
边界:不做真实 IDE runtime 验证,不做 MCP 检查。
|
|
57
|
+
|
|
58
|
+
### 3. 上下文压缩轻量工具
|
|
59
|
+
|
|
60
|
+
交付:
|
|
61
|
+
|
|
62
|
+
- `tools/vibe-compact/index.mjs`
|
|
63
|
+
- `tools/vibe-compact/README.md`
|
|
64
|
+
- `vibe-context-compact` skill 说明可配合本地工具使用。
|
|
65
|
+
|
|
66
|
+
输出结构固定为:
|
|
67
|
+
|
|
68
|
+
```text
|
|
69
|
+
目标:
|
|
70
|
+
当前状态:
|
|
71
|
+
关键决策:
|
|
72
|
+
已完成:
|
|
73
|
+
未完成:
|
|
74
|
+
风险:
|
|
75
|
+
下一步:
|
|
76
|
+
关键文件:
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
边界:不接 MCP、不接远程模型、不做跨项目 memory。
|
|
80
|
+
|
|
81
|
+
### 4. 平台适配增强
|
|
82
|
+
|
|
83
|
+
交付:
|
|
84
|
+
|
|
85
|
+
- 三个平台 adapter manifest 标注 repo layout 与 installed layout 路径。
|
|
86
|
+
- 三个平台安装文档统一说明入口文件、skills 路径、adapter 路径。
|
|
87
|
+
- 安装文档补充 submodule clone 场景。
|
|
88
|
+
|
|
89
|
+
### 5. 发布与维护增强
|
|
90
|
+
|
|
91
|
+
交付:
|
|
92
|
+
|
|
93
|
+
- `docs/submodule-guide.md`
|
|
94
|
+
- `tools/vibe-release-check/index.mjs`
|
|
95
|
+
- `docs/release-guide.md` 补充第二阶段工具与 submodule 边界。
|
|
96
|
+
- `docs/acceptance-checklist.md` 补充第二阶段验收。
|
|
97
|
+
|
|
98
|
+
### 6. Runtime Contract 与只读检查
|
|
99
|
+
|
|
100
|
+
交付:
|
|
101
|
+
|
|
102
|
+
- `docs/runtime-roadmap.md`:记录可观测状态机、半自动编排和可选执行器的分阶段路线。
|
|
103
|
+
- `docs/runtime-contract.md`:定义 skill contract、handoff contract、execution policy 和 failure semantics。
|
|
104
|
+
- `tools/vibe-runtime-check/index.mjs`:只读检查 workflow contract 是否可被未来 runtime 消费。
|
|
105
|
+
|
|
106
|
+
边界:只读检查,不写 workflow state,不自动执行 `next_skill`,不调用 subagent,不创建 worktree,不执行 git 写入,不引入 MCP、agent graph、daemon 或后台 worker。
|
|
107
|
+
|
|
108
|
+
## 明确不纳入首轮
|
|
109
|
+
|
|
110
|
+
- 不做完整 MCP 生态接入。
|
|
111
|
+
- 不做跨项目大型 memory。
|
|
112
|
+
- 不做完整 codebase index。
|
|
113
|
+
- 不做 agent runtime 自动调用链。
|
|
114
|
+
- 不默认启用 workflow state ledger。
|
|
115
|
+
- 不做 subagent、worktree、git 写入或依赖安装的自动执行。
|
|
116
|
+
- 不把 `fork/` 源码合并进主项目。
|
|
117
|
+
- 不默认生成 `.claude/`、`.cursor/`、`.codex/` 私有运行目录。
|
|
118
|
+
|
|
119
|
+
## 推荐实施顺序
|
|
120
|
+
|
|
121
|
+
```text
|
|
122
|
+
phase2-roadmap docs
|
|
123
|
+
-> submodule guide
|
|
124
|
+
-> doctor diagnostics enhancement
|
|
125
|
+
-> init check / merge-preview / auto
|
|
126
|
+
-> vibe-compact lightweight tool
|
|
127
|
+
-> platform adapter docs cleanup
|
|
128
|
+
-> release-check aggregator
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
## 首轮验收标准
|
|
132
|
+
|
|
133
|
+
完成后应满足:
|
|
134
|
+
|
|
135
|
+
- `vibe-init --check` 不写文件,并能说明目标项目当前接入状态。
|
|
136
|
+
- `vibe-init --merge=preview` 能对已有入口文件输出可复制合并片段。
|
|
137
|
+
- `vibe-init --platform auto` 能从 `CLAUDE.md` / `AGENTS.md` 推断平台。
|
|
138
|
+
- `vibe-doctor` 对 warn / fail 输出修复建议。
|
|
139
|
+
- `vibe-doctor` 在 repo layout 中检查 `fork/` submodule 参考状态。
|
|
140
|
+
- `vibe-compact` 能把长文本压缩为固定 handoff 结构。
|
|
141
|
+
- 三个平台安装文档对入口文件、skills 路径、adapter 路径表达一致。
|
|
142
|
+
- 发布前检查可以通过 `tools/vibe-release-check/index.mjs` 聚合执行。
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
# Quick Recipes
|
|
2
|
+
|
|
3
|
+
这些 recipe 用于第一次上手和日常排障。默认从只读命令开始,不把 Vibecoding Runtime 当成隐藏执行器。
|
|
4
|
+
|
|
5
|
+
文档层级:L1 用户入口层。这里的命令用于安全观察和解释下一步;如果你要建立团队交付证据链,再进入 `docs/team-adoption.md`、`docs/evidence-authoring.md` 和 `docs/ci-evidence-onboarding.md`。
|
|
6
|
+
|
|
7
|
+
安装、doctor、update、repair 和 uninstall 等 CLI 命令可以按 `docs/install.md` 使用 `npx vibecoding-kit ...`。本页的 `tools/vibe-runtime/index.mjs` recipe 面向源码仓库内的只读 runtime 观察,仍使用本地源码路径。
|
|
8
|
+
|
|
9
|
+
## 1. 只读入口判断
|
|
10
|
+
|
|
11
|
+
适合:新任务开始、用户只说“继续”、目标或验收不清。
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
node tools/vibe-runtime/index.mjs workflow --start --prompt "帮我确认下一步" --json --root ../my-project
|
|
15
|
+
node tools/vibe-runtime/index.mjs session --start --prompt "帮我确认下一步" --json --root ../my-project
|
|
16
|
+
node tools/vibe-runtime/index.mjs skill --select --intent implementation --json --root ../my-project
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
边界:`writes=false`、`state_directory_created=false`、`skill_execution=false`、`subagent=false`、`git=false`、`platform_api=false`。
|
|
20
|
+
|
|
21
|
+
优先读取:`workflow_start.start_here_contract` 和 `workflow_start.entry_summary`。如果使用 `session --start`,同样读取嵌套的 `workflow_start`,并用 `session_start_alias.canonical_command="workflow --start"` 确认别名未偏离核心合同;如果只需要 skill 选择回执,可以用 `skill --select` 并读取 `workflow_receipt` / `skill_select_alias`。如果 `entry_summary.state_gap_is_expected=true`,说明需要先收敛目标、范围或验收,不是 runtime failure。`start_here_contract.skill_path` 应指向 `.vibecoding/skills/using-vibecoding/SKILL.md`,且 `registry_fallback_to_file_path=true`。
|
|
22
|
+
|
|
23
|
+
## 1.0 首次会话验收
|
|
24
|
+
|
|
25
|
+
适合:安装后验证 agent 是否真的遵守 skill-first 入口,而不是直接实现或隐藏执行。
|
|
26
|
+
|
|
27
|
+
给 agent 的验收 prompt:
|
|
28
|
+
|
|
29
|
+
```text
|
|
30
|
+
我想给这个项目加一个小功能,请先判断下一步。
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
预期行为:agent 先按文件路径读取 `.vibecoding/skills/using-vibecoding/SKILL.md`,只做轻量 route,输出下一步人工动作和验证策略缺口;不注入完整 skill 长表,不执行命令,不自动测试,不调用 subagent,不触碰源码或 git。
|
|
34
|
+
|
|
35
|
+
## 1.1 入口上下文三档
|
|
36
|
+
|
|
37
|
+
适合:决定 agent 首次回复或继续会话时应该加载多少上下文,避免默认注入完整 skill 或长维护者文档。
|
|
38
|
+
|
|
39
|
+
- `tiny_context`:只保留 `using-vibecoding` 入口判断、当前人工下一步和安全边界;适合普通业务请求。
|
|
40
|
+
- `balanced_context`:在 tiny 基础上补充当前 profile、证据摘要和少量 recipe;适合明确实现、排障或完成前验证。
|
|
41
|
+
- `full_maintenance_context`:仅维护者显式需要时展示 runtime stage、release/check marker 和长期治理上下文;不作为业务项目默认入口。
|
|
42
|
+
|
|
43
|
+
P61 marker:`p61_token_context_economy_v2`、`no_full_skill_injection_by_default`、`prompt_mutation=false`、`embeddings=false`、`remote_config=false`、`dynamic_tool_execution=false`、`model_invocation=false`、`command_execution=false`、`state_directory_created=false`。
|
|
44
|
+
|
|
45
|
+
## 2. 查看 profile 与人类可读解释
|
|
46
|
+
|
|
47
|
+
适合:确认当前项目处于轻量默认模式、强 workflow 纪律,还是受控本地执行 profile。核心命令是 `profile --explain`。
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
node bin/vibe.mjs profile --root ../my-project --show
|
|
51
|
+
node bin/vibe.mjs profile --root ../my-project --explain
|
|
52
|
+
node bin/vibe.mjs profile --root ../my-project --explain --json
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
边界:`--show` 和 `--explain` 只读,不写 `.vibecoding/config.json`,不创建 `.vibecoding-state/`,不运行命令。
|
|
56
|
+
|
|
57
|
+
判读:
|
|
58
|
+
|
|
59
|
+
- `default`:日常默认,轻量分流和人工确认。
|
|
60
|
+
- `legacy-workflow-discipline`:更强 workflow gate 和 handoff 纪律;仍不授权隐藏执行、git、PR、平台 API 或真实 subagent。
|
|
61
|
+
- `execution-enabled`:只表示受控本地前台执行 gate 可用;仍需要 preflight、candidate、approval、allowlist 和 evidence audit。
|
|
62
|
+
|
|
63
|
+
## 3. 只读 readiness 证据入口
|
|
64
|
+
|
|
65
|
+
适合:确认 runtime 自动化边界、查缺口、判断下一步人工动作。
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
node tools/vibe-runtime/index.mjs automation --readiness --json --root ../my-project
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
边界:只读聚合,不自动执行检查命令,不写业务源码,不做 git 写入。
|
|
72
|
+
|
|
73
|
+
优先读取:readiness summary、blocked reasons、manual next action。不要把 `ok=false` 直接理解成系统失败;多数情况下它表示证据缺口或边界未授权。
|
|
74
|
+
|
|
75
|
+
## 4. 首次完成前收口
|
|
76
|
+
|
|
77
|
+
适合:第一次让 agent 判断“能不能说完成”。先看本地证据摘要,不要直接跳到提交、PR 或发布。
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
node tools/vibe-runtime/index.mjs completion --readiness --from-file <local-completion-evidence-file> --json --root ../my-project
|
|
81
|
+
node tools/vibe-runtime/index.mjs completion --evidence-bundle --from-file <local-completion-evidence-file> --json --root ../my-project
|
|
82
|
+
node tools/vibe-runtime/index.mjs session --close --from-file <local-completion-evidence-file> --json --root ../my-project
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
优先读取:`completion_evidence.task_completion_summary`、`completion_evidence_bundle.human_completion_evidence_bundle`、`session_close_alias.next_manual_action`、`blocked_reasons`。`session --close` 是 `completion --evidence-bundle` 的只读别名,用于会话收口场景;如果只是缺 full compliance 证据,`ok=false` 是证据缺口提示,不等于系统失败。
|
|
86
|
+
|
|
87
|
+
边界:`command_execution=false`、`test_execution=false`、`git=false`、`commit=false`、`push=false`、`pr=false`、`platform_api=false`、`subagent=false`。
|
|
88
|
+
|
|
89
|
+
## 5. 安装与发布 smoke
|
|
90
|
+
|
|
91
|
+
适合:维护者确认安装模板、docs marker 和 release 快速检查。
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
npm run release:install
|
|
95
|
+
npm run release:fast
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
边界:这些 smoke 可能创建 `.tmp/` fixture,并应在结束后清理;它们不应创建源码仓库或目标项目的 `.vibecoding-state/`。
|
|
99
|
+
|
|
100
|
+
Windows PowerShell 中串联命令时不要依赖 `&&`,优先分步执行;确实需要串联时使用:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
cmd /c "node --check tools\vibe-profile\index.mjs && npm run check:arch"
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
## 6. 受控本地执行的边界复核
|
|
107
|
+
|
|
108
|
+
适合:已经明确需要 `execution-enabled`,但还没决定是否开启。
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
node bin/vibe.mjs profile --root ../my-project --set execution-enabled --dry-run --json
|
|
112
|
+
node tools/vibe-runtime/index.mjs execute --root ../my-project --preflight --json
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
边界:dry-run 和 preflight 不运行 action,不写业务源码,不写 git,不调用平台 API,不创建真实 subagent。只有用户显式 `--confirm` 后,profile 切换才允许写 `.vibecoding/config.json`;这仍不等于执行。
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# Readiness Interpretation Guide
|
|
2
|
+
|
|
3
|
+
本文档说明如何解释 `completion --evidence-bundle` 的 readiness 输出,尤其是 team mode 与 full compliance mode 的差异。遇到具体 blocked reasons、digest drift、missing refs 或 `implementation_alignment` 失败时,直接参考 `docs/readiness-troubleshooting.md`。
|
|
4
|
+
|
|
5
|
+
核心判断:先看 `completion_evidence.task_completion_summary`。顶层 `ok=false` 不一定表示 team-mode evidence 失败;它也可能只是说明当前没有提供 full compliance 所需的完整 artifact chain。
|
|
6
|
+
|
|
7
|
+
## 判断顺序
|
|
8
|
+
|
|
9
|
+
```mermaid
|
|
10
|
+
flowchart TD
|
|
11
|
+
A[completion evidence bundle output] --> B[Read task_completion_summary]
|
|
12
|
+
B --> C{local_task_ready?}
|
|
13
|
+
C -->|No| D[Fix minimum_local_evidence_missing]
|
|
14
|
+
C -->|Yes| E{full_compliance_ready?}
|
|
15
|
+
E -->|No| F[Team mode ready; review full_compliance_evidence_missing if upgrading]
|
|
16
|
+
E -->|Yes| G[Full compliance ready; proceed with manual review and explicit handoff]
|
|
17
|
+
B --> H{unsafe_release_actions_detected?}
|
|
18
|
+
H -->|Yes| I[Stop and remove execution/write boundary expansion]
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
注释:`task_completion_summary` 是人读入口;底层 test/diff/alignment gate 用于解释为什么 `minimum_local_evidence_missing` 非空。team mode 只要求本地 evidence 与 implementation alignment;full compliance 再看完整产品、UI、架构、traceability、acceptance、commit 和 engineering evidence 链路。
|
|
22
|
+
|
|
23
|
+
## `next_manual_action` 分类
|
|
24
|
+
|
|
25
|
+
`next_manual_action` 是从 `task_completion_summary` 派生的人读提示,不是新的 gate contract。当前输出会按以下语义生成文案:
|
|
26
|
+
|
|
27
|
+
- `local_evidence_blocked`:implementation plan、test evidence、diff coverage、task/scenario refs、changed-file coverage 或已提供的 commit readiness boundary 存在阻塞;应先修本地证据链。
|
|
28
|
+
- `team_mode_evidence_ready`:implementation plan、test evidence、diff coverage 和 implementation alignment 已对齐;顶层 `ok=false` 主要表示还没有补齐 full-chain completion/handoff artifacts。
|
|
29
|
+
- `full_compliance_incomplete`:当前 bundle 还不能作为 full compliance completion handoff,需要补齐缺失的产品、UI、架构、traceability、计划、测试、diff、commit 或 engineering evidence。
|
|
30
|
+
- `full_compliance_ready`:完整 evidence chain 已通过,只能进入人工 review、verification 和显式人工 git 流程;runtime 仍不会执行测试或 git。
|
|
31
|
+
|
|
32
|
+
注释:这些分类只改变人读文案,不降低任何 gate 严格度,也不授权 runtime 执行下一步。
|
|
33
|
+
|
|
34
|
+
## Team mode 优先字段
|
|
35
|
+
|
|
36
|
+
在最小 team-mode bundle 中,优先关注 `completion_evidence.task_completion_summary`:
|
|
37
|
+
|
|
38
|
+
- `readiness_classification`
|
|
39
|
+
- `local_task_ready`
|
|
40
|
+
- `minimum_local_evidence_missing`
|
|
41
|
+
- `full_compliance_evidence_missing`
|
|
42
|
+
- `unsafe_release_actions_detected`
|
|
43
|
+
|
|
44
|
+
如果 `local_task_ready=true` 且 `minimum_local_evidence_missing=[]`,说明本地测试 evidence、diff coverage 和 implementation plan 对齐已经通过。此时 `full_compliance_evidence_missing` 只是升级到 full compliance 前需要补齐的 artifact,不应解释为 team-mode 本地失败。
|
|
45
|
+
|
|
46
|
+
需要排障时,再查看底层字段:
|
|
47
|
+
|
|
48
|
+
- `completion_evidence_bundle.implementation_chain.test_evidence_readiness.test_evidence_gate_ok`
|
|
49
|
+
- `completion_evidence_bundle.implementation_chain.diff_coverage_readiness.diff_coverage_gate_ok`
|
|
50
|
+
- `completion_evidence_bundle.implementation_chain.implementation_alignment_readiness.implementation_alignment_ok`
|
|
51
|
+
|
|
52
|
+
## 本地 evidence 真失败
|
|
53
|
+
|
|
54
|
+
以下 blocked reasons 通常表示需要修 evidence 或实现计划:
|
|
55
|
+
|
|
56
|
+
- 缺少 `output_digest`。
|
|
57
|
+
- `task_refs` 无法对齐 `Implementation Task Registry`。
|
|
58
|
+
- `scenario_refs` 无法对齐 scenario artifact。
|
|
59
|
+
- `unexpected_files` 非空。
|
|
60
|
+
- `missing_files` 非空且没有合理解释。
|
|
61
|
+
- `changed_files` 没有被 task coverage 解释。
|
|
62
|
+
- `operation` 与 task 计划不匹配。
|
|
63
|
+
- `commit_execution_authorized=true` 或 `git_write=true` 之类边界扩权。
|
|
64
|
+
|
|
65
|
+
这类问题应优先修正,因为它们说明本地 evidence chain 本身不可信或不可追踪。
|
|
66
|
+
|
|
67
|
+
## 尚未升级 full compliance
|
|
68
|
+
|
|
69
|
+
以下 blocked reasons 在 team mode 中可能只是升级提示,而不是本地 evidence 失败:
|
|
70
|
+
|
|
71
|
+
- 缺少 `product-discovery.md`。
|
|
72
|
+
- 缺少 `ui-design-contract.md`。
|
|
73
|
+
- 缺少 `architecture-design.md`。
|
|
74
|
+
- 缺少 `delivery-traceability.yaml`。
|
|
75
|
+
- 缺少 `scenario-acceptance.yaml`。
|
|
76
|
+
- 缺少 `product-acceptance.md`。
|
|
77
|
+
- 缺少 `commit-readiness.json`。
|
|
78
|
+
- 缺少 `evidence.json` / engineering evidence。
|
|
79
|
+
|
|
80
|
+
如果团队当前只采用 team mode,这些缺口表示“尚未提供 full-chain artifact”,不应被解释为 runtime 或 demo smoke 失败。
|
|
81
|
+
|
|
82
|
+
## 何时升级到 full compliance
|
|
83
|
+
|
|
84
|
+
建议在以下情况升级:
|
|
85
|
+
|
|
86
|
+
- 高风险发布。
|
|
87
|
+
- 跨团队交付。
|
|
88
|
+
- 涉及产品、UI、架构和验收审计。
|
|
89
|
+
- 需要证明从需求到 commit readiness 的完整链路。
|
|
90
|
+
- 需要给 reviewer 或 release owner 一个完整证据包。
|
|
91
|
+
|
|
92
|
+
不建议为了形式完整让所有小改动都走 full compliance。复杂度应随风险升级。
|
|
93
|
+
|
|
94
|
+
## 不变边界
|
|
95
|
+
|
|
96
|
+
Readiness interpretation 不授权 runtime 执行任何动作:
|
|
97
|
+
|
|
98
|
+
- 不运行测试。
|
|
99
|
+
- 不读取 git diff。
|
|
100
|
+
- 不执行 `git add` / `commit` / `push`。
|
|
101
|
+
- 不创建 PR。
|
|
102
|
+
- 不调用 CI 或平台 API。
|
|
103
|
+
- 不调用 subagent / MCP。
|
|
104
|
+
|
|
105
|
+
最终交付动作仍由用户或 CI/release 流程显式执行。
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
# Readiness Troubleshooting
|
|
2
|
+
|
|
3
|
+
本文档用于排查 `completion --evidence-bundle` 输出中的 readiness 失败。它只解释本地 artifact / evidence 的修复路径,不新增 runtime gate,也不授权 runtime 自动执行测试、读取 git diff 或提交代码。
|
|
4
|
+
|
|
5
|
+
## 先看 completion summary
|
|
6
|
+
|
|
7
|
+
```mermaid
|
|
8
|
+
flowchart TD
|
|
9
|
+
A[completion bundle output] --> B[Read task_completion_summary]
|
|
10
|
+
B --> C{unsafe_release_actions_detected?}
|
|
11
|
+
C -->|Yes| D[Stop; remove execution/write boundary expansion]
|
|
12
|
+
C -->|No| E{local_task_ready?}
|
|
13
|
+
E -->|No| F[Fix minimum_local_evidence_missing]
|
|
14
|
+
E -->|Yes| G{full_compliance_ready?}
|
|
15
|
+
G -->|No| H[Team mode ready; full compliance gaps are upgrade work]
|
|
16
|
+
G -->|Yes| I[Full compliance ready; continue with manual review and explicit handoff]
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
注释:`ok=false` 是 readiness 阻塞信号,不等于 runtime 执行失败。先看 `task_completion_summary.readiness_classification`、`local_task_ready`、`minimum_local_evidence_missing`、`full_compliance_evidence_missing` 和 `unsafe_release_actions_detected`,再进入底层 gate 排障。
|
|
20
|
+
|
|
21
|
+
## `ok=false` 的常见含义
|
|
22
|
+
|
|
23
|
+
| 情况 | 典型信号 | 处理方式 |
|
|
24
|
+
| --- | --- | --- |
|
|
25
|
+
| Team mode 缺 full-chain artifact | `task_completion_summary.local_task_ready=true`、`minimum_local_evidence_missing=[]`,但顶层 `ok=false` | 可以作为 team-mode local evidence ready;需要 full compliance 时再补 `full_compliance_evidence_missing` |
|
|
26
|
+
| 本地 evidence 失败 | `task_completion_summary.local_task_ready=false` 或 `minimum_local_evidence_missing` 非空 | 修 JSON envelope、digest、task refs、scenario refs、changed file coverage |
|
|
27
|
+
| implementation alignment 失败 | `minimum_local_evidence_missing` 指向 implementation alignment,或底层 `implementation_alignment_ok=false` | 修 `implementation-plan.md`、`diff-coverage.json`、`test-evidence.json` 的 task/scenario/file 对齐 |
|
|
28
|
+
| commit boundary 失败 | `unsafe_release_actions_detected` 非空,或底层 `commit_boundary_ok=false` | 修 `commit-readiness.json`,保持人工 git 边界 |
|
|
29
|
+
| full compliance 未完成 | `full_compliance_ready=false` 或 `full_compliance_evidence_missing` 非空 | 补齐 `examples/full-chain/` 同类 artifact 后重跑 |
|
|
30
|
+
|
|
31
|
+
## `blocked_reasons` 分类排查
|
|
32
|
+
|
|
33
|
+
### Product / UI / Acceptance
|
|
34
|
+
|
|
35
|
+
常见原因:
|
|
36
|
+
|
|
37
|
+
- 缺少 `product-discovery.md`、`product-spec.md`、`ui-design-contract.md`、`scenario-acceptance.yaml`、`product-acceptance.md`。
|
|
38
|
+
- artifact frontmatter 的 `artifact_kind` 不匹配。
|
|
39
|
+
- 必备 section、reference registry、evidence 或 boundary 缺失。
|
|
40
|
+
|
|
41
|
+
处理方式:
|
|
42
|
+
|
|
43
|
+
1. 先确认当前是否真的需要 full compliance。
|
|
44
|
+
2. 如果只是 team mode,缺这些 artifact 可以是升级提示。
|
|
45
|
+
3. 如果是 full compliance,按 `examples/full-chain/` 补齐完整链路。
|
|
46
|
+
4. 分别运行 methodology gate 定位单个 artifact:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
node tools/vibe-runtime/index.mjs methodology --gate --kind product-spec --from-file product-spec.md --json
|
|
50
|
+
node tools/vibe-runtime/index.mjs methodology --gate --kind ui-design --from-file ui-design-contract.md --json
|
|
51
|
+
node tools/vibe-runtime/index.mjs methodology --gate --kind scenario-acceptance --from-file scenario-acceptance.yaml --json
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### Architecture / Traceability
|
|
55
|
+
|
|
56
|
+
常见原因:
|
|
57
|
+
|
|
58
|
+
- 缺少 `architecture-design.md` 或 `delivery-traceability.yaml`。
|
|
59
|
+
- traceability link 引用了不存在的 requirement、story、UI flow、architecture decision、scenario、task、test evidence 或 commit readiness ref。
|
|
60
|
+
- `cross_artifact_ref_validation_ok=false`。
|
|
61
|
+
|
|
62
|
+
处理方式:
|
|
63
|
+
|
|
64
|
+
1. 找到 `traceability_ref_missing` 或类似 blocked reason。
|
|
65
|
+
2. 在对应 artifact 的 `Reference Registry` 中补稳定 ref,或修正 `delivery-traceability.yaml` 的 link。
|
|
66
|
+
3. 不要用自然语言描述代替 ref;alignment 依赖稳定 ID。
|
|
67
|
+
|
|
68
|
+
### Test evidence
|
|
69
|
+
|
|
70
|
+
常见原因:
|
|
71
|
+
|
|
72
|
+
- `runs[].output_digest` 缺失。
|
|
73
|
+
- `runs[].exit_code` 非 0。
|
|
74
|
+
- `runs[].task_refs` 不存在于 `Implementation Task Registry`。
|
|
75
|
+
- `runs[].scenario_refs` 无法和 scenario artifact 对齐。
|
|
76
|
+
- `boundary_assertions.runtime_executed_command=true` 或 `test_execution=true` 错误暗示 runtime 执行了测试。
|
|
77
|
+
|
|
78
|
+
处理方式:
|
|
79
|
+
|
|
80
|
+
1. 让用户或 CI 生成真实测试输出摘要。
|
|
81
|
+
2. 填写 `output_digest`,不要留空。
|
|
82
|
+
3. 把每个测试 run 绑定到稳定 `task_ref` 和 `scenario_ref`。
|
|
83
|
+
4. 保持 runtime 边界声明为只读验证:runtime 不运行测试。
|
|
84
|
+
|
|
85
|
+
### Diff coverage
|
|
86
|
+
|
|
87
|
+
常见原因:
|
|
88
|
+
|
|
89
|
+
- `unexpected_files` 非空。
|
|
90
|
+
- `missing_files` 非空且没有被计划解释。
|
|
91
|
+
- `changed_files` 中的文件没有出现在 `task_coverage[].changed_files`。
|
|
92
|
+
- `task_coverage[].task_ref` 不存在。
|
|
93
|
+
- `operation` 不在 plan 的 `expected_operations` 中。
|
|
94
|
+
- `boundary_assertions.runtime_read_git_diff=true` 错误暗示 runtime 读取了 git diff。
|
|
95
|
+
|
|
96
|
+
处理方式:
|
|
97
|
+
|
|
98
|
+
1. 对每个 changed file 补 task coverage。
|
|
99
|
+
2. 如果文件确实不该改,修 diff 或更新计划后重新生成 evidence。
|
|
100
|
+
3. 如果操作类型变了,例如从 `modify` 变成 `delete`,同步修改 implementation plan 的预期操作,或修正实际变更。
|
|
101
|
+
4. 保持 runtime 边界声明:runtime 只读消费 JSON,不读取 git diff。
|
|
102
|
+
|
|
103
|
+
### Commit readiness
|
|
104
|
+
|
|
105
|
+
常见原因:
|
|
106
|
+
|
|
107
|
+
- `commit_execution_authorized=true`。
|
|
108
|
+
- `git_write=true`、`commit=true`、`push=true`、`pr=true` 或 `merge=true`。
|
|
109
|
+
- 缺少 commit readiness ref,导致 traceability link 无法闭合。
|
|
110
|
+
|
|
111
|
+
处理方式:
|
|
112
|
+
|
|
113
|
+
1. 把 commit readiness 解释为“人工 git 决策前的只读证据”。
|
|
114
|
+
2. 保持 `commit_execution_authorized=false`。
|
|
115
|
+
3. 保持所有 git 写入边界为 `false`。
|
|
116
|
+
4. 需要提交时由用户显式执行人工流程,runtime 不代替。
|
|
117
|
+
|
|
118
|
+
## Digest drift
|
|
119
|
+
|
|
120
|
+
`digest drift` 表示某个 artifact 或 evidence 的当前内容,与此前记录或 bundle 绑定的 digest 不一致。
|
|
121
|
+
|
|
122
|
+
优先定位顺序:
|
|
123
|
+
|
|
124
|
+
1. source artifact 是否被编辑过,例如 `product-spec.md`、`implementation-plan.md`。
|
|
125
|
+
2. evidence JSON 是否被重新生成过,例如 `test-evidence.json`、`diff-coverage.json`。
|
|
126
|
+
3. commit readiness 是否引用了旧的 bundle digest 或旧 evidence digest。
|
|
127
|
+
4. 是否混用了 `examples/golden-path/`、`examples/full-chain/`、`examples/runtime-fixtures/` 的文件。
|
|
128
|
+
|
|
129
|
+
处理方式:
|
|
130
|
+
|
|
131
|
+
- 如果变更是预期的,重新生成或更新对应 evidence,并重跑 bundle。
|
|
132
|
+
- 如果变更不是预期的,先恢复正确 artifact 内容,再重跑验证。
|
|
133
|
+
- 不要手工伪造 digest 去绕过 drift;digest 是追踪“当前证据是否同源”的机制。
|
|
134
|
+
|
|
135
|
+
## Missing refs
|
|
136
|
+
|
|
137
|
+
`missing refs` 通常不是格式问题,而是链路 ID 没闭合。
|
|
138
|
+
|
|
139
|
+
排查表:
|
|
140
|
+
|
|
141
|
+
| 缺失类型 | 应检查的位置 |
|
|
142
|
+
| --- | --- |
|
|
143
|
+
| `requirement_ref` | `product-discovery.md` / `product-spec.md` 的 `Reference Registry` |
|
|
144
|
+
| `product_story_ref` | `product-spec.md` |
|
|
145
|
+
| `ui_flow_ref` | `ui-design-contract.md` |
|
|
146
|
+
| `architecture_decision_ref` | `architecture-design.md` |
|
|
147
|
+
| `implementation_task_ref` | `implementation-plan.md` 的 `Implementation Task Registry` |
|
|
148
|
+
| `test_evidence_ref` | `test-evidence.json` 的 `test_evidence_ref` 或 `runs[].id` |
|
|
149
|
+
| `scenario_ref` | `scenario-acceptance.yaml` 的 `scenarios[].id` |
|
|
150
|
+
| `product_acceptance_ref` | `product-acceptance.md` 的 `Reference Registry` |
|
|
151
|
+
| `commit_readiness_ref` | `commit-readiness.json` 的 `commit_readiness_ref` |
|
|
152
|
+
|
|
153
|
+
处理原则:
|
|
154
|
+
|
|
155
|
+
- ref 要稳定、可复制、可 grep。
|
|
156
|
+
- 同一个业务对象只保留一个 canonical ref。
|
|
157
|
+
- 不要让自然语言标题承担 ref 职责。
|
|
158
|
+
|
|
159
|
+
## `implementation_alignment` 失败
|
|
160
|
+
|
|
161
|
+
这个 gate 不做自然语言理解,只做确定性对齐:
|
|
162
|
+
|
|
163
|
+
```mermaid
|
|
164
|
+
flowchart LR
|
|
165
|
+
A[implementation-plan task registry] --> D[implementation_alignment]
|
|
166
|
+
B[diff-coverage task_coverage] --> D
|
|
167
|
+
C[test-evidence task_refs/scenario_refs] --> D
|
|
168
|
+
D --> E[ok / blocked reasons]
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
重点字段:
|
|
172
|
+
|
|
173
|
+
- `implementation-plan.md`:`task_id`、`expected_files`、`allowed_paths`、`expected_operations`、`required_scenario_refs`、`test_required`。
|
|
174
|
+
- `diff-coverage.json`:`changed_files`、`unexpected_files`、`missing_files`、`task_coverage[].task_ref`、`task_coverage[].changed_files[].operation`。
|
|
175
|
+
- `test-evidence.json`:`runs[].task_refs`、`runs[].scenario_refs`、`runs[].status`、`runs[].output_digest`。
|
|
176
|
+
|
|
177
|
+
常见 blocked reason 与处理:
|
|
178
|
+
|
|
179
|
+
| blocked reason | 含义 | 修复 |
|
|
180
|
+
| --- | --- | --- |
|
|
181
|
+
| `implementation_changed_file_unexplained` | 文件变更没有 task coverage | 把文件加入对应 task coverage,或从变更中移除 |
|
|
182
|
+
| `implementation_task_uncovered` | required task 没有 diff coverage | 补 `task_coverage` 或调整 task required 状态 |
|
|
183
|
+
| `implementation_operation_mismatch` | 实际 operation 与 plan 不一致 | 修 plan 的 `expected_operations` 或修 diff coverage |
|
|
184
|
+
| `implementation_task_missing_test_evidence` | 需要测试的 task 没有 test evidence | 给测试 run 补 `task_refs`,或补真实测试证据 |
|
|
185
|
+
| `task-does-not-exist` | evidence 引用了不存在 task | 修 task ref 拼写或补 registry 条目 |
|
|
186
|
+
|
|
187
|
+
## 推荐最小复现命令
|
|
188
|
+
|
|
189
|
+
Team mode:
|
|
190
|
+
|
|
191
|
+
```bash
|
|
192
|
+
node tools/vibe-runtime/index.mjs completion --evidence-bundle --from-product-spec product-spec.md --from-plan implementation-plan.md --from-test-evidence test-evidence.json --from-diff-coverage diff-coverage.json --json
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
Full compliance:
|
|
196
|
+
|
|
197
|
+
```bash
|
|
198
|
+
npm run demo:full-chain
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
如果要排查单个 artifact,先跑对应 methodology gate;如果要排查链路,跑 completion bundle。
|
|
202
|
+
|
|
203
|
+
## 不要做的事
|
|
204
|
+
|
|
205
|
+
- 不要把 Golden Path 改成 full-chain `ok=true`。
|
|
206
|
+
- 不要把 `ok=false` 一律当成系统失败。
|
|
207
|
+
- 不要让 runtime 自动运行测试、读取 git diff、提交、push、创建 PR 或调用 CI API。
|
|
208
|
+
- 不要用手工伪造 digest 掩盖 evidence drift。
|
|
209
|
+
- 不要扩大 architecture baseline 来隐藏新增 warning。
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Release Check Reference
|
|
2
|
+
|
|
3
|
+
本文档承载 `vibe-release-check` 的详细检查清单。维护者日常入口优先看 `tools/vibe-release-check/README.md`;只有需要核对完整 smoke 覆盖、owner 迁移或 stage 边界时,再阅读本文档。
|
|
4
|
+
|
|
5
|
+
## 边界
|
|
6
|
+
|
|
7
|
+
`vibe-release-check` 只聚合本地命令,不做:
|
|
8
|
+
|
|
9
|
+
- 真实 IDE runtime 验证。
|
|
10
|
+
- MCP 检查。
|
|
11
|
+
- 远程发布。
|
|
12
|
+
- 自动提交或打 tag。
|
|
13
|
+
|
|
14
|
+
`--timing`、`--quiet`、`--keep-tmp` 都不改变检查范围、命令顺序或失败严格度。
|
|
15
|
+
|
|
16
|
+
## P66 Long-term release evidence matrix
|
|
17
|
+
|
|
18
|
+
P66 `p66_release_evidence_governance` 是 P54-P65 的发布证据治理索引,不是新的 runtime capability。
|
|
19
|
+
|
|
20
|
+
| 产品化批次 | 证据主题 | 必选验证 | 可选追加 | 必须保持 |
|
|
21
|
+
| --- | --- | --- | --- | --- |
|
|
22
|
+
| P54-P55 | task ledger / adoption funnel | `node tools/vibe-runtime-check/index.mjs --root .` | `npm run release:fast` | 新用户不暴露 stage 长表 |
|
|
23
|
+
| P56-P58 | installed session / evidence chain / artifact gates | `npm run release:install` 或 `npm run release:fast` | `npm run demo:full-chain` | 本地 artifact only,不读取真实 git diff |
|
|
24
|
+
| P59-P61 | behavior / experience / token context | `npm run release:behavior` 或 `npm run release:tokens` | `node tools/vibe-runtime-check/index.mjs --root .` | 不调用模型 judge、不 remote config、不 prompt mutation |
|
|
25
|
+
| P62-P64 | adapter maturity / parity expression / closeout guardrails | plugin pack dry-run + `node tools/vibe-runtime-check/index.mjs --root .` | `npm run release:install` | 不 publish、不 tag、不 PR、不 subagent |
|
|
26
|
+
| P65 | architecture paydown plan | `npm run check:arch` | targeted `node --check <touched-module>` | active/new 0,baseline total 不高于 394,不 raise baseline |
|
|
27
|
+
|
|
28
|
+
收口 absence gate 固定为:`tmp_absent=true`、`source_state_absent=true`、`target_state_absent=true`。若某项无法验证,记录 `release_fast_selected_or_explained=true` 并说明未跑原因;不得把未跑命令写成通过。
|
|
29
|
+
|
|
30
|
+
## 当前聚合执行
|
|
31
|
+
|
|
32
|
+
- repo layout doctor。
|
|
33
|
+
- 只读 `vibe-runtime-check`。
|
|
34
|
+
- `git submodule status`。
|
|
35
|
+
- `fork/*` 不被 `.gitignore` 忽略。
|
|
36
|
+
- `vibe plugin pack --dry-run` / generate / `--check`,确认平台插件草案能从 `adapters/` 生成并校验。
|
|
37
|
+
- `vibe-init --check`。
|
|
38
|
+
- `vibe-init --dry-run`。
|
|
39
|
+
- all 平台默认安装。
|
|
40
|
+
- installed layout doctor。
|
|
41
|
+
- all 平台 `--with-runtime` installed opt-in manifest 安装和 doctor。
|
|
42
|
+
- all 平台 `--with-docs` 安装。
|
|
43
|
+
- installed layout with-docs doctor。
|
|
44
|
+
- Cursor / Codex 单平台安装和 doctor。
|
|
45
|
+
- `vibe-runtime` 本地 ledger smoke:idle `status`、idle `status --json`、idle `next --dry-run`、idle `next --dry-run --dispatch-intent --json`、`next --dispatch-intent` without `--dry-run` 负路径、`next --confirm --dispatch-intent` 负路径、无 ledger `artifacts --dry-run` / `tasks --dry-run` 负路径、`validate-handoff` 只读正负路径、`validate-handoff --json` 只读 JSON envelope、写入类 `record-handoff --json` / `artifacts --json` / `tasks --write --json` / `reset --json` 负路径、非法 task id(路径穿越、Windows reserved device name、duplicate task id、trailing dot)/ depends_on unknown dependency / self dependency / cyclic dependency / fenced JSON contract failure / waived review 缺失说明负路径、legacy `record-handoff`、JSON `record-handoff`、recorded `next --dry-run --json`、recorded `next --dry-run --dispatch-intent --json`、Stage 6 `next --confirm --dispatch` / `next --confirm --dispatch --json` 成功写 `.vibecoding-state/dispatches/<timestamp>.json`、Stage 6.5 `dispatches --list` / `dispatches --show` / `dispatches --verify` read-only dispatch audit、Stage 7.1/7.2/7.3/7.5/7.6/7.9/7.10 `dispatches --claim` / duplicate claim / missing actor / invalid actor / missing event / `dispatches --ack` / actor mismatch / invalid ack status / skipped/failed missing reason failure / claim event digest enforcement / `ack.reason` / `dispatches --claims` claim state list / stale claim audit / digest mismatch audit / recovery preview / original dispatch event immutability、Stage 8.1/8.2/8.3/8.4/8.6/8.7/8.8/8.9/8.10 `dispatches --pickup` / `dispatches --pickup-verify` / `dispatches --pickup-dry-run` pickup package manifest / event verification / platform capability matrix / no-session adapter dry-run / handoff digest / platform entry / readiness gate / digest-bound package / read-only no-write boundary / unclaimed warning / non-picked claim readiness warning / invalid platform、Stage 9.1-9.11 `execute --from-dispatch` preflight audit / dry-run execution plan / confirm planned execution envelope / claim picked gate / no execution boundary / execution envelope safety / immutability / planned envelope verify / policy snapshot / idempotency key / write boundary preview / `runtime_action=false` / no skill execution boundary / dispatch and claim immutability、Stage 11.1 `execute --confirm --run` running-first same-file persistence / supervised-run lifecycle / allowlist gate / corrupted execution record verification failures / `runtime_action=true` for run and `runtime_action=false` for dry-run/confirm / `skill_execution=false` / `executions --list` / `executions --show` / `executions --verify` read-only execution audit / dispatch and claim immutability / no platform API / no subagent / MCP / daemon / no git / worktree / business source write、Stage 10.1/10.2/10.3-10.13 `daemon --dry-run` / `daemon --scan --dry-run` / `daemon --once --confirm` no-op once-run envelope / scheduler scan dry-run / once scan no-op envelope / candidates / blocked items / stale claims / retry preview / lock and lease preview / heartbeat model / watcher disabled contract / default-off daemon boundary / no queue execution / no execute call / no claim pickup、损坏 JSON / 非 confirm-dispatch event / 缺少 forbidden actions / 路径越界负路径、缺少 `--confirm` / 缺少 `--dispatch` / `--dry-run --dispatch` / 非 allowed transition / review gate blocked / task readiness blocked 负路径、recorded `artifacts --dry-run`、`artifacts --write` 只写 `.vibecoding-state/*.md`、recorded `tasks --dry-run`、`tasks --dry-run --json`、`tasks --dry-run --task <task-id> --json` 单任务 selection、filtered dependency readiness、`tasks --write` 只写 `.vibecoding-state/tasks/<task-id>/*.md`、`tasks --task` 单任务 dry-run/write/filter 负路径、task dependency readiness 摘要、task brief / review gate / evidence 和任务级 brief / report / review gate / evidence 职责 marker、`review_status` 摘要、`record-handoff` handoff quality warning branches、recorded `status` ledger 摘要、ready / blocked / stopped `next --dry-run`、`reset --confirm`。
|
|
46
|
+
- `vibe-init --platform auto --merge=preview`,并保留 `--merge-preview` 兼容别名验证。
|
|
47
|
+
- `vibe-runtime-check` 只读检查 workflow contract。
|
|
48
|
+
- Stage 57 `governance --pr-readiness --preview --json` optional preview smoke:确认 optional governance PR readiness 不创建 PR、不 push、不 merge、不调用平台 API、不要求默认 sidecar 存在,也不接入 Stage 52 release gate 主链。
|
|
49
|
+
- Stage 58 `governance --pr-review-intake --from-file <local-evidence-file> --preview/--confirm --json` optional smoke:确认本地 PR/review/CI evidence intake 预览不写状态、确认只写 `.pr-review-intake-governance.json`、`governance --list/show/verify` 可识别,unsafe evidence path 与 input evidence digest drift 负例失败;该 smoke 不创建 PR、不调用 GitHub/CI/review API、不自动执行 followup,也不接入 Stage 52 release gate 主链。
|
|
50
|
+
- Stage 59 `governance --convergence --report --json` optional smoke:确认能力收敛差距报告只读输出 external reference workflow、ECC learning、Token Savior deterministic token economy、Distill deferred adapter 与 Vibecoding governance 维度,不创建 `.vibecoding-state/`,并拒绝缺少 `--report` 或 `--confirm` 写入尝试。
|
|
51
|
+
- Stage 60 `methodology --route --intent <kind> --json` optional smoke:确认 workflow route 只读输出 `selected_workflow`、`first_skill`、`gate_kinds`、`trigger_discipline` 与 `route_digest`,不创建 `.vibecoding-state/`,未知 intent 回退到 `using-vibecoding -> vibe-brainstorming`,并确认 `methodology --gate --kind tdd --confirm --json` 只写 `.vibecoding-state/methodology-gates/*.methodology-gate.json`。
|
|
52
|
+
- Stage 61 `learning --observe --from-file <session-evidence-file> --preview/--confirm --json` optional smoke:确认本地 learning observation preview 不写状态、confirm 只写 `.vibecoding-state/learning/*.learning-observation.json`、`learning --list/show/verify` 可识别,并覆盖 unsafe source path、source digest drift、scope 越权负例;该 smoke 不自动生成 candidate instinct、不 promotion、不修改正式 skill、prompt、hook、AGENTS.md 或 CLAUDE.md。
|
|
53
|
+
- Stage 62 `learning --instincts --from-observations <learning-observation-file...>` 与 `learning --promote --instinct <candidate-instinct-file>` optional smoke:确认 candidate instinct preview 不写 `.candidate-instinct.json`、confirm 只写 `.vibecoding-state/learning/*.candidate-instinct.json`,promotion preview 不写 `.learning-promotion.json`、confirm 只写 `.vibecoding-state/learning/*.learning-promotion.json`,`learning --list/show/verify` 可审计三类 learning sidecar,并覆盖 unsafe observation path、candidate observation digest drift、promotion boundary 扩权负例;该 smoke 不自动修改正式 skill、AGENTS.md、CLAUDE.md、prompt 或 hook。
|
|
54
|
+
- Stage 63 `tokens --catalog` 与 `tokens --compact-output --command <cmd-name> --from-file <output-file>` optional smoke:确认 token compactor catalog 只读,preview 不创建 `.vibecoding-state/`,confirm 只写 `.vibecoding-state/token-economy/*.token-compaction.json`,`tokens --verify` 可审计 token sidecar,并覆盖 compacted text digest drift 与 unsafe output path 负例;该 smoke 不拦截 shell、不执行命令、不隐藏原始输出、不调用模型、不自动 rewrite 用户命令。
|
|
55
|
+
- Stage 64 `tokens --profile --name minimal|balanced|full`、`tokens --metrics --from-compactions <token-compaction-file...>` 与 `tokens --rewrite-preview --command <cmd>` optional smoke:确认 profile 与 rewrite preview 只读,metrics preview 不额外写 sidecar,metrics confirm 只写 `.vibecoding-state/token-economy/*.token-metrics.json`,`tokens --verify` 可审计 metrics sidecar,并覆盖 metrics digest drift 与 profile/rewrite 不执行、不拦截、不改写命令边界。
|
|
56
|
+
- Stage 65 `release --gate --from-evals <eval-report-file...> --with-convergence` optional smoke:确认 release gate 可显式绑定 `governance --convergence --report` 的 convergence evidence,preview 不写状态,confirm 仍只写 `.release-gate.json`,`release --verify-gate` 可重建并验证 `convergence_digest` / `evidence_digest`,并覆盖 convergence evidence digest drift 与 `--verify-gate --with-convergence` 非法组合;该 smoke 不改变 Stage 52 required suites,不执行 PR/git/platform/model/subagent/MCP/daemon。
|
|
57
|
+
- Stage 68 `release --notes --from-file <local-evidence-file>` optional smoke:确认 release notes preview 不创建 `.vibecoding-state/`,confirm 只写 `.vibecoding-state/release-notes/*.release-notes.json`,`release --verify-notes` 可审计 release-notes sidecar,并覆盖 source digest drift、unsafe source path、boundary 扩权负例;该 smoke 只记录 deterministic `commit_hygiene_findings`,不 amend、不 rebase、不 reset、不 force push、不 tag、不创建 PR,也不接入 Stage 52 release gate 主链。
|
|
58
|
+
- Stage 121 `evals --behavior-contract --from-file <local-transcript-json>` smoke:确认真实 transcript artifact 可被只读转换成 `behavioral_evaluation_contract`,覆盖 workflow entry、`injectsFullSkill=false`、workflow order、required/forbidden markers、completion evidence、Stage 120 readiness 和 no git/platform/model/subagent side effect,并覆盖缺少 entry、跳过验证证据、自动提交、隐式 subagent、误读 `ok=false`、无验证完成声明、commit readiness 缺失等负例。
|
|
59
|
+
- Stage 122 `platforms --bootstrap-matrix` smoke:确认 Claude / Cursor / Codex adapter manifest、安装文档和 hook/settings 示例保持 `adapter-bootstrap-conformance-matrix` 一致,覆盖 `required_adapter_files`、`manifest_parity_gate`、`bootstrap_policy_gate`、`install_doc_bootstrap_gate`、`injectsFullSkill=false`、`writesRuntimeState=false`、`autoRunsNextSkill=false`、`canAutoExecuteSkill=false`、`canCallSubagent=false`、`canTouchGit=false` 和 no install/hook/git/platform/subagent side effect。
|
|
60
|
+
- Stage 123 `governance --traceability-map` smoke:确认 `skills/*/SKILL.md`、workflow handoff marker、runtime capability registry 和命令能力保持 `skill-to-runtime-traceability-map` 一致,覆盖 `skill_row_coverage`、`frontmatter_name_gate`、`workflow_handoff_gate`、`runtime_registry_group_gate`、`runtime_registry_command_gate`、`skill_runtime_traceability_invariants` 和 no skill/check/test/git/platform/subagent side effect。
|
|
61
|
+
- Stage 124 `completion --evidence-bundle --from-file <local-completion-evidence-file>` smoke:确认 Stage 88 readiness 和 Stage 99 bundle 会被只读整理成 `human-completion-evidence-bundle`,覆盖 `one_screen_sections`、`evidence_receipt`、`delivery_gate`、`copy_ready_summary`、`manual_next_action`、`human_completion_evidence_invariants` 和 no check/test/git/platform/subagent side effect。
|
|
62
|
+
- Stage 125 `governance --external-reference-regression-guard --from-external-reference <local-external reference-dir>` smoke:确认 Stage 115-124 对标能力不会从 registry、automation readiness、traceability 或 gap dimension scorecard 退化,覆盖 `protected_stage_sequence`、`protected_capabilities`、`dimension_scorecard`、`regression_gates`、`superiority_claim`、`regression_guard_invariants` 和 no command/check/test/git/platform/subagent side effect。
|
|
63
|
+
- `vibe-compact` 本地压缩 smoke test。
|