@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,495 @@
|
|
|
1
|
+
export function createRuntimeGovernanceSurfaceReports(deps) {
|
|
2
|
+
const {
|
|
3
|
+
fs,
|
|
4
|
+
path,
|
|
5
|
+
ensureRoot,
|
|
6
|
+
stateDir,
|
|
7
|
+
runtimeContractRoot,
|
|
8
|
+
backgroundProcessBoundaryKey,
|
|
9
|
+
digestObject,
|
|
10
|
+
localJsonFileWithinRoot,
|
|
11
|
+
printList,
|
|
12
|
+
runtimeCapabilityRegistry,
|
|
13
|
+
runtimeCapabilityRegistryDriftGuard,
|
|
14
|
+
runtimeCapabilityRegistryInvariants,
|
|
15
|
+
runtimeSkillRuntimeTraceabilityMap,
|
|
16
|
+
runtimeExperienceFrictionMatrix,
|
|
17
|
+
runtimeExperienceFrictionDigestPayload,
|
|
18
|
+
digestExperienceFriction,
|
|
19
|
+
runtimeExperienceRegressionDashboard,
|
|
20
|
+
runtimeExperienceRegressionDashboardDigestPayload,
|
|
21
|
+
digestExperienceRegressionDashboard,
|
|
22
|
+
} = deps;
|
|
23
|
+
function governanceAdviceBoundaryAssertions() {
|
|
24
|
+
return {
|
|
25
|
+
sidecar_write: false,
|
|
26
|
+
release_gate_write: false,
|
|
27
|
+
pr: false,
|
|
28
|
+
push: false,
|
|
29
|
+
merge: false,
|
|
30
|
+
tag: false,
|
|
31
|
+
platform_api: false,
|
|
32
|
+
external_network: false,
|
|
33
|
+
model_invocation: false,
|
|
34
|
+
runtime_action: false,
|
|
35
|
+
auto_execution: false,
|
|
36
|
+
command_execution: false,
|
|
37
|
+
business_source_write: false,
|
|
38
|
+
source_merge: false,
|
|
39
|
+
skill_mutation: false,
|
|
40
|
+
hook_registration: false,
|
|
41
|
+
shell_interception: false,
|
|
42
|
+
git: false,
|
|
43
|
+
worktree: false,
|
|
44
|
+
subagent: false,
|
|
45
|
+
mcp: false,
|
|
46
|
+
[backgroundProcessBoundaryKey]: false,
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function normalizeGovernanceAdviceIntent(intent) {
|
|
51
|
+
const value = String(intent || '').trim().toLowerCase().replace(/_/g, '-');
|
|
52
|
+
const known = new Set(['closeout', 'review', 'release', 'pr-readiness', 'pr-review-intake', 'convergence', 'compatibility']);
|
|
53
|
+
return known.has(value) ? value : 'unknown';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function governanceAdviceIntentRoute(intent) {
|
|
57
|
+
const routes = {
|
|
58
|
+
closeout: {
|
|
59
|
+
next: 'read-only-closeout-scan',
|
|
60
|
+
command: 'governance --convergence --report --json',
|
|
61
|
+
capabilities: ['Stage 59 convergence report', 'Stage 65 optional release convergence binding', 'Stage 57/58 PR governance sidecars'],
|
|
62
|
+
action: 'Start closeout with a read-only convergence report, then manually decide whether PR readiness, review intake, or release gate evidence is needed.',
|
|
63
|
+
hint: 'Use convergence output as orientation only; it does not prove tests, PR approval, or release readiness by itself.',
|
|
64
|
+
},
|
|
65
|
+
review: {
|
|
66
|
+
next: 'manual-review-intake-boundary',
|
|
67
|
+
command: 'governance --pr-review-intake --from-file <local-evidence-file> --preview --json',
|
|
68
|
+
capabilities: ['Stage 58 PR review / CI evidence intake', 'vibe-receiving-code-review', 'vibe-systematic-debugging'],
|
|
69
|
+
action: 'If a human-submitted PR has local review or CI evidence, preview PR review intake from that local file before deciding follow-up.',
|
|
70
|
+
hint: 'The evidence file must be local and root-scoped; runtime will not query GitHub, CI, review APIs, or platform state.',
|
|
71
|
+
},
|
|
72
|
+
release: {
|
|
73
|
+
next: 'release-gate-with-optional-governance-evidence',
|
|
74
|
+
command: 'release --gate --from-evals <eval-report-file...> --with-convergence --json',
|
|
75
|
+
capabilities: ['Stage 52 release gate', 'Stage 65 optional convergence evidence binding', 'Stage 68 release notes sidecar'],
|
|
76
|
+
action: 'Use release gate evidence only after fresh verification exists; optionally bind convergence evidence explicitly with --with-convergence.',
|
|
77
|
+
hint: 'Release advice does not create tags, PRs, pushes, release notes, or release gate sidecars.',
|
|
78
|
+
},
|
|
79
|
+
'pr-readiness': {
|
|
80
|
+
next: 'pr-readiness-preview',
|
|
81
|
+
command: 'governance --pr-readiness --preview --json',
|
|
82
|
+
capabilities: ['Stage 57 PR readiness governance', 'human PR submission boundary', 'manual duplicate search evidence'],
|
|
83
|
+
action: 'Preview local PR readiness before any human PR submission; blocked output is acceptable when tests, approval, or duplicate-search evidence is missing.',
|
|
84
|
+
hint: 'This only checks local readiness evidence and never creates a PR, branch push, merge, or platform call.',
|
|
85
|
+
},
|
|
86
|
+
'pr-review-intake': {
|
|
87
|
+
next: 'pr-review-intake-preview',
|
|
88
|
+
command: 'governance --pr-review-intake --from-file <local-evidence-file> --preview --json',
|
|
89
|
+
capabilities: ['Stage 58 PR review / CI evidence intake', 'review feedback routing', 'CI status routing'],
|
|
90
|
+
action: 'Capture review and CI results from a local evidence file after a human has submitted the PR.',
|
|
91
|
+
hint: 'Only local evidence is accepted; allowed_followup remains a suggestion and is not executed automatically.',
|
|
92
|
+
},
|
|
93
|
+
convergence: {
|
|
94
|
+
next: 'capability-convergence-report',
|
|
95
|
+
command: 'governance --convergence --report --json',
|
|
96
|
+
capabilities: ['Stage 59 convergence report', 'workflow experience', 'learning model', 'deterministic token economy', 'runtime governance'],
|
|
97
|
+
action: 'Run the read-only convergence report when deciding which capability lane or governance closeout boundary is relevant.',
|
|
98
|
+
hint: 'Convergence report is orientation evidence; it does not write state or promote optional capabilities into required release chain.',
|
|
99
|
+
},
|
|
100
|
+
compatibility: {
|
|
101
|
+
next: 'compatibility-report',
|
|
102
|
+
command: 'governance --compatibility --report --json',
|
|
103
|
+
capabilities: ['Stage 56 runtime compatibility report', 'local sidecar schema audit', 'digest drift orientation'],
|
|
104
|
+
action: 'Use compatibility report when existing local runtime artifacts may need manual migration or trust classification.',
|
|
105
|
+
hint: 'Compatibility report never rewrites old artifacts, relaxes verification, or silently migrates state.',
|
|
106
|
+
},
|
|
107
|
+
unknown: {
|
|
108
|
+
next: 'read-only-closeout-scan',
|
|
109
|
+
command: 'governance --convergence --report --json',
|
|
110
|
+
capabilities: ['Stage 59 convergence report', 'Stage 57/58 PR governance sidecars', 'Stage 65 optional release convergence binding'],
|
|
111
|
+
action: 'Unknown governance intent falls back to read-only closeout orientation before selecting a concrete governance command.',
|
|
112
|
+
hint: 'Clarify whether the task is PR readiness, review intake, release, compatibility, or convergence before writing any sidecar.',
|
|
113
|
+
},
|
|
114
|
+
};
|
|
115
|
+
return routes[intent] || routes.unknown;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
function governanceAdviceCloseoutBoundary() {
|
|
119
|
+
return {
|
|
120
|
+
boundary_kind: 'manual-closeout-boundary',
|
|
121
|
+
pr_submission: 'manual-human-action-only',
|
|
122
|
+
review_intake: 'local-evidence-file-only',
|
|
123
|
+
release_gate: 'explicit-release-command-only',
|
|
124
|
+
convergence_binding: 'explicit --with-convergence only',
|
|
125
|
+
human_approval_required: true,
|
|
126
|
+
automatic_pr: false,
|
|
127
|
+
automatic_push: false,
|
|
128
|
+
automatic_merge: false,
|
|
129
|
+
automatic_release: false,
|
|
130
|
+
};
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
function governanceAdviceEnvelope(root, { intent = '' } = {}) {
|
|
134
|
+
const inputIntent = String(intent || '').trim();
|
|
135
|
+
const normalizedIntent = normalizeGovernanceAdviceIntent(inputIntent);
|
|
136
|
+
const route = governanceAdviceIntentRoute(normalizedIntent);
|
|
137
|
+
const boundaryAssertions = governanceAdviceBoundaryAssertions();
|
|
138
|
+
const quality = [];
|
|
139
|
+
if (inputIntent && normalizedIntent === 'unknown') quality.push('unknown governance advice intent; using read-only closeout orientation');
|
|
140
|
+
const advice = {
|
|
141
|
+
version: 1,
|
|
142
|
+
stage: 'Stage 81',
|
|
143
|
+
advice_kind: 'runtime-governance-advice',
|
|
144
|
+
intent: normalizedIntent,
|
|
145
|
+
input_intent: inputIntent,
|
|
146
|
+
recommended_next_governance_step: route.next,
|
|
147
|
+
recommended_command: route.command,
|
|
148
|
+
manual_action: route.action,
|
|
149
|
+
verification_hint: route.hint,
|
|
150
|
+
related_capabilities: route.capabilities,
|
|
151
|
+
closeout_boundary: governanceAdviceCloseoutBoundary(),
|
|
152
|
+
boundary_assertions: boundaryAssertions,
|
|
153
|
+
writes: false,
|
|
154
|
+
state_directory_created: false,
|
|
155
|
+
local_only: true,
|
|
156
|
+
};
|
|
157
|
+
return {
|
|
158
|
+
mode: 'runtime-governance-advice',
|
|
159
|
+
ok: true,
|
|
160
|
+
state_present: fs.existsSync(stateDir(root)),
|
|
161
|
+
governance_advice: { ...advice, advice_digest: digestObject(advice) },
|
|
162
|
+
safety: {
|
|
163
|
+
stage: 'Stage 81',
|
|
164
|
+
writes: false,
|
|
165
|
+
governance_advice_artifact: false,
|
|
166
|
+
...boundaryAssertions,
|
|
167
|
+
},
|
|
168
|
+
quality,
|
|
169
|
+
action: `runtime governance advice was computed read-only from builtin Stage 56-59 and Stage 65 governance boundaries. No state directory, sidecar, release gate, PR, push, merge, tag, platform API, external network, model, runtime action, command execution, git, worktree, subagent, MCP, ${backgroundProcessBoundaryKey}, or business source mutation occurred.`,
|
|
170
|
+
};
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
const runtimeSurfaceAccessors = {
|
|
174
|
+
boundaryAssertions() {
|
|
175
|
+
return runtimeCapabilityRegistry().boundary_assertions;
|
|
176
|
+
},
|
|
177
|
+
capabilityGroups() {
|
|
178
|
+
return runtimeCapabilityRegistry().capability_groups;
|
|
179
|
+
},
|
|
180
|
+
stageInventory() {
|
|
181
|
+
return runtimeCapabilityRegistry().stage_inventory;
|
|
182
|
+
},
|
|
183
|
+
closeoutChain() {
|
|
184
|
+
return runtimeCapabilityRegistry().closeout_chain;
|
|
185
|
+
},
|
|
186
|
+
};
|
|
187
|
+
|
|
188
|
+
function runtimeSurfaceEnvelope(root) {
|
|
189
|
+
ensureRoot(root);
|
|
190
|
+
const registry = runtimeCapabilityRegistry();
|
|
191
|
+
const registryInvariants = runtimeCapabilityRegistryInvariants(registry);
|
|
192
|
+
const boundaryAssertions = runtimeSurfaceAccessors.boundaryAssertions();
|
|
193
|
+
const registryPayload = {
|
|
194
|
+
registry_stage: registry.registry_stage,
|
|
195
|
+
registry_kind: registry.registry_kind,
|
|
196
|
+
registry_version: registry.registry_version,
|
|
197
|
+
capability_groups: registry.capability_groups,
|
|
198
|
+
stage_inventory: registry.stage_inventory,
|
|
199
|
+
closeout_chain: registry.closeout_chain,
|
|
200
|
+
boundary_assertions: boundaryAssertions,
|
|
201
|
+
};
|
|
202
|
+
const surface = {
|
|
203
|
+
version: 2,
|
|
204
|
+
stage: 'Stage 100',
|
|
205
|
+
surface_kind: 'runtime-capability-surface',
|
|
206
|
+
registry_stage: registry.registry_stage,
|
|
207
|
+
registry_kind: registry.registry_kind,
|
|
208
|
+
registry_version: registry.registry_version,
|
|
209
|
+
registry_digest: digestObject(registryPayload),
|
|
210
|
+
registry_invariants: registryInvariants,
|
|
211
|
+
capability_groups: runtimeSurfaceAccessors.capabilityGroups(),
|
|
212
|
+
stage_inventory: runtimeSurfaceAccessors.stageInventory(),
|
|
213
|
+
closeout_chain: runtimeSurfaceAccessors.closeoutChain(),
|
|
214
|
+
boundary_assertions: boundaryAssertions,
|
|
215
|
+
writes: false,
|
|
216
|
+
state_directory_created: false,
|
|
217
|
+
local_only: true,
|
|
218
|
+
deterministic: true,
|
|
219
|
+
};
|
|
220
|
+
return {
|
|
221
|
+
mode: 'runtime-capability-surface',
|
|
222
|
+
ok: registryInvariants.pass,
|
|
223
|
+
state_present: fs.existsSync(stateDir(root)),
|
|
224
|
+
runtime_surface: { ...surface, surface_digest: digestObject(surface) },
|
|
225
|
+
safety: { stage: 'Stage 100', registry_stage: registry.registry_stage, ...boundaryAssertions },
|
|
226
|
+
quality: registryInvariants.findings,
|
|
227
|
+
action: `runtime capability surface was computed read-only from Stage 101 runtime capability registry metadata covering Stage 78-101 command inventory. No state directory, sidecar, workflow execution, verification command, runtime action, git, PR, push, merge, tag, platform API, external network, model, worktree, subagent, MCP, ${backgroundProcessBoundaryKey}, or business source mutation occurred.`,
|
|
228
|
+
};
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
function runtimeRegistryDriftGuardBoundaryAssertions() {
|
|
232
|
+
return {
|
|
233
|
+
...runtimeSurfaceAccessors.boundaryAssertions(),
|
|
234
|
+
runtime_registry_drift_guard_artifact: false,
|
|
235
|
+
doc_write: false,
|
|
236
|
+
check_write: false,
|
|
237
|
+
};
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
function releaseCheckDriftGuardMarkerFiles(relativeFile) {
|
|
241
|
+
if (relativeFile !== 'tools/vibe-release-check/index.mjs') return [relativeFile];
|
|
242
|
+
return [
|
|
243
|
+
'tools/vibe-release-check/index.mjs',
|
|
244
|
+
'tools/vibe-release-check/release-check-command-manifest.mjs',
|
|
245
|
+
'tools/vibe-release-check/release-check-dispatch.mjs',
|
|
246
|
+
'tools/vibe-release-check/release-check-runtime.mjs',
|
|
247
|
+
'tools/vibe-release-check/release-check-stage50-53-smoke.mjs',
|
|
248
|
+
'tools/vibe-release-check/release-check-runtime-surface-smoke.mjs',
|
|
249
|
+
'tools/vibe-release-check/release-check-stage119-120-smoke.mjs',
|
|
250
|
+
'tools/vibe-release-check/release-check-stage137-140-smoke.mjs',
|
|
251
|
+
'tools/vibe-release-check/release-check-stage103-118-smoke.mjs',
|
|
252
|
+
'tools/vibe-release-check/release-check-stage121-136-smoke.mjs',
|
|
253
|
+
];
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
function readStaticRuntimeContractFile(root, relativeFile) {
|
|
257
|
+
return releaseCheckDriftGuardMarkerFiles(relativeFile)
|
|
258
|
+
.map((fileName) => {
|
|
259
|
+
const file = path.join(root, fileName);
|
|
260
|
+
if (!fs.existsSync(file) || !fs.statSync(file).isFile()) return '';
|
|
261
|
+
return fs.readFileSync(file, 'utf8');
|
|
262
|
+
})
|
|
263
|
+
.join('\n');
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
function runtimeRegistryDriftGuardMarkerFindings(expectations) {
|
|
267
|
+
return expectations.flatMap((expectation) => {
|
|
268
|
+
const text = readStaticRuntimeContractFile(runtimeContractRoot, expectation.file);
|
|
269
|
+
if (!text) return [`doc_marker_expectation missing file: ${expectation.file}`];
|
|
270
|
+
return expectation.markers
|
|
271
|
+
.filter((marker) => !text.includes(marker))
|
|
272
|
+
.map((marker) => `doc_marker_expectation missing marker: ${expectation.file}:${marker}`);
|
|
273
|
+
});
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
function runtimeRegistryDriftGuardEnvelope(root) {
|
|
277
|
+
ensureRoot(root);
|
|
278
|
+
const surfaceEnvelope = runtimeSurfaceEnvelope(root);
|
|
279
|
+
const surface = surfaceEnvelope.runtime_surface;
|
|
280
|
+
const registry = runtimeCapabilityRegistry();
|
|
281
|
+
const guardResult = runtimeCapabilityRegistryDriftGuard(registry, surface);
|
|
282
|
+
const markerFindings = runtimeRegistryDriftGuardMarkerFindings(guardResult.doc_marker_expectations);
|
|
283
|
+
const findings = [...guardResult.findings, ...markerFindings];
|
|
284
|
+
const boundaryAssertions = runtimeRegistryDriftGuardBoundaryAssertions();
|
|
285
|
+
const guard = {
|
|
286
|
+
version: 1,
|
|
287
|
+
stage: 'Stage 102',
|
|
288
|
+
guard_kind: 'runtime-capability-registry-drift-guard',
|
|
289
|
+
registry_stage: registry.registry_stage,
|
|
290
|
+
registry_kind: registry.registry_kind,
|
|
291
|
+
registry_version: registry.registry_version,
|
|
292
|
+
surface_stage: surface.stage,
|
|
293
|
+
surface_kind: surface.surface_kind,
|
|
294
|
+
registry_digest: surface.registry_digest,
|
|
295
|
+
surface_digest: surface.surface_digest,
|
|
296
|
+
guard_pass: findings.length === 0,
|
|
297
|
+
checked: guardResult.checked,
|
|
298
|
+
findings,
|
|
299
|
+
doc_marker_expectations: guardResult.doc_marker_expectations,
|
|
300
|
+
manual_action: findings.length === 0
|
|
301
|
+
? 'Registry, surface, docs, runtime-check, and release-check drift guard markers are synchronized.'
|
|
302
|
+
: 'Synchronize the listed registry, surface, docs, runtime-check, or release-check markers before relying on the capability surface.',
|
|
303
|
+
boundary_assertions: boundaryAssertions,
|
|
304
|
+
writes: false,
|
|
305
|
+
state_directory_created: false,
|
|
306
|
+
local_only: true,
|
|
307
|
+
deterministic: true,
|
|
308
|
+
};
|
|
309
|
+
return {
|
|
310
|
+
mode: 'runtime-capability-registry-drift-guard',
|
|
311
|
+
ok: guard.guard_pass,
|
|
312
|
+
state_present: fs.existsSync(stateDir(root)),
|
|
313
|
+
runtime_registry_drift_guard: { ...guard, drift_guard_digest: digestObject(guard) },
|
|
314
|
+
safety: { stage: 'Stage 102', registry_stage: registry.registry_stage, surface_stage: surface.stage, ...boundaryAssertions },
|
|
315
|
+
quality: findings,
|
|
316
|
+
action: `runtime capability registry drift guard checked fixed local Stage 100-102 registry, surface, docs, runtime-check, and release-check contracts read-only. No state directory, sidecar, command execution, workflow execution, verification command, runtime action, git, PR, push, merge, tag, platform API, external network, model, worktree, subagent, MCP, ${backgroundProcessBoundaryKey}, or business source mutation occurred.`,
|
|
317
|
+
};
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
const governanceTraceabilityPrinter = {
|
|
321
|
+
print(envelope) {
|
|
322
|
+
const traceability = envelope.skill_runtime_traceability_map;
|
|
323
|
+
console.log('Vibecoding Runtime Governance');
|
|
324
|
+
console.log('Mode: skill-to-runtime-traceability-map');
|
|
325
|
+
console.log(`Stage: ${traceability.stage}; Map: ${traceability.map_kind}; pass=${traceability.ok}`);
|
|
326
|
+
console.log(`Skills: ${traceability.skill_rows.length}; Links: ${traceability.traceability_rows.length}; Digest: ${traceability.traceability_digest}`);
|
|
327
|
+
for (const row of traceability.traceability_rows) console.log(`- ${row.skill}: pass=${row.pass}; group=${row.runtime_group}; commands=${row.runtime_commands.join(' | ')}`);
|
|
328
|
+
if (traceability.blockers.length > 0) printList('Blocked reasons', traceability.blockers);
|
|
329
|
+
console.log(`Action: ${envelope.action}`);
|
|
330
|
+
},
|
|
331
|
+
};
|
|
332
|
+
|
|
333
|
+
const printSkillRuntimeTraceabilityMap = governanceTraceabilityPrinter.print;
|
|
334
|
+
|
|
335
|
+
function experienceFrictionEnvelope(root, inputFile) {
|
|
336
|
+
ensureRoot(root);
|
|
337
|
+
const input = localJsonFileWithinRoot(root, inputFile, 'governance --experience-friction --from-file');
|
|
338
|
+
const base = runtimeExperienceFrictionMatrix({
|
|
339
|
+
evidence: input.data,
|
|
340
|
+
source: {
|
|
341
|
+
input_file: input.relative,
|
|
342
|
+
input_digest: input.digest,
|
|
343
|
+
},
|
|
344
|
+
});
|
|
345
|
+
const matrix = {
|
|
346
|
+
...base,
|
|
347
|
+
friction_digest: digestExperienceFriction(runtimeExperienceFrictionDigestPayload(base)),
|
|
348
|
+
};
|
|
349
|
+
return {
|
|
350
|
+
mode: 'experience-friction-matrix',
|
|
351
|
+
ok: matrix.ok,
|
|
352
|
+
state_present: fs.existsSync(stateDir(root)),
|
|
353
|
+
experience_friction_matrix: matrix,
|
|
354
|
+
safety: { stage: 'Stage 126', ...matrix.boundary_assertions },
|
|
355
|
+
quality: matrix.experience_friction_invariants.findings,
|
|
356
|
+
action: 'experience friction matrix was computed read-only from one local session evidence JSON file. No state directory, sidecar, command, check, test, workflow skill execution, runtime action, git, commit, push, PR, merge, platform API, external network, model, MCP, subagent, worktree, or business source write occurred.',
|
|
357
|
+
};
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
const governanceExperienceFrictionPrinter = {
|
|
361
|
+
print(envelope) {
|
|
362
|
+
const matrix = envelope.experience_friction_matrix;
|
|
363
|
+
console.log('Vibecoding Runtime Experience Friction Matrix');
|
|
364
|
+
console.log(`Stage: ${matrix.stage}; Kind: ${matrix.matrix_kind}; pass=${matrix.ok}`);
|
|
365
|
+
console.log(`Source: ${matrix.source_bindings.input_file}; evidence=${matrix.source_bindings.evidence_kind}; case=${matrix.source_bindings.case_id || 'not-provided'}`);
|
|
366
|
+
console.log(`Friction score: ${matrix.friction_score}; level=${matrix.friction_level}`);
|
|
367
|
+
for (const dimension of matrix.dimensions) {
|
|
368
|
+
console.log(`- ${dimension.id}: severity=${dimension.severity}; score=${dimension.score}; weighted=${dimension.weighted_score}`);
|
|
369
|
+
}
|
|
370
|
+
printList('Priority fixes', matrix.priority_fixes.map((fix) => `${fix.id}: ${fix.recommended_stage}; ${fix.fix}`));
|
|
371
|
+
printList('Recommended stage sequence', matrix.recommended_stage_sequence);
|
|
372
|
+
console.log('Boundary: writes=false; experience_friction_artifact=false; command_execution=false; check_execution=false; test_execution=false; workflow_execution=false; skill_execution=false; runtime_action=false; git=false; git_write=false; commit=false; pr=false; push=false; merge=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; mcp=false; business_source_write=false');
|
|
373
|
+
console.log(`Experience friction digest: ${matrix.friction_digest}`);
|
|
374
|
+
console.log(`Manual next action: ${matrix.manual_next_action}`);
|
|
375
|
+
console.log(`Action: ${envelope.action}`);
|
|
376
|
+
},
|
|
377
|
+
};
|
|
378
|
+
|
|
379
|
+
const printExperienceFrictionMatrix = governanceExperienceFrictionPrinter.print;
|
|
380
|
+
|
|
381
|
+
function experienceRegressionDashboardEnvelope(root, { frictionFile = '', consoleFile = '', tokenBudgetFile = '', learningPatternFile = '' } = {}) {
|
|
382
|
+
ensureRoot(root);
|
|
383
|
+
if (!frictionFile) throw new Error('governance --experience-dashboard requires --from-friction <local-friction-json>');
|
|
384
|
+
const frictionInput = localJsonFileWithinRoot(root, frictionFile, 'governance --experience-dashboard --from-friction');
|
|
385
|
+
const consoleInput = consoleFile ? localJsonFileWithinRoot(root, consoleFile, 'governance --experience-dashboard --from-console') : null;
|
|
386
|
+
const tokenBudgetInput = tokenBudgetFile ? localJsonFileWithinRoot(root, tokenBudgetFile, 'governance --experience-dashboard --from-token-budget') : null;
|
|
387
|
+
const learningPatternInput = learningPatternFile ? localJsonFileWithinRoot(root, learningPatternFile, 'governance --experience-dashboard --from-learning-pattern') : null;
|
|
388
|
+
const base = runtimeExperienceRegressionDashboard({
|
|
389
|
+
friction: frictionInput.data,
|
|
390
|
+
console: consoleInput?.data || null,
|
|
391
|
+
tokenBudget: tokenBudgetInput?.data || null,
|
|
392
|
+
learningPattern: learningPatternInput?.data || null,
|
|
393
|
+
source: {
|
|
394
|
+
friction_file: frictionInput.relative,
|
|
395
|
+
friction_digest: frictionInput.digest,
|
|
396
|
+
console_file: consoleInput?.relative || '',
|
|
397
|
+
console_digest: consoleInput?.digest || '',
|
|
398
|
+
token_budget_file: tokenBudgetInput?.relative || '',
|
|
399
|
+
token_budget_digest: tokenBudgetInput?.digest || '',
|
|
400
|
+
learning_pattern_file: learningPatternInput?.relative || '',
|
|
401
|
+
learning_pattern_digest: learningPatternInput?.digest || '',
|
|
402
|
+
},
|
|
403
|
+
});
|
|
404
|
+
const dashboard = {
|
|
405
|
+
...base,
|
|
406
|
+
dashboard_digest: digestExperienceRegressionDashboard(runtimeExperienceRegressionDashboardDigestPayload(base)),
|
|
407
|
+
};
|
|
408
|
+
return {
|
|
409
|
+
mode: 'experience-regression-dashboard',
|
|
410
|
+
ok: dashboard.ok,
|
|
411
|
+
state_present: fs.existsSync(stateDir(root)),
|
|
412
|
+
experience_regression_dashboard: dashboard,
|
|
413
|
+
safety: { stage: 'Stage 132', ...dashboard.boundary_assertions },
|
|
414
|
+
quality: dashboard.experience_dashboard_invariants.findings,
|
|
415
|
+
action: 'experience regression dashboard was computed read-only from local Stage 126 friction JSON plus optional local Stage 127 console, Stage 128 token budget, and Stage 129 learning pattern JSON. It only reports scorecard, comparison deltas, blockers, and next bet; no dashboard artifact, state directory, sidecar, command, check, smoke, test, workflow skill execution, runtime action, evidence write, git, commit, push, PR, merge, platform API, external network, model, MCP, subagent, worktree, or business source write occurred.',
|
|
416
|
+
};
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
function governanceDashboardPrinterBoundary() {
|
|
420
|
+
return 'governance-dashboard-printer-boundary';
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
const governanceExperienceDashboardPrinter = {
|
|
424
|
+
print(envelope) {
|
|
425
|
+
const dashboard = envelope.experience_regression_dashboard;
|
|
426
|
+
const scorecard = dashboard.experience_scorecard;
|
|
427
|
+
console.log('Vibecoding Runtime Experience Regression Dashboard');
|
|
428
|
+
console.log(`Stage: ${dashboard.stage}; Kind: ${dashboard.dashboard_kind}; pass=${dashboard.ok}`);
|
|
429
|
+
console.log(`Score: ${scorecard.overall_experience_score}; rating=${scorecard.rating}; friction_relief=${scorecard.friction_relief_score}; next_action=${scorecard.next_action_clarity_score}; token=${scorecard.token_discipline_score}; learning=${scorecard.learning_discipline_score}; evidence=${scorecard.evidence_visibility_score}`);
|
|
430
|
+
console.log(`Superpowers delta: status=${dashboard.superpowers_comparison_delta.status}; score=${dashboard.superpowers_comparison_delta.score}; gap=${dashboard.superpowers_comparison_delta.superpowers_parity_gap_score}`);
|
|
431
|
+
console.log(`Token Savior delta: status=${dashboard.token_savior_delta.status}; profile=${dashboard.token_savior_delta.recommended_profile}; overhead=${dashboard.token_savior_delta.token_overhead_score}`);
|
|
432
|
+
console.log(`Learning loop delta: status=${dashboard.learning_loop_delta.status}; candidates=${dashboard.learning_loop_delta.candidate_count}; promotion_required=${dashboard.learning_loop_delta.promotion_required}`);
|
|
433
|
+
console.log(`Daily friction delta: status=${dashboard.daily_user_friction_delta.status}; friction_score=${dashboard.daily_user_friction_delta.friction_score}; top=${dashboard.daily_user_friction_delta.top_friction}`);
|
|
434
|
+
printList('Regression blockers', dashboard.regression_blockers.map((item) => `${item.id}: ${item.severity}; ${item.recommendation}`));
|
|
435
|
+
console.log(`Next bet: ${dashboard.next_bet.id}; target=${dashboard.next_bet.target_stage}; ${dashboard.next_bet.action}`);
|
|
436
|
+
console.log('Boundary: writes=false; experience_dashboard_artifact=false; regression_dashboard_artifact=false; sidecar_write=false; state_directory_created=false; source_write=false; command_execution=false; check_execution=false; smoke_execution=false; test_execution=false; verification_execution=false; workflow_execution=false; skill_execution=false; runtime_action=false; auto_execution=false; evidence_write=false; dashboard_write=false; dynamic_tool_execution=false; embeddings=false; remote_config=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; mcp=false; git=false; git_write=false; git_add=false; commit=false; pr=false; push=false; merge=false; business_source_write=false');
|
|
437
|
+
console.log(`Dashboard digest: ${dashboard.dashboard_digest}`);
|
|
438
|
+
if (envelope.quality.length > 0) printList('Findings', envelope.quality);
|
|
439
|
+
console.log(`Action: ${envelope.action}`);
|
|
440
|
+
},
|
|
441
|
+
};
|
|
442
|
+
|
|
443
|
+
const printExperienceRegressionDashboard = governanceExperienceDashboardPrinter.print;
|
|
444
|
+
|
|
445
|
+
function skillRuntimeTraceabilityEnvelope(root) {
|
|
446
|
+
const traceability = runtimeSkillRuntimeTraceabilityMap(root, runtimeCapabilityRegistry());
|
|
447
|
+
return {
|
|
448
|
+
mode: 'skill-to-runtime-traceability-map',
|
|
449
|
+
ok: traceability.ok,
|
|
450
|
+
state_present: fs.existsSync(stateDir(root)),
|
|
451
|
+
skill_runtime_traceability_map: traceability,
|
|
452
|
+
safety: {
|
|
453
|
+
stage: 'Stage 123',
|
|
454
|
+
writes: false,
|
|
455
|
+
traceability_map_artifact: false,
|
|
456
|
+
skill_write: false,
|
|
457
|
+
runtime_registry_write: false,
|
|
458
|
+
docs_write: false,
|
|
459
|
+
sidecar_write: false,
|
|
460
|
+
state_directory_created: false,
|
|
461
|
+
command_execution: false,
|
|
462
|
+
check_execution: false,
|
|
463
|
+
test_execution: false,
|
|
464
|
+
runtime_action: false,
|
|
465
|
+
workflow_execution: false,
|
|
466
|
+
skill_execution: false,
|
|
467
|
+
auto_execution: false,
|
|
468
|
+
platform_api: false,
|
|
469
|
+
external_network: false,
|
|
470
|
+
model_invocation: false,
|
|
471
|
+
subagent: false,
|
|
472
|
+
mcp: false,
|
|
473
|
+
[backgroundProcessBoundaryKey]: false,
|
|
474
|
+
git: false,
|
|
475
|
+
git_write: false,
|
|
476
|
+
worktree: false,
|
|
477
|
+
business_source_write: false,
|
|
478
|
+
},
|
|
479
|
+
quality: traceability.blockers,
|
|
480
|
+
action: 'skill-to-runtime traceability map read local skill files and the runtime capability registry only. No skill execution, runtime action, state write, platform API, subagent, git, worktree, check, or test occurred.',
|
|
481
|
+
};
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
return {
|
|
485
|
+
governanceAdviceEnvelope,
|
|
486
|
+
runtimeSurfaceEnvelope,
|
|
487
|
+
runtimeRegistryDriftGuardEnvelope,
|
|
488
|
+
skillRuntimeTraceabilityEnvelope,
|
|
489
|
+
printSkillRuntimeTraceabilityMap,
|
|
490
|
+
experienceFrictionEnvelope,
|
|
491
|
+
printExperienceFrictionMatrix,
|
|
492
|
+
experienceRegressionDashboardEnvelope,
|
|
493
|
+
printExperienceRegressionDashboard,
|
|
494
|
+
};
|
|
495
|
+
}
|