just-vibe 0.7.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/plugins/marketplace.json +12 -0
- package/.claude-plugin/marketplace.json +12 -0
- package/CHANGELOG.md +49 -0
- package/LICENSE +21 -0
- package/README.md +282 -0
- package/bin/just-vibe.mjs +3 -0
- package/docs/command-quality.md +74 -0
- package/docs/compatibility.md +29 -0
- package/docs/releases.md +51 -0
- package/evals/README.md +47 -0
- package/evals/behavior/cases/arch-events/flow.json +12 -0
- package/evals/behavior/cases/arch-events/task.md +3 -0
- package/evals/behavior/cases/authz/access.mjs +1 -0
- package/evals/behavior/cases/authz/task.md +3 -0
- package/evals/behavior/cases/checkout/checkout.mjs +1 -0
- package/evals/behavior/cases/checkout/contract.md +1 -0
- package/evals/behavior/cases/checkout/keep.txt +1 -0
- package/evals/behavior/cases/checkout/task.md +3 -0
- package/evals/behavior/cases/data-reconcile/source.json +14 -0
- package/evals/behavior/cases/data-reconcile/target.json +14 -0
- package/evals/behavior/cases/data-reconcile/task.md +3 -0
- package/evals/behavior/cases/db-migrate/context.json +13 -0
- package/evals/behavior/cases/db-migrate/migration.sql +3 -0
- package/evals/behavior/cases/db-migrate/task.md +3 -0
- package/evals/behavior/cases/db-query/query.sql +1 -0
- package/evals/behavior/cases/db-query/rows.json +32 -0
- package/evals/behavior/cases/db-query/task.md +3 -0
- package/evals/behavior/cases/decision-matrix/decision.json +22 -0
- package/evals/behavior/cases/decision-matrix/task.md +3 -0
- package/evals/behavior/cases/github-pr/prs.json +16 -0
- package/evals/behavior/cases/github-pr/request.json +9 -0
- package/evals/behavior/cases/github-pr/task.md +3 -0
- package/evals/behavior/cases/idempotency/contract.md +1 -0
- package/evals/behavior/cases/idempotency/orders.mjs +1 -0
- package/evals/behavior/cases/idempotency/task.md +3 -0
- package/evals/behavior/cases/ml-checkpoint/checkpoint.json +6 -0
- package/evals/behavior/cases/ml-checkpoint/task.md +3 -0
- package/evals/behavior/cases/ml-checkpoint/training.json +16 -0
- package/evals/behavior/cases/ml-evaluate/labels.json +18 -0
- package/evals/behavior/cases/ml-evaluate/predictions.json +14 -0
- package/evals/behavior/cases/ml-evaluate/task.md +3 -0
- package/evals/behavior/cases/ml-leakage/task.json +30 -0
- package/evals/behavior/cases/ml-leakage/task.md +3 -0
- package/evals/behavior/cases/ml-parity/serving.json +16 -0
- package/evals/behavior/cases/ml-parity/task.md +3 -0
- package/evals/behavior/cases/ml-parity/training.json +16 -0
- package/evals/behavior/cases/ml-split/task.json +7 -0
- package/evals/behavior/cases/ml-split/task.md +3 -0
- package/evals/behavior/cases/ops-logs/context.json +4 -0
- package/evals/behavior/cases/ops-logs/events.json +17 -0
- package/evals/behavior/cases/ops-logs/task.md +3 -0
- package/evals/behavior/cases/rag-boundary/documents.json +26 -0
- package/evals/behavior/cases/rag-boundary/query.json +5 -0
- package/evals/behavior/cases/rag-boundary/task.md +3 -0
- package/evals/behavior/cases/react-race/AccountPanel.jsx +1 -0
- package/evals/behavior/cases/react-race/loader.mjs +1 -0
- package/evals/behavior/cases/react-race/task.md +3 -0
- package/evals/behavior/cases/regression-test/checkout.mjs +1 -0
- package/evals/behavior/cases/regression-test/contract.md +1 -0
- package/evals/behavior/cases/regression-test/task.md +3 -0
- package/evals/behavior/cases/ui-accessibility/observations.json +17 -0
- package/evals/behavior/cases/ui-accessibility/task.md +3 -0
- package/evals/behavior/cases/vercel-env/consumers.json +13 -0
- package/evals/behavior/cases/vercel-env/metadata.json +11 -0
- package/evals/behavior/cases/vercel-env/task.md +3 -0
- package/evals/behavior/cases/vite-assets/deployment.json +8 -0
- package/evals/behavior/cases/vite-assets/render.mjs +1 -0
- package/evals/behavior/cases/vite-assets/task.md +3 -0
- package/evals/behavior/cases/vite-assets/vite.config.mjs +1 -0
- package/evals/behavior/cases.json +185 -0
- package/evals/behavior/code-oracles.mjs +58 -0
- package/evals/behavior/harness.mjs +109 -0
- package/evals/behavior/oracles.json +196 -0
- package/evals/benchmark/README.md +57 -0
- package/evals/benchmark/cases.json +9 -0
- package/evals/benchmark/harness.mjs +231 -0
- package/evals/benchmark/oracles/node.mjs +69 -0
- package/evals/benchmark/oracles/python.py +117 -0
- package/evals/benchmark/report.mjs +62 -0
- package/evals/benchmark/repos/async-cache/README.md +12 -0
- package/evals/benchmark/repos/async-cache/TASK.md +1 -0
- package/evals/benchmark/repos/async-cache/package.json +1 -0
- package/evals/benchmark/repos/async-cache/src/cache.mjs +13 -0
- package/evals/benchmark/repos/async-cache/src/view.mjs +9 -0
- package/evals/benchmark/repos/async-cache/test/smoke.test.mjs +9 -0
- package/evals/benchmark/repos/ledger/README.md +11 -0
- package/evals/benchmark/repos/ledger/TASK.md +1 -0
- package/evals/benchmark/repos/ledger/src/service.py +14 -0
- package/evals/benchmark/repos/ledger/src/store.py +12 -0
- package/evals/benchmark/repos/ledger/test/test_smoke.py +9 -0
- package/evals/benchmark/repos/scoped-commit/README.md +5 -0
- package/evals/benchmark/repos/scoped-commit/TASK.md +1 -0
- package/evals/benchmark/repos/scoped-commit/package.json +1 -0
- package/evals/benchmark/repos/scoped-commit/src/invoice.mjs +8 -0
- package/evals/benchmark/repos/scoped-commit/test/invoice.test.mjs +4 -0
- package/evals/benchmark/repos/temporal-ml/README.md +12 -0
- package/evals/benchmark/repos/temporal-ml/TASK.md +1 -0
- package/evals/benchmark/repos/temporal-ml/src/features.py +9 -0
- package/evals/benchmark/repos/temporal-ml/src/pipeline.py +10 -0
- package/evals/benchmark/repos/temporal-ml/src/report.py +2 -0
- package/evals/benchmark/repos/temporal-ml/test/test_smoke.py +7 -0
- package/evals/benchmark/support/commit-tree.mjs +11 -0
- package/evals/benchmark/support/python-test-report.py +48 -0
- package/evals/fixtures/checkout/checkout.mjs +4 -0
- package/evals/fixtures/checkout/checkout.test.mjs +13 -0
- package/evals/fixtures/checkout/package.json +6 -0
- package/evals/fixtures/checkout/unrelated.txt +1 -0
- package/evals/fixtures/ml/observations.csv +5 -0
- package/evals/fixtures/ml/task.md +1 -0
- package/evals/releases/0.2.0.md +45 -0
- package/evals/releases/0.3.0.md +23 -0
- package/evals/releases/0.4.0-results.json +1274 -0
- package/evals/releases/0.4.0.md +55 -0
- package/evals/releases/0.5.0.md +28 -0
- package/evals/releases/0.6.0-after-results.json +1307 -0
- package/evals/releases/0.6.0-before-results.json +4850 -0
- package/evals/releases/0.6.0.md +94 -0
- package/evals/releases/0.7.0.md +32 -0
- package/evals/scenarios.json +7777 -0
- package/package.json +50 -0
- package/plugins/just-vibe/.claude-plugin/plugin.json +11 -0
- package/plugins/just-vibe/.codex-plugin/plugin.json +24 -0
- package/plugins/just-vibe/LICENSE +21 -0
- package/plugins/just-vibe/catalog/commands.json +16757 -0
- package/plugins/just-vibe/catalog/packs.json +115 -0
- package/plugins/just-vibe/catalog/profiles.json +2503 -0
- package/plugins/just-vibe/hooks/hooks.json +11 -0
- package/plugins/just-vibe/references/command-reference.md +328 -0
- package/plugins/just-vibe/references/daily-workflows.md +133 -0
- package/plugins/just-vibe/references/execution.md +60 -0
- package/plugins/just-vibe/references/instruction-memory.md +86 -0
- package/plugins/just-vibe/references/packs/api.md +27 -0
- package/plugins/just-vibe/references/packs/architecture.md +29 -0
- package/plugins/just-vibe/references/packs/backend.md +43 -0
- package/plugins/just-vibe/references/packs/data.md +27 -0
- package/plugins/just-vibe/references/packs/database.md +32 -0
- package/plugins/just-vibe/references/packs/decisions.md +29 -0
- package/plugins/just-vibe/references/packs/general.md +34 -0
- package/plugins/just-vibe/references/packs/git.md +45 -0
- package/plugins/just-vibe/references/packs/github.md +31 -0
- package/plugins/just-vibe/references/packs/installation.md +27 -0
- package/plugins/just-vibe/references/packs/llm.md +33 -0
- package/plugins/just-vibe/references/packs/ml-data.md +43 -0
- package/plugins/just-vibe/references/packs/ml-deployment.md +31 -0
- package/plugins/just-vibe/references/packs/ml-evaluation.md +29 -0
- package/plugins/just-vibe/references/packs/ml-experiments.md +29 -0
- package/plugins/just-vibe/references/packs/operations.md +35 -0
- package/plugins/just-vibe/references/packs/react.md +29 -0
- package/plugins/just-vibe/references/packs/security.md +31 -0
- package/plugins/just-vibe/references/packs/testing.md +35 -0
- package/plugins/just-vibe/references/packs/ui.md +29 -0
- package/plugins/just-vibe/references/packs/vercel.md +29 -0
- package/plugins/just-vibe/references/packs/vite.md +29 -0
- package/plugins/just-vibe/references/profile-reference.md +155 -0
- package/plugins/just-vibe/references/profiles/accessibility-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/agent-systems-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ai-evaluation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ai-security-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/analytics-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/android-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/api-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/application-security-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/applied-ai-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/backend-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/bioinformatics-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/blockchain-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/build-release-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/business-intelligence-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/capacity-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/causal-inference-scientist.md +31 -0
- package/plugins/just-vibe/references/profiles/cloud-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/cloud-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/cloud-security-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/compiler-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/computer-vision-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/controls-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/creative-technologist.md +31 -0
- package/plugins/just-vibe/references/profiles/cryptography-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/data-analyst.md +31 -0
- package/plugins/just-vibe/references/profiles/data-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/data-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/data-governance-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/data-platform-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/data-quality-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/data-scientist.md +31 -0
- package/plugins/just-vibe/references/profiles/database-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/database-reliability-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/design-systems-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/desktop-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/detection-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/developer-advocate.md +31 -0
- package/plugins/just-vibe/references/profiles/developer-experience-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/devops-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/distributed-systems-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/edge-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/embedded-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/engineering-manager.md +31 -0
- package/plugins/just-vibe/references/profiles/enterprise-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/experimentation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/finops-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/firmware-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/frontend-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/frontend-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/fullstack-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/game-networking-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/gameplay-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/geospatial-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/graphics-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/hpc-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/identity-access-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/inference-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/infrastructure-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/integration-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/integration-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ios-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/iot-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/kubernetes-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/llm-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/machine-learning-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ml-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/ml-data-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ml-platform-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/mlops-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/mobile-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/network-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/nlp-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/observability-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/performance-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/platform-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/platform-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/principal-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/privacy-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/product-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/product-security-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/protocol-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/qa-automation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/recommendation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/reinforcement-learning-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/research-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/research-scientist.md +31 -0
- package/plugins/just-vibe/references/profiles/responsible-ai-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/robotics-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/runtime-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/scientific-software-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/search-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/security-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/security-automation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/security-incident-responder.md +31 -0
- package/plugins/just-vibe/references/profiles/senior-software-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/simulation-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/site-reliability-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/software-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/solutions-architect.md +31 -0
- package/plugins/just-vibe/references/profiles/speech-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/staff-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/storage-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/streaming-data-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/supply-chain-security-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/systems-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/tech-lead.md +31 -0
- package/plugins/just-vibe/references/profiles/technical-writer.md +31 -0
- package/plugins/just-vibe/references/profiles/test-infrastructure-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ui-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/ux-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/web-performance-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles/xr-engineer.md +31 -0
- package/plugins/just-vibe/references/profiles.md +59 -0
- package/plugins/just-vibe/references/runtime.md +70 -0
- package/plugins/just-vibe/references/scenarios/auth.md +31 -0
- package/plugins/just-vibe/references/scenarios/combobox.md +9 -0
- package/plugins/just-vibe/references/scenarios/date-picker.md +9 -0
- package/plugins/just-vibe/references/scenarios/delivery-evidence.md +21 -0
- package/plugins/just-vibe/references/scenarios/dialog.md +9 -0
- package/plugins/just-vibe/references/scenarios/training.md +21 -0
- package/plugins/just-vibe/references/teach-test.md +37 -0
- package/plugins/just-vibe/references/teaching.md +34 -0
- package/plugins/just-vibe/references/validation.md +11 -0
- package/plugins/just-vibe/scripts/discover-capabilities.mjs +3 -0
- package/plugins/just-vibe/scripts/hooks.mjs +14 -0
- package/plugins/just-vibe/scripts/inspect-project.mjs +3 -0
- package/plugins/just-vibe/scripts/installer.mjs +280 -0
- package/plugins/just-vibe/scripts/lib/automation.mjs +142 -0
- package/plugins/just-vibe/scripts/lib/bundle.mjs +100 -0
- package/plugins/just-vibe/scripts/lib/catalog.mjs +135 -0
- package/plugins/just-vibe/scripts/lib/command.mjs +26 -0
- package/plugins/just-vibe/scripts/lib/continuity.mjs +77 -0
- package/plugins/just-vibe/scripts/lib/discovery.mjs +84 -0
- package/plugins/just-vibe/scripts/lib/entrypoint.mjs +12 -0
- package/plugins/just-vibe/scripts/lib/evidence.mjs +136 -0
- package/plugins/just-vibe/scripts/lib/process.mjs +44 -0
- package/plugins/just-vibe/scripts/lib/profiles.mjs +83 -0
- package/plugins/just-vibe/scripts/lib/project.mjs +60 -0
- package/plugins/just-vibe/scripts/lib/routing.mjs +82 -0
- package/plugins/just-vibe/scripts/lib/run.mjs +248 -0
- package/plugins/just-vibe/scripts/lib/storage.mjs +84 -0
- package/plugins/just-vibe/scripts/lib/teaching.mjs +118 -0
- package/plugins/just-vibe/scripts/toolkit.mjs +225 -0
- package/plugins/just-vibe/skills/a11y/SKILL.md +8 -0
- package/plugins/just-vibe/skills/api-breaking/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-client/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-contract-test/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-design/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-errors/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-openapi/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-pagination/SKILL.md +56 -0
- package/plugins/just-vibe/skills/api-webhooks/SKILL.md +56 -0
- package/plugins/just-vibe/skills/arch-boundaries/SKILL.md +58 -0
- package/plugins/just-vibe/skills/arch-contracts/SKILL.md +56 -0
- package/plugins/just-vibe/skills/arch-event-flow/SKILL.md +56 -0
- package/plugins/just-vibe/skills/arch-feature/SKILL.md +57 -0
- package/plugins/just-vibe/skills/arch-map/SKILL.md +56 -0
- package/plugins/just-vibe/skills/arch-modernize/SKILL.md +56 -0
- package/plugins/just-vibe/skills/arch-scale/SKILL.md +58 -0
- package/plugins/just-vibe/skills/arch-tenancy/SKILL.md +56 -0
- package/plugins/just-vibe/skills/auto/SKILL.md +67 -0
- package/plugins/just-vibe/skills/automate/SKILL.md +56 -0
- package/plugins/just-vibe/skills/backend-auth/SKILL.md +63 -0
- package/plugins/just-vibe/skills/backend-cache/SKILL.md +59 -0
- package/plugins/just-vibe/skills/backend-concurrency/SKILL.md +58 -0
- package/plugins/just-vibe/skills/backend-idempotency/SKILL.md +58 -0
- package/plugins/just-vibe/skills/backend-jobs/SKILL.md +56 -0
- package/plugins/just-vibe/skills/backend-permissions/SKILL.md +56 -0
- package/plugins/just-vibe/skills/backend-resilience/SKILL.md +56 -0
- package/plugins/just-vibe/skills/backend-service/SKILL.md +56 -0
- package/plugins/just-vibe/skills/brainstorm/SKILL.md +56 -0
- package/plugins/just-vibe/skills/build/SKILL.md +56 -0
- package/plugins/just-vibe/skills/challenge/SKILL.md +56 -0
- package/plugins/just-vibe/skills/checkpoint/SKILL.md +59 -0
- package/plugins/just-vibe/skills/ci/SKILL.md +56 -0
- package/plugins/just-vibe/skills/cleanup/SKILL.md +56 -0
- package/plugins/just-vibe/skills/compare/SKILL.md +56 -0
- package/plugins/just-vibe/skills/copy/SKILL.md +56 -0
- package/plugins/just-vibe/skills/coverage/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-backfill/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-contract/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-incremental/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-lineage/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-pipeline/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-profile/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-quality/SKILL.md +56 -0
- package/plugins/just-vibe/skills/data-reconcile/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-access/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-explain/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-index/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-integrity/SKILL.md +57 -0
- package/plugins/just-vibe/skills/db-locks/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-migrate/SKILL.md +63 -0
- package/plugins/just-vibe/skills/db-query/SKILL.md +56 -0
- package/plugins/just-vibe/skills/db-schema/SKILL.md +56 -0
- package/plugins/just-vibe/skills/debug/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decide/SKILL.md +57 -0
- package/plugins/just-vibe/skills/decision-adr/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-buy-build/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-matrix/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-premortem/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-reversible/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-revisit/SKILL.md +56 -0
- package/plugins/just-vibe/skills/decision-spike/SKILL.md +58 -0
- package/plugins/just-vibe/skills/deploy/SKILL.md +56 -0
- package/plugins/just-vibe/skills/deps/SKILL.md +56 -0
- package/plugins/just-vibe/skills/design/SKILL.md +56 -0
- package/plugins/just-vibe/skills/do/SKILL.md +8 -0
- package/plugins/just-vibe/skills/docs/SKILL.md +56 -0
- package/plugins/just-vibe/skills/doctor/SKILL.md +58 -0
- package/plugins/just-vibe/skills/explain/SKILL.md +56 -0
- package/plugins/just-vibe/skills/fix/SKILL.md +57 -0
- package/plugins/just-vibe/skills/git-bisect/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-commit/SKILL.md +59 -0
- package/plugins/just-vibe/skills/git-conflicts/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-diff/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-recover/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-split/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-status/SKILL.md +58 -0
- package/plugins/just-vibe/skills/git-worktree/SKILL.md +58 -0
- package/plugins/just-vibe/skills/github-actions/SKILL.md +64 -0
- package/plugins/just-vibe/skills/github-address-review/SKILL.md +58 -0
- package/plugins/just-vibe/skills/github-fix-ci/SKILL.md +63 -0
- package/plugins/just-vibe/skills/github-issue/SKILL.md +58 -0
- package/plugins/just-vibe/skills/github-pr/SKILL.md +63 -0
- package/plugins/just-vibe/skills/github-release/SKILL.md +58 -0
- package/plugins/just-vibe/skills/github-review/SKILL.md +58 -0
- package/plugins/just-vibe/skills/github-triage/SKILL.md +58 -0
- package/plugins/just-vibe/skills/handoff/SKILL.md +62 -0
- package/plugins/just-vibe/skills/help/SKILL.md +63 -0
- package/plugins/just-vibe/skills/integrate/SKILL.md +56 -0
- package/plugins/just-vibe/skills/learn/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-cost/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-evals/SKILL.md +58 -0
- package/plugins/just-vibe/skills/llm-injection/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-prompt/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-rag/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-retrieval/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-structured/SKILL.md +56 -0
- package/plugins/just-vibe/skills/llm-tools/SKILL.md +58 -0
- package/plugins/just-vibe/skills/map/SKILL.md +56 -0
- package/plugins/just-vibe/skills/match/SKILL.md +56 -0
- package/plugins/just-vibe/skills/migrate/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-ablation/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-baseline/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-batch/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-calibrate/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-dataset/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-dataset-version/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-debug-training/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-drift/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-error-analysis/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-evaluate/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-experiments/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-explain/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-features/SKILL.md +59 -0
- package/plugins/just-vibe/skills/ml-frame/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-imbalance/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-inference-perf/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-labels/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-leakage/SKILL.md +64 -0
- package/plugins/just-vibe/skills/ml-monitor/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-package/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-parity/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-report/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-reproduce/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-robustness/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-rollout/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-serving/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-slices/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-split/SKILL.md +58 -0
- package/plugins/just-vibe/skills/ml-threshold/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-train/SKILL.md +62 -0
- package/plugins/just-vibe/skills/ml-training-cost/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ml-tune/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-alerts/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-container/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-incident/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-logs/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-observability/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-postmortem/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-restore/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ops-runbook/SKILL.md +56 -0
- package/plugins/just-vibe/skills/orient/SKILL.md +58 -0
- package/plugins/just-vibe/skills/perf/SKILL.md +56 -0
- package/plugins/just-vibe/skills/plan/SKILL.md +56 -0
- package/plugins/just-vibe/skills/polish/SKILL.md +56 -0
- package/plugins/just-vibe/skills/pr/SKILL.md +58 -0
- package/plugins/just-vibe/skills/profile/SKILL.md +66 -0
- package/plugins/just-vibe/skills/profiles/SKILL.md +58 -0
- package/plugins/just-vibe/skills/react-async/SKILL.md +57 -0
- package/plugins/just-vibe/skills/react-audit/SKILL.md +56 -0
- package/plugins/just-vibe/skills/react-component/SKILL.md +65 -0
- package/plugins/just-vibe/skills/react-effects/SKILL.md +58 -0
- package/plugins/just-vibe/skills/react-forms/SKILL.md +56 -0
- package/plugins/just-vibe/skills/react-hydration/SKILL.md +57 -0
- package/plugins/just-vibe/skills/react-rerenders/SKILL.md +56 -0
- package/plugins/just-vibe/skills/react-state/SKILL.md +56 -0
- package/plugins/just-vibe/skills/refactor/SKILL.md +56 -0
- package/plugins/just-vibe/skills/release/SKILL.md +58 -0
- package/plugins/just-vibe/skills/remember/SKILL.md +70 -0
- package/plugins/just-vibe/skills/repro/SKILL.md +56 -0
- package/plugins/just-vibe/skills/research/SKILL.md +56 -0
- package/plugins/just-vibe/skills/responsive/SKILL.md +8 -0
- package/plugins/just-vibe/skills/resume/SKILL.md +63 -0
- package/plugins/just-vibe/skills/review/SKILL.md +56 -0
- package/plugins/just-vibe/skills/scope/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-authz/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-config/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-dependencies/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-fix/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-inputs/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-secrets/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-threat-model/SKILL.md +56 -0
- package/plugins/just-vibe/skills/security-uploads/SKILL.md +56 -0
- package/plugins/just-vibe/skills/setup/SKILL.md +60 -0
- package/plugins/just-vibe/skills/skill/SKILL.md +56 -0
- package/plugins/just-vibe/skills/spec/SKILL.md +56 -0
- package/plugins/just-vibe/skills/tasks/SKILL.md +56 -0
- package/plugins/just-vibe/skills/teach/SKILL.md +63 -0
- package/plugins/just-vibe/skills/teach-test/SKILL.md +65 -0
- package/plugins/just-vibe/skills/test/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-e2e/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-fixtures/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-flaky/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-integration/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-load/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-property/SKILL.md +56 -0
- package/plugins/just-vibe/skills/test-regression/SKILL.md +57 -0
- package/plugins/just-vibe/skills/test-unit/SKILL.md +56 -0
- package/plugins/just-vibe/skills/tools/SKILL.md +64 -0
- package/plugins/just-vibe/skills/trace/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-accessibility/SKILL.md +57 -0
- package/plugins/just-vibe/skills/ui-audit/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-flow/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-motion/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-responsive/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-states/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-system/SKILL.md +56 -0
- package/plugins/just-vibe/skills/ui-visual-diff/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-audit/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-build-fix/SKILL.md +63 -0
- package/plugins/just-vibe/skills/vercel-env/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-performance/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-preview/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-release-check/SKILL.md +57 -0
- package/plugins/just-vibe/skills/vercel-routing/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vercel-runtime/SKILL.md +61 -0
- package/plugins/just-vibe/skills/verify/SKILL.md +59 -0
- package/plugins/just-vibe/skills/vite-assets/SKILL.md +57 -0
- package/plugins/just-vibe/skills/vite-bundle/SKILL.md +58 -0
- package/plugins/just-vibe/skills/vite-chunks/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vite-config/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vite-env/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vite-hmr/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vite-setup/SKILL.md +56 -0
- package/plugins/just-vibe/skills/vite-upgrade/SKILL.md +56 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: setup
|
|
3
|
+
description: "Install, diagnose, update, or remove just-vibe through native host plugin management. Use for an intentional installation, update or removal; doctor inspects without changes."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# setup
|
|
7
|
+
|
|
8
|
+
Install, diagnose, update, or remove just-vibe through native host plugin management.
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for an intentional installation, update or removal; doctor inspects without changes.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Installation methods](../../references/packs/installation.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **apply**. Apply for an installation request; target host, bundled source, --github or --local checkout, and Claude scope. A preview request uses the existing `--dry-run` behavior.
|
|
19
|
+
|
|
20
|
+
Node.js 22+ and the selected host CLI with native plugin support. Git is required only for --github. Use the bundled installer; preserve marketplace and scope checks.
|
|
21
|
+
|
|
22
|
+
Resolve any task-specific tools, target identity and evidence before dependent actions. No external connection is assumed.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Install/enable just-vibe through the selected host's plugin manager; no unrelated plugin, permission, hook, or integration changes.
|
|
27
|
+
|
|
28
|
+
Selected host plugin registration and its managed just-vibe payload directory only.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
1. Resolve scripts/installer.mjs relative to this installed plugin. Choose doctor for a status question, setup for an install request, update for a refresh request, and uninstall only for an explicit removal request.
|
|
33
|
+
2. Honor the host, bundled default / --github / --local source and Claude --scope user|project|local; project/local operations use the requested project directory. Never place tokens in commands or files.
|
|
34
|
+
3. For a requested preview append --dry-run and report conditional steps without claiming installed state was inspected. Preserve all native source/scope/inventory conflict checks.
|
|
35
|
+
4. After success, report actual native state and explain that changed skills load in a fresh conversation. Uninstall retains marketplace registration and persistent data. Do not bypass errors with global edits or cache deletion.
|
|
36
|
+
|
|
37
|
+
Task-specific method: Resolve host/scope, check prerequisites and marketplace identity, run the bundled installer, preserve conflict checks, verify result, and explain fresh-session loading requirements. Resolve host, scope and source before mutation; inspect the proposed native operations and preserve unrelated marketplace entries and user configuration.
|
|
38
|
+
|
|
39
|
+
## Decision branches
|
|
40
|
+
|
|
41
|
+
- **When an existing managed source conflicts with the selected channel:** Report the conflicting identity and supported switch procedure instead of overwriting arbitrary directories.
|
|
42
|
+
|
|
43
|
+
## Deliver and verify
|
|
44
|
+
|
|
45
|
+
- Installation outcome or precise blocker with host/source/scope and actual verification.
|
|
46
|
+
- Installation source/version, native host state and executable validation or precise failure.
|
|
47
|
+
|
|
48
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
49
|
+
|
|
50
|
+
- Repeated setup does not create duplicate registrations; an existing marketplace with another source stops without replacement.
|
|
51
|
+
|
|
52
|
+
## Stop and recover
|
|
53
|
+
|
|
54
|
+
- Dry run does not inspect host state and must not imply it did. No manual global-config edits or credentials embedded in commands.
|
|
55
|
+
|
|
56
|
+
## Example requests
|
|
57
|
+
|
|
58
|
+
- **Normal (inspect):** Check my just-vibe installation without changing it.
|
|
59
|
+
- **edge (apply):** Update a bundled installation after its original package cache was removed.
|
|
60
|
+
- **blocked (inspect):** Inspect installation prerequisites on a machine without a supported host executable.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: skill
|
|
3
|
+
description: "Create or improve a workflow skill Use to author or revise a reusable workflow; ordinary one-off work should not create a new skill."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# skill
|
|
7
|
+
|
|
8
|
+
Create or improve a workflow skill
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to author or revise a reusable workflow; ordinary one-off work should not create a new skill.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [General methods](../../references/packs/general.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **apply**. Apply; workflow purpose, activation conditions, target host, and examples.
|
|
19
|
+
|
|
20
|
+
Resolve the user brief and inspect the relevant project or supplied evidence. External capabilities are optional unless the selected action actually needs them.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `project.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Create/update a skill and necessary supporting utilities; installation/publication is separate unless requested.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Inspect existing skills, define boundaries and inputs, write actionable instructions, separate repeatable execution into utilities, and validate triggering plus behavior fixtures.
|
|
33
|
+
- Define a matching and a near-miss request, reuse established packaging conventions, and move conditional detail into references only when needed.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When guidance merely repeats generic model capabilities:** Remove it and retain decisions, invariants and examples that change behavior.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Skill files, capability requirements, usage examples, and validation evidence.
|
|
42
|
+
- Skill entry point, supporting assets, matching boundaries and independent fixture evidence.
|
|
43
|
+
|
|
44
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
45
|
+
|
|
46
|
+
- A matching request triggers the intended behavior; a nearby out-of-scope request does not acquire unrelated instructions.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not create universal catch-all skills, silently enable hooks, or claim executable guarantees from prose alone.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (apply):** Create a focused workflow for reviewing database migrations in this project.
|
|
55
|
+
- **edge (apply):** Create a skill whose name overlaps an existing deployment workflow.
|
|
56
|
+
- **blocked (inspect):** Review a proposed skill without host installation access or claiming it is enabled.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: spec
|
|
3
|
+
description: "Produce requirements, acceptance criteria, and edge cases Use to define observable product behavior before implementation; plan maps an accepted specification onto code."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# spec
|
|
7
|
+
|
|
8
|
+
Produce requirements, acceptance criteria, and edge cases
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to define observable product behavior before implementation; plan maps an accepted specification onto code.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [General methods](../../references/packs/general.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **plan**. Plan; feature brief, users, constraints, and relevant existing contracts.
|
|
19
|
+
|
|
20
|
+
Resolve the user brief and inspect the relevant project or supplied evidence. External capabilities are optional unless the selected action actually needs them.
|
|
21
|
+
|
|
22
|
+
Resolve any task-specific tools, target identity and evidence before dependent actions. No external connection is assumed.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Requirements and observable behavior; no code changes or invented business policy.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Inspect current behavior, identify actors and states, define normal/error paths, record exclusions, and turn ambiguity into explicit assumptions or decisions.
|
|
33
|
+
- Write actors, preconditions, state transitions and observable acceptance examples; separate business decisions from implementation preferences.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When two requirements conflict on the same transition:** Surface the concrete conflicting example and resolve that decision before specifying dependent behavior.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Requirements, acceptance criteria, edge cases, compatibility needs, and unresolved questions; save only when requested.
|
|
42
|
+
- Requirement IDs, acceptance examples, exclusions and unresolved decision owners.
|
|
43
|
+
|
|
44
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
45
|
+
|
|
46
|
+
- Each requirement has an observable completion condition; conflicting requirements are flagged before downstream implementation.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not silently choose billing, privacy, or access policy that needs the user's decision. Continue specifying independent behavior.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (plan):** Specify organization invitations, including expiry and already-registered users.
|
|
55
|
+
- **edge (plan):** Specify account deletion with a pending subscription and recoverable failure.
|
|
56
|
+
- **blocked (inspect):** Draft a specification with unknown retention policy; leave that decision explicit.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: tasks
|
|
3
|
+
description: "Convert a brief or plan into ordered, verifiable tasks Use to turn an accepted plan into independently verifiable work; plan resolves architecture and sequencing first."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# tasks
|
|
7
|
+
|
|
8
|
+
Convert a brief or plan into ordered, verifiable tasks
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to turn an accepted plan into independently verifiable work; plan resolves architecture and sequencing first.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [General methods](../../references/packs/general.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **plan**. Plan; accepted brief/spec/plan and optional tracking format.
|
|
19
|
+
|
|
20
|
+
Resolve the user brief and inspect the relevant project or supplied evidence. External capabilities are optional unless the selected action actually needs them.
|
|
21
|
+
|
|
22
|
+
Resolve any task-specific tools, target identity and evidence before dependent actions. No external connection is assumed.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Break work into implementable units; external issue creation is separate and requires a request to submit.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Preserve requirements, map dependencies, define bounded outputs and checks, order the critical path, and flag tasks needing a decision.
|
|
33
|
+
- Assign each task one observable output and dependency edge; keep inseparable schema/client changes together or state their compatibility bridge.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When tasks overlap the same shared interface:** Define an integration order and owner boundary before parallel work is proposed.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Ordered tasks with scope, dependencies, acceptance criteria, and traceability to the brief.
|
|
42
|
+
- Task IDs, requirements covered, prerequisites, deliverables and acceptance checks.
|
|
43
|
+
|
|
44
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
45
|
+
|
|
46
|
+
- Every required outcome maps to a task; tasks do not duplicate ownership of the same inseparable change.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not create estimates, owners, or external tickets as established facts when none were supplied.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (plan):** Break the accepted invitation spec into ordered tasks with acceptance checks.
|
|
55
|
+
- **edge (plan):** Split a migration plan into tasks that leave every intermediate release usable.
|
|
56
|
+
- **blocked (inspect):** Break down known work while keeping an unresolved provider choice as a dependency.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: teach
|
|
3
|
+
description: "Teach a programming topic or the concepts needed to understand and implement a just-vibe workflow. Use for conceptual instruction or prerequisites; use explain for an existing implementation and teach-test for assessment."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# teach
|
|
7
|
+
|
|
8
|
+
Teach a programming topic or the concepts needed to understand and implement a just-vibe workflow.
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for conceptual instruction or prerequisites; use explain for an existing implementation and teach-test for assessment.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [General methods](../../references/packs/general.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **inspect**. Inspect; a topic, command name, implementation question, or current project context, plus optional experience level, language, depth and time available. Teaching never executes the target workflow.
|
|
19
|
+
|
|
20
|
+
Resolve the user brief and inspect the relevant project or supplied evidence. External capabilities are optional unless the selected action actually needs them.
|
|
21
|
+
|
|
22
|
+
Resolve any task-specific tools, target identity and evidence before dependent actions. No external connection is assumed.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Explain the requested topic or implementation prerequisites using relevant catalog/source evidence. Do not implement the target command, alter files, install packages, or enroll the user in an unsolicited course.
|
|
27
|
+
|
|
28
|
+
None by default. Save lesson notes or example files only when explicitly requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
1. Interpret the complete brief first. Explicit requests such as "teach linked lists" are topic lessons. A known workflow ID such as ml-split or git-bisect selects implementation teaching when the user asks how that tool works or how to implement it. If both interpretations fit, state the useful interpretation and cover their connection.
|
|
33
|
+
2. For a workflow lesson use toolkit show with the exact ID and read the referenced implementation files. The catalog supplies purpose and boundaries; the current source supplies actual mechanisms. Never call the workflow itself to obtain a lesson.
|
|
34
|
+
3. Read the teaching guide at ../../references/teaching.md. Choose the minimum prerequisites, adapt to the requested depth/language, explain in readable connected prose, and use a concrete example before broad abstractions.
|
|
35
|
+
4. For a topic lesson, provide the explanation directly. For an implementation lesson, map each prerequisite to the relevant algorithm, data shape, invariant, tool boundary, verification case or source module.
|
|
36
|
+
5. Check the lesson for factual accuracy and hidden assumptions. End with optional practice, not a mandatory quiz. Stop at the requested learning scope; do not turn a lesson into an implementation or service action.
|
|
37
|
+
|
|
38
|
+
Task-specific method: Resolve whether the user wants a topic lesson or an implementation-focused lesson. Infer experience from context; otherwise start with approachable fundamentals and offer depth without blocking on a questionnaire. For a named just-vibe workflow, read its catalog record, skill and relevant utility source, distinguish implemented behavior from design requirements, and identify the concepts necessary to build it. For a standalone topic, define a concrete learning outcome and choose a useful worked example. Order prerequisites from the minimum foundation to the requested implementation. Explain the purpose, core model, and terminology in connected plain-language prose before introducing complexity. Use an annotated example and trace its state step by step. Relate each concept to a concrete design or implementation decision. Explain alternatives, tradeoffs, failure modes and common misconceptions. Use a small diagram or table only when it clarifies the lesson, and short code examples in the requested language when helpful. End with a concise understanding check or optional exercise and a recommended next step. Keep the explanation useful without requiring the user to answer a quiz; offer hints or an answer when requested. Choose one running example and state its assumptions before deriving the mechanism; distinguish conceptual pseudocode from runnable, version-specific code.
|
|
39
|
+
|
|
40
|
+
## Decision branches
|
|
41
|
+
|
|
42
|
+
- **When learner asks about a workflow with missing project context:** Teach the concepts using a labeled hypothetical example; do not invent the project's architecture.
|
|
43
|
+
|
|
44
|
+
## Deliver and verify
|
|
45
|
+
|
|
46
|
+
- A readable lesson with a clear learning outcome, prerequisite sequence, worked example, relevant tradeoffs and mistakes, and an optional practice/check step. For tool lessons, include a concept-to-implementation map and links to actual source where available.
|
|
47
|
+
- Learning objective, worked example, common misconception, and a concrete next exercise.
|
|
48
|
+
|
|
49
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
50
|
+
|
|
51
|
+
- A linked-list lesson traces nodes/links and operations, distinguishes singly/doubly linked lists, and explains that constant-time insertion requires the position/node to be known; finding it can require linear time.
|
|
52
|
+
- An ml-split implementation lesson explains prediction time, entity dependence, temporal/group separation and leakage checks, ties these to the actual workflow, and never runs training or changes datasets.
|
|
53
|
+
- An unfamiliar topic is not silently interpreted as a command to execute; unknown experience level yields an accessible explanation rather than a mandatory questionnaire.
|
|
54
|
+
|
|
55
|
+
## Stop and recover
|
|
56
|
+
|
|
57
|
+
- Ask one focused question if the topic or workflow cannot be identified. Do not invent source behavior, assume required knowledge without explaining it, claim the user mastered the topic, or execute the workflow merely because it was named. Verify version-sensitive claims against relevant primary sources.
|
|
58
|
+
|
|
59
|
+
## Example requests
|
|
60
|
+
|
|
61
|
+
- **Normal (inspect):** Teach linked lists from the basics, with a worked insertion example and practical tradeoffs.
|
|
62
|
+
- **edge (inspect):** Teach linked-list deletion when only the head pointer is available.
|
|
63
|
+
- **blocked (inspect):** Teach db-migrate concepts without database access; do not run a migration.
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: teach-test
|
|
3
|
+
description: "Quiz the user on a topic or workflow through native multiple-choice question dialogs, with feedback and adaptive practice. Use for interactive assessment after checking native dialog support; teach handles lessons without assessment."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# teach-test
|
|
7
|
+
|
|
8
|
+
Quiz the user on a topic or workflow through native multiple-choice question dialogs, with feedback and adaptive practice.
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for interactive assessment after checking native dialog support; teach handles lessons without assessment.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [General methods](../../references/packs/general.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **inspect**. Inspect; a topic, workflow, or recent lesson plus optional experience, question count and practice/test preference. Requires an available native question tool permitted for this interaction in the current host mode.
|
|
19
|
+
|
|
20
|
+
Resolve the user brief and inspect the relevant project or supplied evidence. External capabilities are optional unless the selected action actually needs them.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `user.questions`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Assess understanding through one native dialog question at a time. Do not render quiz questions inline, implement the named tool, alter project files, or change host mode/settings automatically.
|
|
27
|
+
|
|
28
|
+
No project or external-service writes. Keep quiz state in session context; save results only on request.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
1. Read ../../references/teaching.md and ../../references/teach-test.md. Resolve the topic from the complete brief or immediately preceding lesson; ask for it only if unresolved.
|
|
33
|
+
2. Inspect actual callable tools. Prefer request_user_input_async in a Codex environment that exposes and permits it, otherwise request_user_input only in its supported mode; use AskUserQuestion in Claude when available. Follow the actual host schema and restrictions. If no suitable dialog is available, explain that native interactive testing is unavailable here and stop without inline questions.
|
|
34
|
+
3. Create quiz state with toolkit quiz create. Generate a question grounded in the lesson or target workflow, with exactly three short neutral choices, a correctOptionId, concept, and explanation. Keep this answer material out of the user-facing question.
|
|
35
|
+
4. Call toolkit quiz present to validate and shuffle the choices and produce a presentation payload for the observed dialog. Actually invoke that native host tool with presentation.arguments. Merely printing the payload does not ask the question.
|
|
36
|
+
5. For asynchronous tools, retain the quiz as awaiting-answer and wait for a user response; a returned pending tool call or preselected option is not submission. Do not advance, reveal the answer, or end with an inline replacement question while waiting.
|
|
37
|
+
6. Normalize the actual response into questionId, submitted, selection/freeText, skipped/cancelled and call toolkit quiz answer. For a free-text explanation, use quiz review only after assessing its meaning; preserve the actual response and explain the judgment.
|
|
38
|
+
7. Show returned feedback after answers in practice mode; withhold correctness in test mode until finished. Generate the next question using demonstrated misconceptions and remaining budget, then repeat through the native tool. Use quiz report for the final assessment; report sample limits and optional review topics.
|
|
39
|
+
|
|
40
|
+
Task-specific method: Resolve the topic or recent lesson, select practice by default or test when requested, and set a bounded question count (default five). Identify the native question tool and verify availability and permitted use before preparing the quiz. Ask one clear question with three plausible short choices using the real native question tool. Include prerequisite understanding, a worked-state prediction and an application or tradeoff question as appropriate; shuffle choices and avoid answer-revealing labels or descriptions. Wait for an actual submitted answer. A default/preselected option, an async call returning, a timeout, skip or cancellation is not a correct or incorrect answer. Keep the same pending question until its response is resolved. In practice mode explain the answer after submission and adapt subsequent difficulty/concept to demonstrated understanding. In test mode defer correctness feedback until completion. Evaluate free-text answers fairly against the actual question rather than guessing a clicked option. Finish at the question limit or user cancellation with a bounded assessment, missed concepts and suggested review. Do not claim mastery from a short quiz or save a permanent learner profile without request. Establish question count and practice versus test mode; test one concept per question and keep the answer key out of the presentation payload.
|
|
41
|
+
|
|
42
|
+
## Decision branches
|
|
43
|
+
|
|
44
|
+
- **When question tool is missing or restricted to clarification:** Report that assessment is unavailable in this mode; do not disguise quiz questions as implementation clarifications.
|
|
45
|
+
|
|
46
|
+
## Deliver and verify
|
|
47
|
+
|
|
48
|
+
- Native multiple-choice question dialogs, answer-dependent feedback, and a final short assessment with concepts to revisit. Question text stays in the dialog; explanations may appear in normal conversation after answers.
|
|
49
|
+
- Submitted-answer evidence, grading rationale, skips, and a scoped assessment of demonstrated knowledge.
|
|
50
|
+
|
|
51
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
52
|
+
|
|
53
|
+
- The host receives question/options only, with no answer key or explanation in the native payload. A second question cannot be presented before the pending answer is resolved.
|
|
54
|
+
- Empty, absent, default-only and delayed async responses do not advance or grade the quiz. Skips/cancellations do not count as incorrect; stale answers cannot answer a newer question.
|
|
55
|
+
- A linked-list quiz checks traversal, known-node insertion and pointer order. An ml-split quiz checks temporal/entity leakage and never starts training. If native dialogs are unavailable, the workflow reports that limitation and does not substitute inline quiz questions.
|
|
56
|
+
|
|
57
|
+
## Stop and recover
|
|
58
|
+
|
|
59
|
+
- Stop on the requested question limit, cancellation, missing native-dialog capability, ambiguous topic, or an unresolved answer. Respect tool-specific host/mode restrictions; do not force Plan mode, grant permissions, or simulate a native dialog by printing JSON or markdown.
|
|
60
|
+
|
|
61
|
+
## Example requests
|
|
62
|
+
|
|
63
|
+
- **Normal (inspect):** Quiz me on linked lists using the native question dialog, one question at a time.
|
|
64
|
+
- **edge (inspect):** Test linked-list operations; skip one question and explain only at the end.
|
|
65
|
+
- **blocked (inspect):** Inspect whether this host permits native assessment dialogs; do not print an inline quiz.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: test
|
|
3
|
+
description: "Add meaningful coverage for specified behavior Use to implement behavior checks; coverage identifies gaps and verify runs existing checks."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# test
|
|
7
|
+
|
|
8
|
+
Add meaningful coverage for specified behavior
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to implement behavior checks; coverage identifies gaps and verify runs existing checks.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [General methods](../../references/packs/general.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **apply**. Apply; behavior to protect, target code, and existing test conventions.
|
|
19
|
+
|
|
20
|
+
Resolve the user brief and inspect the relevant project or supplied evidence. External capabilities are optional unless the selected action actually needs them.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `project.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Meaningful behavior coverage at the cheapest reliable layer; no arbitrary coverage quota or whole-suite rewrite.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Inspect existing tests, identify important gaps, choose unit/integration/end-to-end scope, add representative cases, and run relevant checks.
|
|
33
|
+
- Choose the lowest layer that can observe the contract; retain an independent expected result and demonstrate that the check detects a plausible regression.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When the proposed assertion mirrors internal implementation:** Replace it with an external invariant or consumer-observable result.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Tests, fixture changes when necessary, execution results, and covered behavior.
|
|
42
|
+
- Tests and fixtures mapped to requirements, execution results and uncovered boundaries.
|
|
43
|
+
|
|
44
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
45
|
+
|
|
46
|
+
- A realistic behavioral regression fails the new test; harmless internal refactoring does not invalidate assertions.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Report unavailable services/runners. Avoid tests that merely restate implementation or require live paid endpoints without authorization.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (apply):** Add meaningful coverage for expired invitations and repeated acceptance.
|
|
55
|
+
- **edge (apply):** Add tests for duplicate submissions and a legitimate repeated purchase.
|
|
56
|
+
- **blocked (inspect):** Assess test design without the integration environment; do not mark mocks as live coverage.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: test-e2e
|
|
3
|
+
description: "Exercise complete user journeys and recovery Use for a critical user journey across the actual interface; test-unit is preferable for pure logic branches."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# test-e2e
|
|
7
|
+
|
|
8
|
+
Exercise complete user journeys and recovery
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for a critical user journey across the actual interface; test-unit is preferable for pure logic branches.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Testing methods](../../references/packs/testing.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **apply**. Apply; critical journey, environment, test accounts, and external side-effect constraints.
|
|
19
|
+
|
|
20
|
+
defined behavior, existing test conventions/runners, isolated fixtures, and relevant dependencies. Execution belongs in apply mode. Never test destructive behavior against production by default; distinguish mocked behavior from real integration evidence.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `project.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Full user-visible flows including recovery, through real application boundaries available in the test environment.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Seed controlled data, use robust user-facing selectors, exercise the journey and failure recovery, assert observable outcomes, and clean up owned data.
|
|
33
|
+
- Define stable setup and cleanup, drive user-visible controls with semantic locators and assert the final meaningful outcome plus a recovery path.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a third-party payment or email effect is real:** Use an authorized sandbox or controlled boundary; do not send real effects merely to complete a test.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- End-to-end tests, traces on failure, and environment/coverage notes.
|
|
42
|
+
- Journey steps, environment, assertions, artifacts and untested external boundaries.
|
|
43
|
+
|
|
44
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
45
|
+
|
|
46
|
+
- A completed UI action has the intended persisted outcome; failed submission preserves recoverable user state.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not send real payments/emails or modify user accounts without explicit scope. Missing integrations are labeled honestly.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (apply):** Test checkout error recovery using controlled test accounts and no real charges.
|
|
55
|
+
- **edge (apply):** Test checkout failure and retry without duplicate orders.
|
|
56
|
+
- **blocked (inspect):** Plan browser tests when no browser tool is available; do not claim rendered success.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: test-fixtures
|
|
3
|
+
description: "Create representative, maintainable test data Use for controlled test data and factories; data-profile inspects real datasets."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# test-fixtures
|
|
7
|
+
|
|
8
|
+
Create representative, maintainable test data
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for controlled test data and factories; data-profile inspects real datasets.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Testing methods](../../references/packs/testing.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **apply**. Apply; behaviors, schema, edge cases, existing factories, and privacy constraints.
|
|
19
|
+
|
|
20
|
+
defined behavior, existing test conventions/runners, isolated fixtures, and relevant dependencies. Execution belongs in apply mode. Never test destructive behavior against production by default; distinguish mocked behavior from real integration evidence.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `project.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Representative deterministic test data and lifecycle helpers.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Derive minimal realistic entities, encode valid defaults and deliberate invalid cases, isolate identities/timestamps, and verify cleanup and repeatability.
|
|
33
|
+
- Define valid defaults and deliberate invalid variants, isolate identifiers and clocks and make teardown safe after partial setup failure.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When random generation makes failures hard to reproduce:** Use a recorded seed and expose the important boundary explicitly.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Fixtures/factories with semantics, usage, and consistency checks.
|
|
42
|
+
- Fixture contract, edge variants, cleanup behavior and concurrent-use checks.
|
|
43
|
+
|
|
44
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
45
|
+
|
|
46
|
+
- Two concurrent tests do not collide on shared identifiers; boundary cases remain explicit rather than accidental random data.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Never copy raw production personal data for convenience. Avoid large opaque snapshots that hide which conditions matter.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (apply):** Build deterministic organization fixtures safe for concurrent test runs.
|
|
55
|
+
- **edge (apply):** Create fixtures that remain isolated when tests run in parallel.
|
|
56
|
+
- **blocked (inspect):** Design fixtures without copying production personal records.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: test-flaky
|
|
3
|
+
description: "Repair nondeterminism using repeated evidence Use for nondeterministic failures; debug first identifies the relevant failing test/environment."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# test-flaky
|
|
7
|
+
|
|
8
|
+
Repair nondeterminism using repeated evidence
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for nondeterministic failures; debug first identifies the relevant failing test/environment.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Testing methods](../../references/packs/testing.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **apply**. Apply; flaky test, failure history, environment, and repetition budget.
|
|
19
|
+
|
|
20
|
+
defined behavior, existing test conventions/runners, isolated fixtures, and relevant dependencies. Execution belongs in apply mode. Never test destructive behavior against production by default; distinguish mocked behavior from real integration evidence.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `project.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Nondeterminism from shared state, order, time, async behavior, randomness, or environment.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Reproduce under controlled repeats/order/seeds, inspect first divergent evidence, fix isolation or synchronization, and rerun bounded stress checks.
|
|
33
|
+
- Record order, seed, clock and shared-resource conditions, vary one factor under a repeat cap and replace timing guesses with explicit synchronization.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When no failure occurs during bounded repeats:** Report the sample and uncertainty; do not declare the flake eliminated solely from absence.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Cause, repair, repeat counts, failure rates, and residual uncertainty.
|
|
42
|
+
- Trigger conditions, isolation/synchronization fix and bounded repeat results.
|
|
43
|
+
|
|
44
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
45
|
+
|
|
46
|
+
- The triggering interleaving/order is exercised; no failures across a stated sample is not described as mathematical proof.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not hide failures with retries, sleeps, skipped tests, or inflated timeouts without evidence. Stop at the repeat budget.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (apply):** Fix the test that fails only in suite order; cap diagnosis at 30 repeats.
|
|
55
|
+
- **edge (apply):** Repair a test that fails only after another test changes global state.
|
|
56
|
+
- **blocked (inspect):** Inspect flake logs without rerunning expensive suites or adding arbitrary sleeps.
|