@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,768 @@
|
|
|
1
|
+
import fs from 'node:fs';
|
|
2
|
+
import path from 'node:path';
|
|
3
|
+
|
|
4
|
+
import {
|
|
5
|
+
plannerBriefsConfirmJsonMarkers,
|
|
6
|
+
plannerPlanConfirmJsonMarkers,
|
|
7
|
+
plannerRouteConfirmJsonMarkers,
|
|
8
|
+
plannerRoutePreviewJsonMarkers,
|
|
9
|
+
plannerVerifyJsonMarkers,
|
|
10
|
+
prReadinessPreviewJsonMarkers,
|
|
11
|
+
prReadinessVerifyJsonMarkers,
|
|
12
|
+
prReviewIntakeEvidenceText,
|
|
13
|
+
prReviewIntakePreviewJsonMarkers,
|
|
14
|
+
prReviewIntakeVerifyJsonMarkers,
|
|
15
|
+
workflowPlannerInputText,
|
|
16
|
+
} from './release-check-workflow-governance-fixtures.mjs';
|
|
17
|
+
import {
|
|
18
|
+
runBootstrapAcceptanceSmoke as runBootstrapAcceptanceSmokeFromWorkflowEntry,
|
|
19
|
+
runEntryAdviceSmoke as runEntryAdviceSmokeFromWorkflowEntry,
|
|
20
|
+
runMethodologyRouteSmoke as runMethodologyRouteSmokeFromWorkflowEntry,
|
|
21
|
+
} from './release-check-workflow-entry-suite.mjs';
|
|
22
|
+
|
|
23
|
+
export function releaseCheckWorkflowGovernanceSmokeHandlers({ repoRoot, tmpRoot, run, parseJsonOutput, assertJsonMarkers, digestObject }) {
|
|
24
|
+
function runPlannerSmoke(options) {
|
|
25
|
+
const target = '.tmp/vibe-runtime-ledger';
|
|
26
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
27
|
+
const plannerInputFile = path.join(tmpRoot, 'planner-input.txt');
|
|
28
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
29
|
+
fs.mkdirSync(tmpRoot, { recursive: true });
|
|
30
|
+
fs.mkdirSync(absoluteTarget, { recursive: true });
|
|
31
|
+
fs.writeFileSync(plannerInputFile, workflowPlannerInputText, 'utf8');
|
|
32
|
+
|
|
33
|
+
const routePreview = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'planner', '--route', '--from-file', plannerInputFile, '--json', '--root', target], {}, options), 'planner --route --json');
|
|
34
|
+
assertJsonMarkers(plannerRoutePreviewJsonMarkers(routePreview), 'planner --route --json');
|
|
35
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state', 'planner-routes'))) throw new Error('planner route preview created unexpected planner-routes directory');
|
|
36
|
+
|
|
37
|
+
const routeConfirm = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'planner', '--route', '--from-file', plannerInputFile, '--confirm', '--json', '--root', target], {}, options), 'planner --route --confirm --json');
|
|
38
|
+
const routeFile = routeConfirm.planner_route_file;
|
|
39
|
+
assertJsonMarkers(plannerRouteConfirmJsonMarkers(routeConfirm), 'planner --route --confirm --json');
|
|
40
|
+
if (!routeFile || !fs.existsSync(path.join(absoluteTarget, '.vibecoding-state', 'planner-routes', routeFile))) throw new Error('planner route confirm did not write route artifact');
|
|
41
|
+
|
|
42
|
+
const planConfirm = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'planner', '--decompose', '--from-route', routeFile, '--confirm', '--json', '--root', target], {}, options), 'planner --decompose --confirm --json');
|
|
43
|
+
const planFile = planConfirm.planner_plan_file;
|
|
44
|
+
assertJsonMarkers(plannerPlanConfirmJsonMarkers(planConfirm), 'planner --decompose --confirm --json');
|
|
45
|
+
if (!planFile || !fs.existsSync(path.join(absoluteTarget, '.vibecoding-state', 'planner-plans', planFile))) throw new Error('planner decompose confirm did not write plan artifact');
|
|
46
|
+
|
|
47
|
+
const briefsConfirm = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'planner', '--briefs', '--from-plan', planFile, '--confirm', '--json', '--root', target], {}, options), 'planner --briefs --confirm --json');
|
|
48
|
+
const briefsFile = briefsConfirm.planner_briefs_file;
|
|
49
|
+
assertJsonMarkers(plannerBriefsConfirmJsonMarkers(briefsConfirm), 'planner --briefs --confirm --json');
|
|
50
|
+
if (!briefsFile || !fs.existsSync(path.join(absoluteTarget, '.vibecoding-state', 'planner-briefs', briefsFile))) throw new Error('planner briefs confirm did not write briefs artifact');
|
|
51
|
+
|
|
52
|
+
const plannerVerify = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'planner', '--verify', briefsFile, '--json', '--root', target], {}, options), 'planner --verify briefs --json');
|
|
53
|
+
assertJsonMarkers(plannerVerifyJsonMarkers(plannerVerify), 'planner --verify briefs --json');
|
|
54
|
+
|
|
55
|
+
const badPlannerPlanPath = path.join(absoluteTarget, '.vibecoding-state', 'planner-plans', 'bad-digest.planner-plan.json');
|
|
56
|
+
const badPlannerPlan = JSON.parse(fs.readFileSync(path.join(absoluteTarget, '.vibecoding-state', 'planner-plans', planFile), 'utf8'));
|
|
57
|
+
badPlannerPlan.planner_plan.route_digest = '9'.repeat(64);
|
|
58
|
+
delete badPlannerPlan.planner_plan.plan_digest;
|
|
59
|
+
badPlannerPlan.planner_plan.plan_digest = digestObject(badPlannerPlan.planner_plan);
|
|
60
|
+
fs.writeFileSync(badPlannerPlanPath, `${JSON.stringify(badPlannerPlan, null, 2)}\n`, 'utf8');
|
|
61
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'planner', '--verify', 'bad-digest.planner-plan.json', '--root', target], {
|
|
62
|
+
allowFailure: true,
|
|
63
|
+
expectOutput: ['planner verification failed:', 'planner route digest mismatch'],
|
|
64
|
+
}, options);
|
|
65
|
+
fs.rmSync(badPlannerPlanPath, { force: true });
|
|
66
|
+
|
|
67
|
+
const plannerTrace = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'traces', '--build', '--confirm', '--json', '--root', target], {}, options), 'traces --build planner --confirm --json');
|
|
68
|
+
const plannerTraceTypes = plannerTrace.runtime_trace?.source_types || {};
|
|
69
|
+
if (!plannerTraceTypes.planner_routes || !plannerTraceTypes.planner_plans || !plannerTraceTypes.planner_briefs) throw new Error('planner trace did not include Stage 49 source types');
|
|
70
|
+
if (!options.keepTmp) fs.rmSync(plannerInputFile, { force: true });
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function runPrReadinessSmoke(options) {
|
|
74
|
+
const target = '.tmp/vibe-pr-readiness-preview';
|
|
75
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
76
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
77
|
+
|
|
78
|
+
try {
|
|
79
|
+
fs.mkdirSync(absoluteTarget, { recursive: true });
|
|
80
|
+
for (const entry of ['AGENTS.md', 'skills', 'fork']) {
|
|
81
|
+
const source = path.join(repoRoot, entry);
|
|
82
|
+
const destination = path.join(absoluteTarget, entry);
|
|
83
|
+
if (fs.existsSync(source)) fs.cpSync(source, destination, { recursive: true });
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
const preview = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--pr-readiness', '--preview', '--json', '--root', target], {}, options), 'governance --pr-readiness --preview --json');
|
|
87
|
+
assertJsonMarkers(prReadinessPreviewJsonMarkers(preview), 'governance --pr-readiness --preview --json');
|
|
88
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('PR readiness preview created unexpected state directory');
|
|
89
|
+
|
|
90
|
+
const confirmed = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--pr-readiness', '--confirm', '--json', '--root', target], {}, options), 'governance --pr-readiness --confirm --json');
|
|
91
|
+
const governanceFile = confirmed.governance_file;
|
|
92
|
+
if (!governanceFile || !governanceFile.endsWith('.pr-readiness-governance.json')) throw new Error('PR readiness confirm did not return a PR readiness sidecar file');
|
|
93
|
+
const sidecarPath = path.join(absoluteTarget, '.vibecoding-state', 'governance', governanceFile);
|
|
94
|
+
if (!fs.existsSync(sidecarPath)) throw new Error('PR readiness confirm did not write governance sidecar');
|
|
95
|
+
const verified = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--verify', governanceFile, '--json', '--root', target], {}, options), 'governance --verify pr-readiness --json');
|
|
96
|
+
assertJsonMarkers(prReadinessVerifyJsonMarkers(verified), 'governance --verify pr-readiness --json');
|
|
97
|
+
|
|
98
|
+
const badSidecar = JSON.parse(fs.readFileSync(sidecarPath, 'utf8'));
|
|
99
|
+
badSidecar.pr_readiness.evidence_files[0].path = '../AGENTS.md';
|
|
100
|
+
const digestPayload = { ...badSidecar.pr_readiness };
|
|
101
|
+
delete digestPayload.writes;
|
|
102
|
+
delete digestPayload.pr_readiness_digest;
|
|
103
|
+
badSidecar.pr_readiness.pr_readiness_digest = digestObject(digestPayload);
|
|
104
|
+
const badSidecarPath = path.join(absoluteTarget, '.vibecoding-state', 'governance', 'bad-path.pr-readiness-governance.json');
|
|
105
|
+
fs.writeFileSync(badSidecarPath, `${JSON.stringify(badSidecar, null, 2)}\n`, 'utf8');
|
|
106
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--verify', 'bad-path.pr-readiness-governance.json', '--root', target], {
|
|
107
|
+
allowFailure: true,
|
|
108
|
+
expectOutput: ['governance artifact verification failed:', 'pr_readiness.evidence_files[].path must not include traversal'],
|
|
109
|
+
}, options);
|
|
110
|
+
} finally {
|
|
111
|
+
if (!options.keepTmp) fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
function runPrReviewIntakeSmoke(options) {
|
|
116
|
+
const target = '.tmp/vibe-pr-review-intake';
|
|
117
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
118
|
+
const evidenceDirectory = path.join(absoluteTarget, 'evidence');
|
|
119
|
+
const evidenceFile = path.join(evidenceDirectory, 'pr-review-ci.json');
|
|
120
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
121
|
+
|
|
122
|
+
try {
|
|
123
|
+
fs.mkdirSync(evidenceDirectory, { recursive: true });
|
|
124
|
+
fs.writeFileSync(evidenceFile, prReviewIntakeEvidenceText, 'utf8');
|
|
125
|
+
|
|
126
|
+
const preview = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--pr-review-intake', '--from-file', evidenceFile, '--preview', '--json', '--root', target], {}, options), 'governance --pr-review-intake --preview --json');
|
|
127
|
+
assertJsonMarkers(prReviewIntakePreviewJsonMarkers(preview), 'governance --pr-review-intake --preview --json');
|
|
128
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('PR review intake preview created unexpected state directory');
|
|
129
|
+
|
|
130
|
+
const confirmed = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--pr-review-intake', '--from-file', evidenceFile, '--confirm', '--json', '--root', target], {}, options), 'governance --pr-review-intake --confirm --json');
|
|
131
|
+
const governanceFile = confirmed.governance_file;
|
|
132
|
+
if (!governanceFile || !governanceFile.endsWith('.pr-review-intake-governance.json')) throw new Error('PR review intake confirm did not return a PR review intake sidecar file');
|
|
133
|
+
const sidecarPath = path.join(absoluteTarget, '.vibecoding-state', 'governance', governanceFile);
|
|
134
|
+
if (!fs.existsSync(sidecarPath)) throw new Error('PR review intake confirm did not write governance sidecar');
|
|
135
|
+
|
|
136
|
+
const listed = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--list', '--json', '--root', target], {}, options), 'governance --list pr-review-intake --json');
|
|
137
|
+
if (!listed.attestations?.some((item) => item.file === governanceFile && item.kind === 'pr-review-intake-governance')) throw new Error('PR review intake sidecar is missing from governance list');
|
|
138
|
+
|
|
139
|
+
const verified = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--verify', governanceFile, '--json', '--root', target], {}, options), 'governance --verify pr-review-intake --json');
|
|
140
|
+
assertJsonMarkers(prReviewIntakeVerifyJsonMarkers(verified), 'governance --verify pr-review-intake --json');
|
|
141
|
+
|
|
142
|
+
const badPathSidecar = JSON.parse(fs.readFileSync(sidecarPath, 'utf8'));
|
|
143
|
+
badPathSidecar.pr_review_intake.input_evidence_file = '../evidence/pr-review-ci.json';
|
|
144
|
+
const badPathDigestPayload = { ...badPathSidecar.pr_review_intake };
|
|
145
|
+
delete badPathDigestPayload.writes;
|
|
146
|
+
delete badPathDigestPayload.pr_review_intake_digest;
|
|
147
|
+
badPathSidecar.pr_review_intake.pr_review_intake_digest = digestObject(badPathDigestPayload);
|
|
148
|
+
const badPathSidecarPath = path.join(absoluteTarget, '.vibecoding-state', 'governance', 'bad-path.pr-review-intake-governance.json');
|
|
149
|
+
fs.writeFileSync(badPathSidecarPath, `${JSON.stringify(badPathSidecar, null, 2)}\n`, 'utf8');
|
|
150
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--verify', 'bad-path.pr-review-intake-governance.json', '--root', target], {
|
|
151
|
+
allowFailure: true,
|
|
152
|
+
expectOutput: ['governance artifact verification failed:', 'pr_review_intake.input_evidence_file must not include traversal'],
|
|
153
|
+
}, options);
|
|
154
|
+
|
|
155
|
+
const badDigestSidecar = JSON.parse(fs.readFileSync(sidecarPath, 'utf8'));
|
|
156
|
+
badDigestSidecar.pr_review_intake.input_evidence_digest = '0'.repeat(64);
|
|
157
|
+
const badDigestPayload = { ...badDigestSidecar.pr_review_intake };
|
|
158
|
+
delete badDigestPayload.writes;
|
|
159
|
+
delete badDigestPayload.pr_review_intake_digest;
|
|
160
|
+
badDigestSidecar.pr_review_intake.pr_review_intake_digest = digestObject(badDigestPayload);
|
|
161
|
+
const badDigestSidecarPath = path.join(absoluteTarget, '.vibecoding-state', 'governance', 'bad-digest.pr-review-intake-governance.json');
|
|
162
|
+
fs.writeFileSync(badDigestSidecarPath, `${JSON.stringify(badDigestSidecar, null, 2)}\n`, 'utf8');
|
|
163
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--verify', 'bad-digest.pr-review-intake-governance.json', '--root', target], {
|
|
164
|
+
allowFailure: true,
|
|
165
|
+
expectOutput: ['governance artifact verification failed:', 'input evidence digest mismatch'],
|
|
166
|
+
}, options);
|
|
167
|
+
} finally {
|
|
168
|
+
if (!options.keepTmp) fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
function runConvergenceSmoke(options) {
|
|
173
|
+
const target = '.tmp/vibe-convergence-report';
|
|
174
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
175
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
176
|
+
|
|
177
|
+
try {
|
|
178
|
+
fs.mkdirSync(absoluteTarget, { recursive: true });
|
|
179
|
+
const report = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--convergence', '--report', '--json', '--root', target], {}, options), 'governance --convergence --report --json');
|
|
180
|
+
assertJsonMarkers([
|
|
181
|
+
['command', report.command, 'governance'],
|
|
182
|
+
['mode', report.mode, 'governance-convergence-report'],
|
|
183
|
+
['convergence.stage', report.convergence?.stage, 'Stage 59'],
|
|
184
|
+
['convergence.report_kind', report.convergence?.report_kind, 'capability-convergence-gap-report'],
|
|
185
|
+
['convergence.writes', report.convergence?.writes, false],
|
|
186
|
+
['convergence.state_directory_created', report.convergence?.state_directory_created, false],
|
|
187
|
+
['safety.writes', report.safety?.writes, false],
|
|
188
|
+
['safety.convergence_report', report.safety?.convergence_report, true],
|
|
189
|
+
['safety.skill_mutation', report.safety?.skill_mutation, false],
|
|
190
|
+
['safety.hook_registration', report.safety?.hook_registration, false],
|
|
191
|
+
['safety.shell_interception', report.safety?.shell_interception, false],
|
|
192
|
+
['safety.external_network', report.safety?.external_network, false],
|
|
193
|
+
['safety.model_invocation', report.safety?.model_invocation, false],
|
|
194
|
+
['safety.platform_api', report.safety?.platform_api, false],
|
|
195
|
+
['safety.runtime_action', report.safety?.runtime_action, false],
|
|
196
|
+
['safety.git', report.safety?.git, false],
|
|
197
|
+
['safety.worktree', report.safety?.worktree, false],
|
|
198
|
+
], 'governance --convergence --report --json');
|
|
199
|
+
const dimensions = report.convergence?.dimensions || [];
|
|
200
|
+
for (const id of ['workflow-experience', 'learning-model', 'deterministic-token-economy', 'stream-distillation', 'runtime-governance']) {
|
|
201
|
+
if (!dimensions.some((item) => item.id === id)) throw new Error(`convergence report missing dimension: ${id}`);
|
|
202
|
+
}
|
|
203
|
+
if (!report.convergence?.convergence_digest) throw new Error('convergence report missing convergence_digest');
|
|
204
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('convergence report created unexpected state directory');
|
|
205
|
+
|
|
206
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--convergence', '--json', '--root', target], {
|
|
207
|
+
allowFailure: true,
|
|
208
|
+
expectOutput: ['governance --convergence requires --report'],
|
|
209
|
+
}, options);
|
|
210
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--convergence', '--report', '--confirm', '--root', target], {
|
|
211
|
+
allowFailure: true,
|
|
212
|
+
expectOutput: ['governance convergence report is read-only'],
|
|
213
|
+
}, options);
|
|
214
|
+
} finally {
|
|
215
|
+
if (!options.keepTmp) fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
function runGovernanceAdviceSmoke(options) {
|
|
220
|
+
const target = '.tmp/vibe-governance-advice';
|
|
221
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
222
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
223
|
+
|
|
224
|
+
try {
|
|
225
|
+
fs.mkdirSync(absoluteTarget, { recursive: true });
|
|
226
|
+
const advice = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--advice', '--intent', 'closeout', '--json', '--root', target], {}, options), 'governance --advice --intent closeout --json');
|
|
227
|
+
assertJsonMarkers([
|
|
228
|
+
['command', advice.command, 'governance'],
|
|
229
|
+
['mode', advice.mode, 'runtime-governance-advice'],
|
|
230
|
+
['governance_advice.stage', advice.governance_advice?.stage, 'Stage 81'],
|
|
231
|
+
['governance_advice.advice_kind', advice.governance_advice?.advice_kind, 'runtime-governance-advice'],
|
|
232
|
+
['governance_advice.intent', advice.governance_advice?.intent, 'closeout'],
|
|
233
|
+
['governance_advice.recommended_next_governance_step', advice.governance_advice?.recommended_next_governance_step, 'read-only-closeout-scan'],
|
|
234
|
+
['governance_advice.writes', advice.governance_advice?.writes, false],
|
|
235
|
+
['governance_advice.state_directory_created', advice.governance_advice?.state_directory_created, false],
|
|
236
|
+
['governance_advice.closeout_boundary.automatic_pr', advice.governance_advice?.closeout_boundary?.automatic_pr, false],
|
|
237
|
+
['governance_advice.closeout_boundary.automatic_merge', advice.governance_advice?.closeout_boundary?.automatic_merge, false],
|
|
238
|
+
['safety.writes', advice.safety?.writes, false],
|
|
239
|
+
['safety.governance_advice_artifact', advice.safety?.governance_advice_artifact, false],
|
|
240
|
+
['safety.sidecar_write', advice.safety?.sidecar_write, false],
|
|
241
|
+
['safety.release_gate_write', advice.safety?.release_gate_write, false],
|
|
242
|
+
['safety.pr', advice.safety?.pr, false],
|
|
243
|
+
['safety.push', advice.safety?.push, false],
|
|
244
|
+
['safety.merge', advice.safety?.merge, false],
|
|
245
|
+
['safety.platform_api', advice.safety?.platform_api, false],
|
|
246
|
+
['safety.external_network', advice.safety?.external_network, false],
|
|
247
|
+
['safety.git', advice.safety?.git, false],
|
|
248
|
+
['safety.worktree', advice.safety?.worktree, false],
|
|
249
|
+
], 'governance --advice --intent closeout --json');
|
|
250
|
+
if (!advice.governance_advice?.advice_digest) throw new Error('governance advice missing advice_digest');
|
|
251
|
+
if (!advice.governance_advice?.recommended_command?.includes('governance --convergence --report')) throw new Error('governance closeout advice missing convergence command');
|
|
252
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('governance advice JSON output created unexpected state directory');
|
|
253
|
+
|
|
254
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--advice', '--intent', 'review', '--root', target], {
|
|
255
|
+
expectOutput: ['Vibecoding Runtime Governance Advice', 'Intent: review', 'Next step: manual-review-intake-boundary', 'Boundary: pr=false; push=false; merge=false; platform_api=false; git=false; worktree=false'],
|
|
256
|
+
}, options);
|
|
257
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('governance advice text output created unexpected state directory');
|
|
258
|
+
|
|
259
|
+
const unknown = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--advice', '--intent', 'unknown-kind', '--json', '--root', target], {}, options), 'governance --advice --intent unknown-kind --json');
|
|
260
|
+
assertJsonMarkers([
|
|
261
|
+
['governance_advice.intent', unknown.governance_advice?.intent, 'unknown'],
|
|
262
|
+
['governance_advice.recommended_next_governance_step', unknown.governance_advice?.recommended_next_governance_step, 'read-only-closeout-scan'],
|
|
263
|
+
], 'governance --advice --intent unknown-kind --json');
|
|
264
|
+
if (!unknown.quality?.some((item) => item.includes('unknown governance advice intent'))) throw new Error('governance advice unknown intent did not report quality marker');
|
|
265
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('governance advice unknown fallback created unexpected state directory');
|
|
266
|
+
|
|
267
|
+
for (const forbidden of ['--confirm', '--preview', '--write', '--preflight', '--dispatch', '--dispatch-intent', '--run', '--once', '--scan']) {
|
|
268
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--advice', '--intent', 'closeout', forbidden, '--root', target], {
|
|
269
|
+
allowFailure: true,
|
|
270
|
+
expectOutput: forbidden === '--once' || forbidden === '--scan' || forbidden === '--run' || forbidden === '--write'
|
|
271
|
+
? ['governance --advice is read-only']
|
|
272
|
+
: ['governance --advice is read-only'],
|
|
273
|
+
}, options);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--advice', '--intent', 'closeout', '--pr-readiness', '--root', target], {
|
|
277
|
+
allowFailure: true,
|
|
278
|
+
expectOutput: ['governance requires exactly one of'],
|
|
279
|
+
}, options);
|
|
280
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--advice', '--intent', 'closeout', '--convergence', '--report', '--root', target], {
|
|
281
|
+
allowFailure: true,
|
|
282
|
+
expectOutput: ['governance requires exactly one of'],
|
|
283
|
+
}, options);
|
|
284
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'governance', '--advice', '--intent', 'closeout', '--from-file', 'evidence.json', '--root', target], {
|
|
285
|
+
allowFailure: true,
|
|
286
|
+
expectOutput: ['governance --advice does not accept --report, --from-file, or --from-readiness'],
|
|
287
|
+
}, options);
|
|
288
|
+
} finally {
|
|
289
|
+
if (!options.keepTmp) fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
function runUnifiedAdviceSmoke(options) {
|
|
294
|
+
const target = '.tmp/vibe-unified-advice';
|
|
295
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
296
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
297
|
+
|
|
298
|
+
try {
|
|
299
|
+
fs.mkdirSync(absoluteTarget, { recursive: true });
|
|
300
|
+
const advice = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'advice', '--hub', '--intent', 'feature', '--json', '--root', target], {}, options), 'advice --hub --intent feature --json');
|
|
301
|
+
assertJsonMarkers([
|
|
302
|
+
['command', advice.command, 'advice'],
|
|
303
|
+
['mode', advice.mode, 'unified-runtime-advice-hub'],
|
|
304
|
+
['advice_hub.stage', advice.advice_hub?.stage, 'Stage 83'],
|
|
305
|
+
['advice_hub.advice_kind', advice.advice_hub?.advice_kind, 'unified-runtime-advice-hub'],
|
|
306
|
+
['advice_hub.normalized_intent', advice.advice_hub?.normalized_intent, 'feature'],
|
|
307
|
+
['advice_hub.primary_lane', advice.advice_hub?.primary_lane, 'entry'],
|
|
308
|
+
['advice_hub.writes', advice.advice_hub?.writes, false],
|
|
309
|
+
['advice_hub.state_directory_created', advice.advice_hub?.state_directory_created, false],
|
|
310
|
+
['advice_hub.lane_recommendations.entry.stage', advice.advice_hub?.lane_recommendations?.entry?.stage, 'Stage 78'],
|
|
311
|
+
['advice_hub.lane_recommendations.tokens.stage', advice.advice_hub?.lane_recommendations?.tokens?.stage, 'Stage 79'],
|
|
312
|
+
['advice_hub.lane_recommendations.learning.stage', advice.advice_hub?.lane_recommendations?.learning?.stage, 'Stage 80'],
|
|
313
|
+
['advice_hub.lane_recommendations.governance.stage', advice.advice_hub?.lane_recommendations?.governance?.stage, 'Stage 81'],
|
|
314
|
+
['safety.writes', advice.safety?.writes, false],
|
|
315
|
+
['safety.advice_hub_artifact', advice.safety?.advice_hub_artifact, false],
|
|
316
|
+
['safety.sidecar_write', advice.safety?.sidecar_write, false],
|
|
317
|
+
['safety.command_execution', advice.safety?.command_execution, false],
|
|
318
|
+
['safety.pr', advice.safety?.pr, false],
|
|
319
|
+
['safety.push', advice.safety?.push, false],
|
|
320
|
+
['safety.merge', advice.safety?.merge, false],
|
|
321
|
+
['safety.platform_api', advice.safety?.platform_api, false],
|
|
322
|
+
['safety.external_network', advice.safety?.external_network, false],
|
|
323
|
+
['safety.git', advice.safety?.git, false],
|
|
324
|
+
['safety.worktree', advice.safety?.worktree, false],
|
|
325
|
+
], 'advice --hub --intent feature --json');
|
|
326
|
+
if (!advice.advice_hub?.advice_digest) throw new Error('unified advice hub missing advice_digest');
|
|
327
|
+
if (!advice.advice_hub?.lane_digests?.entry || !advice.advice_hub?.lane_digests?.governance) throw new Error('unified advice hub missing lane digests');
|
|
328
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('unified advice hub JSON output created unexpected state directory');
|
|
329
|
+
|
|
330
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'advice', '--hub', '--intent', 'review', '--root', target], {
|
|
331
|
+
expectOutput: ['Vibecoding Runtime Advice Hub', 'Primary lane: governance', 'Boundary: writes=false; command_execution=false; pr=false; push=false; merge=false; platform_api=false; git=false; worktree=false'],
|
|
332
|
+
}, options);
|
|
333
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('unified advice hub text output created unexpected state directory');
|
|
334
|
+
|
|
335
|
+
const unknown = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'advice', '--hub', '--intent', 'unknown-kind', '--json', '--root', target], {}, options), 'advice --hub --intent unknown-kind --json');
|
|
336
|
+
assertJsonMarkers([
|
|
337
|
+
['advice_hub.normalized_intent', unknown.advice_hub?.normalized_intent, 'unknown'],
|
|
338
|
+
['advice_hub.primary_lane', unknown.advice_hub?.primary_lane, 'entry'],
|
|
339
|
+
['advice_hub.lane_recommendations.governance.intent', unknown.advice_hub?.lane_recommendations?.governance?.intent, 'unknown'],
|
|
340
|
+
], 'advice --hub --intent unknown-kind --json');
|
|
341
|
+
if (!unknown.quality?.some((item) => item.includes('unknown unified advice intent'))) throw new Error('unified advice hub unknown intent did not report quality marker');
|
|
342
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('unified advice hub unknown fallback created unexpected state directory');
|
|
343
|
+
|
|
344
|
+
for (const forbidden of ['--confirm', '--preview', '--write', '--preflight', '--dispatch', '--dispatch-intent', '--run', '--once', '--scan']) {
|
|
345
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'advice', '--hub', '--intent', 'feature', forbidden, '--root', target], {
|
|
346
|
+
allowFailure: true,
|
|
347
|
+
expectOutput: ['advice --hub is read-only'],
|
|
348
|
+
}, options);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'advice', '--intent', 'feature', '--root', target], {
|
|
352
|
+
allowFailure: true,
|
|
353
|
+
expectOutput: ['advice requires exactly one mode: --hub'],
|
|
354
|
+
}, options);
|
|
355
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'advice', '--hub', '--intent', 'feature', '--from-file', 'docs/runtime-roadmap.md', '--root', target], {
|
|
356
|
+
allowFailure: true,
|
|
357
|
+
expectOutput: ['advice --hub does not accept concrete evidence or sidecar input files'],
|
|
358
|
+
}, options);
|
|
359
|
+
} finally {
|
|
360
|
+
if (!options.keepTmp) fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
function runWorkflowReadinessSmoke(options) {
|
|
365
|
+
const target = '.tmp/vibe-workflow-readiness';
|
|
366
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
367
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
368
|
+
|
|
369
|
+
try {
|
|
370
|
+
fs.mkdirSync(absoluteTarget, { recursive: true });
|
|
371
|
+
const readiness = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'methodology', '--readiness', '--intent', 'implementation', '--json', '--root', target], {}, options), 'methodology --readiness --intent implementation --json');
|
|
372
|
+
assertJsonMarkers([
|
|
373
|
+
['command', readiness.command, 'methodology'],
|
|
374
|
+
['mode', readiness.mode, 'workflow-readiness-gate'],
|
|
375
|
+
['workflow_readiness.stage', readiness.workflow_readiness?.stage, 'Stage 85'],
|
|
376
|
+
['workflow_readiness.readiness_kind', readiness.workflow_readiness?.readiness_kind, 'workflow-readiness-gate'],
|
|
377
|
+
['workflow_readiness.normalized_intent', readiness.workflow_readiness?.normalized_intent, 'implementation'],
|
|
378
|
+
['workflow_readiness.route_summary.stage', readiness.workflow_readiness?.route_summary?.stage, 'Stage 60'],
|
|
379
|
+
['workflow_readiness.route_summary.first_skill', readiness.workflow_readiness?.route_summary?.first_skill, 'vibe-test-driven-development'],
|
|
380
|
+
['workflow_readiness.required_gate_kinds.0', readiness.workflow_readiness?.required_gate_kinds?.[0], 'tdd'],
|
|
381
|
+
['workflow_readiness.required_gate_kinds.1', readiness.workflow_readiness?.required_gate_kinds?.[1], 'completion'],
|
|
382
|
+
['workflow_readiness.gate_previews.0.kind', readiness.workflow_readiness?.gate_previews?.[0]?.kind, 'tdd'],
|
|
383
|
+
['workflow_readiness.gate_previews.0.writes', readiness.workflow_readiness?.gate_previews?.[0]?.writes, false],
|
|
384
|
+
['workflow_readiness.gate_previews.0.methodology_gate_artifact', readiness.workflow_readiness?.gate_previews?.[0]?.methodology_gate_artifact, false],
|
|
385
|
+
['workflow_readiness.runtime_readiness_summary.stage', readiness.workflow_readiness?.runtime_readiness_summary?.stage, 'Stage 30'],
|
|
386
|
+
['workflow_readiness.runtime_readiness_summary.writes', readiness.workflow_readiness?.runtime_readiness_summary?.writes, false],
|
|
387
|
+
['workflow_readiness.advice_hub_summary.stage', readiness.workflow_readiness?.advice_hub_summary?.stage, 'Stage 83'],
|
|
388
|
+
['workflow_readiness.ready_to_start', readiness.workflow_readiness?.ready_to_start, false],
|
|
389
|
+
['workflow_readiness.writes', readiness.workflow_readiness?.writes, false],
|
|
390
|
+
['workflow_readiness.state_directory_created', readiness.workflow_readiness?.state_directory_created, false],
|
|
391
|
+
['workflow_readiness.boundary_assertions.workflow_readiness_artifact', readiness.workflow_readiness?.boundary_assertions?.workflow_readiness_artifact, false],
|
|
392
|
+
['workflow_readiness.boundary_assertions.methodology_gate_write', readiness.workflow_readiness?.boundary_assertions?.methodology_gate_write, false],
|
|
393
|
+
['workflow_readiness.boundary_assertions.command_execution', readiness.workflow_readiness?.boundary_assertions?.command_execution, false],
|
|
394
|
+
['workflow_readiness.boundary_assertions.runtime_action', readiness.workflow_readiness?.boundary_assertions?.runtime_action, false],
|
|
395
|
+
['workflow_readiness.boundary_assertions.pr', readiness.workflow_readiness?.boundary_assertions?.pr, false],
|
|
396
|
+
['workflow_readiness.boundary_assertions.push', readiness.workflow_readiness?.boundary_assertions?.push, false],
|
|
397
|
+
['workflow_readiness.boundary_assertions.merge', readiness.workflow_readiness?.boundary_assertions?.merge, false],
|
|
398
|
+
['workflow_readiness.boundary_assertions.platform_api', readiness.workflow_readiness?.boundary_assertions?.platform_api, false],
|
|
399
|
+
['safety.stage', readiness.safety?.stage, 'Stage 85'],
|
|
400
|
+
['safety.writes', readiness.safety?.writes, false],
|
|
401
|
+
['safety.workflow_readiness_artifact', readiness.safety?.workflow_readiness_artifact, false],
|
|
402
|
+
['safety.methodology_gate_write', readiness.safety?.methodology_gate_write, false],
|
|
403
|
+
['safety.command_execution', readiness.safety?.command_execution, false],
|
|
404
|
+
['safety.runtime_action', readiness.safety?.runtime_action, false],
|
|
405
|
+
['safety.git', readiness.safety?.git, false],
|
|
406
|
+
['safety.worktree', readiness.safety?.worktree, false],
|
|
407
|
+
], 'methodology --readiness --intent implementation --json');
|
|
408
|
+
if (!readiness.workflow_readiness?.readiness_digest) throw new Error('workflow readiness missing readiness_digest');
|
|
409
|
+
if (!readiness.workflow_readiness?.blocked_reasons?.some((reason) => reason.includes('tdd:'))) throw new Error('workflow readiness implementation did not expose blocked tdd reasons');
|
|
410
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('workflow readiness JSON output created unexpected state directory');
|
|
411
|
+
|
|
412
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'methodology', '--readiness', '--intent', 'review', '--root', target], {
|
|
413
|
+
expectOutput: ['Vibecoding Runtime Workflow Readiness', 'Intent: review', 'Required gates: review', 'Boundary: writes=false; workflow_readiness_artifact=false; methodology_gate_write=false'],
|
|
414
|
+
}, options);
|
|
415
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('workflow readiness text output created unexpected state directory');
|
|
416
|
+
|
|
417
|
+
const unknown = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'methodology', '--readiness', '--intent', 'unknown-kind', '--json', '--root', target], {}, options), 'methodology --readiness --intent unknown-kind --json');
|
|
418
|
+
assertJsonMarkers([
|
|
419
|
+
['workflow_readiness.normalized_intent', unknown.workflow_readiness?.normalized_intent, 'unknown'],
|
|
420
|
+
['workflow_readiness.ready_to_start', unknown.workflow_readiness?.ready_to_start, false],
|
|
421
|
+
['workflow_readiness.required_gate_kinds.length', unknown.workflow_readiness?.required_gate_kinds?.length, 0],
|
|
422
|
+
['workflow_readiness.route_summary.first_skill', unknown.workflow_readiness?.route_summary?.first_skill, 'using-vibecoding'],
|
|
423
|
+
], 'methodology --readiness --intent unknown-kind --json');
|
|
424
|
+
if (!unknown.workflow_readiness?.blocked_reasons?.some((reason) => reason.includes('unknown workflow readiness intent'))) throw new Error('workflow readiness unknown fallback did not report clarification blocker');
|
|
425
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('workflow readiness unknown fallback created unexpected state directory');
|
|
426
|
+
|
|
427
|
+
for (const forbidden of ['--confirm', '--preview', '--write', '--preflight', '--dispatch', '--dispatch-intent', '--run', '--once', '--scan']) {
|
|
428
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'methodology', '--readiness', '--intent', 'review', forbidden, '--root', target], {
|
|
429
|
+
allowFailure: true,
|
|
430
|
+
expectOutput: forbidden === '--write' || forbidden === '--once' || forbidden === '--scan' || forbidden === '--run' || forbidden === '--preflight' || forbidden === '--dispatch' || forbidden === '--dispatch-intent'
|
|
431
|
+
? ['methodology supports catalog, route, readiness, gate, and read-only audit only']
|
|
432
|
+
: ['methodology --readiness is read-only'],
|
|
433
|
+
}, options);
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'methodology', '--readiness', '--intent', 'review', '--from-file', 'docs/runtime-roadmap.md', '--root', target], {
|
|
437
|
+
allowFailure: true,
|
|
438
|
+
expectOutput: ['methodology --readiness does not accept concrete evidence, gate, or audit input files'],
|
|
439
|
+
}, options);
|
|
440
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'methodology', '--readiness', '--route', '--intent', 'review', '--root', target], {
|
|
441
|
+
allowFailure: true,
|
|
442
|
+
expectOutput: ['methodology requires exactly one of --catalog, --route, --readiness, --gate, --list, --show, or --verify'],
|
|
443
|
+
}, options);
|
|
444
|
+
} finally {
|
|
445
|
+
if (!options.keepTmp) fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
function runPlanLintSmoke(options) {
|
|
450
|
+
const target = '.tmp/vibe-plan-lint';
|
|
451
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
452
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
453
|
+
|
|
454
|
+
try {
|
|
455
|
+
fs.mkdirSync(absoluteTarget, { recursive: true });
|
|
456
|
+
const goodPlan = path.join(absoluteTarget, 'good-plan.md');
|
|
457
|
+
const badPlan = path.join(absoluteTarget, 'bad-plan.md');
|
|
458
|
+
fs.writeFileSync(goodPlan, [
|
|
459
|
+
'# Stage smoke plan',
|
|
460
|
+
'',
|
|
461
|
+
'## Stage 1 Task',
|
|
462
|
+
'- [ ] update `tools/vibe-runtime/index.mjs`',
|
|
463
|
+
'- [ ] update tools/vibe-runtime/README.md',
|
|
464
|
+
'',
|
|
465
|
+
'Interfaces: output `plan_lint` envelope fields and data flow boundaries.',
|
|
466
|
+
'Verification: run node --check tools/vibe-runtime/index.mjs and runtime-check smoke.',
|
|
467
|
+
'Acceptance: expected pass when blockers are absent.',
|
|
468
|
+
'Review gate: run vibe-review before completion.',
|
|
469
|
+
'Dependencies: first plan, then implement, then verify.',
|
|
470
|
+
'Completion boundary: no git push, no PR, no external network, done only after verification.',
|
|
471
|
+
].join('\n'), 'utf8');
|
|
472
|
+
fs.writeFileSync(badPlan, '# TODO\n\nImplement later.\n', 'utf8');
|
|
473
|
+
|
|
474
|
+
const lint = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'planner', '--lint', '--from-file', `${target}/good-plan.md`, '--json', '--root', target], {}, options), 'planner --lint good plan --json');
|
|
475
|
+
assertJsonMarkers([
|
|
476
|
+
['command', lint.command, 'planner'],
|
|
477
|
+
['mode', lint.mode, 'plan-quality-lint'],
|
|
478
|
+
['plan_lint.stage', lint.plan_lint?.stage, 'Stage 86'],
|
|
479
|
+
['plan_lint.lint_kind', lint.plan_lint?.lint_kind, 'plan-quality-lint'],
|
|
480
|
+
['plan_lint.execution_ready', lint.plan_lint?.execution_ready, true],
|
|
481
|
+
['plan_lint.summary.blocker_count', lint.plan_lint?.summary?.blocker_count, 0],
|
|
482
|
+
['plan_lint.boundary_assertions.plan_lint_artifact', lint.plan_lint?.boundary_assertions?.plan_lint_artifact, false],
|
|
483
|
+
['plan_lint.boundary_assertions.command_execution', lint.plan_lint?.boundary_assertions?.command_execution, false],
|
|
484
|
+
['safety.stage', lint.safety?.stage, 'Stage 86'],
|
|
485
|
+
['safety.writes', lint.safety?.writes, false],
|
|
486
|
+
], 'planner --lint good plan --json');
|
|
487
|
+
if (!lint.plan_lint?.lint_digest) throw new Error('planner lint missing lint_digest');
|
|
488
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('planner lint JSON output created unexpected state directory');
|
|
489
|
+
|
|
490
|
+
const blocked = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'planner', '--lint', '--from-file', `${target}/bad-plan.md`, '--json', '--root', target], {}, options), 'planner --lint bad plan --json');
|
|
491
|
+
if (blocked.plan_lint?.execution_ready !== false || !blocked.plan_lint?.blocking_findings?.length) throw new Error('planner lint bad plan did not block');
|
|
492
|
+
|
|
493
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'planner', '--lint', '--from-file', `${target}/good-plan.md`, '--root', target], {
|
|
494
|
+
expectOutput: ['Vibecoding Runtime Plan Quality Lint', 'Stage: Stage 86; Ready: true', 'Boundary: writes=false; plan_lint_artifact=false'],
|
|
495
|
+
}, options);
|
|
496
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('planner lint text output created unexpected state directory');
|
|
497
|
+
|
|
498
|
+
for (const forbidden of ['--confirm', '--write', '--preflight', '--run']) {
|
|
499
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'planner', '--lint', '--from-file', `${target}/good-plan.md`, forbidden, '--root', target], {
|
|
500
|
+
allowFailure: true,
|
|
501
|
+
expectOutput: ['planner --lint is read-only'],
|
|
502
|
+
}, options);
|
|
503
|
+
}
|
|
504
|
+
} finally {
|
|
505
|
+
if (!options.keepTmp) fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
function runWorkflowCockpitSmoke(options) {
|
|
510
|
+
const target = '.tmp/vibe-workflow-cockpit';
|
|
511
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
512
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
513
|
+
|
|
514
|
+
try {
|
|
515
|
+
fs.mkdirSync(absoluteTarget, { recursive: true });
|
|
516
|
+
fs.writeFileSync(path.join(absoluteTarget, 'plan.md'), [
|
|
517
|
+
'# Cockpit plan',
|
|
518
|
+
'## Stage 1 Task',
|
|
519
|
+
'- [ ] update `tools/vibe-runtime/index.mjs`',
|
|
520
|
+
'Interfaces: output `workflow_cockpit` envelope fields.',
|
|
521
|
+
'Verification: run node --check tools/vibe-runtime/index.mjs.',
|
|
522
|
+
'Acceptance: expected pass for plan lint.',
|
|
523
|
+
'Review gate: vibe-review before completion.',
|
|
524
|
+
'Dependencies: plan before implementation.',
|
|
525
|
+
'Completion boundary: no push, no PR, no merge.',
|
|
526
|
+
].join('\n'), 'utf8');
|
|
527
|
+
|
|
528
|
+
const cockpit = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--cockpit', '--intent', 'implementation', '--from-file', `${target}/plan.md`, '--json', '--root', target], {}, options), 'workflow --cockpit --json');
|
|
529
|
+
assertJsonMarkers([
|
|
530
|
+
['command', cockpit.command, 'workflow'],
|
|
531
|
+
['mode', cockpit.mode, 'workflow-cockpit'],
|
|
532
|
+
['workflow_cockpit.stage', cockpit.workflow_cockpit?.stage, 'Stage 87'],
|
|
533
|
+
['workflow_cockpit.cockpit_kind', cockpit.workflow_cockpit?.cockpit_kind, 'workflow-cockpit'],
|
|
534
|
+
['workflow_cockpit.normalized_intent', cockpit.workflow_cockpit?.normalized_intent, 'implementation'],
|
|
535
|
+
['workflow_cockpit.route_summary.stage', cockpit.workflow_cockpit?.route_summary?.stage, 'Stage 60'],
|
|
536
|
+
['workflow_cockpit.readiness_summary.ready_to_start', cockpit.workflow_cockpit?.readiness_summary?.ready_to_start, false],
|
|
537
|
+
['workflow_cockpit.plan_lint_summary.status', cockpit.workflow_cockpit?.plan_lint_summary?.status, 'ready'],
|
|
538
|
+
['workflow_cockpit.boundary_assertions.workflow_cockpit_artifact', cockpit.workflow_cockpit?.boundary_assertions?.workflow_cockpit_artifact, false],
|
|
539
|
+
['workflow_cockpit.boundary_assertions.command_execution', cockpit.workflow_cockpit?.boundary_assertions?.command_execution, false],
|
|
540
|
+
['safety.stage', cockpit.safety?.stage, 'Stage 87'],
|
|
541
|
+
['safety.writes', cockpit.safety?.writes, false],
|
|
542
|
+
], 'workflow --cockpit --json');
|
|
543
|
+
if (!cockpit.workflow_cockpit?.cockpit_digest) throw new Error('workflow cockpit missing cockpit_digest');
|
|
544
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('workflow cockpit JSON output created unexpected state directory');
|
|
545
|
+
|
|
546
|
+
const unknown = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--cockpit', '--intent', 'unknown-kind', '--json', '--root', target], {}, options), 'workflow --cockpit unknown --json');
|
|
547
|
+
assertJsonMarkers([
|
|
548
|
+
['workflow_cockpit.normalized_intent', unknown.workflow_cockpit?.normalized_intent, 'unknown'],
|
|
549
|
+
['workflow_cockpit.current_phase', unknown.workflow_cockpit?.current_phase, 'clarify'],
|
|
550
|
+
['workflow_cockpit.plan_lint_summary.status', unknown.workflow_cockpit?.plan_lint_summary?.status, 'not_provided'],
|
|
551
|
+
], 'workflow --cockpit unknown --json');
|
|
552
|
+
|
|
553
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--cockpit', '--intent', 'review', '--root', target], {
|
|
554
|
+
expectOutput: ['Vibecoding Runtime Workflow Cockpit', 'Stage: Stage 87', 'Boundary: writes=false; workflow_cockpit_artifact=false'],
|
|
555
|
+
}, options);
|
|
556
|
+
|
|
557
|
+
for (const forbidden of ['--confirm', '--write', '--preflight', '--run']) {
|
|
558
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--cockpit', '--intent', 'review', forbidden, '--root', target], {
|
|
559
|
+
allowFailure: true,
|
|
560
|
+
expectOutput: ['workflow read-only modes do not accept'],
|
|
561
|
+
}, options);
|
|
562
|
+
}
|
|
563
|
+
} finally {
|
|
564
|
+
if (!options.keepTmp) fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
function runBootstrapAcceptanceSmoke(options) {
|
|
569
|
+
return runBootstrapAcceptanceSmokeFromWorkflowEntry(options);
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
function runMethodologyRouteSmoke(options) {
|
|
573
|
+
return runMethodologyRouteSmokeFromWorkflowEntry(options);
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
function runEntryAdviceSmoke(options) {
|
|
577
|
+
return runEntryAdviceSmokeFromWorkflowEntry(options);
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
function runCommitGuardSmoke(options) {
|
|
581
|
+
const target = '.tmp/vibe-commit-guard';
|
|
582
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
583
|
+
const evidenceDirectory = path.join(absoluteTarget, 'evidence');
|
|
584
|
+
const evidenceFile = path.join(evidenceDirectory, 'commit-subjects.txt');
|
|
585
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
586
|
+
|
|
587
|
+
try {
|
|
588
|
+
fs.mkdirSync(evidenceDirectory, { recursive: true });
|
|
589
|
+
fs.writeFileSync(evidenceFile, [
|
|
590
|
+
'cf2587c ``` feat(runtime): 添加 Stage 91-95 workflow 入口体验强化功能',
|
|
591
|
+
'3588a75 feat(runtime): 添加 Stage 78 入口建议命令',
|
|
592
|
+
'abc1234 update release hygiene without conventional prefix',
|
|
593
|
+
'',
|
|
594
|
+
].join('\n'), 'utf8');
|
|
595
|
+
|
|
596
|
+
const clean = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'release', '--commit-guard', '--subject', 'feat(runtime): add commit guard', '--json', '--root', target], {}, options), 'release --commit-guard --subject clean --json');
|
|
597
|
+
assertJsonMarkers([
|
|
598
|
+
['command', clean.command, 'release'],
|
|
599
|
+
['mode', clean.mode, 'commit-title-guard'],
|
|
600
|
+
['ok', clean.ok, true],
|
|
601
|
+
['commit_guard.stage', clean.commit_guard?.stage, 'Stage 98'],
|
|
602
|
+
['commit_guard.artifact_kind', clean.commit_guard?.artifact_kind, 'commit-title-guard'],
|
|
603
|
+
['commit_guard.guard_kind', clean.commit_guard?.guard_kind, 'deterministic-commit-title-guard'],
|
|
604
|
+
['commit_guard.input_kind', clean.commit_guard?.input_kind, 'subject'],
|
|
605
|
+
['commit_guard.guard_pass', clean.commit_guard?.guard_pass, true],
|
|
606
|
+
['safety.writes', clean.safety?.writes, false],
|
|
607
|
+
['safety.commit_guard_artifact', clean.safety?.commit_guard_artifact, false],
|
|
608
|
+
['safety.git', clean.safety?.git, false],
|
|
609
|
+
['safety.git_write', clean.safety?.git_write, false],
|
|
610
|
+
['safety.history_rewrite', clean.safety?.history_rewrite, false],
|
|
611
|
+
['safety.push', clean.safety?.push, false],
|
|
612
|
+
['safety.pr', clean.safety?.pr, false],
|
|
613
|
+
['safety.release_gate_required', clean.safety?.release_gate_required, false],
|
|
614
|
+
], 'release --commit-guard --subject clean --json');
|
|
615
|
+
if (!clean.commit_guard?.commit_guard_digest) throw new Error('commit guard clean output missing digest');
|
|
616
|
+
if (clean.commit_guard?.findings?.length !== 0) throw new Error('commit guard clean subject produced findings');
|
|
617
|
+
|
|
618
|
+
const evidence = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'release', '--commit-guard', '--from-file', 'evidence/commit-subjects.txt', '--json', '--root', target], {}, options), 'release --commit-guard --from-file --json');
|
|
619
|
+
assertJsonMarkers([
|
|
620
|
+
['mode', evidence.mode, 'commit-title-guard'],
|
|
621
|
+
['ok', evidence.ok, false],
|
|
622
|
+
['commit_guard.stage', evidence.commit_guard?.stage, 'Stage 98'],
|
|
623
|
+
['commit_guard.input_kind', evidence.commit_guard?.input_kind, 'local-evidence-file'],
|
|
624
|
+
['commit_guard.source_file', evidence.commit_guard?.source_file, 'evidence/commit-subjects.txt'],
|
|
625
|
+
['commit_guard.subject_count', evidence.commit_guard?.subject_count, 3],
|
|
626
|
+
['commit_guard.guard_pass', evidence.commit_guard?.guard_pass, false],
|
|
627
|
+
], 'release --commit-guard --from-file --json');
|
|
628
|
+
if (!evidence.commit_guard?.findings?.some((finding) => finding.finding_type === 'markdown-fence-token' && finding.severity === 'error')) throw new Error('commit guard evidence missing markdown fence token error');
|
|
629
|
+
if (!evidence.commit_guard?.findings?.some((finding) => finding.finding_type === 'non-conventional-subject' && finding.severity === 'warning')) throw new Error('commit guard evidence missing non-conventional warning');
|
|
630
|
+
if (!evidence.commit_guard?.blocked_reasons?.some((reason) => reason.includes('markdown-fence-token'))) throw new Error('commit guard evidence missing blocked reason');
|
|
631
|
+
if (!evidence.commit_guard?.source_digest) throw new Error('commit guard evidence missing source digest');
|
|
632
|
+
if (!evidence.commit_guard?.commit_guard_digest) throw new Error('commit guard evidence missing digest');
|
|
633
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('release --commit-guard created state directory');
|
|
634
|
+
|
|
635
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'release', '--commit-guard', '--subject', 'feat(runtime): add commit guard', '--confirm', '--root', target], {
|
|
636
|
+
allowFailure: true,
|
|
637
|
+
expectOutput: ['release --commit-guard is read-only'],
|
|
638
|
+
}, options);
|
|
639
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'release', '--commit-guard', '--subject', 'feat(runtime): add commit guard', '--from-file', 'evidence/commit-subjects.txt', '--root', target], {
|
|
640
|
+
allowFailure: true,
|
|
641
|
+
expectOutput: ['release --commit-guard accepts either --subject or --from-file'],
|
|
642
|
+
}, options);
|
|
643
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'release', '--commit-guard', '--from-file', '../outside.txt', '--root', target], {
|
|
644
|
+
allowFailure: true,
|
|
645
|
+
expectOutput: ['commit guard evidence file must not include traversal'],
|
|
646
|
+
}, options);
|
|
647
|
+
} finally {
|
|
648
|
+
if (!options.keepTmp) fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
function runReleaseNotesSmoke(options) {
|
|
653
|
+
const target = '.tmp/vibe-release-notes';
|
|
654
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
655
|
+
const evidenceDirectory = path.join(absoluteTarget, 'evidence');
|
|
656
|
+
const evidenceFile = path.join(evidenceDirectory, 'stage52-67-release-evidence.txt');
|
|
657
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
658
|
+
|
|
659
|
+
try {
|
|
660
|
+
fs.mkdirSync(evidenceDirectory, { recursive: true });
|
|
661
|
+
fs.writeFileSync(evidenceFile, [
|
|
662
|
+
'range: add644b..HEAD',
|
|
663
|
+
'Stage 52-65 release audit evidence',
|
|
664
|
+
'606d3de docs(release-guide): 添加 Stage 52-65 能力收敛发布审计文档',
|
|
665
|
+
'```3c976f0 feat(runtime): 添加 Stage 65 治理收敛门控功能',
|
|
666
|
+
'abc1234 update release hygiene without conventional prefix',
|
|
667
|
+
'Stage 68 release notes evidence sidecar smoke',
|
|
668
|
+
'tools/vibe-runtime/index.mjs | 42 ++++++++++++++++++++++++++',
|
|
669
|
+
'',
|
|
670
|
+
].join('\n'), 'utf8');
|
|
671
|
+
|
|
672
|
+
const preview = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'release', '--notes', '--from-file', 'evidence/stage52-67-release-evidence.txt', '--preview', '--json', '--root', target], {}, options), 'release --notes --preview --json');
|
|
673
|
+
assertJsonMarkers([
|
|
674
|
+
['command', preview.command, 'release'],
|
|
675
|
+
['mode', preview.mode, 'release-notes'],
|
|
676
|
+
['release_notes.stage', preview.release_notes?.stage, 'Stage 68'],
|
|
677
|
+
['release_notes.artifact_kind', preview.release_notes?.artifact_kind, 'release-notes'],
|
|
678
|
+
['release_notes.source_file', preview.release_notes?.source_file, 'evidence/stage52-67-release-evidence.txt'],
|
|
679
|
+
['release_notes.optional', preview.release_notes?.optional, true],
|
|
680
|
+
['release_notes.sidecar_only', preview.release_notes?.sidecar_only, true],
|
|
681
|
+
['release_notes.default_enabled', preview.release_notes?.default_enabled, false],
|
|
682
|
+
['release_notes.release_chain_required', preview.release_notes?.release_chain_required, false],
|
|
683
|
+
['release_notes.deterministic', preview.release_notes?.deterministic, true],
|
|
684
|
+
['release_notes.pure_function', preview.release_notes?.pure_function, true],
|
|
685
|
+
['safety.writes', preview.safety?.writes, false],
|
|
686
|
+
['safety.release_notes_artifact', preview.safety?.release_notes_artifact, false],
|
|
687
|
+
['safety.git_write', preview.safety?.git_write, false],
|
|
688
|
+
['safety.history_rewrite', preview.safety?.history_rewrite, false],
|
|
689
|
+
['safety.push', preview.safety?.push, false],
|
|
690
|
+
['safety.pr', preview.safety?.pr, false],
|
|
691
|
+
['safety.platform_api', preview.safety?.platform_api, false],
|
|
692
|
+
['safety.external_network', preview.safety?.external_network, false],
|
|
693
|
+
['safety.model_invocation', preview.safety?.model_invocation, false],
|
|
694
|
+
['safety.release_gate_required', preview.safety?.release_gate_required, false],
|
|
695
|
+
], 'release --notes --preview --json');
|
|
696
|
+
if (preview.release_notes?.commit_count !== 3) throw new Error('release notes preview commit count mismatch');
|
|
697
|
+
if (!preview.release_notes?.stage_coverage?.includes('Stage 52')) throw new Error('release notes preview missing Stage 52 coverage');
|
|
698
|
+
if (!preview.release_notes?.stage_coverage?.includes('Stage 68')) throw new Error('release notes preview missing Stage 68 coverage');
|
|
699
|
+
if (!preview.release_notes?.commit_hygiene_findings?.some((finding) => finding.finding_type === 'markdown-fence-prefix')) throw new Error('release notes preview missing markdown fence hygiene finding');
|
|
700
|
+
if (!preview.release_notes?.commit_hygiene_findings?.some((finding) => finding.finding_type === 'non-conventional-subject')) throw new Error('release notes preview missing non-conventional hygiene finding');
|
|
701
|
+
if (!preview.release_notes?.release_notes_digest) throw new Error('release notes preview missing digest');
|
|
702
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('release --notes preview created state directory');
|
|
703
|
+
|
|
704
|
+
const confirmed = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'release', '--notes', '--from-file', 'evidence/stage52-67-release-evidence.txt', '--confirm', '--json', '--root', target], {}, options), 'release --notes --confirm --json');
|
|
705
|
+
const releaseNotesFile = confirmed.release_notes_file;
|
|
706
|
+
if (!releaseNotesFile || !releaseNotesFile.endsWith('.release-notes.json')) throw new Error('release --notes confirm did not return release notes sidecar file');
|
|
707
|
+
const releaseNotesPath = path.join(absoluteTarget, '.vibecoding-state', 'release-notes', releaseNotesFile);
|
|
708
|
+
if (!fs.existsSync(releaseNotesPath)) throw new Error('release --notes confirm did not write release notes sidecar');
|
|
709
|
+
const extraStateEntries = fs.readdirSync(path.join(absoluteTarget, '.vibecoding-state')).filter((entry) => entry !== 'release-notes');
|
|
710
|
+
if (extraStateEntries.length > 0) throw new Error(`release notes smoke wrote unexpected state entries: ${extraStateEntries.join(', ')}`);
|
|
711
|
+
|
|
712
|
+
const verified = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'release', '--verify-notes', releaseNotesFile, '--json', '--root', target], {}, options), `release --verify-notes ${releaseNotesFile} --json`);
|
|
713
|
+
if (verified.verification?.ok !== true) throw new Error(`release notes verify failed for ${releaseNotesFile}`);
|
|
714
|
+
|
|
715
|
+
fs.appendFileSync(evidenceFile, 'Stage 68 source digest drift\n', 'utf8');
|
|
716
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'release', '--verify-notes', releaseNotesFile, '--root', target], {
|
|
717
|
+
allowFailure: true,
|
|
718
|
+
expectOutput: ['release notes verification failed:', 'release_notes.source_digest drift', 'release_notes.release_notes_digest drift'],
|
|
719
|
+
}, options);
|
|
720
|
+
fs.writeFileSync(evidenceFile, [
|
|
721
|
+
'range: add644b..HEAD',
|
|
722
|
+
'Stage 52-65 release audit evidence',
|
|
723
|
+
'606d3de docs(release-guide): 添加 Stage 52-65 能力收敛发布审计文档',
|
|
724
|
+
'```3c976f0 feat(runtime): 添加 Stage 65 治理收敛门控功能',
|
|
725
|
+
'abc1234 update release hygiene without conventional prefix',
|
|
726
|
+
'Stage 68 release notes evidence sidecar smoke',
|
|
727
|
+
'tools/vibe-runtime/index.mjs | 42 ++++++++++++++++++++++++++',
|
|
728
|
+
'',
|
|
729
|
+
].join('\n'), 'utf8');
|
|
730
|
+
|
|
731
|
+
const badBoundary = JSON.parse(fs.readFileSync(releaseNotesPath, 'utf8'));
|
|
732
|
+
badBoundary.release_notes.boundary_assertions.push = true;
|
|
733
|
+
const badBoundaryPayload = { ...badBoundary.release_notes };
|
|
734
|
+
delete badBoundaryPayload.writes;
|
|
735
|
+
delete badBoundaryPayload.release_notes_digest;
|
|
736
|
+
badBoundary.release_notes.release_notes_digest = digestObject(badBoundaryPayload);
|
|
737
|
+
fs.writeFileSync(path.join(absoluteTarget, '.vibecoding-state', 'release-notes', 'bad-boundary.release-notes.json'), `${JSON.stringify(badBoundary, null, 2)}\n`, 'utf8');
|
|
738
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'release', '--verify-notes', 'bad-boundary.release-notes.json', '--root', target], {
|
|
739
|
+
allowFailure: true,
|
|
740
|
+
expectOutput: ['release notes verification failed:', 'release_notes.boundary_assertions.push must be false'],
|
|
741
|
+
}, options);
|
|
742
|
+
|
|
743
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'release', '--notes', '--from-file', '../outside.txt', '--preview', '--root', target], {
|
|
744
|
+
allowFailure: true,
|
|
745
|
+
expectOutput: ['release notes evidence file must not include traversal'],
|
|
746
|
+
}, options);
|
|
747
|
+
} finally {
|
|
748
|
+
if (!options.keepTmp) fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
return {
|
|
753
|
+
runPlannerSmoke,
|
|
754
|
+
runPrReadinessSmoke,
|
|
755
|
+
runPrReviewIntakeSmoke,
|
|
756
|
+
runConvergenceSmoke,
|
|
757
|
+
runGovernanceAdviceSmoke,
|
|
758
|
+
runUnifiedAdviceSmoke,
|
|
759
|
+
runWorkflowReadinessSmoke,
|
|
760
|
+
runPlanLintSmoke,
|
|
761
|
+
runWorkflowCockpitSmoke,
|
|
762
|
+
runBootstrapAcceptanceSmoke,
|
|
763
|
+
runMethodologyRouteSmoke,
|
|
764
|
+
runEntryAdviceSmoke,
|
|
765
|
+
runCommitGuardSmoke,
|
|
766
|
+
runReleaseNotesSmoke,
|
|
767
|
+
};
|
|
768
|
+
}
|