just-vibe 0.7.0 → 0.8.1
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/CHANGELOG.md +33 -0
- package/README.md +31 -8
- package/docs/command-quality.md +11 -3
- package/docs/compatibility.md +6 -0
- package/docs/prompt-improvements.md +19 -0
- package/docs/releases.md +6 -0
- package/docs/technical-audit.md +40 -0
- package/docs/technical-coverage.md +326 -0
- package/evals/README.md +11 -1
- package/evals/behavior/harness.mjs +2 -5
- package/evals/conversation/README.md +59 -0
- package/evals/conversation/controls/atomic.mjs +9 -0
- package/evals/conversation/controls/browser.mjs +15 -0
- package/evals/conversation/controls/cleanup.mjs +15 -0
- package/evals/conversation/controls/fingerprint.mjs +16 -0
- package/evals/conversation/controls/privacy.mjs +5 -0
- package/evals/conversation/controls/rules.mjs +5 -0
- package/evals/conversation/controls/transcript.mjs +6 -0
- package/evals/conversation/fixture/README.md +13 -0
- package/evals/conversation/fixture/src/atomic.mjs +7 -0
- package/evals/conversation/fixture/src/browser.mjs +5 -0
- package/evals/conversation/fixture/src/cleanup.mjs +13 -0
- package/evals/conversation/fixture/src/fingerprint.mjs +16 -0
- package/evals/conversation/fixture/src/privacy.mjs +4 -0
- package/evals/conversation/fixture/src/rules.mjs +6 -0
- package/evals/conversation/fixture/src/transcript.mjs +5 -0
- package/evals/conversation/harness.mjs +96 -0
- package/evals/conversation/oracle.mjs +85 -0
- package/evals/releases/0.8.0-publication.json +35 -0
- package/evals/releases/0.8.0-technical-guidance.md +27 -0
- package/evals/releases/0.8.0.md +43 -0
- package/evals/releases/0.8.1.md +13 -0
- package/evals/releases/prompt-improvements/conversation.json +348 -0
- package/evals/releases/prompt-improvements/lesson.json +8 -0
- package/evals/releases/prompt-improvements/lesson.md +55 -0
- package/evals/releases/prompt-improvements.md +32 -0
- package/evals/scenarios.json +2873 -234
- package/evals/security/README.md +19 -0
- package/evals/security/controls.mjs +66 -0
- package/evals/security/fixtures/harbor/service.mjs +37 -0
- package/evals/security/fixtures/orbit/service.mjs +33 -0
- package/evals/security/run.mjs +2 -0
- package/package.json +4 -2
- package/plugins/just-vibe/.claude-plugin/plugin.json +1 -1
- package/plugins/just-vibe/.codex-plugin/plugin.json +1 -1
- package/plugins/just-vibe/catalog/commands.json +2667 -703
- package/plugins/just-vibe/catalog/packs.json +154 -22
- package/plugins/just-vibe/catalog/profiles.json +224 -112
- package/plugins/just-vibe/references/command-reference.md +4 -3
- package/plugins/just-vibe/references/daily-workflows.md +8 -4
- package/plugins/just-vibe/references/decision-history.md +23 -0
- package/plugins/just-vibe/references/examples/api.md +15 -0
- package/plugins/just-vibe/references/examples/architecture.md +15 -0
- package/plugins/just-vibe/references/examples/backend.md +15 -0
- package/plugins/just-vibe/references/examples/data.md +15 -0
- package/plugins/just-vibe/references/examples/database.md +15 -0
- package/plugins/just-vibe/references/examples/decisions.md +15 -0
- package/plugins/just-vibe/references/examples/general.md +15 -0
- package/plugins/just-vibe/references/examples/git.md +15 -0
- package/plugins/just-vibe/references/examples/github.md +15 -0
- package/plugins/just-vibe/references/examples/installation.md +15 -0
- package/plugins/just-vibe/references/examples/llm.md +15 -0
- package/plugins/just-vibe/references/examples/ml-data.md +15 -0
- package/plugins/just-vibe/references/examples/ml-deployment.md +15 -0
- package/plugins/just-vibe/references/examples/ml-evaluation.md +15 -0
- package/plugins/just-vibe/references/examples/ml-experiments.md +15 -0
- package/plugins/just-vibe/references/examples/operations.md +15 -0
- package/plugins/just-vibe/references/examples/react.md +15 -0
- package/plugins/just-vibe/references/examples/security.md +15 -0
- package/plugins/just-vibe/references/examples/testing.md +15 -0
- package/plugins/just-vibe/references/examples/ui.md +15 -0
- package/plugins/just-vibe/references/examples/vercel.md +15 -0
- package/plugins/just-vibe/references/examples/vite.md +15 -0
- package/plugins/just-vibe/references/execution.md +11 -1
- package/plugins/just-vibe/references/experiments.md +39 -0
- package/plugins/just-vibe/references/instruction-memory.md +3 -1
- package/plugins/just-vibe/references/intent-workflows.md +39 -0
- package/plugins/just-vibe/references/memory-checks.md +57 -0
- package/plugins/just-vibe/references/packs/general.md +4 -0
- package/plugins/just-vibe/references/packs/security.md +4 -0
- package/plugins/just-vibe/references/packs/testing.md +4 -0
- package/plugins/just-vibe/references/practice.md +35 -0
- package/plugins/just-vibe/references/profile-comparisons.md +18 -0
- package/plugins/just-vibe/references/profiles/accessibility-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/agent-systems-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/ai-evaluation-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/ai-security-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/analytics-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/android-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/api-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/application-security-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/applied-ai-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/backend-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/bioinformatics-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/blockchain-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/build-release-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/business-intelligence-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/capacity-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/causal-inference-scientist.md +6 -0
- package/plugins/just-vibe/references/profiles/cloud-architect.md +6 -0
- package/plugins/just-vibe/references/profiles/cloud-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/cloud-security-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/compiler-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/computer-vision-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/controls-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/creative-technologist.md +6 -0
- package/plugins/just-vibe/references/profiles/cryptography-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/data-analyst.md +6 -0
- package/plugins/just-vibe/references/profiles/data-architect.md +6 -0
- package/plugins/just-vibe/references/profiles/data-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/data-governance-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/data-platform-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/data-quality-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/data-scientist.md +6 -0
- package/plugins/just-vibe/references/profiles/database-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/database-reliability-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/design-systems-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/desktop-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/detection-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/developer-advocate.md +6 -0
- package/plugins/just-vibe/references/profiles/developer-experience-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/devops-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/distributed-systems-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/edge-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/embedded-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/engineering-manager.md +6 -0
- package/plugins/just-vibe/references/profiles/enterprise-architect.md +6 -0
- package/plugins/just-vibe/references/profiles/experimentation-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/finops-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/firmware-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/frontend-architect.md +6 -0
- package/plugins/just-vibe/references/profiles/frontend-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/fullstack-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/game-networking-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/gameplay-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/geospatial-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/graphics-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/hpc-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/identity-access-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/inference-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/infrastructure-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/integration-architect.md +6 -0
- package/plugins/just-vibe/references/profiles/integration-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/ios-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/iot-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/kubernetes-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/llm-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/machine-learning-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/ml-architect.md +6 -0
- package/plugins/just-vibe/references/profiles/ml-data-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/ml-platform-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/mlops-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/mobile-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/network-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/nlp-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/observability-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/performance-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/platform-architect.md +6 -0
- package/plugins/just-vibe/references/profiles/platform-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/principal-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/privacy-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/product-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/product-security-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/protocol-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/qa-automation-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/recommendation-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/reinforcement-learning-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/research-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/research-scientist.md +6 -0
- package/plugins/just-vibe/references/profiles/responsible-ai-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/robotics-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/runtime-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/scientific-software-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/search-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/security-architect.md +6 -0
- package/plugins/just-vibe/references/profiles/security-automation-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/security-incident-responder.md +6 -0
- package/plugins/just-vibe/references/profiles/senior-software-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/simulation-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/site-reliability-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/software-architect.md +6 -0
- package/plugins/just-vibe/references/profiles/solutions-architect.md +6 -0
- package/plugins/just-vibe/references/profiles/speech-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/staff-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/storage-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/streaming-data-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/supply-chain-security-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/systems-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/tech-lead.md +6 -0
- package/plugins/just-vibe/references/profiles/technical-writer.md +6 -0
- package/plugins/just-vibe/references/profiles/test-infrastructure-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/ui-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/ux-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/web-performance-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles/xr-engineer.md +6 -0
- package/plugins/just-vibe/references/profiles.md +3 -1
- package/plugins/just-vibe/references/proofs.md +43 -0
- package/plugins/just-vibe/references/runtime.md +6 -0
- package/plugins/just-vibe/references/scenarios/language-review.md +37 -0
- package/plugins/just-vibe/references/security/files.md +31 -0
- package/plugins/just-vibe/references/security/frameworks.md +45 -0
- package/plugins/just-vibe/references/security/identity.md +47 -0
- package/plugins/just-vibe/references/security/injection.md +66 -0
- package/plugins/just-vibe/references/security/review.md +45 -0
- package/plugins/just-vibe/references/security/scanners.md +41 -0
- package/plugins/just-vibe/references/security/supply-chain.md +25 -0
- package/plugins/just-vibe/references/task-undo.md +29 -0
- package/plugins/just-vibe/references/validation.md +10 -0
- package/plugins/just-vibe/references/working-alternatives.md +37 -0
- package/plugins/just-vibe/scripts/lib/catalog.mjs +25 -1
- package/plugins/just-vibe/scripts/lib/decisions.mjs +186 -0
- package/plugins/just-vibe/scripts/lib/evidence.mjs +28 -10
- package/plugins/just-vibe/scripts/lib/experiments.mjs +396 -0
- package/plugins/just-vibe/scripts/lib/intent-runtime.mjs +109 -0
- package/plugins/just-vibe/scripts/lib/memory.mjs +596 -0
- package/plugins/just-vibe/scripts/lib/practice.mjs +281 -0
- package/plugins/just-vibe/scripts/lib/process.mjs +28 -2
- package/plugins/just-vibe/scripts/lib/profiles.mjs +1 -1
- package/plugins/just-vibe/scripts/lib/proof.mjs +304 -0
- package/plugins/just-vibe/scripts/lib/routing.mjs +5 -0
- package/plugins/just-vibe/scripts/lib/storage.mjs +11 -5
- package/plugins/just-vibe/scripts/lib/tasks.mjs +250 -0
- package/plugins/just-vibe/scripts/lib/workbench.mjs +452 -0
- package/plugins/just-vibe/scripts/lib/workspaces.mjs +589 -0
- package/plugins/just-vibe/scripts/preview-worker.mjs +108 -0
- package/plugins/just-vibe/scripts/toolkit.mjs +17 -2
- package/plugins/just-vibe/skills/api-breaking/SKILL.md +18 -3
- package/plugins/just-vibe/skills/api-client/SKILL.md +18 -3
- package/plugins/just-vibe/skills/api-contract-test/SKILL.md +18 -3
- package/plugins/just-vibe/skills/api-design/SKILL.md +18 -3
- package/plugins/just-vibe/skills/api-errors/SKILL.md +18 -3
- package/plugins/just-vibe/skills/api-openapi/SKILL.md +18 -3
- package/plugins/just-vibe/skills/api-pagination/SKILL.md +20 -5
- package/plugins/just-vibe/skills/api-webhooks/SKILL.md +18 -3
- package/plugins/just-vibe/skills/arch-boundaries/SKILL.md +20 -5
- package/plugins/just-vibe/skills/arch-contracts/SKILL.md +18 -3
- package/plugins/just-vibe/skills/arch-event-flow/SKILL.md +18 -3
- package/plugins/just-vibe/skills/arch-feature/SKILL.md +20 -5
- package/plugins/just-vibe/skills/arch-map/SKILL.md +18 -3
- package/plugins/just-vibe/skills/arch-modernize/SKILL.md +18 -3
- package/plugins/just-vibe/skills/arch-scale/SKILL.md +20 -5
- package/plugins/just-vibe/skills/arch-tenancy/SKILL.md +18 -3
- package/plugins/just-vibe/skills/auto/SKILL.md +18 -6
- package/plugins/just-vibe/skills/automate/SKILL.md +18 -3
- package/plugins/just-vibe/skills/backend-auth/SKILL.md +16 -3
- package/plugins/just-vibe/skills/backend-cache/SKILL.md +22 -7
- package/plugins/just-vibe/skills/backend-concurrency/SKILL.md +20 -5
- package/plugins/just-vibe/skills/backend-idempotency/SKILL.md +21 -6
- package/plugins/just-vibe/skills/backend-jobs/SKILL.md +18 -3
- package/plugins/just-vibe/skills/backend-permissions/SKILL.md +19 -4
- package/plugins/just-vibe/skills/backend-resilience/SKILL.md +18 -3
- package/plugins/just-vibe/skills/backend-service/SKILL.md +19 -3
- package/plugins/just-vibe/skills/brainstorm/SKILL.md +18 -3
- package/plugins/just-vibe/skills/build/SKILL.md +18 -3
- package/plugins/just-vibe/skills/challenge/SKILL.md +18 -3
- package/plugins/just-vibe/skills/checkpoint/SKILL.md +15 -2
- package/plugins/just-vibe/skills/ci/SKILL.md +18 -3
- package/plugins/just-vibe/skills/cleanup/SKILL.md +18 -3
- package/plugins/just-vibe/skills/compare/SKILL.md +25 -3
- package/plugins/just-vibe/skills/copy/SKILL.md +18 -3
- package/plugins/just-vibe/skills/coverage/SKILL.md +18 -3
- package/plugins/just-vibe/skills/data-backfill/SKILL.md +20 -4
- package/plugins/just-vibe/skills/data-contract/SKILL.md +18 -3
- package/plugins/just-vibe/skills/data-incremental/SKILL.md +18 -3
- package/plugins/just-vibe/skills/data-lineage/SKILL.md +18 -3
- package/plugins/just-vibe/skills/data-pipeline/SKILL.md +18 -3
- package/plugins/just-vibe/skills/data-profile/SKILL.md +18 -3
- package/plugins/just-vibe/skills/data-quality/SKILL.md +18 -3
- package/plugins/just-vibe/skills/data-reconcile/SKILL.md +18 -3
- package/plugins/just-vibe/skills/db-access/SKILL.md +19 -3
- package/plugins/just-vibe/skills/db-explain/SKILL.md +18 -3
- package/plugins/just-vibe/skills/db-index/SKILL.md +18 -3
- package/plugins/just-vibe/skills/db-integrity/SKILL.md +20 -5
- package/plugins/just-vibe/skills/db-locks/SKILL.md +18 -3
- package/plugins/just-vibe/skills/db-migrate/SKILL.md +19 -7
- package/plugins/just-vibe/skills/db-query/SKILL.md +20 -5
- package/plugins/just-vibe/skills/db-schema/SKILL.md +18 -3
- package/plugins/just-vibe/skills/debug/SKILL.md +18 -3
- package/plugins/just-vibe/skills/decide/SKILL.md +25 -5
- package/plugins/just-vibe/skills/decision-adr/SKILL.md +18 -3
- package/plugins/just-vibe/skills/decision-buy-build/SKILL.md +18 -3
- package/plugins/just-vibe/skills/decision-matrix/SKILL.md +18 -3
- package/plugins/just-vibe/skills/decision-premortem/SKILL.md +18 -3
- package/plugins/just-vibe/skills/decision-reversible/SKILL.md +18 -3
- package/plugins/just-vibe/skills/decision-revisit/SKILL.md +18 -3
- package/plugins/just-vibe/skills/decision-spike/SKILL.md +20 -5
- package/plugins/just-vibe/skills/deploy/SKILL.md +20 -4
- package/plugins/just-vibe/skills/deps/SKILL.md +19 -3
- package/plugins/just-vibe/skills/design/SKILL.md +18 -3
- package/plugins/just-vibe/skills/docs/SKILL.md +18 -3
- package/plugins/just-vibe/skills/doctor/SKILL.md +16 -2
- package/plugins/just-vibe/skills/explain/SKILL.md +18 -3
- package/plugins/just-vibe/skills/fix/SKILL.md +19 -4
- package/plugins/just-vibe/skills/git-bisect/SKILL.md +19 -4
- package/plugins/just-vibe/skills/git-commit/SKILL.md +21 -6
- package/plugins/just-vibe/skills/git-conflicts/SKILL.md +19 -4
- package/plugins/just-vibe/skills/git-diff/SKILL.md +19 -4
- package/plugins/just-vibe/skills/git-recover/SKILL.md +19 -4
- package/plugins/just-vibe/skills/git-split/SKILL.md +19 -4
- package/plugins/just-vibe/skills/git-status/SKILL.md +19 -4
- package/plugins/just-vibe/skills/git-worktree/SKILL.md +23 -7
- package/plugins/just-vibe/skills/github-actions/SKILL.md +18 -6
- package/plugins/just-vibe/skills/github-address-review/SKILL.md +19 -4
- package/plugins/just-vibe/skills/github-fix-ci/SKILL.md +17 -5
- package/plugins/just-vibe/skills/github-issue/SKILL.md +21 -6
- package/plugins/just-vibe/skills/github-pr/SKILL.md +19 -7
- package/plugins/just-vibe/skills/github-release/SKILL.md +21 -5
- package/plugins/just-vibe/skills/github-review/SKILL.md +20 -4
- package/plugins/just-vibe/skills/github-triage/SKILL.md +19 -4
- package/plugins/just-vibe/skills/handoff/SKILL.md +15 -4
- package/plugins/just-vibe/skills/help/SKILL.md +12 -3
- package/plugins/just-vibe/skills/integrate/SKILL.md +18 -3
- package/plugins/just-vibe/skills/learn/SKILL.md +18 -3
- package/plugins/just-vibe/skills/llm-cost/SKILL.md +18 -3
- package/plugins/just-vibe/skills/llm-evals/SKILL.md +24 -8
- package/plugins/just-vibe/skills/llm-injection/SKILL.md +18 -3
- package/plugins/just-vibe/skills/llm-prompt/SKILL.md +18 -3
- package/plugins/just-vibe/skills/llm-rag/SKILL.md +21 -5
- package/plugins/just-vibe/skills/llm-retrieval/SKILL.md +18 -3
- package/plugins/just-vibe/skills/llm-structured/SKILL.md +18 -3
- package/plugins/just-vibe/skills/llm-tools/SKILL.md +22 -6
- package/plugins/just-vibe/skills/map/SKILL.md +18 -3
- package/plugins/just-vibe/skills/match/SKILL.md +18 -3
- package/plugins/just-vibe/skills/migrate/SKILL.md +19 -4
- package/plugins/just-vibe/skills/ml-ablation/SKILL.md +20 -4
- package/plugins/just-vibe/skills/ml-baseline/SKILL.md +20 -4
- package/plugins/just-vibe/skills/ml-batch/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-calibrate/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-dataset/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-dataset-version/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-debug-training/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-drift/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-error-analysis/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-evaluate/SKILL.md +25 -4
- package/plugins/just-vibe/skills/ml-experiments/SKILL.md +21 -3
- package/plugins/just-vibe/skills/ml-explain/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-features/SKILL.md +22 -7
- package/plugins/just-vibe/skills/ml-frame/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-imbalance/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-inference-perf/SKILL.md +20 -4
- package/plugins/just-vibe/skills/ml-labels/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-leakage/SKILL.md +24 -9
- package/plugins/just-vibe/skills/ml-monitor/SKILL.md +20 -4
- package/plugins/just-vibe/skills/ml-package/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-parity/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-report/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-reproduce/SKILL.md +20 -4
- package/plugins/just-vibe/skills/ml-robustness/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-rollout/SKILL.md +20 -4
- package/plugins/just-vibe/skills/ml-serving/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-slices/SKILL.md +23 -3
- package/plugins/just-vibe/skills/ml-split/SKILL.md +21 -6
- package/plugins/just-vibe/skills/ml-threshold/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-train/SKILL.md +17 -6
- package/plugins/just-vibe/skills/ml-training-cost/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ml-tune/SKILL.md +20 -4
- package/plugins/just-vibe/skills/ops-alerts/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ops-container/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ops-incident/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ops-logs/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ops-observability/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ops-postmortem/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ops-restore/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ops-runbook/SKILL.md +18 -3
- package/plugins/just-vibe/skills/orient/SKILL.md +15 -2
- package/plugins/just-vibe/skills/perf/SKILL.md +18 -3
- package/plugins/just-vibe/skills/plan/SKILL.md +18 -3
- package/plugins/just-vibe/skills/polish/SKILL.md +18 -3
- package/plugins/just-vibe/skills/pr/SKILL.md +19 -4
- package/plugins/just-vibe/skills/profile/SKILL.md +11 -2
- package/plugins/just-vibe/skills/profiles/SKILL.md +15 -1
- package/plugins/just-vibe/skills/react-async/SKILL.md +20 -5
- package/plugins/just-vibe/skills/react-audit/SKILL.md +18 -3
- package/plugins/just-vibe/skills/react-component/SKILL.md +14 -3
- package/plugins/just-vibe/skills/react-effects/SKILL.md +20 -5
- package/plugins/just-vibe/skills/react-forms/SKILL.md +18 -3
- package/plugins/just-vibe/skills/react-hydration/SKILL.md +19 -4
- package/plugins/just-vibe/skills/react-rerenders/SKILL.md +18 -3
- package/plugins/just-vibe/skills/react-state/SKILL.md +18 -3
- package/plugins/just-vibe/skills/refactor/SKILL.md +18 -3
- package/plugins/just-vibe/skills/release/SKILL.md +19 -4
- package/plugins/just-vibe/skills/remember/SKILL.md +25 -7
- package/plugins/just-vibe/skills/repro/SKILL.md +18 -3
- package/plugins/just-vibe/skills/research/SKILL.md +18 -3
- package/plugins/just-vibe/skills/resume/SKILL.md +12 -3
- package/plugins/just-vibe/skills/review/SKILL.md +32 -10
- package/plugins/just-vibe/skills/scope/SKILL.md +18 -3
- package/plugins/just-vibe/skills/security/SKILL.md +20 -3
- package/plugins/just-vibe/skills/security-authz/SKILL.md +18 -3
- package/plugins/just-vibe/skills/security-config/SKILL.md +19 -3
- package/plugins/just-vibe/skills/security-dependencies/SKILL.md +19 -3
- package/plugins/just-vibe/skills/security-fix/SKILL.md +20 -3
- package/plugins/just-vibe/skills/security-inputs/SKILL.md +19 -3
- package/plugins/just-vibe/skills/security-secrets/SKILL.md +19 -3
- package/plugins/just-vibe/skills/security-threat-model/SKILL.md +18 -3
- package/plugins/just-vibe/skills/security-uploads/SKILL.md +18 -3
- package/plugins/just-vibe/skills/setup/SKILL.md +15 -2
- package/plugins/just-vibe/skills/skill/SKILL.md +18 -3
- package/plugins/just-vibe/skills/spec/SKILL.md +18 -3
- package/plugins/just-vibe/skills/tasks/SKILL.md +18 -3
- package/plugins/just-vibe/skills/teach/SKILL.md +22 -7
- package/plugins/just-vibe/skills/teach-test/SKILL.md +15 -1
- package/plugins/just-vibe/skills/test/SKILL.md +18 -3
- package/plugins/just-vibe/skills/test-e2e/SKILL.md +19 -4
- package/plugins/just-vibe/skills/test-fixtures/SKILL.md +19 -4
- package/plugins/just-vibe/skills/test-flaky/SKILL.md +19 -4
- package/plugins/just-vibe/skills/test-integration/SKILL.md +19 -4
- package/plugins/just-vibe/skills/test-load/SKILL.md +19 -4
- package/plugins/just-vibe/skills/test-property/SKILL.md +19 -4
- package/plugins/just-vibe/skills/test-regression/SKILL.md +21 -6
- package/plugins/just-vibe/skills/test-unit/SKILL.md +19 -4
- package/plugins/just-vibe/skills/tools/SKILL.md +12 -3
- package/plugins/just-vibe/skills/trace/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ui-accessibility/SKILL.md +20 -5
- package/plugins/just-vibe/skills/ui-audit/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ui-flow/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ui-motion/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ui-responsive/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ui-states/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ui-system/SKILL.md +18 -3
- package/plugins/just-vibe/skills/ui-visual-diff/SKILL.md +18 -3
- package/plugins/just-vibe/skills/undo/SKILL.md +75 -0
- package/plugins/just-vibe/skills/vercel-audit/SKILL.md +18 -3
- package/plugins/just-vibe/skills/vercel-build-fix/SKILL.md +17 -6
- package/plugins/just-vibe/skills/vercel-env/SKILL.md +18 -3
- package/plugins/just-vibe/skills/vercel-performance/SKILL.md +18 -3
- package/plugins/just-vibe/skills/vercel-preview/SKILL.md +21 -5
- package/plugins/just-vibe/skills/vercel-release-check/SKILL.md +20 -5
- package/plugins/just-vibe/skills/vercel-routing/SKILL.md +18 -3
- package/plugins/just-vibe/skills/vercel-runtime/SKILL.md +15 -4
- package/plugins/just-vibe/skills/verify/SKILL.md +21 -4
- package/plugins/just-vibe/skills/vite-assets/SKILL.md +20 -5
- package/plugins/just-vibe/skills/vite-bundle/SKILL.md +21 -6
- package/plugins/just-vibe/skills/vite-chunks/SKILL.md +19 -4
- package/plugins/just-vibe/skills/vite-config/SKILL.md +19 -4
- package/plugins/just-vibe/skills/vite-env/SKILL.md +19 -4
- package/plugins/just-vibe/skills/vite-hmr/SKILL.md +19 -4
- package/plugins/just-vibe/skills/vite-setup/SKILL.md +19 -4
- package/plugins/just-vibe/skills/vite-upgrade/SKILL.md +19 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
## 0.8.1
|
|
6
|
+
|
|
7
|
+
- Clarify review/teaching variants and local implementation versus live execution; add effective infer/default/ask policies to every command.
|
|
8
|
+
- Consolidate runtime-backed prompt procedures, make proof reports conditional, and preserve selected findings, exclusions and corrections across turns.
|
|
9
|
+
- Add 22 conditional worked examples with misleading cases and concrete contributions for all 112 profiles, including a same-feature comparison.
|
|
10
|
+
- Add a multi-turn review/repair harness with seven defect categories, working/disabled controls, immutable turn captures and independent scope checks; include linked guides in isolated evaluation payloads.
|
|
11
|
+
|
|
12
|
+
- Bind lab/practice cleanup to complete reviewed snapshots, reject staged changes, and preflight every workspace before removing any.
|
|
13
|
+
- Redact structured credentials and common sensitive command arguments before recording evidence; preserve output structure and command outcomes for key/value logs.
|
|
14
|
+
- Preserve POSIX file permissions during memory edits, workspace selection, task undo and recovery, with conservative restoration for legacy records.
|
|
15
|
+
- Treat symlink targets as incomplete snapshot coverage so old checks cannot certify changed linked inputs.
|
|
16
|
+
- Retry browser text, URL, title and focus assertions within a bounded deadline for asynchronous UI changes.
|
|
17
|
+
- Allow retired memory rules to move while retaining provenance, current revision checks and destination-file protection.
|
|
18
|
+
- Add regression coverage and delayed-state Chromium smoke checks for the reviewed defects; document cleanup input migration and permission compatibility.
|
|
19
|
+
|
|
20
|
+
## 0.8.0
|
|
21
|
+
|
|
22
|
+
- Expand all 213 canonical workflows with authored technical evidence, methods, misdiagnosis controls and discriminating checks; aliases inherit them.
|
|
23
|
+
- Route review/security into concrete vulnerability, framework, language and available-scanner guides, with primary references and scoped safe examples.
|
|
24
|
+
- Add complete technical coverage documentation, transitive shipped-reference validation and five executable security fixture controls; preserve earlier model results as historical evidence.
|
|
25
|
+
|
|
26
|
+
- Add explicit rule provenance, managed instruction edits, loading/conflict inspection, and control-validated text/import guards.
|
|
27
|
+
- Add working-alternative labs with Git worktrees, shared checks, leased previews, comparison reports, journaled selection and reviewed cleanup.
|
|
28
|
+
- Add requirement-linked verification records, freshness checks, browser screenshots and local HTML reports; human acceptance remains attributed.
|
|
29
|
+
- Add repository exercises with solution/starter controls, protected test identities, hints, optional progress and real submissions.
|
|
30
|
+
- Add bounded JSON/MLflow/W&B imports and binary/regression comparison with slice, parity, temporal and identity diagnostics.
|
|
31
|
+
- Add selective local task undo and journal recovery, plus the new undo skill.
|
|
32
|
+
- Add decision histories with watched assumptions, numeric reconsideration triggers and timestamped reviews.
|
|
33
|
+
- Expand relevant command contracts and publish focused workflow guides; no new runtime dependencies or automatic remote actions.
|
|
34
|
+
|
|
35
|
+
|
|
3
36
|
## 0.7.0
|
|
4
37
|
|
|
5
38
|
- Extend remember to merge explicit rules or current conversation decisions into CLAUDE.md/AGENTS.md, with shared instructions for both hosts, preview mode and optional named checkpoints in one invocation. Preserve existing guidance, user corrections and scope; distinguish saved files from verified host loading.
|
package/README.md
CHANGED
|
@@ -2,12 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
Tools, skills, and commands for coding agents.
|
|
4
4
|
|
|
5
|
-
**v0.
|
|
5
|
+
**v0.8.1 contains 112 engineering profiles and 216 skill names backed by 213 canonical workflows** for Codex and Claude Code: focused skills for development, architecture, decisions, Git/GitHub, Vercel, Vite, React, UI, backend, APIs, databases, data, ML, LLMs, testing, security, and operations. Each canonical workflow has selection guidance, scope, concrete decision branches, evidence requirements, outputs, verification, recovery conditions and at least three example requests. Each entry point also contains an authored technical method: evidence to inspect, a procedure, a likely misdiagnosis and a discriminating check. Applied methods live in 22 pack guides. The v0.8.1 prompt update adds explicit infer/default/ask policies, a conditional worked example for each pack, and guidance for preserving corrections across turns; see [prompt improvements](docs/prompt-improvements.md).
|
|
6
|
+
|
|
7
|
+
The [technical audit](docs/technical-audit.md) and [complete coverage inventory](docs/technical-coverage.md) document the latest expansion across every canonical workflow. Review/security commands now route to concrete vulnerability, framework, language and scanner guides. [Security fixture controls](evals/security/README.md) distinguish seeded defects from legitimate behavior; they do not claim model-review accuracy.
|
|
6
8
|
|
|
7
9
|
The active coding agent executes the workflows with its available tools. The dependency-free Node.js utilities provide catalog search, project inspection, capability discovery, and bounded run-state validation. Installing just-vibe does not connect services, grant permissions, provision compute, or make every workflow's prerequisites available.
|
|
8
10
|
|
|
9
11
|
v0.7 adds a quick path for simple work, a small starter catalog, contextual routing with reasons, project preferences and checkpoints, explicit evidence collectors, and optional project hooks. Detailed auth, component, training and delivery scenarios load only when relevant. See [daily workflows](plugins/just-vibe/references/daily-workflows.md) for configuration and examples, and the [v0.7 validation record](evals/releases/0.7.0.md) for tested scope and limits.
|
|
10
12
|
|
|
13
|
+
|
|
14
|
+
## Intent, evidence and reversible work
|
|
15
|
+
|
|
16
|
+
v0.8.0 adds working runtime helpers behind natural-language skill requests:
|
|
17
|
+
|
|
18
|
+
- Remember an explicit correction, inspect instruction provenance/loading, and test a rule with compliant/violating controls.
|
|
19
|
+
- Build two or three alternatives in owned worktrees, run equal checks, preview them, and apply the selected result with an undo record.
|
|
20
|
+
- Tie requirements to actual checks, screenshots and attributed human review in a local HTML report with freshness checks.
|
|
21
|
+
- Learn from isolated exercises in the actual project, with validated controls, progressive hints and real submissions.
|
|
22
|
+
- Import MLflow, W&B or JSON exports; compare binary/regression metrics, slices, identity, feature parity and temporal coverage.
|
|
23
|
+
- Reverse a recorded local task while preserving nonoverlapping later edits; retain decision history with observable reconsideration triggers.
|
|
24
|
+
|
|
25
|
+
See the [workflow guide](plugins/just-vibe/references/intent-workflows.md) for examples, boundaries and recovery. Users provide ordinary briefs; the agent prepares the helper inputs. These features support judgment rather than claiming an objective quality score.
|
|
26
|
+
|
|
27
|
+
**Release status:** This checkout prepares v0.8.1. The previous [v0.8.0 publication](evals/releases/0.8.0-publication.json) was verified on npm. For this release, the maintainer again waived unavailable GitHub Actions because of the account minutes limit; local checks and exact-archive verification remain required. See the [v0.8.1 validation record](evals/releases/0.8.1.md).
|
|
28
|
+
|
|
29
|
+
|
|
11
30
|
## Use the workflows
|
|
12
31
|
|
|
13
32
|
In Claude Code, use a command followed by as much context as needed:
|
|
@@ -49,11 +68,11 @@ Save decisions and corrections from the current conversation in one invocation:
|
|
|
49
68
|
|
|
50
69
|
In Codex, select **remember** from just-vibe and append the same brief. The skill updates the established `CLAUDE.md` or `AGENTS.md`, merges existing guidance and saves only explicit instructions and accepted decisions. `both` keeps common rules in `AGENTS.md` with a relative import in `CLAUDE.md`. A checkpoint keeps temporary progress separate. You can also append one specific rule or ask for a preview without writing.
|
|
51
70
|
|
|
52
|
-
|
|
71
|
+
The host interprets the conversation; the `memory` helper can persist individual rules with provenance and file-hash checks, while the agent merges established context sections and shared imports. Terminal `project remember` only stores JSON notes. See [rule checks and memory inspection](plugins/just-vibe/references/memory-checks.md) for the new helper. Saved instructions improve continuity but do not guarantee adherence or recover unavailable chat history. See [merging, host loading and examples](plugins/just-vibe/references/instruction-memory.md). Update older installations to receive this extension.
|
|
53
72
|
|
|
54
73
|
## Engineering profiles
|
|
55
74
|
|
|
56
|
-
Profiles shape the agent's priorities and verification throughout a task. They are separate from commands: a machine learning engineer emphasizes prediction-time data, evaluation and serving parity; a frontend engineer emphasizes state, interactions and rendered behavior. Each of the **112 profiles** has concrete priorities, a decision rule, checks, a scope boundary and candidate workflows.
|
|
75
|
+
Profiles shape the agent's priorities and verification throughout a task. They are separate from commands: a machine learning engineer emphasizes prediction-time data, evaluation and serving parity; a frontend engineer emphasizes state, interactions and rendered behavior. Each of the **112 profiles** has concrete priorities, a decision rule, checks, a scope boundary, a concrete task contribution and candidate workflows.
|
|
57
76
|
|
|
58
77
|
```text
|
|
59
78
|
/just-vibe:profiles architecture
|
|
@@ -195,7 +214,7 @@ Use the equivalent `--local` flag when switching from a development checkout. Gi
|
|
|
195
214
|
|
|
196
215
|
## Native install without Node.js
|
|
197
216
|
|
|
198
|
-
The included skills and plugin manifests can be installed directly. Node.js 22+ is still required for
|
|
217
|
+
The included skills and plugin manifests can be installed directly. Node.js 22+ is still required for all bundled CLI helpers, including installation, discovery, sessions, quizzes and the intent workflows.
|
|
199
218
|
|
|
200
219
|
```sh
|
|
201
220
|
# Codex
|
|
@@ -238,22 +257,26 @@ The default checks validate catalogs, generated skills, references, manifests an
|
|
|
238
257
|
|
|
239
258
|
The default host test copies and installs the bundled payload. `--local` tests direct checkout registration. `--github` installs the published private repository and requires Git access; use it after pushing a release. Both variants execute the cached plugin runtime and check every skill is present, independently of the source checkout.
|
|
240
259
|
|
|
241
|
-
Edit `plugins/just-vibe/catalog/commands.json` for command contracts and
|
|
260
|
+
Edit `plugins/just-vibe/catalog/commands.json` for command contracts and the single canonical procedure, `catalog/packs.json` for pack requirements/input policies, and `references/packs/` plus `references/examples/` for operational guidance. Profile contributions live in `catalog/profiles.json`. Run `npm run build:skills` to regenerate skills, the command reference, technical coverage inventory, and evaluation scenarios. `npm run validate` rejects drift. Neither generation nor the installed runtime depends on the ignored local plan.
|
|
242
261
|
|
|
243
262
|
Every workflow has normal, edge and missing-evidence cases in [evals/scenarios.json](evals/scenarios.json). The [independent behavioral harness](evals/README.md) additionally prepares and grades 21 raw-artifact tasks, including code repairs and report judgments. Catalog structure, runtime utility coverage and observed agent behavior have separate validation fields. These are not claims that all commands have been run against live services or evaluated across models. See the [v0.4 observed results](evals/releases/0.4.0.md) and [evaluation guidance](evals/README.md) for the tested scope.
|
|
244
263
|
|
|
264
|
+
The [conversation harness](evals/conversation/README.md) records review, selected repairs and later corrections with separate scope and behavior checks. Its [development record](evals/releases/prompt-improvements.md) describes observed results and limitations.
|
|
265
|
+
|
|
245
266
|
The [v0.6 results](evals/releases/0.6.0.md) record 32 controlled implementation trials and eight revised-command development trials. All passed their bounded checks; this does not rank overall output quality or convenience. The tasks supplied detailed contracts and did not measure user effort or preference. The [command-depth review](docs/command-quality.md#focused-depth-review) explains 27 focused revisions, and the [contextual review guide](docs/command-quality.md#output-quality-and-convenience) covers judgment, clarity, discovery and correction burden. [Benchmark protocol and supporting metrics](evals/benchmark/README.md) remain available for reproduction. External integration, browser and deployment checks require the relevant task environment.
|
|
246
267
|
|
|
268
|
+
The [technical-guidance validation record](evals/releases/0.8.0-technical-guidance.md) covers the latest command expansion and security controls. The earlier [v0.8 validation record](evals/releases/0.8.0.md) covers the new intent helpers, real browser reports, installation checks and the pending Windows confirmation. GitHub CI remains blocked by account billing. The maintainer waived that gate for the [verified npm publication](evals/releases/0.8.0-publication.json); Windows validation remains pending.
|
|
269
|
+
|
|
247
270
|
### Repository layout
|
|
248
271
|
|
|
249
272
|
| Path | Purpose |
|
|
250
273
|
|---|---|
|
|
251
274
|
| `bin/just-vibe.mjs` | npm-executable entry point |
|
|
252
275
|
| `plugins/just-vibe/scripts/installer.mjs` | Self-contained installer, also shipped inside the plugin |
|
|
253
|
-
| `plugins/just-vibe/scripts/toolkit.mjs` |
|
|
254
|
-
| `plugins/just-vibe/scripts/lib/` | Catalog, capability,
|
|
276
|
+
| `plugins/just-vibe/scripts/toolkit.mjs` | Discovery, routing, sessions, quizzes and persistent intent workflow CLI |
|
|
277
|
+
| `plugins/just-vibe/scripts/lib/` | Catalog, capability, session, quiz, memory, guard, task, lab, proof, practice, experiment and decision modules |
|
|
255
278
|
| `plugins/just-vibe/catalog/` | Canonical command contracts, 112 role profiles, examples, prerequisites and pack metadata |
|
|
256
|
-
| `plugins/just-vibe/skills/` |
|
|
279
|
+
| `plugins/just-vibe/skills/` | 216 installed names, including three canonical aliases and setup |
|
|
257
280
|
| `plugins/just-vibe/references/` | Shared execution rules, runtime interface, domain guidance and command index |
|
|
258
281
|
| `.agents/plugins/marketplace.json` | Codex marketplace |
|
|
259
282
|
| `.claude-plugin/marketplace.json` | Claude Code marketplace |
|
package/docs/command-quality.md
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
# Command contracts and quality
|
|
2
2
|
|
|
3
|
+
The [2026-09-20 technical audit](technical-audit.md) extends every canonical workflow with an authored technical method; the [coverage inventory](technical-coverage.md) shows the addressed failure distinctions and conditional routes.
|
|
4
|
+
|
|
3
5
|
The catalog owns each canonical command's scope, mode, required inputs, selection boundary, procedure, decision branches, outputs, observable verification, recovery conditions and examples. Pack references add reusable methods and worked scenarios. Generated SKILL.md files expose all examples and link the applicable guide; they are not independently edited.
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
216 names resolve to 213 canonical workflows. `do` inherits `auto`, `responsive` inherits `ui-responsive`, and `a11y` inherits `ui-accessibility`. Alias source records contain identity/search metadata only. Loading materializes the canonical behavior; validation rejects scope, mode, method, evidence or other behavioral drift. Routing collapses matching aliases to one canonical recommendation while preserving matched names.
|
|
8
|
+
|
|
9
|
+
The [prompt improvements](prompt-improvements.md) add explicit input policies, request variants, conditional worked examples, concrete role contributions and multi-turn validation. Every generated skill uses one canonical procedure; do not reintroduce parallel runtime instructions.
|
|
6
10
|
|
|
7
11
|
## Writing useful guidance
|
|
8
12
|
|
|
9
|
-
Selection should distinguish a nearby workflow: explain versus teach, debug versus fix, local pr drafting versus remote github-pr identity/actions. A task-specific procedure should name the evidence to inspect and the decision it informs. A branch should cover a situation that changes the method, such as a partial external operation, incompatible old consumer, stale request completion or missing evaluation labels.
|
|
13
|
+
Selection should distinguish a nearby workflow: explain versus teach, debug versus fix, local pr drafting versus remote github-pr identity/actions. A task-specific procedure should name the evidence to inspect and the decision it informs. Canonical commands must also supply technical.evidence, technical.method, technical.pitfall and technical.check. These fields appear directly in the skill, CLI contract and evaluation specification; references add conditional depth. A branch should cover a situation that changes the method, such as a partial external operation, incompatible old consumer, stale request completion or missing evaluation labels.
|
|
10
14
|
|
|
11
15
|
Outputs need enough structure to assess correctness: a comparison needs assumptions and decisive evidence; a migration needs ordered phases, compatibility and recovery boundaries; an audit needs observed/conditional/unknown findings. Normal, edge and missing-evidence requests demonstrate scope and input handling. They do not count as successful evaluations by existing in the catalog.
|
|
12
16
|
|
|
@@ -67,8 +71,12 @@ The schema verifies the presence and shape of this contract, not the quality of
|
|
|
67
71
|
|
|
68
72
|
## Profiles and ownership
|
|
69
73
|
|
|
70
|
-
`catalog/profiles.json` owns role guidance independently of action contracts. Maintain a distinct purpose, priorities, a decision rule, relevant verification, a boundary and valid canonical workflow links for each role. Generate the profile index and individual references with the same build command. A title alone is not a useful profile; nearby roles must change emphasis in an explainable way.
|
|
74
|
+
`catalog/profiles.json` owns role guidance independently of action contracts. Maintain a distinct purpose, priorities, a decision rule, relevant verification, a boundary, a concrete task contribution and valid canonical workflow links for each role. Generate the profile index and individual references with the same build command. A title alone is not a useful profile; nearby roles must change emphasis in an explainable way.
|
|
71
75
|
|
|
72
76
|
Test profile state transitions for pin protection, scope and budget preservation. Keep role discovery separate from activation. Do not claim that structural validation proves role expertise or that previous workflow trials evaluate newly added role guidance.
|
|
73
77
|
|
|
74
78
|
All generated work belongs to the user. Shared execution and Git/GitHub guidance prohibit agent self-attribution in commits, PRs and messages while preserving human credits and required third-party notices.
|
|
79
|
+
|
|
80
|
+
## v0.8 intent workflows
|
|
81
|
+
|
|
82
|
+
The [intent helpers](../plugins/just-vibe/references/intent-workflows.md) implement stateful memory/guard, lab, proof, practice, experiment, task and decision operations. The related commands load focused contracts for those modes; ordinary explanation/comparison remains read-only. Runtime fixture coverage is separate from end-to-end model behavior: new branches are not claimed as independently agent-evaluated.
|
package/docs/compatibility.md
CHANGED
|
@@ -27,3 +27,9 @@ Project state and contextual routing use the bundled Node utilities on all suppo
|
|
|
27
27
|
Optional hooks use PostToolUse and Stop and ship at the native plugin hook location. They remain inactive until project configuration and separate local trust are present. Codex also requires native hook trust. Native installation on macOS is verified separately from actual hook-event delivery on every host/OS. A direct hook runner test establishes handler behavior, not host parity. Command arrays support native executables and standard npm Windows wrappers through the shared process helper.
|
|
28
28
|
|
|
29
29
|
GitHub evidence needs authenticated gh; Vercel evidence needs authenticated vercel and an explicit deployment identity. Browser evidence needs project-installed Playwright and Chromium, with authorized interactions. SQL migration evidence inspects local SQL and an optional supplied applied-history export; it does not connect to a live database. The package installs no optional provider or browser dependencies automatically. See the [daily workflow reference](../plugins/just-vibe/references/daily-workflows.md).
|
|
30
|
+
|
|
31
|
+
## v0.8 intent workflows
|
|
32
|
+
|
|
33
|
+
The new memory/guard, task, lab, proof, practice, experiment and decision helpers use the existing Node runtime without added runtime dependencies. Labs/practice/local undo require Git and a committed project root. Preview commands must run foreground loopback servers; the worker owns their process lifetime. These worktrees are not security sandboxes. Selected file and snapshot bounds can require a narrower task; incomplete coverage never grants selection/cleanup authority.
|
|
34
|
+
|
|
35
|
+
The 216-skill payload passed isolated native Codex/Claude lifecycle checks on macOS. ML imports use supplied local exports, and browser proof screenshots use already-installed Playwright/Chromium. Native teaching questions still depend on the active host mode; exercise assessment does not fabricate question-tool availability. See the [v0.8 validation record](../evals/releases/0.8.0.md) and [workflow guides](../plugins/just-vibe/references/intent-workflows.md).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Prompt improvements
|
|
2
|
+
|
|
3
|
+
These changes improve existing workflows rather than adding more command names. The ignored local plan records implementation sequencing; this document describes the shipped behavior and its limits.
|
|
4
|
+
|
|
5
|
+
| Area | Result | Source of truth |
|
|
6
|
+
| --- | --- | --- |
|
|
7
|
+
| Modes and scope | Separate source inspection, local implementation and actual execution. ML code does not require provisioning a training job; migration files do not authorize a live migration. | Command mode/scope/branches and shared execution |
|
|
8
|
+
| Request variants | Review a diff, repository or named files; teach a topic, explain workflow implementation, or prepare explicitly requested practice. | `review` and `teach` contracts |
|
|
9
|
+
| Missing context | Infer from project evidence, state reversible defaults, ask only about consequential unresolved choices. Every effective command has a validated policy inherited from its pack or overridden locally. | `inputPolicy` in catalogs |
|
|
10
|
+
| Worked examples | All 22 packs have an evidence → decision → artifact → verification example and a misleading case. Read these only when relevant. | `references/examples/` |
|
|
11
|
+
| Prompt duplication | One canonical execution procedure, with conditional guides for detailed operations. Ordinary verification does not require a durable proof report. | `procedure` and skill generator |
|
|
12
|
+
| Profiles | All 112 roles name a concrete contribution; a same-feature comparison explains differences without expanding permission or scope. | Profile `contribution` and comparison guide |
|
|
13
|
+
| Follow-ups | Keep stable finding identities, selected paths, exclusions, corrections and completed work across “fix these” and “continue.” | Shared execution and conversation evaluation |
|
|
14
|
+
|
|
15
|
+
The `requiredInputs` fields identify evidence for the selected outcome; they are not mandatory questionnaires for every variant. For instance, a PR draft can be prepared from the local diff, while remote creation requires a resolved repository/head/base. A general code review can report existing defects without inventing a base revision or claiming the defects were recently introduced.
|
|
16
|
+
|
|
17
|
+
The catalog resolves pack input policies before alias materialization. CLI contracts, generated skills and evaluation specifications therefore see the same policy. Validation rejects missing policies, profile contributions, independent alias behavior and a second runtime procedure. Structural checks cannot establish that the prose is useful; the [conversation evaluation](../evals/conversation/README.md) records actual responses, selected edits and independent checks.
|
|
18
|
+
|
|
19
|
+
Examples are authored guidance, not measured results. Role contributions are expected artifacts, not credentials. The [observed development record](../evals/releases/prompt-improvements.md) distinguishes executable controls, real agent outcomes and untested environments. These changes are included in the v0.8.1 release candidate; see its [validation and publication status](../evals/releases/0.8.1.md).
|
package/docs/releases.md
CHANGED
|
@@ -49,3 +49,9 @@ Push the release commit and matching `vVERSION` tag. Run **Publish npm package**
|
|
|
49
49
|
If publication fails, check whether that exact version already exists before retrying. A successful upload followed by a failed verification still consumes the version. If a bad release is already live, publish a corrected new version and deprecate the affected one with a clear explanation.
|
|
50
50
|
|
|
51
51
|
Official references: [npm publishing](https://docs.npmjs.com/creating-and-publishing-unscoped-public-packages/), [trusted publishing](https://docs.npmjs.com/trusted-publishers/), [semantic versioning](https://docs.npmjs.com/about-semantic-versioning/).
|
|
52
|
+
|
|
53
|
+
## Maintainer exception for unavailable CI
|
|
54
|
+
|
|
55
|
+
The default publisher still requires successful CI. An explicit maintainer instruction can waive unavailable CI for a specific release without recording a fictitious pass or disabling Actions globally. Keep the local checks and exact-archive verification: match the clean source commit, package/manifests, SHA-256 release record and tested tarball; check whether that version already exists before publication. Publish only those verified bytes, complete npm account verification, then compare registry integrity and execute the exact version from a fresh temporary directory/cache outside the source checkout. `npm exec` inside the package checkout can select the local package and fail to resolve its bin.
|
|
56
|
+
|
|
57
|
+
Record the reason, maintainer authorization, source commit, artifact hashes, local checks and outstanding platform coverage. Tag the actual published source revision. Never overwrite a published version or weaken the normal CI check for future releases. The [0.8.0 publication record](../evals/releases/0.8.0-publication.json) documents this release-specific exception.
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Technical guidance audit
|
|
2
|
+
|
|
3
|
+
Audit scope: all 213 canonical workflows, their three aliases, 22 pack references, conditional scenario routes, 112 profile-to-workflow links, generator, CLI exposure and packaged references. This is a bounded inventory of the shipped catalog, not a claim to cover every possible technology or vulnerability. The audit was performed on 2026-09-20 against the existing 0.8.0 source.
|
|
4
|
+
|
|
5
|
+
## Findings and implemented corrections
|
|
6
|
+
|
|
7
|
+
| Area | Gap | Correction |
|
|
8
|
+
|---|---|---|
|
|
9
|
+
| Every canonical command | Procedures often named a task without enough evidence, diagnostic distinctions or acceptance checks | An authored technical method now specifies evidence, application, a likely misdiagnosis and a discriminating check in the catalog and generated skill |
|
|
10
|
+
| General review and security | General security linked only general methods; specialist depth could remain unloaded | Direct security guide plus a review selector routes by actual changed boundary and stack |
|
|
11
|
+
| Security vulnerabilities | Limited explicit mechanisms, unsafe/corrected examples and false-positive controls | Injection, identity, files, supply chain and framework guides with bounded regression/control cases and primary references |
|
|
12
|
+
| Scanners | No concrete shared selection, execution and incomplete-result procedure | Available-tool recipes for dependency, source and secret analysis, explicit version/config/revision identity and partial/failure handling |
|
|
13
|
+
| Language-specific reviews | Shared review depended heavily on model recall | Conditional JavaScript/TypeScript, Python, Go, JVM, Rust/native and SQL review branches |
|
|
14
|
+
| Architecture and decisions | Shared methods did not enumerate each command's decisive checks | Ownership/contract/crash-window/scale/transition checks; sensitivity, feasibility, reversal and evidence rules for each decision workflow |
|
|
15
|
+
| Git and GitHub | Existing staging and delivery depth was uneven across adjacent workflows | Per-command three-tree, recovery, bisect, PR identity, CI trust and artifact provenance checks; existing user-ownership rules retained |
|
|
16
|
+
| Vercel and Vite | Generic build/performance guidance left configuration and measurement ambiguity | Build/runtime scope, deployment identity, asset MIME/base paths, public env exposure, HMR layer, chunk lifetime and compatible upgrade checks |
|
|
17
|
+
| React and UI | Existing async/component scenarios did not give every workflow its own diagnostic contract | State ownership, two-instance behavior, form errors, hydration, profiling, reduced motion, keyboard and visual-baseline controls |
|
|
18
|
+
| Backend/API/database/data | Detailed shared examples could be missed or applied too generally | Specific transaction/retry/claim/cursor/webhook/RLS/join-grain/watermark/backfill and reconciliation checks in every entry point |
|
|
19
|
+
| ML and LLM | Broad coverage lacked consistent per-command failure distinctions | Prediction/fit-time boundaries, label maturity, leakage controls, calibration/threshold denominators, parity, rollout, retrieval permission and tool-execution checks |
|
|
20
|
+
| Testing and operations | Some commands lacked concrete counterexamples and recovery observations | Broken/good controls, independent oracles, load bounds, failure cleanup, telemetry gaps, image layers, restore evidence and causal incident checks |
|
|
21
|
+
| Profiles | A role could appear to supply specialist knowledge by itself | Profile selection now explicitly routes to the selected workflow's technical method; roles remain priorities, not credentials or permission |
|
|
22
|
+
| Generation and packaging | Structural presence alone could allow missing technical fields or dangling deep references | Technical contract validation, reproducible generation, coverage inventory and transitive local-reference checks |
|
|
23
|
+
|
|
24
|
+
The full [coverage inventory](technical-coverage.md) lists the specific ambiguity addressed by each command and its conditional references. Existing strong authentication, Git index, ML temporal and training scenarios were retained. All changes are owned by the user; no agent authorship is introduced.
|
|
25
|
+
|
|
26
|
+
## Maintenance contract
|
|
27
|
+
|
|
28
|
+
Edit canonical `catalog/commands.json`, not generated SKILL.md files. Every canonical command supplies `technical.evidence`, `technical.method`, `technical.pitfall` and `technical.check`; aliases inherit them. These are authored behavioral instructions, not generic pack-name substitution. Keep substantial conditional examples in references and attach a route explaining when to read them. Rebuild with `npm run build:skills`.
|
|
29
|
+
|
|
30
|
+
Use installed versions and current primary documentation for unstable API/default behavior. Sources are linked in the relevant guide. The audit consulted OWASP, framework maintainers, language/runtime documentation and scanner maintainers; it did not copy ECC's instruction text or treat checklist length as evidence of better reviews. Existing Git, auth, ML and domain methods remain the basis for deeper scenario work.
|
|
31
|
+
|
|
32
|
+
## Validation and limits
|
|
33
|
+
|
|
34
|
+
The [validation record](../evals/releases/0.8.0-technical-guidance.md) records the completed local checks and their limits.
|
|
35
|
+
|
|
36
|
+
`npm run check` verifies the catalog, generated artifacts, reference graph, runtime tests and executable security fixture controls. `npm run eval:security` runs the isolated controls directly. The fixture assertions distinguish seeded defects from legitimate behavior; they do not run a model or establish a comparative ECC score. The evaluation guide explains how to perform a separate blinded model review without leaking expected findings.
|
|
37
|
+
|
|
38
|
+
Scanner recipes are host-agent procedures for tools already available and authorized. No scanner is silently installed, no registry/advisory database is bundled, and no hook or remote scan is automatically enabled. Structural validation cannot prove an agent loads every relevant guide or reasons correctly. Broad behavioral quality and current-version ecosystem coverage require ongoing real-task evaluation.
|
|
39
|
+
|
|
40
|
+
This change does not by itself publish an npm version or establish new Windows/remote-CI evidence. Release records remain authoritative for actual published artifacts and platform validation.
|