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,62 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ml-train
|
|
3
|
+
description: "Implement training with checkpoints and recorded configuration Use for bounded training implementation/execution; ml-debug-training diagnoses a failed optimization process."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ml-train
|
|
7
|
+
|
|
8
|
+
Implement training with checkpoints and recorded configuration
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for bounded training implementation/execution; ml-debug-training diagnoses a failed optimization process.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [ML experimentation methods](../../references/packs/ml-experiments.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 when planning is requested or execution details are unresolved. A request to implement training code selects apply for code and bounded local checks; launching training requires the requested environment and resource limits. Do not treat implementation as permission to provision compute.
|
|
19
|
+
|
|
20
|
+
dataset/split manifests, fixed objective/metric, environment/dependencies, baseline where applicable, and explicit compute limits. Record code revision, configuration, seeds, artifact paths, and resource use. Local smoke checks do not imply authorization for paid training. Never optimize on the held-out test set.
|
|
21
|
+
|
|
22
|
+
Resolve any task-specific tools, target identity and evidence before dependent actions. No external connection is assumed.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Reproducible training with checkpoint/resume and declared stopping criteria.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Validate shapes and pipeline, run a small smoke test, record configuration/environment, train within bounds, checkpoint, and evaluate only the permitted validation protocol.
|
|
33
|
+
- For resumable training inventory model, optimizer, scheduler, scaler when used, step, RNG and sampler/data position; checkpoint atomically and compare interrupted versus uninterrupted continuation under declared tolerances.
|
|
34
|
+
|
|
35
|
+
## Read when relevant
|
|
36
|
+
|
|
37
|
+
- Selecting classical, tensor or distributed/resumable methods: [Training scenarios](../../references/scenarios/training.md).
|
|
38
|
+
|
|
39
|
+
## Decision branches
|
|
40
|
+
|
|
41
|
+
- **When only weights were saved:** Treat loading as initialization unless all required continuation state is available; label the run a restart rather than exact resume.
|
|
42
|
+
- **When implementation is requested but a training run is not:** Write the pipeline and bounded checks without provisioning or launching a long job; report unmeasured model quality.
|
|
43
|
+
- **When distributed training changes workers or accumulation boundaries:** Verify sampler/metric aggregation and checkpoint ownership; declare approximate continuation if exact state cannot be restored.
|
|
44
|
+
|
|
45
|
+
## Deliver and verify
|
|
46
|
+
|
|
47
|
+
- Training code/run record, checkpoints, metrics, and resume instructions.
|
|
48
|
+
- Training configuration, resource cap, artifact/state manifest, metrics and demonstrated resume conditions.
|
|
49
|
+
|
|
50
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
51
|
+
|
|
52
|
+
- Interrupted training can resume with identified state; NaNs or budget exhaustion stop clearly without a false completed result.
|
|
53
|
+
|
|
54
|
+
## Stop and recover
|
|
55
|
+
|
|
56
|
+
- No paid hardware provisioning implicitly. Do not label the best validation checkpoint as independently test-validated.
|
|
57
|
+
|
|
58
|
+
## Example requests
|
|
59
|
+
|
|
60
|
+
- **Normal (plan):** Plan checkpointed training on one GPU for at most six hours; do not provision compute.
|
|
61
|
+
- **edge (plan):** Implement checkpointed training that resumes mid-epoch without silently changing sample order.
|
|
62
|
+
- **blocked (inspect):** Plan training with no authorized hardware budget; do not provision or launch a run.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ml-training-cost
|
|
3
|
+
description: "Profile training time, memory, and resource bottlenecks Use to analyze training resource use; ml-inference-perf measures deployed prediction work."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ml-training-cost
|
|
7
|
+
|
|
8
|
+
Profile training time, memory, and resource bottlenecks
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to analyze training resource use; ml-inference-perf measures deployed prediction work.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [ML experimentation methods](../../references/packs/ml-experiments.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; training traces, hardware, workload, budget, and cost-rate evidence.
|
|
19
|
+
|
|
20
|
+
dataset/split manifests, fixed objective/metric, environment/dependencies, baseline where applicable, and explicit compute limits. Record code revision, configuration, seeds, artifact paths, and resource use. Local smoke checks do not imply authorization for paid training. Never optimize on the held-out test set.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `ml.artifacts`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Time, memory, utilization, data loading, and cost bottlenecks.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Separate startup/loading/compute/checkpoint time, inspect batch/resource utilization, identify bottlenecks, and propose measured optimizations or bounded profiling.
|
|
33
|
+
- Separate data loading, host-to-device transfer, compute, synchronization and checkpoint time; relate utilization to the same quality target and workload.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When throughput improves by changing effective batch or precision:** Compare convergence/quality and total time-to-target before claiming a useful speedup.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Resource breakdown, unit-cost assumptions, and prioritized improvement experiments.
|
|
42
|
+
- Timing/resource breakdown, verified price basis if used and bounded optimization plan.
|
|
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
|
+
- Idle accelerator time caused by input loading is recognized; local elapsed time is not converted into a fabricated cloud bill.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- New profiling/training requires execution authorization. Do not claim speedup without equivalent model quality and workload comparison.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Analyze the supplied profile for loading, compute, and checkpoint bottlenecks.
|
|
55
|
+
- **edge (inspect):** Diagnose an idle accelerator stalled by data loading.
|
|
56
|
+
- **blocked (inspect):** Estimate training effort from sparse logs without inventing cloud prices.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ml-tune
|
|
3
|
+
description: "Design a bounded hyperparameter search with a fixed evaluation protocol Use for a bounded search under a valid protocol; ml-ablation isolates component contribution."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ml-tune
|
|
7
|
+
|
|
8
|
+
Design a bounded hyperparameter search with a fixed evaluation protocol
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for a bounded search under a valid protocol; ml-ablation isolates component contribution.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [ML experimentation methods](../../references/packs/ml-experiments.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; baseline, search space, objective, fixed splits, trial/time/compute caps, and selection rule.
|
|
19
|
+
|
|
20
|
+
dataset/split manifests, fixed objective/metric, environment/dependencies, baseline where applicable, and explicit compute limits. Record code revision, configuration, seeds, artifact paths, and resource use. Local smoke checks do not imply authorization for paid training. Never optimize on the held-out test set.
|
|
21
|
+
|
|
22
|
+
Resolve any task-specific tools, target identity and evidence before dependent actions. No external connection is assumed.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Bounded hyperparameter search; execution only within authorized resources.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Validate comparable trials, select search strategy, define pruning/failure behavior, log every trial, and choose by the predeclared validation criterion.
|
|
33
|
+
- Freeze search space, split, objective, trial/resource caps and selection rule; keep failure/pruning records and compare candidates under equal evaluation conditions.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When tuning repeatedly consults held-out test results:** Stop that selection loop and define fresh independent confirmation before reporting generalization.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Search configuration, trial ledger, selected candidate, and cost/selection caveats.
|
|
42
|
+
- Trial ledger, budgets consumed, selection rationale and untouched confirmation set.
|
|
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
|
+
- Trial failures remain visible; test labels never influence parameter selection.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Stop at any resource cap and preserve partial results. Do not enlarge the search merely because no improvement appears.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (plan):** Plan at most 20 trials on validation PR-AUC; never tune on the test set.
|
|
55
|
+
- **edge (plan):** Tune with failed trials and a strict GPU-hour cap.
|
|
56
|
+
- **blocked (inspect):** Design tuning when compute is unavailable; do not fabricate winning hyperparameters.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ops-alerts
|
|
3
|
+
description: "Design actionable alerts with ownership and response guidance Use to design response-worthy alerts; ops-observability supplies reliable signals."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ops-alerts
|
|
7
|
+
|
|
8
|
+
Design actionable alerts with ownership and response guidance
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to design response-worthy alerts; ops-observability supplies reliable signals.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Operations methods](../../references/packs/operations.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; service objectives, telemetry, response ownership, notification destination, and noise tolerance.
|
|
19
|
+
|
|
20
|
+
exact service/environment, time window, revision/configuration identity, authorized logs/metrics, and operational constraints. Prefer observation before intervention; live restarts, traffic changes, restores, and notifications require the requested target/action. Redact sensitive telemetry.
|
|
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
|
+
Actionable alert rules and response guidance; enabling/sending notifications requires an explicit request.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Tie signals to impact, define windows/thresholds and missing-data behavior, test historical/fixture events, include recovery and suppression rules, and identify the responder action.
|
|
33
|
+
- Tie each alert to impact and responder action, define evaluation/recovery windows, missing-data behavior and noise suppression, then test historical or synthetic cases.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When signal quality cannot distinguish failure from missing telemetry:** Add an explicit missing-data state instead of silently treating absence as healthy.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Alert definitions, rationale, runbook links, and false-positive/missed-event checks.
|
|
42
|
+
- Alert contract, trigger/recovery examples, owner/destination assumptions and runbook action.
|
|
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
|
+
- Sustained harmful failure triggers; expected brief transients do not page indiscriminately.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not invent owners or send test pages implicitly. Missing signal quality is a prerequisite, not something thresholds can hide.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (plan):** Design actionable error-rate alerts with recovery behavior; do not enable notifications.
|
|
55
|
+
- **edge (plan):** Design alerts that ignore brief spikes but detect sustained customer failures.
|
|
56
|
+
- **blocked (inspect):** Draft alerts without sending pages or inventing response ownership.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ops-container
|
|
3
|
+
description: "Diagnose container builds, runtime failures, and configuration differences Use for image/build/runtime diagnosis; ops-restore handles recovery of persisted state."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ops-container
|
|
7
|
+
|
|
8
|
+
Diagnose container builds, runtime failures, and configuration differences
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for image/build/runtime diagnosis; ops-restore handles recovery of persisted state.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Operations methods](../../references/packs/operations.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; Dockerfile/image/runtime configuration, logs, and failing build/start behavior.
|
|
19
|
+
|
|
20
|
+
exact service/environment, time window, revision/configuration identity, authorized logs/metrics, and operational constraints. Prefer observation before intervention; live restarts, traffic changes, restores, and notifications require the requested target/action. Redact sensitive telemetry.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `container.context`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Container build context, dependencies, permissions, entrypoint, networking, resources, and health checks.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Compare build/runtime stages and host assumptions, inspect image metadata/logs, reproduce in isolation when authorized, and propose or apply a focused fix.
|
|
33
|
+
- Compare build context, multi-stage copy paths, runtime user, working directory, ports and volume permissions with logs from the intended image digest.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When local build and deployed digest differ:** Establish artifact identity before patching source or diagnosing runtime configuration.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Diagnosis or patch with build/start evidence and remaining environment gaps.
|
|
42
|
+
- Build/runtime boundary, artifact identity and isolated reproduction or verification gaps.
|
|
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
|
+
- Required runtime files survive multi-stage builds; a non-root process can access only intended paths.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- No privileged host mounts or deployment changes by default. Building/running untrusted images requires evaluating their execution effects first.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Diagnose why this multi-stage image lacks its runtime files.
|
|
55
|
+
- **edge (inspect):** Diagnose a multi-stage image missing a required runtime file under a non-root user.
|
|
56
|
+
- **blocked (inspect):** Inspect a Dockerfile without building untrusted images or granting privileged mounts.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ops-incident
|
|
3
|
+
description: "Organize symptoms, evidence, impact, hypotheses, and immediate actions Use for current operational triage; ops-postmortem reconstructs the completed incident."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ops-incident
|
|
7
|
+
|
|
8
|
+
Organize symptoms, evidence, impact, hypotheses, and immediate actions
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for current operational triage; ops-postmortem reconstructs the completed incident.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Operations methods](../../references/packs/operations.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; symptoms, affected service/environment, incident window, and known impact.
|
|
19
|
+
|
|
20
|
+
exact service/environment, time window, revision/configuration identity, authorized logs/metrics, and operational constraints. Prefer observation before intervention; live restarts, traffic changes, restores, and notifications require the requested target/action. Redact sensitive telemetry.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `telemetry.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Organize triage and recommend immediate actions; remediation follows explicit incident authority.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Establish impact and timeline, separate facts from hypotheses, inspect recent changes and dependencies, prioritize reversible mitigations, and track action/evidence state.
|
|
33
|
+
- Establish impact, time window, affected revision and current changes; keep a timestamped fact/hypothesis/action ledger and prefer reversible mitigations within scope.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When an intervention may erase evidence or duplicate effects:** Capture relevant state and define its observation/abort condition before acting.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Current incident brief, supported hypotheses, next diagnostic steps, and mitigation options.
|
|
42
|
+
- Impact/timeline, supported hypotheses, mitigation options and observed recovery.
|
|
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 coincident deployment is a hypothesis until supported; unknown customer impact is not reported as zero.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- No unrequested restarts, failovers, or customer messages. Preserve evidence before interventions that may erase it.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Organize this incident's impact, timeline, and next diagnostic actions without restarting services.
|
|
55
|
+
- **edge (inspect):** Triage rising errors after a deployment with an unrelated provider incident.
|
|
56
|
+
- **blocked (inspect):** Inspect supplied incident evidence without restarting services or sending customer messages.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ops-logs
|
|
3
|
+
description: "Correlate available logs around a specific failure Use for bounded log correlation; trace follows a particular execution path through source and telemetry."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ops-logs
|
|
7
|
+
|
|
8
|
+
Correlate available logs around a specific failure
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for bounded log correlation; trace follows a particular execution path through source and telemetry.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Operations methods](../../references/packs/operations.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; service/environment, time window, correlation identifiers, and question.
|
|
19
|
+
|
|
20
|
+
exact service/environment, time window, revision/configuration identity, authorized logs/metrics, and operational constraints. Prefer observation before intervention; live restarts, traffic changes, restores, and notifications require the requested target/action. Redact sensitive telemetry.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `telemetry.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Focused log correlation and anomaly explanation, not unrestricted telemetry export.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Normalize timestamps, follow request/job IDs, compare related services, separate repeated symptoms from root events, and redact sensitive fields.
|
|
33
|
+
- Normalize time zones and identify clock skew, follow stable request/job IDs and distinguish original failures from retry cascades and repeated symptoms.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a relevant span or time range is missing:** Report the gap and query needed; absence is not proof the action never occurred.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Evidence-linked timeline, likely causal sequence, and gaps requiring metrics/traces.
|
|
42
|
+
- Ordered evidence with timestamps, correlation IDs, causal candidates and redactions.
|
|
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
|
+
- Clock/time-zone differences are considered; missing logs are not proof that an event never occurred.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Bound query range and volume. Do not dump entire production logs into the conversation or external storage.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Correlate sanitized logs for this request ID and time window.
|
|
55
|
+
- **edge (inspect):** Correlate logs across services with different clock offsets.
|
|
56
|
+
- **blocked (inspect):** Analyze a redacted excerpt without querying or dumping full production logs.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ops-observability
|
|
3
|
+
description: "Add useful logs, metrics, and traces to unclear execution paths Use to implement requested diagnostic telemetry; ops-alerts turns signals into actionable notifications."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ops-observability
|
|
7
|
+
|
|
8
|
+
Add useful logs, metrics, and traces to unclear execution paths
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to implement requested diagnostic telemetry; ops-alerts turns signals into actionable notifications.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Operations methods](../../references/packs/operations.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; unclear path, diagnostic goals, telemetry stack, privacy, and overhead constraints.
|
|
19
|
+
|
|
20
|
+
exact service/environment, time window, revision/configuration identity, authorized logs/metrics, and operational constraints. Prefer observation before intervention; live restarts, traffic changes, restores, and notifications require the requested target/action. Redact sensitive telemetry.
|
|
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
|
+
Useful logs, metrics, traces, correlation, and error context in the selected path.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Identify questions telemetry must answer, choose stable low-cardinality dimensions, propagate correlation, redact data, and verify normal/error instrumentation locally.
|
|
33
|
+
- Start with questions operators must answer, propagate correlation across boundaries and select bounded-cardinality metrics plus redacted structured events.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When proposed labels contain user IDs or arbitrary payload values:** Move needed detail to controlled logs/traces or aggregate dimensions instead of unbounded metric labels.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Instrumentation changes, field/metric definitions, and validation evidence.
|
|
42
|
+
- Question/signal/location table, privacy/overhead decisions and success/error telemetry 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
|
+
- A failed operation can be traced across the intended boundary; raw user payloads or unbounded IDs do not become unsafe metric labels.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- No provider provisioning or production configuration rollout implicitly. Do not add high-volume logging without overhead consideration.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (apply):** Add focused tracing without logging raw user payloads or high-cardinality labels.
|
|
55
|
+
- **edge (apply):** Add tracing across a queue while keeping sensitive payloads out of logs.
|
|
56
|
+
- **blocked (inspect):** Design observability without provisioning a vendor or changing production configuration.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ops-postmortem
|
|
3
|
+
description: "Produce evidence-based timelines and concrete follow-up work Use to reconstruct an actual incident; decision-premortem analyzes hypothetical failure."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ops-postmortem
|
|
7
|
+
|
|
8
|
+
Produce evidence-based timelines and concrete follow-up work
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to reconstruct an actual incident; decision-premortem analyzes hypothetical failure.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Operations methods](../../references/packs/operations.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; incident evidence, timeline, impacts, actions, and intended audience.
|
|
19
|
+
|
|
20
|
+
exact service/environment, time window, revision/configuration identity, authorized logs/metrics, and operational constraints. Prefer observation before intervention; live restarts, traffic changes, restores, and notifications require the requested target/action. Redact sensitive telemetry.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `telemetry.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Evidence-based learning and follow-up design; no blame assignment or external publication.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Reconcile times and observations, distinguish trigger from contributing conditions, document detection/recovery gaps, and define specific preventive/detective actions with measurable outcomes.
|
|
33
|
+
- Reconcile timestamps and impact evidence, separate trigger from contributing conditions and tie each proposed action to a documented detection or recovery gap.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When root cause or impact remains unknown:** Preserve the uncertainty and propose a discriminating follow-up instead of filling the narrative with guesses.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Postmortem with evidence-linked timeline, impact, causal analysis, and follow-up proposals.
|
|
42
|
+
- Evidence-backed timeline, causal factors, response gaps and measurable follow-up actions.
|
|
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
|
+
- Unknown root cause remains explicit; each proposed action addresses a documented failure mechanism.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not invent owners, impact counts, or consensus. Sending the report or creating external action tickets requires explicit instructions.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (plan):** Write an evidence-based postmortem without inventing impact counts or owners.
|
|
55
|
+
- **edge (plan):** Write a postmortem where deployment timing correlates with failure but causation is unproven.
|
|
56
|
+
- **blocked (inspect):** Draft from partial logs without inventing customers affected, owners or consensus.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ops-restore
|
|
3
|
+
description: "Prepare or validate backup restoration in an appropriate environment Use for a scoped backup recovery plan or rehearsal; db-migrate changes schema/data intentionally."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ops-restore
|
|
7
|
+
|
|
8
|
+
Prepare or validate backup restoration in an appropriate environment
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for a scoped backup recovery plan or rehearsal; db-migrate changes schema/data intentionally.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Operations methods](../../references/packs/operations.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; backup identity, source system, isolated destination, recovery objectives, and encryption/access prerequisites.
|
|
19
|
+
|
|
20
|
+
exact service/environment, time window, revision/configuration identity, authorized logs/metrics, and operational constraints. Prefer observation before intervention; live restarts, traffic changes, restores, and notifications require the requested target/action. Redact sensitive telemetry.
|
|
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
|
+
Validate restoration and readiness; production replacement requires exact explicit authorization.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Verify backup provenance/completeness, plan target isolation, execute authorized restore, check schema/counts/integrity and application behavior, and record recovery duration/data loss window.
|
|
33
|
+
- Verify backup identity, completeness, keys and destination isolation, then reconcile schema, counts, integrity and application behavior after authorized restoration.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When backup reads successfully but application checks fail:** Treat recovery as incomplete and preserve the isolated target for diagnosis; do not overwrite the live source.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Restore procedure or exercise report with verified recovery evidence and limitations.
|
|
42
|
+
- Source/target identities, recovery timing/data-loss window and integrity/application 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
|
+
- Restore succeeds into the intended isolated destination; a readable backup alone does not count as demonstrated recoverability.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Never overwrite live data implicitly. Missing keys, integrity checks, or target identity stops execution before destructive steps.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (plan):** Plan restoring the specified backup into an isolated target, not production.
|
|
55
|
+
- **edge (plan):** Rehearse restore into an isolated database with missing recent transactions.
|
|
56
|
+
- **blocked (inspect):** Plan restore with missing decryption keys or an ambiguous destination; do not execute.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ops-runbook
|
|
3
|
+
description: "Write operational procedures from verified commands and behavior Use to write an operational procedure; ops-incident executes a scoped response."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ops-runbook
|
|
7
|
+
|
|
8
|
+
Write operational procedures from verified commands and behavior
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to write an operational procedure; ops-incident executes a scoped response.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Operations methods](../../references/packs/operations.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; operational scenario, environment, existing procedures, and verified commands.
|
|
19
|
+
|
|
20
|
+
exact service/environment, time window, revision/configuration identity, authorized logs/metrics, and operational constraints. Prefer observation before intervention; live restarts, traffic changes, restores, and notifications require the requested target/action. Redact sensitive telemetry.
|
|
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
|
+
Diagnosis, intervention, validation, and recovery instructions for a defined event.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Inspect actual tooling/configuration, document prerequisites and target checks, order low-risk diagnostics first, mark destructive steps, and specify observable success/abort criteria.
|
|
33
|
+
- Resolve actual environment/tool conventions, order diagnostics before mutation and give each action a target check, expected observation and abort/recovery path.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a command cannot be exercised safely:** Mark it unverified and state its prerequisites rather than presenting it as rehearsed.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Runbook with exact contextualized commands, expected outcomes, escalation conditions, and recovery steps.
|
|
42
|
+
- Runnable steps with target checks, expected outputs and escalation/recovery conditions.
|
|
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 responder can distinguish the intended environment; each mutating step has a verification and failure path.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not execute the incident procedure merely to write it. Mark commands not exercised in a safe environment as unverified.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (plan):** Write a restore runbook with exact target checks and verification steps.
|
|
55
|
+
- **edge (plan):** Write a runbook for restoring queue processing without replaying completed charges.
|
|
56
|
+
- **blocked (inspect):** Draft a runbook without executing incident operations or fabricating terminal output.
|