@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,90 @@
|
|
|
1
|
+
# Install Acceptance Checklist
|
|
2
|
+
|
|
3
|
+
本文把 `npm run release:install` 的机器验证补成可人工复现的 installed-project 验收路径。它只验证安装体验,不新增 release-check 命令数,也不改变 install 行为。
|
|
4
|
+
|
|
5
|
+
## 目标
|
|
6
|
+
|
|
7
|
+
确认全新业务项目在 Claude、Cursor、Codex 三个平台下都能获得一致的轻量入口、adapter 文档和安全边界提示。
|
|
8
|
+
|
|
9
|
+
## 准备
|
|
10
|
+
|
|
11
|
+
从仓库根目录执行。建议使用 `.tmp/` 下的临时目录,避免污染真实业务项目。
|
|
12
|
+
|
|
13
|
+
如需重跑,先删除对应 `.tmp/manual-install-*` 目录。
|
|
14
|
+
|
|
15
|
+
## Claude
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
node bin/vibe.mjs init --target .tmp/manual-install-claude --platform claude
|
|
19
|
+
node bin/vibe.mjs doctor --root .tmp/manual-install-claude
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
人工检查:
|
|
23
|
+
|
|
24
|
+
- `.tmp/manual-install-claude/CLAUDE.md` 存在。
|
|
25
|
+
- `.tmp/manual-install-claude/AGENTS.md` 不应因单平台 Claude 安装而生成。
|
|
26
|
+
- `.tmp/manual-install-claude/.vibecoding/skills/` 存在。
|
|
27
|
+
- `.tmp/manual-install-claude/.vibecoding/adapters/claude/install.md` 存在。
|
|
28
|
+
- 根入口展示轻量 agent 沙盒入口,并链接 `.vibecoding/VIBE-CODING.md`。
|
|
29
|
+
- `.tmp/manual-install-claude/.vibecoding/VIBE-CODING.md` 包含 `workflow_start.entry_summary` 和 completion summary 相关提示。
|
|
30
|
+
|
|
31
|
+
## Cursor
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
node bin/vibe.mjs init --target .tmp/manual-install-cursor --platform cursor
|
|
35
|
+
node bin/vibe.mjs doctor --root .tmp/manual-install-cursor
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
人工检查:
|
|
39
|
+
|
|
40
|
+
- `.tmp/manual-install-cursor/AGENTS.md` 存在。
|
|
41
|
+
- `.tmp/manual-install-cursor/CLAUDE.md` 不应因单平台 Cursor 安装而生成。
|
|
42
|
+
- `.tmp/manual-install-cursor/.vibecoding/skills/` 存在。
|
|
43
|
+
- `.tmp/manual-install-cursor/.vibecoding/adapters/cursor/install.md` 存在。
|
|
44
|
+
- 根入口展示轻量 agent 沙盒入口,并链接 `.vibecoding/VIBE-CODING.md`。
|
|
45
|
+
- `.tmp/manual-install-cursor/.vibecoding/VIBE-CODING.md` 包含 `workflow_start.entry_summary` 和 completion summary 相关提示。
|
|
46
|
+
|
|
47
|
+
## Codex
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
node bin/vibe.mjs init --target .tmp/manual-install-codex --platform codex
|
|
51
|
+
node bin/vibe.mjs doctor --root .tmp/manual-install-codex
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
人工检查:
|
|
55
|
+
|
|
56
|
+
- `.tmp/manual-install-codex/AGENTS.md` 存在。
|
|
57
|
+
- `.tmp/manual-install-codex/CLAUDE.md` 不应因单平台 Codex 安装而生成。
|
|
58
|
+
- `.tmp/manual-install-codex/.vibecoding/skills/` 存在。
|
|
59
|
+
- `.tmp/manual-install-codex/.vibecoding/adapters/codex/install.md` 存在。
|
|
60
|
+
- 根入口展示轻量 agent 沙盒入口,并链接 `.vibecoding/VIBE-CODING.md`。
|
|
61
|
+
- `.tmp/manual-install-codex/.vibecoding/VIBE-CODING.md` 包含 `workflow_start.entry_summary` 和 completion summary 相关提示。
|
|
62
|
+
|
|
63
|
+
## 三个平台都必须满足
|
|
64
|
+
|
|
65
|
+
| 检查点 | 期望 |
|
|
66
|
+
| --- | --- |
|
|
67
|
+
| workflow skills | 位于 `.vibecoding/skills/` |
|
|
68
|
+
| adapter install docs | 位于 `.vibecoding/adapters/<platform>/install.md` |
|
|
69
|
+
| entry summary | 根入口轻量说明,并链接 `.vibecoding/VIBE-CODING.md`;完整规则文档包含 `workflow_start.entry_summary` |
|
|
70
|
+
| completion summary | `.vibecoding/VIBE-CODING.md` 提示先看 `completion_evidence.task_completion_summary` |
|
|
71
|
+
| blocked reasons | 根入口或完整规则提示先看 blocked reasons / readiness gates |
|
|
72
|
+
| session-start bootstrap | 存在 `.vibecoding/hooks/session-start/session-start.mjs` |
|
|
73
|
+
|
|
74
|
+
## Safety boundary
|
|
75
|
+
|
|
76
|
+
安装和 session-start bootstrap 必须保持轻量边界:
|
|
77
|
+
|
|
78
|
+
- 不创建 `.vibecoding-state/`。
|
|
79
|
+
- 不自动运行 runtime、测试或业务命令。
|
|
80
|
+
- 不自动执行 workflow skill。
|
|
81
|
+
- 不调用 subagent、MCP 或平台 API。
|
|
82
|
+
- 不写 git、worktree、commit、push、PR 或 merge。
|
|
83
|
+
|
|
84
|
+
如果人工验收发现上述边界被破坏,不要把 checklist 改成适配现状;应单独开修复任务,并补充 `release:install` 覆盖。
|
|
85
|
+
|
|
86
|
+
## 与机器验证的关系
|
|
87
|
+
|
|
88
|
+
`npm run release:install` 是发布前机器验证;本 checklist 是体验验收补充。
|
|
89
|
+
|
|
90
|
+
两者的事实源应保持一致:installed-project marker 语义以 `tools/vibe-release-check/release-check-install-suite.mjs` 为准,人工 checklist 只解释如何在真实目录中复现和观察这些 marker。
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Claude 安装说明
|
|
2
|
+
|
|
3
|
+
适合:只需要 Claude 平台差异的用户。完整安装流程见 `docs/install.md`。
|
|
4
|
+
|
|
5
|
+
## 平台差异
|
|
6
|
+
|
|
7
|
+
| 项目 | Claude |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| 根入口 | `CLAUDE.md` |
|
|
10
|
+
| skills 路径 | `.vibecoding/skills/` |
|
|
11
|
+
| adapter 路径 | `.vibecoding/adapters/claude/` |
|
|
12
|
+
| 完整规则 | `.vibecoding/VIBE-CODING.md` |
|
|
13
|
+
|
|
14
|
+
## 安装
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
node bin/vibe.mjs init --target ../my-project --platform claude
|
|
18
|
+
node bin/vibe.mjs doctor --root ../my-project
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
安装后,`CLAUDE.md` 只保留轻量 agent 沙盒入口;完整 workflow 规则在 `.vibecoding/VIBE-CODING.md`。
|
|
22
|
+
|
|
23
|
+
## 验收 Prompt
|
|
24
|
+
|
|
25
|
+
```text
|
|
26
|
+
帮我确认这个项目的 Vibecoding 入口是否生效。
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
期望:agent 识别 Vibecoding Kit,按文件路径读取 `.vibecoding/skills/using-vibecoding/SKILL.md` 后做轻量任务分流,不自动执行 workflow skill、不调用 subagent、不触碰 git。
|
|
30
|
+
|
|
31
|
+
## 如果没有触发
|
|
32
|
+
|
|
33
|
+
按顺序检查:
|
|
34
|
+
|
|
35
|
+
- 当前打开的项目目录是否就是 `vibe-init --target` 指向的目录。
|
|
36
|
+
- 目标项目根目录是否存在 `CLAUDE.md`。
|
|
37
|
+
- `CLAUDE.md` 是否提到 `.vibecoding/skills/`、`using-vibecoding` 和 `.vibecoding/VIBE-CODING.md`。
|
|
38
|
+
- `.vibecoding/skills/using-vibecoding/SKILL.md` 是否存在。
|
|
39
|
+
- 如果该文件存在但 agent 仍提示 `using-vibecoding` 缺失,按平台原生 skill registry 未注册处理;应要求 agent 按上述文件路径读取,而不是判定安装失败。
|
|
40
|
+
- `.vibecoding/VIBE-CODING.md` 是否存在。
|
|
41
|
+
- `node bin/vibe.mjs doctor --root ../my-project` 是否输出 `Result: passed`。
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Codex 安装说明
|
|
2
|
+
|
|
3
|
+
适合:只需要 Codex 平台差异的用户。完整安装流程见 `docs/install.md`。
|
|
4
|
+
|
|
5
|
+
## 平台差异
|
|
6
|
+
|
|
7
|
+
| 项目 | Codex |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| 根入口 | `AGENTS.md` |
|
|
10
|
+
| skills 路径 | `.vibecoding/skills/` |
|
|
11
|
+
| adapter 路径 | `.vibecoding/adapters/codex/` |
|
|
12
|
+
| 完整规则 | `.vibecoding/VIBE-CODING.md` |
|
|
13
|
+
|
|
14
|
+
## 安装
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
node bin/vibe.mjs init --target ../my-project --platform codex
|
|
18
|
+
node bin/vibe.mjs doctor --root ../my-project
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
安装后,`AGENTS.md` 只保留轻量 agent 沙盒入口;完整 workflow 规则在 `.vibecoding/VIBE-CODING.md`。
|
|
22
|
+
|
|
23
|
+
## 验收 Prompt
|
|
24
|
+
|
|
25
|
+
```text
|
|
26
|
+
帮我确认这个项目的 Vibecoding 入口是否生效。
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
期望:agent 识别 Vibecoding Kit,按文件路径读取 `.vibecoding/skills/using-vibecoding/SKILL.md` 后做轻量任务分流,不自动执行 workflow skill、不调用 subagent、不触碰 git。
|
|
30
|
+
|
|
31
|
+
## 如果没有触发
|
|
32
|
+
|
|
33
|
+
按顺序检查:
|
|
34
|
+
|
|
35
|
+
- 当前打开的项目目录是否就是 `vibe-init --target` 指向的目录。
|
|
36
|
+
- 目标项目根目录是否存在 `AGENTS.md`。
|
|
37
|
+
- `AGENTS.md` 是否提到 `.vibecoding/skills/`、`using-vibecoding` 和 `.vibecoding/VIBE-CODING.md`。
|
|
38
|
+
- `.vibecoding/skills/using-vibecoding/SKILL.md` 是否存在。
|
|
39
|
+
- 如果该文件存在但 agent 仍提示 `using-vibecoding` 缺失,按平台原生 skill registry 未注册处理;应要求 agent 按上述文件路径读取,而不是判定安装失败。
|
|
40
|
+
- `.vibecoding/VIBE-CODING.md` 是否存在。
|
|
41
|
+
- `node bin/vibe.mjs doctor --root ../my-project` 是否输出 `Result: passed`。
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Cursor 安装说明
|
|
2
|
+
|
|
3
|
+
适合:只需要 Cursor 平台差异的用户。完整安装流程见 `docs/install.md`。
|
|
4
|
+
|
|
5
|
+
## 平台差异
|
|
6
|
+
|
|
7
|
+
| 项目 | Cursor |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| 根入口 | `AGENTS.md` |
|
|
10
|
+
| skills 路径 | `.vibecoding/skills/` |
|
|
11
|
+
| adapter 路径 | `.vibecoding/adapters/cursor/` |
|
|
12
|
+
| 完整规则 | `.vibecoding/VIBE-CODING.md` |
|
|
13
|
+
|
|
14
|
+
## 安装
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
node bin/vibe.mjs init --target ../my-project --platform cursor
|
|
18
|
+
node bin/vibe.mjs doctor --root ../my-project
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
安装后,`AGENTS.md` 只保留轻量 agent 沙盒入口;完整 workflow 规则在 `.vibecoding/VIBE-CODING.md`。
|
|
22
|
+
|
|
23
|
+
## 验收 Prompt
|
|
24
|
+
|
|
25
|
+
```text
|
|
26
|
+
帮我确认这个项目的 Vibecoding 入口是否生效。
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
期望:agent 识别 Vibecoding Kit,按文件路径读取 `.vibecoding/skills/using-vibecoding/SKILL.md` 后做轻量任务分流,不自动执行 workflow skill、不调用 subagent、不触碰 git。
|
|
30
|
+
|
|
31
|
+
## 如果没有触发
|
|
32
|
+
|
|
33
|
+
按顺序检查:
|
|
34
|
+
|
|
35
|
+
- 当前打开的项目目录是否就是 `vibe-init --target` 指向的目录。
|
|
36
|
+
- 目标项目根目录是否存在 `AGENTS.md`。
|
|
37
|
+
- `AGENTS.md` 是否提到 `.vibecoding/skills/`、`using-vibecoding` 和 `.vibecoding/VIBE-CODING.md`。
|
|
38
|
+
- `.vibecoding/skills/using-vibecoding/SKILL.md` 是否存在。
|
|
39
|
+
- 如果该文件存在但 agent 仍提示 `using-vibecoding` 缺失,按平台原生 skill registry 未注册处理;应要求 agent 按上述文件路径读取,而不是判定安装失败。
|
|
40
|
+
- `.vibecoding/VIBE-CODING.md` 是否存在。
|
|
41
|
+
- `node bin/vibe.mjs doctor --root ../my-project` 是否输出 `Result: passed`。
|
|
@@ -0,0 +1,394 @@
|
|
|
1
|
+
# 安装体验增强路线图
|
|
2
|
+
|
|
3
|
+
本文档定义 Vibecoding Kit 的安装体验增强 stage。它独立于 runtime roadmap,聚焦项目接入、诊断、升级、修复、卸载和平台 bootstrap。
|
|
4
|
+
|
|
5
|
+
## 目标定位
|
|
6
|
+
|
|
7
|
+
当前安装链路已经具备 `vibe-init`、`vibe-doctor`、installed layout、平台 adapter 和轻量交互协议,但仍偏源码仓库工具体验:用户需要在 kit 仓库中运行 `node tools/vibe-init/index.mjs --target <project>`,再手动运行 doctor。
|
|
8
|
+
|
|
9
|
+
本路线目标是超过 `fork/<external-reference>` 的安装体验:
|
|
10
|
+
|
|
11
|
+
- 保留平台原生 bootstrap 的低摩擦体验。
|
|
12
|
+
- 增加项目级可审计安装状态:`.vibecoding/`、doctor、managed block、生命周期命令。
|
|
13
|
+
- 默认安全:不覆盖用户入口文件,不默认启用 runtime,不自动创建 `.vibecoding-state/`。
|
|
14
|
+
|
|
15
|
+
## 生命周期边界
|
|
16
|
+
|
|
17
|
+
安装体验 lifecycle 和 runtime lifecycle 分离。
|
|
18
|
+
|
|
19
|
+
```mermaid
|
|
20
|
+
flowchart TD
|
|
21
|
+
A[Install UX lifecycle] --> B[init]
|
|
22
|
+
A --> C[doctor]
|
|
23
|
+
A --> D[update]
|
|
24
|
+
A --> E[repair]
|
|
25
|
+
A --> F[uninstall]
|
|
26
|
+
A --> G[session-start bootstrap]
|
|
27
|
+
|
|
28
|
+
H[Runtime lifecycle] --> I[workflow ledger]
|
|
29
|
+
H --> J[handoff validation]
|
|
30
|
+
H --> K[dispatch audit]
|
|
31
|
+
H --> L[execution governance]
|
|
32
|
+
|
|
33
|
+
A -. 不写 .vibecoding-state .-> H
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
安装体验负责:
|
|
37
|
+
|
|
38
|
+
- 项目接入和平台检测。
|
|
39
|
+
- 入口文件安全合并。
|
|
40
|
+
- `.vibecoding/` 资产安装、升级、修复和卸载。
|
|
41
|
+
- doctor 诊断和发布前 smoke。
|
|
42
|
+
- 轻量 session-start bootstrap。
|
|
43
|
+
- 平台插件与项目安装的职责拆分。
|
|
44
|
+
|
|
45
|
+
runtime 负责:
|
|
46
|
+
|
|
47
|
+
- `.vibecoding-state/` workflow ledger。
|
|
48
|
+
- handoff、dispatch、execution、governance 等显式 runtime artifact。
|
|
49
|
+
- default-off 的只读或受控写入 runtime 命令。
|
|
50
|
+
|
|
51
|
+
## 固定 installed layout
|
|
52
|
+
|
|
53
|
+
业务项目默认安装结构保持稳定:
|
|
54
|
+
|
|
55
|
+
```text
|
|
56
|
+
CLAUDE.md # Claude 入口,按平台生成或合并
|
|
57
|
+
AGENTS.md # Cursor / Codex 入口,按平台生成或合并
|
|
58
|
+
.vibecoding/
|
|
59
|
+
skills/
|
|
60
|
+
adapters/
|
|
61
|
+
hooks/
|
|
62
|
+
VIBE-CODING.md
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
默认不安装:
|
|
66
|
+
|
|
67
|
+
```text
|
|
68
|
+
.vibecoding-state/
|
|
69
|
+
node_modules/
|
|
70
|
+
平台私有运行目录
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
`docs/` 和 `examples/` 只有用户显式传入 `--with-docs` 时才安装到 `.vibecoding/`。
|
|
74
|
+
|
|
75
|
+
## 目标命令形态
|
|
76
|
+
|
|
77
|
+
当前推荐命令是通过仓库内 wrapper 执行:
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
node bin/vibe.mjs init
|
|
81
|
+
node bin/vibe.mjs init --platform cursor
|
|
82
|
+
node bin/vibe.mjs init --platform all --dry-run
|
|
83
|
+
node bin/vibe.mjs doctor
|
|
84
|
+
node bin/vibe.mjs doctor --root .
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
后续打包或 link 后的目标形态是:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
vibe init
|
|
91
|
+
vibe doctor
|
|
92
|
+
vibe update
|
|
93
|
+
vibe repair
|
|
94
|
+
vibe uninstall
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
当前可执行兼容命令仍是:
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
node tools/vibe-init/index.mjs --target <project> --platform cursor
|
|
101
|
+
node tools/vibe-doctor/index.mjs <project>
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## UX-1:路线文档与验收基线
|
|
105
|
+
|
|
106
|
+
目标:建立安装体验 stage 的事实来源,避免把安装生命周期混入 runtime roadmap。
|
|
107
|
+
|
|
108
|
+
交付:
|
|
109
|
+
|
|
110
|
+
- `docs/install-experience-roadmap.md`。
|
|
111
|
+
- `README.md` 快速安装定位更新。
|
|
112
|
+
- `docs/acceptance-checklist.md` 安装体验验收项。
|
|
113
|
+
- `docs/release-guide.md` 安装体验 release smoke 边界。
|
|
114
|
+
|
|
115
|
+
边界:
|
|
116
|
+
|
|
117
|
+
- 不改 runtime 实现。
|
|
118
|
+
- 不新增 CLI wrapper。
|
|
119
|
+
- 不改变 installed layout。
|
|
120
|
+
- 不创建 `.vibecoding-state/`。
|
|
121
|
+
|
|
122
|
+
验收:
|
|
123
|
+
|
|
124
|
+
- 文档明确区分 install lifecycle 和 runtime lifecycle。
|
|
125
|
+
- acceptance checklist 包含安装体验 smoke 命令。
|
|
126
|
+
- release guide 说明安装体验发布前检查。
|
|
127
|
+
|
|
128
|
+
## UX-2:CLI 入口产品化
|
|
129
|
+
|
|
130
|
+
目标:把源码路径命令包装为用户可记忆的 `vibe` 命令。
|
|
131
|
+
|
|
132
|
+
当前交付:
|
|
133
|
+
|
|
134
|
+
- `package.json` 定义 `bin.vibe`。
|
|
135
|
+
- `bin/vibe.mjs` 作为薄 wrapper。
|
|
136
|
+
- `init` 复用 `tools/vibe-init/index.mjs`。
|
|
137
|
+
- `doctor` 复用 `tools/vibe-doctor/index.mjs`。
|
|
138
|
+
|
|
139
|
+
目标命令:
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
node bin/vibe.mjs init
|
|
143
|
+
node bin/vibe.mjs init --platform cursor
|
|
144
|
+
node bin/vibe.mjs init --platform all --dry-run
|
|
145
|
+
node bin/vibe.mjs doctor
|
|
146
|
+
node bin/vibe.mjs doctor --root .
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
原则:
|
|
150
|
+
|
|
151
|
+
- CLI wrapper 只做参数路由,不复制 `vibe-init` / `vibe-doctor` 核心逻辑。
|
|
152
|
+
- `node bin/vibe.mjs init` 默认 target 为当前目录。
|
|
153
|
+
- `node bin/vibe.mjs doctor --root <path>` 转换为现有 doctor positional root。
|
|
154
|
+
- 保留 `node tools/...` 兼容调用。
|
|
155
|
+
- 保持无依赖。
|
|
156
|
+
|
|
157
|
+
验收:
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
node bin/vibe.mjs init --target .tmp/vibe-install-target --platform all --dry-run
|
|
161
|
+
node bin/vibe.mjs doctor --root .tmp/vibe-install-target
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
## UX-3:Managed Block 安全合并
|
|
165
|
+
|
|
166
|
+
目标:解决已有 `CLAUDE.md` / `AGENTS.md` 时只能 skip 和手动复制的问题。
|
|
167
|
+
|
|
168
|
+
目标 block:
|
|
169
|
+
|
|
170
|
+
```markdown
|
|
171
|
+
<!-- vibecoding:start version=0.2.0 -->
|
|
172
|
+
...
|
|
173
|
+
<!-- vibecoding:end -->
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
当前策略:
|
|
177
|
+
|
|
178
|
+
- 无入口文件:创建完整模板,模板自带 managed block。
|
|
179
|
+
- 有入口文件且无 managed block:默认 `manual`,不覆盖用户内容。
|
|
180
|
+
- `--merge=preview` / `--merge-preview`:输出可复制 managed block,不写入。
|
|
181
|
+
- `--merge=append` 或默认模式加 `--yes`:追加 managed block,不删除用户原内容。
|
|
182
|
+
- 有旧 managed block:默认安装或 `--merge=replace` 只替换 block。
|
|
183
|
+
- 有多个或不完整 block:doctor 报告问题,init 不猜测覆盖。
|
|
184
|
+
- 重复运行不重复追加。
|
|
185
|
+
|
|
186
|
+
验收:
|
|
187
|
+
|
|
188
|
+
```bash
|
|
189
|
+
node bin/vibe.mjs init --target .tmp/ux3-new --platform cursor
|
|
190
|
+
node bin/vibe.mjs doctor --root .tmp/ux3-new
|
|
191
|
+
node bin/vibe.mjs init --target .tmp/ux3-existing --platform cursor --merge=preview
|
|
192
|
+
node bin/vibe.mjs init --target .tmp/ux3-existing --platform cursor --merge=append
|
|
193
|
+
node bin/vibe.mjs doctor --root .tmp/ux3-existing
|
|
194
|
+
node bin/vibe.mjs init --target .tmp/ux3-existing --platform cursor --merge=append
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
期望:
|
|
198
|
+
|
|
199
|
+
- 已有 `AGENTS.md` 不丢用户内容。
|
|
200
|
+
- 重复运行不会重复追加。
|
|
201
|
+
- doctor 能识别 managed block 是否存在和是否过期。
|
|
202
|
+
|
|
203
|
+
## UX-4:安装配置与生命周期命令
|
|
204
|
+
|
|
205
|
+
目标:给项目安装状态一个稳定数据源,支撑 update / repair / uninstall。
|
|
206
|
+
|
|
207
|
+
当前交付:
|
|
208
|
+
|
|
209
|
+
- `vibe init` 会写入 `.vibecoding/config.json`。
|
|
210
|
+
- `bin/vibe.mjs` 路由 `update` / `repair` / `uninstall` 到 `tools/vibe-lifecycle/index.mjs`。
|
|
211
|
+
- `vibe-doctor` 校验 lifecycle config 的存在、JSON 合法性和 managed entry 状态。
|
|
212
|
+
- `doctor` 输出按 summary-first 呈现,先给 `Health summary`、`Next manual action`,再按 `Blocking`、`Warnings`、`Info` 分组。
|
|
213
|
+
- `update` / `repair` / `uninstall` dry-run 输出包含 `Impact summary`、`Safety boundary`、动作 severity 和下一步人工动作。
|
|
214
|
+
|
|
215
|
+
当前配置:
|
|
216
|
+
|
|
217
|
+
```json
|
|
218
|
+
{
|
|
219
|
+
"version": 1,
|
|
220
|
+
"profile": "standard",
|
|
221
|
+
"platforms": ["cursor"],
|
|
222
|
+
"interaction": "lightweight",
|
|
223
|
+
"runtime": { "enabled": false },
|
|
224
|
+
"managed_entries": {
|
|
225
|
+
"AGENTS.md": true
|
|
226
|
+
},
|
|
227
|
+
"docs_installed": false,
|
|
228
|
+
"lifecycle": {
|
|
229
|
+
"update": "managed-assets-and-managed-blocks-only",
|
|
230
|
+
"repair": "missing-assets-and-managed-entries-only",
|
|
231
|
+
"uninstall": "remove-managed-blocks-and-kit-directory-preserve-runtime-state"
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
当前命令:
|
|
237
|
+
|
|
238
|
+
```bash
|
|
239
|
+
node bin/vibe.mjs update --root <project> --dry-run
|
|
240
|
+
node bin/vibe.mjs repair --root <project> --dry-run
|
|
241
|
+
node bin/vibe.mjs uninstall --root <project> --dry-run
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
边界:
|
|
245
|
+
|
|
246
|
+
- `update` 刷新 `.vibecoding/` 资产和已有 managed block。
|
|
247
|
+
- `repair` 补缺失文件,并只在 config 或旧安装状态能证明安全时恢复入口文件。
|
|
248
|
+
- `uninstall` 删除 managed block 和 `.vibecoding/`,保留 `.vibecoding-state/`。
|
|
249
|
+
- 所有命令默认只生成 dry-run plan;写入必须显式传 `--confirm` 或 `--yes`。
|
|
250
|
+
- 没有 managed block 的入口文件永远不被 lifecycle 命令覆盖。
|
|
251
|
+
|
|
252
|
+
验收:
|
|
253
|
+
|
|
254
|
+
```bash
|
|
255
|
+
node bin/vibe.mjs init --target .tmp/ux4-config --platform cursor
|
|
256
|
+
node bin/vibe.mjs doctor --root .tmp/ux4-config
|
|
257
|
+
node bin/vibe.mjs repair --root .tmp/ux4-config --dry-run
|
|
258
|
+
node bin/vibe.mjs uninstall --root .tmp/ux4-config --dry-run
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
期望:
|
|
262
|
+
|
|
263
|
+
- `doctor` 能识别并校验 `.vibecoding/config.json`,并用 summary-first 输出说明 blocking / warning / info。
|
|
264
|
+
- `repair --dry-run` 能解释将修什么,并显示 `Impact summary`、`Safety boundary` 和 `Next manual action`。
|
|
265
|
+
- `uninstall --dry-run` 能列出删除范围,并明确只删除 managed block / `.vibecoding/`、保留 `.vibecoding-state/`。
|
|
266
|
+
- 不删除用户非 managed 内容。
|
|
267
|
+
|
|
268
|
+
## UX-5:轻量 session-start bootstrap
|
|
269
|
+
|
|
270
|
+
目标:补齐新会话自动知道项目安装了 Vibecoding 的体验差距。
|
|
271
|
+
|
|
272
|
+
当前交付:
|
|
273
|
+
|
|
274
|
+
- `hooks/session-start/session-start.mjs` 作为跨平台可执行 bootstrap。
|
|
275
|
+
- `hooks/session-start/session-start.md` 收缩为轻量路由提示。
|
|
276
|
+
- Cursor / Codex hook 示例引用安装后的 bootstrap command。
|
|
277
|
+
- Claude adapter 文档说明可用 `--format claude` 输出 SessionStart additional context。
|
|
278
|
+
- adapter `plugin.json` 声明 `sessionStartBootstrap` 能力。
|
|
279
|
+
- doctor 校验 bootstrap 文件、plugin 元数据和 hook 示例引用。
|
|
280
|
+
|
|
281
|
+
命令:
|
|
282
|
+
|
|
283
|
+
```bash
|
|
284
|
+
node .vibecoding/hooks/session-start/session-start.mjs --format auto
|
|
285
|
+
node .vibecoding/hooks/session-start/session-start.mjs --format cursor
|
|
286
|
+
node .vibecoding/hooks/session-start/session-start.mjs --format claude
|
|
287
|
+
node .vibecoding/hooks/session-start/session-start.mjs --format codex
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
原则:
|
|
291
|
+
|
|
292
|
+
- 只注入轻量 bootstrap,不注入完整长 skill。
|
|
293
|
+
- 提示 agent 先按轻量路由处理,必要时读取 `.vibecoding/skills/using-vibecoding/SKILL.md`。
|
|
294
|
+
- 不调用 runtime,不写 `.vibecoding-state/`,不自动执行 `next_skill`。
|
|
295
|
+
- 不调用 subagent、MCP、daemon、平台 API、git 或 worktree。
|
|
296
|
+
|
|
297
|
+
验收 prompt:
|
|
298
|
+
|
|
299
|
+
```text
|
|
300
|
+
我想给这个项目加一个新功能,先帮我规划一下。
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
期望:
|
|
304
|
+
|
|
305
|
+
- agent 不直接写代码。
|
|
306
|
+
- agent 识别 Vibecoding 轻量路由。
|
|
307
|
+
- 需求模糊时进入 brainstorming / planning。
|
|
308
|
+
- session-start 输出不包含完整 skill 内容。
|
|
309
|
+
|
|
310
|
+
## UX-6:平台原生插件打包准备
|
|
311
|
+
|
|
312
|
+
目标:在 CLI 和项目安装生命周期稳定后,生成平台原生插件草案目录,为 marketplace 发布前 smoke 做准备。
|
|
313
|
+
|
|
314
|
+
当前交付:
|
|
315
|
+
|
|
316
|
+
- `tools/vibe-plugin-pack/index.mjs` 从 `adapters/` 生成插件草案。
|
|
317
|
+
- `tools/vibe-plugin-pack/README.md` 说明平台插件和项目安装的职责边界。
|
|
318
|
+
- `bin/vibe.mjs plugin pack` 作为薄 wrapper 路由。
|
|
319
|
+
- repo doctor 检查 UX-6 打包工具存在,并检查工具保留 adapter 事实来源和 runtime state 禁止边界。
|
|
320
|
+
- release check 覆盖 `plugin pack --dry-run`、生成和 `--check`。
|
|
321
|
+
|
|
322
|
+
生成目录:
|
|
323
|
+
|
|
324
|
+
```text
|
|
325
|
+
.tmp/vibe-plugins/
|
|
326
|
+
.cursor-plugin/
|
|
327
|
+
plugin.json
|
|
328
|
+
hooks.json
|
|
329
|
+
.codex-plugin/
|
|
330
|
+
plugin.json
|
|
331
|
+
hooks.json
|
|
332
|
+
.claude-plugin/
|
|
333
|
+
plugin.json
|
|
334
|
+
marketplace.json
|
|
335
|
+
install.md
|
|
336
|
+
```
|
|
337
|
+
|
|
338
|
+
命令:
|
|
339
|
+
|
|
340
|
+
```bash
|
|
341
|
+
node bin/vibe.mjs plugin pack --platform all --out .tmp/vibe-plugins --dry-run
|
|
342
|
+
node bin/vibe.mjs plugin pack --platform all --out .tmp/vibe-plugins
|
|
343
|
+
node bin/vibe.mjs plugin pack --platform all --out .tmp/vibe-plugins --check
|
|
344
|
+
```
|
|
345
|
+
|
|
346
|
+
目标体验:
|
|
347
|
+
|
|
348
|
+
```text
|
|
349
|
+
Cursor: /add-plugin vibecoding
|
|
350
|
+
Claude: /plugin install vibecoding@...
|
|
351
|
+
Codex: /plugins -> Vibecoding Kit
|
|
352
|
+
```
|
|
353
|
+
|
|
354
|
+
边界:
|
|
355
|
+
|
|
356
|
+
- `adapters/` 是事实来源,不常驻手写 `.cursor-plugin/` / `.codex-plugin` / `.claude-plugin` 副本。
|
|
357
|
+
- 默认输出到 `.tmp/`,避免过早 marketplace 化。
|
|
358
|
+
- 平台插件负责会话级 bootstrap。
|
|
359
|
+
- 项目级 `vibe init` 负责 `.vibecoding/` 项目契约。
|
|
360
|
+
- 插件安装不等同于项目安装,二者不互相覆盖。
|
|
361
|
+
- 不复制业务项目状态,不创建 `.vibecoding-state/`。
|
|
362
|
+
|
|
363
|
+
验收:
|
|
364
|
+
|
|
365
|
+
- dry-run 能输出三平台生成计划且不写文件。
|
|
366
|
+
- 写入模式能生成三平台插件草案目录。
|
|
367
|
+
- `--check` 能确认生成物与 `adapters/` 中的 manifest / hook 示例一致。
|
|
368
|
+
- 插件草案声明轻量 `sessionStartBootstrap`,且不注入完整 skill、不写 runtime state、不自动执行 `next_skill`。
|
|
369
|
+
- 项目级 `vibe init` 仍能独立安装和 doctor。
|
|
370
|
+
- 平台插件和项目安装职责清楚。
|
|
371
|
+
|
|
372
|
+
## 推荐实施顺序
|
|
373
|
+
|
|
374
|
+
1. UX-1:文档和验收先行。
|
|
375
|
+
2. UX-2:CLI wrapper,让命令短起来。
|
|
376
|
+
3. UX-3:managed block,解决真实项目安装痛点。
|
|
377
|
+
4. UX-4:config + update / repair / uninstall,补生命周期。
|
|
378
|
+
5. UX-5:轻量 session-start bootstrap,追平启动体验。
|
|
379
|
+
6. UX-6:平台原生插件打包,最后做分发体验。
|
|
380
|
+
|
|
381
|
+
## 风险控制
|
|
382
|
+
|
|
383
|
+
- 过早做 marketplace 会拖慢核心安装体验。
|
|
384
|
+
- session-start 注入过重会增加 token 成本。
|
|
385
|
+
- 没有 managed block 就自动合并入口文件,容易误伤用户规则。
|
|
386
|
+
- 没有 `.vibecoding/config.json` 就做 update / uninstall,只能依赖文件扫描,可靠性不足。
|
|
387
|
+
|
|
388
|
+
## 本路线不做
|
|
389
|
+
|
|
390
|
+
- 不默认启用 runtime。
|
|
391
|
+
- 不自动创建 `.vibecoding-state/`。
|
|
392
|
+
- 不自动调用 subagent、MCP、daemon 或平台 API。
|
|
393
|
+
- 不自动改 git、worktree、branch、stash。
|
|
394
|
+
- 不把插件安装等同于项目安装。
|