@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,123 @@
|
|
|
1
|
+
# Vibe Release Check
|
|
2
|
+
|
|
3
|
+
`vibe-release-check` 聚合第二阶段发布前核心检查。
|
|
4
|
+
|
|
5
|
+
## 使用
|
|
6
|
+
|
|
7
|
+
### 高频入口
|
|
8
|
+
|
|
9
|
+
| 场景 | 命令 | 性质 |
|
|
10
|
+
| --- | --- | --- |
|
|
11
|
+
| 日常编辑后快速反馈 | `node tools/vibe-release-check/index.mjs --suite fast --quiet` | 快速 smoke,不是完整发布门禁 |
|
|
12
|
+
| 验证耗时异常或需要选择 targeted suite | `node tools/vibe-release-check/index.mjs --suite fast --timing --quiet` | 诊断辅助,不改变检查范围或失败严格度 |
|
|
13
|
+
| 发布前完整收口 | `node tools/vibe-release-check/index.mjs` | 完整 release gate,等价于默认 `--suite all` |
|
|
14
|
+
|
|
15
|
+
### 边界速览
|
|
16
|
+
|
|
17
|
+
- `--suite all` 是默认完整发布门禁,保持完整检查范围。
|
|
18
|
+
- `--suite fast` 只用于日常快速反馈;它不替代完整发布收口。
|
|
19
|
+
- `--timing` 只输出耗时分布和维护者决策辅助;它不会跳过慢项、不会改变命令顺序、不会降低失败严格度。
|
|
20
|
+
- `--quiet` 只减少通过项输出;失败时仍会输出失败命令的详细信息。
|
|
21
|
+
- `--keep-tmp` 只保留当前 release-check 进程的临时验证目录,便于本地排障。
|
|
22
|
+
|
|
23
|
+
### 其他常用命令
|
|
24
|
+
|
|
25
|
+
查看完整发布门禁:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
node tools/vibe-release-check/index.mjs
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
查看耗时分布:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
node tools/vibe-release-check/index.mjs --suite fast --timing
|
|
35
|
+
node tools/vibe-release-check/index.mjs --quiet --timing
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
保留临时验证目录:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
node tools/vibe-release-check/index.mjs --keep-tmp
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## 检查范围
|
|
45
|
+
|
|
46
|
+
默认 `--suite all` 保持完整发布门禁,行为与旧版本一致。
|
|
47
|
+
|
|
48
|
+
`release-check-command-manifest.mjs` 是兼容聚合入口,具体 smoke 由 `tools/vibe-release-check/command-manifest/*.mjs` 按 domain 提供:base/hygiene、methodology、completion、full-chain、golden-path、install、runtime、learning、tokens、closeout 和 install compatibility。该拆分只移动 command manifest owner;`command-manifest/release-check-command-metadata.mjs` 提供可选 metadata 迁移入口,suite filtering 和 dispatch 优先读取 metadata,旧 tuple manifest 继续兼容。full-chain、golden-path、methodology、completion、learning 和 tokens commands 已进入 metadata 自声明范围;其他旧命令仍可通过 legacy fallback 选择 suite。
|
|
49
|
+
|
|
50
|
+
`release-check-runtime.mjs` 只保留 release smoke 共享 runtime helper;JSON path marker 断言由 `release-check-json-markers.mjs` 拥有,workflow entry experience smoke 由 `release-check-workflow-ux-smoke.mjs` 拥有,completion readiness / completion evidence bundle smoke 由 `release-check-completion-suite.mjs` 拥有,full-chain compliance demo smoke 由 `release-check-full-chain-suite.mjs` 拥有,golden path team-mode demo smoke 由 `release-check-golden-path-suite.mjs` 拥有,methodology gate smoke 由 `release-check-methodology-suite.mjs` 拥有,bootstrap / methodology route / entry advice smoke 由 `release-check-workflow-entry-suite.mjs` 拥有,learning smoke 由 `release-check-learning-suite.mjs` 拥有,tokens smoke 由 `release-check-token-suite.mjs` 拥有。`index.mjs` 保持 CLI wiring 和剩余历史 smoke 兼容,不应继续扩张为新的 domain owner。
|
|
51
|
+
|
|
52
|
+
可选 suite:
|
|
53
|
+
|
|
54
|
+
- `fast`:repo doctor、runtime-check、architecture-check、git submodule 和 fork ignore hygiene。适合日常编辑后的快速反馈。
|
|
55
|
+
- `install`:plugin pack、`vibe-init`、installed doctor 和单平台安装 smoke。
|
|
56
|
+
- `runtime`:runtime command、governance、workflow、completion 和 stage smoke。
|
|
57
|
+
- `full-chain`:`examples/full-chain/` 的完整 compliance demo smoke;顶层 completion `ok=true`,并断言 expanded delivery chain、implementation alignment、commit boundary 与 no git write 边界。
|
|
58
|
+
- `golden-path`:`examples/golden-path/` 的最小 team-mode demo smoke;顶层 completion `ok=false` 是省略 full compliance artifact 时的预期边界,但 local evidence gate 和 implementation alignment 必须通过。
|
|
59
|
+
- `learning`:learning observation、instinct 和 advice smoke。
|
|
60
|
+
- `tokens`:token compaction、metrics 和 advice smoke。
|
|
61
|
+
- `behavior`:本地 transcript / replay 行为门禁,覆盖自动提交、隐式 subagent、跳过 evidence、误读 `ok=false`、无验证完成声明等负例;只读,不调用平台/API/模型,也不写 sidecar。
|
|
62
|
+
|
|
63
|
+
P60 experience loop v2 在 release-check 文档中的定位是 marker/readiness 可解释性,不是新 suite:`p60_experience_loop_v2` 只把 friction、next action、dashboard、upgrade prioritizer 和 evidence prompts 串成 `manual_next_action_only`、`evidence_gap_only`、`do_not_do_yet_visible` 三类人工信息;release-check 不运行 check/test/workflow,不写 evidence,`state_directory_created=false`,不授权 git/subagent/platform/model。
|
|
64
|
+
- `all`:完整 release gate。
|
|
65
|
+
|
|
66
|
+
`--profile <name>` 是 `--suite <name>` 的别名。
|
|
67
|
+
|
|
68
|
+
`--timing` 会在通过后输出本次命令耗时分布和维护者决策辅助,用于定位慢项;它不改变检查范围、命令顺序或失败严格度。决策辅助只根据本次 observed timing 生成 top command、hot layer 和 top-3 share,帮助维护者决定是否优先看 targeted suite、fixture 成本或输出噪音。
|
|
69
|
+
|
|
70
|
+
建议在发布收口前、验证耗时异常、或需要决定先跑哪个 targeted suite 时加上 `--timing`。阅读顺序保持 summary-first:先看 slowest command,再看 hot layer,最后看 top-3 share 是否集中。该结果只提供人工判断线索,不会跳过慢项、不降低失败严格度、不改变 suite 范围,也不会保存 timing 历史。
|
|
71
|
+
|
|
72
|
+
默认会清理当前 release-check 进程的 run-scoped 临时目录:`.tmp/release-check-<pid>-<timestamp>/`。只有传入 `--keep-tmp` 时保留本次 run scope,便于调试。suite 自己创建的 fixture 仍位于 `.tmp/<suite>/`,并由对应 smoke owner 在当前进程内清理;新增或迁移 suite fixture 时优先使用 `release-check-runtime.mjs` 的 `suiteTmpTarget()` / `withSuiteTmp()`,保持用户可见 `--root .tmp/<suite>` 路径语义,同时避免手写创建/清理分散。
|
|
73
|
+
|
|
74
|
+
## 维护者运行建议
|
|
75
|
+
|
|
76
|
+
`release:runtime` 是长 smoke,会创建并清理 `.tmp/` 下的临时目录。release-check 共享 helper 使用 run-scoped tmp context,进程启动和结束只清理本次 run scope,不会主动删除其他 release-check 进程的 fixture;这允许 CI 将 `learning`、`tokens` 等 suite 安全并行化。仍不建议把同一个长 suite 的多个实例指向同一 suite-owned fixture 目录并发运行。
|
|
77
|
+
|
|
78
|
+
Windows 下如果 PowerShell 包装或后台任务输出异常,先确认没有残留 release-check 进程,再用更稳定的 `cmd /c` 运行:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
cmd /c "npm run release:runtime"
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
这只是维护者运行建议,不改变 runtime 边界:工具不会自动重试、不会运行未声明的测试、不会读取 git diff、不会提交。
|
|
85
|
+
|
|
86
|
+
## P66 Long-term release evidence governance
|
|
87
|
+
|
|
88
|
+
P66 `p66_release_evidence_governance` 把 P54-P65 的长期产品化结果收束成发布前证据矩阵。维护者按影响范围选择最小 gate,不把所有场景都升级成 full release。
|
|
89
|
+
|
|
90
|
+
| 影响范围 | 必选 gate | 追加 gate | 收口项 |
|
|
91
|
+
| --- | --- | --- | --- |
|
|
92
|
+
| docs / marker / product registry | `node tools/vibe-runtime-check/index.mjs --root .` + `npm run check:arch` + `git diff --check` | `npm run release:fast` | `architecture_active_new_warnings=0`、`architecture_baseline_total=402` |
|
|
93
|
+
| install / adapter / plugin pack | `npm run release:install` + plugin pack dry-run | `npm run pack:dry-run` | `marketplace_upload=false`、`npm_publish=false`、`git_tag=false` |
|
|
94
|
+
| behavior / completion / closeout | `npm run release:behavior` + `npm run release:fast` | targeted runtime experience suite | `current_contract_not_authorized=true`、`git_write=false`、`subagent=false` |
|
|
95
|
+
| learning / token entry | `npm run release:learning` 或 `npm run release:tokens` | `node tools/vibe-runtime-check/index.mjs --root .` | `model_invocation=false`、`remote_config=false`、`prompt_mutation=false` |
|
|
96
|
+
| architecture paydown | `npm run check:arch` + `node tools/vibe-runtime-check/index.mjs --root .` | targeted `node --check <touched-module>` | `baseline_raise=false`、`execution_surface_added=false` |
|
|
97
|
+
|
|
98
|
+
最终发布收口必须记录:`runtime_check_passed=true`、`check_arch_passed=true`、`release_fast_selected_or_explained=true`、`tmp_absent=true`、`source_state_absent=true`、`target_state_absent=true`。P66 不新增 release suite、不改变顶层 JSON envelope、不自动清理用户文件、不提交、不 push、不创建 PR。
|
|
99
|
+
|
|
100
|
+
## 检查内容
|
|
101
|
+
|
|
102
|
+
README 只保留 domain-level 范围,详细 stage / smoke 清单见 `docs/release-check-reference.md`。
|
|
103
|
+
|
|
104
|
+
当前聚合覆盖:
|
|
105
|
+
|
|
106
|
+
- repo hygiene:layout doctor、runtime-check、git submodule、fork ignore hygiene。
|
|
107
|
+
- install adoption:plugin pack、`vibe-init`、installed doctor、platform install smoke。
|
|
108
|
+
- runtime governance:workflow、completion、handoff、ledger、dispatch、execution boundary 和 daemon boundary smoke。
|
|
109
|
+
- optional governance:PR readiness、review intake、convergence、learning、tokens、release notes、behavior contract、platform bootstrap 和 traceability map smoke。
|
|
110
|
+
- examples / evidence:golden path、full-chain、completion evidence bundle 和 local evidence alignment smoke。
|
|
111
|
+
|
|
112
|
+
新增或迁移检查时,优先更新对应 owner module;只有需要维护完整检查清单时,才同步 `docs/release-check-reference.md`。
|
|
113
|
+
|
|
114
|
+
- P64 contributor closeout guardrails 是 release-check 文档中的收口纪律,不是新 suite:`p64_contributor_closeout_guardrails` 要求 completion、commit、PR 和 subagent 相关输出都显示 `current_contract_not_authorized=true`,只给 `manual_next_action_only`、`evidence_gap_only`、`do_not_do_yet_visible`。release-check 不执行 git、不创建 PR、不询问远端 review、不调用 subagent、不调用平台/API/模型。
|
|
115
|
+
|
|
116
|
+
## 边界
|
|
117
|
+
|
|
118
|
+
该工具只聚合本地命令,不做:
|
|
119
|
+
|
|
120
|
+
- 真实 IDE runtime 验证。
|
|
121
|
+
- MCP 检查。
|
|
122
|
+
- 远程发布。
|
|
123
|
+
- 自动提交或打 tag。
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { commandMetadataEntry } from './release-check-command-metadata.mjs';
|
|
2
|
+
|
|
3
|
+
export function releaseCheckBaseCommands() {
|
|
4
|
+
return [
|
|
5
|
+
['node', ['tools/vibe-doctor/index.mjs', '--help'], { expectOutput: ['Vibecoding Kit Doctor', 'Usage:', 'node tools/vibe-doctor/index.mjs [root]'] }],
|
|
6
|
+
['node', ['tools/vibe-doctor/index.mjs']],
|
|
7
|
+
['node', ['tools/vibe-runtime-check/index.mjs']],
|
|
8
|
+
commandMetadataEntry({
|
|
9
|
+
command: 'package-boundary-check',
|
|
10
|
+
suites: ['fast'],
|
|
11
|
+
handler: 'package-boundary-check',
|
|
12
|
+
owner: 'tools/vibe-release-check/release-check-package-boundary-smoke.mjs',
|
|
13
|
+
}),
|
|
14
|
+
];
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export function releaseCheckHygieneCommands() {
|
|
18
|
+
return [
|
|
19
|
+
['node', ['tools/vibe-architecture-check/index.mjs', '--root', '.', '--json'], { expectOutput: ['"command": "architecture-check"', '"result": "passed"', '"warning_count"'] }],
|
|
20
|
+
['git', ['submodule', 'status']],
|
|
21
|
+
['check-not-ignored', ['fork/distill', 'fork/ECC', 'fork/superpowers', 'fork/token-savior']],
|
|
22
|
+
];
|
|
23
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { commandMetadataEntry } from './release-check-command-metadata.mjs';
|
|
2
|
+
|
|
3
|
+
const closeoutSmoke = (command) => commandMetadataEntry({
|
|
4
|
+
command,
|
|
5
|
+
suites: ['runtime'],
|
|
6
|
+
owner: 'release-check-closeout-commands',
|
|
7
|
+
runtimeSuiteLayer: 'release-closeout',
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
export function releaseCheckCloseoutCommands() {
|
|
11
|
+
return [
|
|
12
|
+
closeoutSmoke('commit-guard-smoke'),
|
|
13
|
+
closeoutSmoke('release-notes-smoke'),
|
|
14
|
+
['node', ['tools/vibe-compact/index.mjs', '--input', 'docs/phase-2-roadmap.md', '--max-lines', '2']],
|
|
15
|
+
];
|
|
16
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export function commandEntry(command, args = [], settings = {}) {
|
|
2
|
+
return [command, args, settings];
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
export function commandMetadataEntry({ command, args = [], settings = {}, suites = [], handler = command, owner = '', runtimeSuiteLayer = '' }) {
|
|
6
|
+
return [command, args, {
|
|
7
|
+
...settings,
|
|
8
|
+
metadata: {
|
|
9
|
+
suites: Array.from(new Set(suites)),
|
|
10
|
+
handler,
|
|
11
|
+
owner,
|
|
12
|
+
runtimeSuiteLayer,
|
|
13
|
+
},
|
|
14
|
+
}];
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export function commandEntryMetadata(entry) {
|
|
18
|
+
const [, , settings = {}] = entry;
|
|
19
|
+
return settings.metadata || null;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function commandEntrySuites(entry) {
|
|
23
|
+
return commandEntryMetadata(entry)?.suites || [];
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export function commandEntryHandler(entry) {
|
|
27
|
+
return commandEntryMetadata(entry)?.handler || null;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export function commandEntryRuntimeSuiteLayer(entry) {
|
|
31
|
+
return commandEntryMetadata(entry)?.runtimeSuiteLayer || '';
|
|
32
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { commandMetadataEntry } from './release-check-command-metadata.mjs';
|
|
2
|
+
|
|
3
|
+
const productBundleInputs = ['--from-product-discovery', 'examples/runtime-fixtures/product-discovery.md', '--from-product-spec', 'examples/runtime-fixtures/product-spec.md', '--from-ui-design', 'examples/runtime-fixtures/ui-design-contract.md', '--from-scenarios', 'examples/runtime-fixtures/scenario-acceptance.yaml', '--from-product-acceptance', 'examples/runtime-fixtures/product-acceptance.md', '--from-evidence', 'examples/runtime-fixtures/evidence.json'];
|
|
4
|
+
const architectureInput = ['--from-architecture', 'examples/runtime-fixtures/architecture-design.md'];
|
|
5
|
+
const traceabilityInput = ['--from-traceability', 'examples/runtime-fixtures/delivery-traceability.yaml'];
|
|
6
|
+
const planInput = ['--from-plan', 'examples/runtime-fixtures/implementation-plan.md'];
|
|
7
|
+
const testEvidenceInput = ['--from-test-evidence', 'examples/runtime-fixtures/test-evidence.json'];
|
|
8
|
+
const diffCoverageInput = ['--from-diff-coverage', 'examples/runtime-fixtures/diff-coverage.json'];
|
|
9
|
+
const commitReadinessInput = ['--from-commit-readiness', 'examples/runtime-fixtures/commit-readiness.json'];
|
|
10
|
+
const fullChainInputs = [...architectureInput, ...traceabilityInput, ...planInput, ...testEvidenceInput, ...diffCoverageInput, ...commitReadinessInput];
|
|
11
|
+
|
|
12
|
+
function completionBundleCommand(inputs, settings) {
|
|
13
|
+
return commandMetadataEntry({
|
|
14
|
+
command: 'node',
|
|
15
|
+
args: ['tools/vibe-runtime/index.mjs', 'completion', '--evidence-bundle', ...inputs, '--json'],
|
|
16
|
+
settings,
|
|
17
|
+
suites: ['fast'],
|
|
18
|
+
owner: 'release-check-completion-commands',
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const productBundleJsonContract = [['command', 'completion'], ['mode', 'product-completion-evidence-bundle'], ['ok', true], ['completion_evidence_bundle.bundle_kind', 'product-completion-evidence-bundle'], ['completion_evidence_bundle.product_readiness.product_spec_gate_ok', true], ['completion_evidence_bundle.product_readiness.product_acceptance_gate_ok', true], ['completion_evidence_bundle.ui_readiness.ui_design_gate_ok', true], ['completion_evidence_bundle.ui_readiness.scenario_gate_ok', true], ['completion_evidence_bundle.engineering_readiness.evidence_status', 'provided'], ['completion_evidence_bundle.engineering_readiness.executes_commands', false], ['completion_evidence_bundle.task_completion_summary.readiness_classification', 'full_compliance_ready'], ['completion_evidence_bundle.task_completion_summary.local_task_ready', true], ['completion_evidence_bundle.task_completion_summary.minimum_local_evidence_missing.length', 0], ['completion_evidence_bundle.task_completion_summary.full_compliance_evidence_missing.length', 0], ['completion_evidence_bundle.task_completion_summary.unsafe_release_actions_detected.length', 0], ['completion_evidence_bundle.task_completion_summary.manual_next_action', { exists: true }], ['completion_evidence_bundle.boundary_assertions.git', false], ['completion_evidence_bundle.boundary_assertions.git_write', false], ['completion_evidence_bundle.bundle_digest', { exists: true }]];
|
|
23
|
+
const fullChainJsonContract = [['command', 'completion'], ['mode', 'product-completion-evidence-bundle'], ['ok', true], ['completion_evidence_bundle.bundle_kind', 'product-completion-evidence-bundle'], ['completion_evidence_bundle.expanded_delivery_chain', true], ['completion_evidence_bundle.architecture_chain', { exists: true }], ['completion_evidence_bundle.traceability_chain', { exists: true }], ['completion_evidence_bundle.implementation_chain', { exists: true }], ['completion_evidence_bundle.release_readiness_chain', { exists: true }], ['completion_evidence_bundle.traceability_readiness.cross_artifact_ref_validation_ok', true], ['completion_evidence_bundle.implementation_chain.test_evidence_readiness.test_evidence_gate_ok', true], ['completion_evidence_bundle.implementation_chain.diff_coverage_readiness.diff_coverage_gate_ok', true], ['completion_evidence_bundle.implementation_chain.implementation_alignment_readiness.implementation_plan_gate_ok', true], ['completion_evidence_bundle.implementation_chain.implementation_alignment_readiness.implementation_alignment_ok', true], ['completion_evidence_bundle.release_readiness_chain.commit_readiness_gate.summary.commit_boundary_ok', true], ['completion_evidence_bundle.release_readiness_chain.commit_readiness_gate.summary.commit_execution_authorized', false], ['completion_evidence_bundle.task_completion_summary.readiness_classification', 'full_compliance_ready'], ['completion_evidence_bundle.task_completion_summary.local_task_ready', true], ['completion_evidence_bundle.task_completion_summary.minimum_local_evidence_missing.length', 0], ['completion_evidence_bundle.task_completion_summary.full_compliance_evidence_missing.length', 0], ['completion_evidence_bundle.task_completion_summary.unsafe_release_actions_detected.length', 0], ['completion_evidence_bundle.boundary_assertions.git_write', false], ['completion_evidence_bundle.boundary_assertions.commit', false], ['completion_evidence_bundle.boundary_assertions.push', false], ['completion_evidence_bundle.boundary_assertions.pr', false], ['completion_evidence_bundle.boundary_assertions.merge', false], ['completion_evidence_bundle.bundle_digest', { exists: true }]];
|
|
24
|
+
const okFalseNoGitWriteContract = [['ok', false], ['completion_evidence_bundle.boundary_assertions.git_write', false]];
|
|
25
|
+
const teamModeEvidenceReadyContract = [...okFalseNoGitWriteContract, ['completion_evidence_bundle.task_completion_summary.readiness_classification', 'team_mode_evidence_ready'], ['completion_evidence_bundle.task_completion_summary.local_task_ready', true], ['completion_evidence_bundle.task_completion_summary.minimum_local_evidence_missing.length', 0], ['completion_evidence_bundle.task_completion_summary.full_compliance_evidence_missing.0', { exists: true }]];
|
|
26
|
+
const unsafeReleaseBoundaryContract = [...okFalseNoGitWriteContract, ['completion_evidence_bundle.task_completion_summary.readiness_classification', 'local_evidence_blocked'], ['completion_evidence_bundle.task_completion_summary.local_task_ready', false], ['completion_evidence_bundle.task_completion_summary.unsafe_release_actions_detected.0', { exists: true }]];
|
|
27
|
+
const implementationAlignmentFailureContract = [...okFalseNoGitWriteContract, ['completion_evidence_bundle.implementation_chain.implementation_alignment_readiness.implementation_alignment_ok', false]];
|
|
28
|
+
|
|
29
|
+
export function releaseCheckCompletionCommands() {
|
|
30
|
+
return [
|
|
31
|
+
completionBundleCommand(productBundleInputs, { expectJsonMarkers: productBundleJsonContract }),
|
|
32
|
+
completionBundleCommand([...productBundleInputs, ...fullChainInputs], { expectJsonMarkers: fullChainJsonContract }),
|
|
33
|
+
completionBundleCommand([...productBundleInputs, ...traceabilityInput, ...planInput, ...testEvidenceInput, ...diffCoverageInput, ...commitReadinessInput], { expectOutput: ['architecture artifact not provided'], expectJsonMarkers: teamModeEvidenceReadyContract }),
|
|
34
|
+
completionBundleCommand([...productBundleInputs, ...architectureInput, '--from-traceability', 'examples/runtime-fixtures/negative/delivery-traceability-bad-ref.yaml', ...planInput, ...testEvidenceInput, ...diffCoverageInput, ...commitReadinessInput], { expectOutput: ['traceability_ref_missing: scenario_ref=scenario-does-not-exist'], expectJsonMarkers: [...okFalseNoGitWriteContract, ['completion_evidence_bundle.traceability_readiness.cross_artifact_ref_validation_ok', false]] }),
|
|
35
|
+
completionBundleCommand([...productBundleInputs, ...architectureInput, ...traceabilityInput, ...planInput, '--from-test-evidence', 'examples/runtime-fixtures/negative/test-evidence-missing-output-digest.json', '--from-diff-coverage', 'examples/runtime-fixtures/negative/diff-coverage-unexpected-file.json', '--from-commit-readiness', 'examples/runtime-fixtures/negative/commit-readiness-boundary-escalated.json'], { expectOutput: ['output_digest is required', 'diff_coverage.unexpected_files must be empty', 'commit_readiness.commit_execution_authorized must not be true'], expectJsonMarkers: [...unsafeReleaseBoundaryContract, ['completion_evidence_bundle.implementation_chain.test_evidence_readiness.test_evidence_gate_ok', false], ['completion_evidence_bundle.implementation_chain.diff_coverage_readiness.diff_coverage_gate_ok', false], ['completion_evidence_bundle.release_readiness_chain.commit_readiness_gate.summary.commit_boundary_ok', false]] }),
|
|
36
|
+
completionBundleCommand([...productBundleInputs, ...architectureInput, ...traceabilityInput, ...planInput, ...testEvidenceInput, '--from-diff-coverage', 'examples/runtime-fixtures/negative/diff-coverage-changed-file-without-task-ref.json', ...commitReadinessInput], { expectOutput: ['implementation_changed_file_unexplained: tools/vibe-runtime/unplanned-change.mjs'], expectJsonMarkers: implementationAlignmentFailureContract }),
|
|
37
|
+
completionBundleCommand([...productBundleInputs, ...architectureInput, ...traceabilityInput, ...planInput, ...testEvidenceInput, '--from-diff-coverage', 'examples/runtime-fixtures/negative/diff-coverage-required-task-missing.json', ...commitReadinessInput], { expectOutput: ['implementation_task_uncovered: task-extend-completion-bundle'], expectJsonMarkers: implementationAlignmentFailureContract }),
|
|
38
|
+
completionBundleCommand([...productBundleInputs, ...architectureInput, ...traceabilityInput, ...planInput, ...testEvidenceInput, '--from-diff-coverage', 'examples/runtime-fixtures/negative/diff-coverage-operation-mismatch.json', ...commitReadinessInput], { expectOutput: ['implementation_operation_mismatch: task-extend-completion-bundle', 'actual=delete'], expectJsonMarkers: implementationAlignmentFailureContract }),
|
|
39
|
+
completionBundleCommand([...productBundleInputs, ...architectureInput, ...traceabilityInput, ...planInput, '--from-test-evidence', 'examples/runtime-fixtures/negative/test-evidence-risky-task-missing.json', ...diffCoverageInput, ...commitReadinessInput], { expectOutput: ['implementation_task_missing_test_evidence: task-extend-completion-bundle', 'task-does-not-exist'], expectJsonMarkers: implementationAlignmentFailureContract }),
|
|
40
|
+
];
|
|
41
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { commandMetadataEntry } from './release-check-command-metadata.mjs';
|
|
2
|
+
|
|
3
|
+
export function releaseCheckFullChainCommands() {
|
|
4
|
+
return [
|
|
5
|
+
commandMetadataEntry({
|
|
6
|
+
command: 'full-chain-demo-smoke',
|
|
7
|
+
suites: ['full-chain'],
|
|
8
|
+
handler: 'full-chain-demo-smoke',
|
|
9
|
+
owner: 'release-check-full-chain-suite',
|
|
10
|
+
}),
|
|
11
|
+
];
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { commandMetadataEntry } from './release-check-command-metadata.mjs';
|
|
2
|
+
|
|
3
|
+
export function releaseCheckGoldenPathCommands() {
|
|
4
|
+
return [
|
|
5
|
+
commandMetadataEntry({
|
|
6
|
+
command: 'golden-path-demo-smoke',
|
|
7
|
+
suites: ['golden-path'],
|
|
8
|
+
handler: 'golden-path-demo-smoke',
|
|
9
|
+
owner: 'release-check-golden-path-suite',
|
|
10
|
+
}),
|
|
11
|
+
];
|
|
12
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export function releaseCheckInstallCommands() {
|
|
2
|
+
return [
|
|
3
|
+
['node', ['bin/vibe.mjs', 'plugin', 'pack', '--platform', 'all', '--out', '.tmp/vibe-plugin-pack', '--dry-run'], { expectOutput: ['Vibecoding Plugin Pack', 'Audit boundary:', 'writes=false', 'draft_output_write=false', 'npm_publish=false', 'git_tag=false', 'github_release=false', 'marketplace_upload=false', 'platform_api=false', 'Action: dry-run only. No files were written.'] }],
|
|
4
|
+
['node', ['bin/vibe.mjs', 'plugin', 'pack', '--platform', 'all', '--out', '.tmp/vibe-plugin-pack'], { expectOutput: ['Result: generated'] }],
|
|
5
|
+
['node', ['bin/vibe.mjs', 'plugin', 'pack', '--platform', 'all', '--out', '.tmp/vibe-plugin-pack', '--check'], { expectOutput: ['Result: passed'] }],
|
|
6
|
+
['node', ['tools/vibe-init/index.mjs', '--target', '.tmp/vibe-init-target', '--platform', 'all', '--check']],
|
|
7
|
+
['node', ['tools/vibe-init/index.mjs', '--target', '.tmp/vibe-init-target', '--platform', 'all', '--dry-run']],
|
|
8
|
+
['node', ['tools/vibe-init/index.mjs', '--target', '.tmp/vibe-init-target', '--platform', 'all']],
|
|
9
|
+
['node', ['tools/vibe-doctor/index.mjs', '.tmp/vibe-init-target']],
|
|
10
|
+
['node', ['tools/vibe-init/index.mjs', '--target', '.tmp/vibe-init-target', '--platform', 'all', '--with-runtime']],
|
|
11
|
+
['node', ['tools/vibe-doctor/index.mjs', '.tmp/vibe-init-target']],
|
|
12
|
+
['node', ['tools/vibe-init/index.mjs', '--target', '.tmp/vibe-init-target', '--platform', 'all', '--with-docs']],
|
|
13
|
+
['node', ['tools/vibe-doctor/index.mjs', '.tmp/vibe-init-target']],
|
|
14
|
+
['single-platform-smoke', ['claude']],
|
|
15
|
+
['single-platform-smoke', ['cursor']],
|
|
16
|
+
['single-platform-smoke', ['codex']],
|
|
17
|
+
['single-platform-smoke', ['opencode']],
|
|
18
|
+
['single-platform-smoke', ['pi']],
|
|
19
|
+
];
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function releaseCheckInstallCompatibilityCommands() {
|
|
23
|
+
return [
|
|
24
|
+
['node', ['tools/vibe-init/index.mjs', '--target', '.tmp/vibe-init-target', '--platform', 'auto', '--merge-preview']],
|
|
25
|
+
];
|
|
26
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { commandMetadataEntry } from './release-check-command-metadata.mjs';
|
|
2
|
+
|
|
3
|
+
export function releaseCheckLearningSmokeCommands() {
|
|
4
|
+
return [
|
|
5
|
+
commandMetadataEntry({
|
|
6
|
+
command: 'learning-observation-smoke',
|
|
7
|
+
suites: ['learning'],
|
|
8
|
+
owner: 'release-check-learning-smoke-commands',
|
|
9
|
+
}),
|
|
10
|
+
commandMetadataEntry({
|
|
11
|
+
command: 'learning-instinct-smoke',
|
|
12
|
+
suites: ['learning'],
|
|
13
|
+
owner: 'release-check-learning-smoke-commands',
|
|
14
|
+
}),
|
|
15
|
+
commandMetadataEntry({
|
|
16
|
+
command: 'learning-advice-smoke',
|
|
17
|
+
suites: ['learning'],
|
|
18
|
+
owner: 'release-check-learning-smoke-commands',
|
|
19
|
+
}),
|
|
20
|
+
];
|
|
21
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { commandMetadataEntry } from './release-check-command-metadata.mjs';
|
|
2
|
+
|
|
3
|
+
export function releaseCheckMethodologyCommands() {
|
|
4
|
+
return [
|
|
5
|
+
commandMetadataEntry({
|
|
6
|
+
command: 'methodology-product-gate-smoke',
|
|
7
|
+
suites: ['fast', 'runtime'],
|
|
8
|
+
handler: 'methodology-product-gate-smoke',
|
|
9
|
+
owner: 'release-check-methodology-suite',
|
|
10
|
+
runtimeSuiteLayer: 'methodology',
|
|
11
|
+
}),
|
|
12
|
+
commandMetadataEntry({
|
|
13
|
+
command: 'methodology-delivery-gate-smoke',
|
|
14
|
+
suites: ['fast', 'runtime'],
|
|
15
|
+
handler: 'methodology-delivery-gate-smoke',
|
|
16
|
+
owner: 'release-check-methodology-suite',
|
|
17
|
+
runtimeSuiteLayer: 'methodology',
|
|
18
|
+
}),
|
|
19
|
+
commandMetadataEntry({
|
|
20
|
+
command: 'methodology-implementation-gate-smoke',
|
|
21
|
+
suites: ['fast', 'runtime'],
|
|
22
|
+
handler: 'methodology-implementation-gate-smoke',
|
|
23
|
+
owner: 'release-check-methodology-suite',
|
|
24
|
+
runtimeSuiteLayer: 'methodology',
|
|
25
|
+
}),
|
|
26
|
+
];
|
|
27
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { commandMetadataEntry } from './release-check-command-metadata.mjs';
|
|
2
|
+
|
|
3
|
+
export const runtimeSuiteLayers = Object.freeze([
|
|
4
|
+
'surface',
|
|
5
|
+
'methodology',
|
|
6
|
+
'state-ledger',
|
|
7
|
+
'execution-boundary',
|
|
8
|
+
'experience',
|
|
9
|
+
'release-closeout',
|
|
10
|
+
]);
|
|
11
|
+
|
|
12
|
+
const runtimeSuiteLayerBySmoke = Object.freeze({
|
|
13
|
+
'runtime-ledger-smoke': 'state-ledger',
|
|
14
|
+
'runtime-automation-smoke': 'execution-boundary',
|
|
15
|
+
'planner-smoke': 'methodology',
|
|
16
|
+
'router-smoke': 'methodology',
|
|
17
|
+
'evals-smoke': 'methodology',
|
|
18
|
+
'pr-readiness-smoke': 'release-closeout',
|
|
19
|
+
'pr-review-intake-smoke': 'release-closeout',
|
|
20
|
+
'convergence-smoke': 'state-ledger',
|
|
21
|
+
'governance-advice-smoke': 'methodology',
|
|
22
|
+
'runtime-surface-smoke': 'surface',
|
|
23
|
+
'automation-readiness-smoke': 'execution-boundary',
|
|
24
|
+
'workflow-loop-contract-smoke': 'state-ledger',
|
|
25
|
+
'plan-action-manifest-smoke': 'state-ledger',
|
|
26
|
+
'self-test-profile-smoke': 'execution-boundary',
|
|
27
|
+
'commit-readiness-smoke': 'release-closeout',
|
|
28
|
+
'confirmed-one-shot-plan-smoke': 'execution-boundary',
|
|
29
|
+
'close-loop-dashboard-smoke': 'state-ledger',
|
|
30
|
+
'evidence-intake-smoke': 'state-ledger',
|
|
31
|
+
'diff-coverage-smoke': 'state-ledger',
|
|
32
|
+
'review-envelope-smoke': 'state-ledger',
|
|
33
|
+
'tdd-trace-smoke': 'state-ledger',
|
|
34
|
+
'human-friendly-alias-smoke': 'experience',
|
|
35
|
+
'superpowers-gap-smoke': 'experience',
|
|
36
|
+
'superpowers-regression-guard-smoke': 'experience',
|
|
37
|
+
'experience-friction-smoke': 'experience',
|
|
38
|
+
'next-action-console-smoke': 'experience',
|
|
39
|
+
'token-savior-budget-smoke': 'experience',
|
|
40
|
+
'experience-learning-pattern-smoke': 'experience',
|
|
41
|
+
'stage-scriptlet-smoke': 'methodology',
|
|
42
|
+
'adapter-entry-acceptance-smoke': 'surface',
|
|
43
|
+
'installed-multiround-ux-smoke': 'experience',
|
|
44
|
+
'session-start-shape-smoke': 'experience',
|
|
45
|
+
'entry-trigger-discipline-smoke': 'experience',
|
|
46
|
+
'experience-regression-dashboard-smoke': 'experience',
|
|
47
|
+
'superpowers-comparison-smoke': 'experience',
|
|
48
|
+
'methodology-coverage-map-smoke': 'methodology',
|
|
49
|
+
'install-experience-smoke': 'surface',
|
|
50
|
+
'superpowers-style-eval-pack-smoke': 'experience',
|
|
51
|
+
'experience-upgrade-prioritizer-smoke': 'experience',
|
|
52
|
+
'superpowers-parity-scorecard-smoke': 'experience',
|
|
53
|
+
'entry-trigger-tightening-smoke': 'experience',
|
|
54
|
+
'session-start-example-pack-smoke': 'experience',
|
|
55
|
+
'next-action-evidence-prompts-smoke': 'experience',
|
|
56
|
+
'context-budget-entry-defaults-smoke': 'experience',
|
|
57
|
+
'local-behavior-eval-contracts-smoke': 'experience',
|
|
58
|
+
'contributor-guardrail-evidence-smoke': 'experience',
|
|
59
|
+
'subagent-permission-visibility-smoke': 'surface',
|
|
60
|
+
'adapter-packaging-consistency-smoke': 'surface',
|
|
61
|
+
'progressive-entry-ux-smoke': 'experience',
|
|
62
|
+
'executable-plan-smoke': 'methodology',
|
|
63
|
+
'stage-runbook-smoke': 'methodology',
|
|
64
|
+
'execution-evidence-smoke': 'execution-boundary',
|
|
65
|
+
'staged-commit-readiness-smoke': 'execution-boundary',
|
|
66
|
+
'test-run-smoke': 'execution-boundary',
|
|
67
|
+
'suite-plan-smoke': 'release-closeout',
|
|
68
|
+
'behavioral-evaluation-contract-smoke': 'execution-boundary',
|
|
69
|
+
'adapter-bootstrap-matrix-smoke': 'surface',
|
|
70
|
+
'skill-runtime-traceability-smoke': 'surface',
|
|
71
|
+
'unified-advice-smoke': 'experience',
|
|
72
|
+
'workflow-readiness-smoke': 'state-ledger',
|
|
73
|
+
'plan-lint-smoke': 'methodology',
|
|
74
|
+
'workflow-cockpit-smoke': 'state-ledger',
|
|
75
|
+
'workflow-entry-experience-smoke': 'experience',
|
|
76
|
+
'completion-readiness-smoke': 'state-ledger',
|
|
77
|
+
'readiness-gate-split-smoke': 'release-closeout',
|
|
78
|
+
'completion-evidence-bundle-smoke': 'state-ledger',
|
|
79
|
+
'bootstrap-acceptance-smoke': 'methodology',
|
|
80
|
+
'methodology-route-smoke': 'methodology',
|
|
81
|
+
'entry-advice-smoke': 'methodology',
|
|
82
|
+
'patch-queue-source-apply-gate-smoke': 'execution-boundary',
|
|
83
|
+
'verification-driven-repair-loop-smoke': 'execution-boundary',
|
|
84
|
+
'local-commit-automation-gate-smoke': 'execution-boundary',
|
|
85
|
+
'leased-foreground-worker-smoke': 'execution-boundary',
|
|
86
|
+
'agent-session-start-contract-smoke': 'experience',
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
const behaviorSmokeNames = Object.freeze([
|
|
90
|
+
'behavioral-evaluation-contract-smoke',
|
|
91
|
+
'review-envelope-smoke',
|
|
92
|
+
'installed-multiround-ux-smoke',
|
|
93
|
+
'local-behavior-eval-contracts-smoke',
|
|
94
|
+
'session-start-shape-smoke',
|
|
95
|
+
'entry-trigger-discipline-smoke',
|
|
96
|
+
'entry-trigger-tightening-smoke',
|
|
97
|
+
'session-start-example-pack-smoke',
|
|
98
|
+
'superpowers-parity-scorecard-smoke',
|
|
99
|
+
'agent-session-start-contract-smoke',
|
|
100
|
+
]);
|
|
101
|
+
|
|
102
|
+
function smoke(name) {
|
|
103
|
+
const runtimeSuiteLayer = runtimeSuiteLayerBySmoke[name];
|
|
104
|
+
if (!runtimeSuiteLayer) throw new Error(`runtime smoke command missing suite layer: ${name}`);
|
|
105
|
+
const suites = behaviorSmokeNames.includes(name) ? ['runtime', 'behavior'] : ['runtime'];
|
|
106
|
+
return commandMetadataEntry({
|
|
107
|
+
command: name,
|
|
108
|
+
suites,
|
|
109
|
+
owner: 'release-check-runtime-smoke-commands',
|
|
110
|
+
runtimeSuiteLayer,
|
|
111
|
+
});
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export function releaseCheckRuntimeSmokeCommands() {
|
|
115
|
+
return Object.keys(runtimeSuiteLayerBySmoke).map(smoke);
|
|
116
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { commandMetadataEntry } from './release-check-command-metadata.mjs';
|
|
2
|
+
|
|
3
|
+
export function releaseCheckTokenSmokeCommands() {
|
|
4
|
+
return [
|
|
5
|
+
commandMetadataEntry({
|
|
6
|
+
command: 'token-compaction-smoke',
|
|
7
|
+
suites: ['tokens'],
|
|
8
|
+
owner: 'release-check-token-smoke-commands',
|
|
9
|
+
}),
|
|
10
|
+
commandMetadataEntry({
|
|
11
|
+
command: 'token-metrics-smoke',
|
|
12
|
+
suites: ['tokens'],
|
|
13
|
+
owner: 'release-check-token-smoke-commands',
|
|
14
|
+
}),
|
|
15
|
+
commandMetadataEntry({
|
|
16
|
+
command: 'token-advice-smoke',
|
|
17
|
+
suites: ['tokens'],
|
|
18
|
+
owner: 'release-check-token-smoke-commands',
|
|
19
|
+
}),
|
|
20
|
+
];
|
|
21
|
+
}
|