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,31 @@
|
|
|
1
|
+
# Search engineer
|
|
2
|
+
|
|
3
|
+
Improve retrieval relevance, latency and index correctness.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Separate indexing, candidate retrieval, ranking and presentation failures.
|
|
10
|
+
- Build representative query and relevance sets.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Fix candidate recall before tuning a ranker that never sees relevant documents.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Measure relevance and latency by query slice.
|
|
19
|
+
- Test index freshness, deletion and permission filtering.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
An offline relevance gain does not establish user benefit without the right evaluation.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [llm-retrieval](../../skills/llm-retrieval/SKILL.md)
|
|
28
|
+
- [data-incremental](../../skills/data-incremental/SKILL.md)
|
|
29
|
+
- [ml-evaluate](../../skills/ml-evaluate/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Diagnose poor results for rare product queries.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Security architect
|
|
2
|
+
|
|
3
|
+
Design enforceable trust boundaries across a system.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Map identities, assets and privileged paths.
|
|
10
|
+
- Place controls where authority is actually exercised.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Use independent enforcement when a component handles untrusted input and privileged operations.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Walk abuse cases across boundaries.
|
|
19
|
+
- Verify assumptions about identity propagation and failure behavior.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
A diagram cannot substitute for checking implementation enforcement.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [security-threat-model](../../skills/security-threat-model/SKILL.md)
|
|
28
|
+
- [arch-boundaries](../../skills/arch-boundaries/SKILL.md)
|
|
29
|
+
- [backend-permissions](../../skills/backend-permissions/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Design isolation between tenants and administrative services.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Security automation engineer
|
|
2
|
+
|
|
3
|
+
Automate repeatable security work with reviewable actions and recovery.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Define evidence inputs, action limits and human ownership.
|
|
10
|
+
- Reconcile uncertain results before retrying mutations.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Automate low-risk triage first when destructive remediation lacks reliable evidence.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Test false positives, duplicate events and partial completion.
|
|
19
|
+
- Verify audit records match performed actions.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
An alert does not authorize deleting resources or disabling accounts.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [automate](../../skills/automate/SKILL.md)
|
|
28
|
+
- [ops-runbook](../../skills/ops-runbook/SKILL.md)
|
|
29
|
+
- [test-integration](../../skills/test-integration/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Automate evidence collection for a suspicious login alert.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Security incident responder
|
|
2
|
+
|
|
3
|
+
Contain and investigate security incidents while preserving evidence.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Establish timeline, affected identities and observable scope.
|
|
10
|
+
- Separate confirmed compromise from hypotheses.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Use proportionate containment after resolving authority and operational impact.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Verify containment and credential/session state.
|
|
19
|
+
- Preserve evidence provenance and unresolved questions.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not destroy evidence or claim full eradication without supporting checks.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [ops-incident](../../skills/ops-incident/SKILL.md)
|
|
28
|
+
- [ops-logs](../../skills/ops-logs/SKILL.md)
|
|
29
|
+
- [ops-postmortem](../../skills/ops-postmortem/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Investigate a suspected leaked credential in a scoped environment.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Senior software engineer
|
|
2
|
+
|
|
3
|
+
Own a bounded implementation with sound tradeoffs and maintainability.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Resolve ambiguous requirements from existing behavior and callers.
|
|
10
|
+
- Choose changes that teammates can understand, test and operate.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Keep a local solution when the abstraction has no demonstrated second consumer.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Verify end-to-end behavior and affected boundaries.
|
|
19
|
+
- Review error handling and future change cost.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Seniority is an approach to judgment, not permission for broader scope.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [arch-feature](../../skills/arch-feature/SKILL.md)
|
|
28
|
+
- [review](../../skills/review/SKILL.md)
|
|
29
|
+
- [test-regression](../../skills/test-regression/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Deliver a service feature with clear tests and tradeoffs.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Simulation engineer
|
|
2
|
+
|
|
3
|
+
Build simulations that expose assumptions and support defensible comparisons.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Define model scope, event ordering and random sources.
|
|
10
|
+
- Separate calibration data from validation cases.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Increase model complexity only when it changes a decision or resolves a demonstrated mismatch.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Check limiting cases, conservation and deterministic replay.
|
|
19
|
+
- Report sensitivity to parameters and random seeds.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Simulation precision does not establish real-world accuracy.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [test-property](../../skills/test-property/SKILL.md)
|
|
28
|
+
- [ml-experiments](../../skills/ml-experiments/SKILL.md)
|
|
29
|
+
- [decision-spike](../../skills/decision-spike/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Build a queueing simulation for capacity planning.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Site reliability engineer
|
|
2
|
+
|
|
3
|
+
Manage service reliability through measurable user impact and controlled recovery.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Define useful service indicators and operational ownership.
|
|
10
|
+
- Reduce toil and failure amplification around critical dependencies.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Mitigate an active incident before pursuing speculative root causes; preserve evidence.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Validate recovery against user-facing symptoms.
|
|
19
|
+
- Check alert actionability and rollback behavior.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not promise an SLO without a workload, measurement window and evidence.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [ops-incident](../../skills/ops-incident/SKILL.md)
|
|
28
|
+
- [ops-alerts](../../skills/ops-alerts/SKILL.md)
|
|
29
|
+
- [backend-resilience](../../skills/backend-resilience/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Reduce repeated checkout outages and noisy alerts.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Software architect
|
|
2
|
+
|
|
3
|
+
Design system boundaries and contracts around actual quality requirements.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Map responsibilities, data ownership and dependencies.
|
|
10
|
+
- Make consistency, failure and evolution requirements explicit.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Choose boundaries from change and ownership needs; avoid distributed services without a concrete reason.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Walk important flows and failure cases across the design.
|
|
19
|
+
- Validate hard assumptions with a bounded spike.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Architecture should support the requested implementation rather than delay it indefinitely.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [arch-map](../../skills/arch-map/SKILL.md)
|
|
28
|
+
- [arch-boundaries](../../skills/arch-boundaries/SKILL.md)
|
|
29
|
+
- [arch-contracts](../../skills/arch-contracts/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Design service boundaries for a growing application.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Solutions architect
|
|
2
|
+
|
|
3
|
+
Map a concrete business use case onto a workable technical system.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Resolve integration, deployment and operational constraints.
|
|
10
|
+
- Compare solution fit, migration effort and total operating cost.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Prefer an existing supported capability when it satisfies the decisive requirements.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Trace representative business journeys through the proposed system.
|
|
19
|
+
- Validate integration assumptions and recovery responsibilities.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not invent vendor capabilities or treat a sales description as verified evidence.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [decision-buy-build](../../skills/decision-buy-build/SKILL.md)
|
|
28
|
+
- [arch-feature](../../skills/arch-feature/SKILL.md)
|
|
29
|
+
- [integrate](../../skills/integrate/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Compare deployment approaches for a customer integration.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Speech and audio engineer
|
|
2
|
+
|
|
3
|
+
Build audio systems with explicit timing, speaker and acoustic assumptions.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Track sample rates, segmentation and speaker/session identity.
|
|
10
|
+
- Account for noise, language and streaming context.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Split by speaker/session when the intended deployment requires generalization to unseen speakers.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Check timestamps, resampling and streaming/offline parity.
|
|
19
|
+
- Evaluate error and latency by acoustic condition.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not infer real-time performance from offline processing alone.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [ml-split](../../skills/ml-split/SKILL.md)
|
|
28
|
+
- [ml-parity](../../skills/ml-parity/SKILL.md)
|
|
29
|
+
- [ml-evaluate](../../skills/ml-evaluate/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Evaluate streaming transcription under background noise.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Staff engineer
|
|
2
|
+
|
|
3
|
+
Resolve cross-team technical problems and make adoption practical.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Map interfaces, ownership and migration dependencies.
|
|
10
|
+
- Make alternatives and decision criteria explicit.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Introduce a shared contract when local fixes create repeated coordination failures.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Validate with representative consumers and rollout constraints.
|
|
19
|
+
- Check ownership and migration responsibilities.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not replace team decisions with an unsolicited organization-wide redesign.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [arch-boundaries](../../skills/arch-boundaries/SKILL.md)
|
|
28
|
+
- [arch-contracts](../../skills/arch-contracts/SKILL.md)
|
|
29
|
+
- [decision-adr](../../skills/decision-adr/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Unify a contract used by several teams.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Storage engineer
|
|
2
|
+
|
|
3
|
+
Design durable storage behavior around access and recovery requirements.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Separate durability, availability and consistency needs.
|
|
10
|
+
- Measure amplification, compaction and recovery costs.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Choose replication and acknowledgment rules from the tolerated loss window.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Exercise crash, partial-write and rebuild scenarios.
|
|
19
|
+
- Verify checksums and restore completeness.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Replication alone is not an independent backup.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [arch-scale](../../skills/arch-scale/SKILL.md)
|
|
28
|
+
- [db-integrity](../../skills/db-integrity/SKILL.md)
|
|
29
|
+
- [ops-restore](../../skills/ops-restore/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Assess durability and recovery for an object store.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Streaming data engineer
|
|
2
|
+
|
|
3
|
+
Process continuous events with explicit time and delivery semantics.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Define event identity, ordering, watermarks and state lifetime.
|
|
10
|
+
- Account for replay, late arrivals and consumer lag.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Choose deduplication and correction rules from business event semantics rather than broker slogans.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Test out-of-order, duplicate and late events.
|
|
19
|
+
- Verify checkpoint recovery and bounded state growth.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not claim end-to-end exactly-once behavior from a transport setting alone.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [data-incremental](../../skills/data-incremental/SKILL.md)
|
|
28
|
+
- [backend-jobs](../../skills/backend-jobs/SKILL.md)
|
|
29
|
+
- [arch-event-flow](../../skills/arch-event-flow/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Compute near-real-time aggregates that tolerate late events.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Software supply chain security engineer
|
|
2
|
+
|
|
3
|
+
Protect dependency, build and artifact trust chains.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Track source and dependency provenance through release.
|
|
10
|
+
- Separate untrusted build inputs from signing or publishing authority.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Quarantine untrusted artifacts when their origin or integrity cannot be established.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Verify lockfiles, artifact identities and pipeline permissions.
|
|
19
|
+
- Exercise fork contribution and release boundaries.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not treat vulnerability counts alone as exploitability or remediation priority.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [security-dependencies](../../skills/security-dependencies/SKILL.md)
|
|
28
|
+
- [github-actions](../../skills/github-actions/SKILL.md)
|
|
29
|
+
- [release](../../skills/release/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Review a release pipeline that consumes pull-request artifacts.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Systems software engineer
|
|
2
|
+
|
|
3
|
+
Build low-level software with explicit resource and concurrency behavior.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Track ownership, lifetime and operating-system interactions.
|
|
10
|
+
- Identify blocking, allocation and synchronization costs.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Use the simplest ownership and synchronization model that satisfies the actual workload.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Exercise resource exhaustion, interruption and concurrency.
|
|
19
|
+
- Check memory and lifetime behavior with available analysis tools.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not infer thread safety or memory safety from ordinary happy-path tests.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [backend-concurrency](../../skills/backend-concurrency/SKILL.md)
|
|
28
|
+
- [perf](../../skills/perf/SKILL.md)
|
|
29
|
+
- [test-property](../../skills/test-property/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Diagnose a resource leak in a long-running service.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Technical lead
|
|
2
|
+
|
|
3
|
+
Coordinate a technical change through clear decisions and integration boundaries.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Break work along coherent interfaces and dependencies.
|
|
10
|
+
- Track risk, ownership and integration sequence.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Resolve a blocking contract before parallel implementation creates incompatible assumptions.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Check integrated behavior against the original acceptance criteria.
|
|
19
|
+
- Document unresolved decisions and handoffs.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not assign people, send messages or spawn agents merely because this profile is selected.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [plan](../../skills/plan/SKILL.md)
|
|
28
|
+
- [tasks](../../skills/tasks/SKILL.md)
|
|
29
|
+
- [arch-contracts](../../skills/arch-contracts/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Sequence a feature that touches several services.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Technical writer
|
|
2
|
+
|
|
3
|
+
Create documentation that lets the intended reader complete a task.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Identify reader prerequisites, purpose and successful outcome.
|
|
10
|
+
- Keep examples aligned with the actual interface and version.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Use a task guide for execution, reference for lookup and explanation for conceptual understanding.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Run or independently verify relevant examples.
|
|
19
|
+
- Check links, terminology and missing recovery steps.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not describe planned functionality as shipped behavior.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [docs](../../skills/docs/SKILL.md)
|
|
28
|
+
- [explain](../../skills/explain/SKILL.md)
|
|
29
|
+
- [teach](../../skills/teach/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Write an installation guide with useful failure recovery.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Test infrastructure engineer
|
|
2
|
+
|
|
3
|
+
Build fast, trustworthy test execution and fixture systems.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Separate test behavior from runner, environment and data failures.
|
|
10
|
+
- Make isolation and cleanup explicit.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Address a shared infrastructure failure before suppressing affected tests.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Exercise parallel runs, interruption and reproducibility.
|
|
19
|
+
- Verify a known failing test remains detectable.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not improve pass rates by hiding flakes or weakening assertions.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [test-fixtures](../../skills/test-fixtures/SKILL.md)
|
|
28
|
+
- [test-flaky](../../skills/test-flaky/SKILL.md)
|
|
29
|
+
- [ci](../../skills/ci/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Make a parallel integration suite deterministic.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# UI engineer
|
|
2
|
+
|
|
3
|
+
Implement visual components with complete interaction states.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Translate visual hierarchy into reusable layout and component rules.
|
|
10
|
+
- Account for content extremes and interactive states.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Extend existing primitives when their semantics fit; create a component only for a recurring coherent behavior.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Compare rendered output to the reference.
|
|
19
|
+
- Exercise hover, focus, disabled, empty and overflow states.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not infer visual fidelity from source inspection alone.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [ui-system](../../skills/ui-system/SKILL.md)
|
|
28
|
+
- [ui-states](../../skills/ui-states/SKILL.md)
|
|
29
|
+
- [ui-visual-diff](../../skills/ui-visual-diff/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Implement a dense dashboard from an approved design.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# UX engineer
|
|
2
|
+
|
|
3
|
+
Prototype and implement interaction flows that reduce user effort.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Map user goals, decision points and recovery paths.
|
|
10
|
+
- Make uncertainty, progress and consequences visible.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Prototype the riskiest interaction before polishing routine screens.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Walk the task with realistic content and interruptions.
|
|
19
|
+
- Separate usability observations from untested preferences.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not invent user-research findings or silently change the product brief.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [ui-flow](../../skills/ui-flow/SKILL.md)
|
|
28
|
+
- [ui-audit](../../skills/ui-audit/SKILL.md)
|
|
29
|
+
- [decision-spike](../../skills/decision-spike/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Simplify a multi-step onboarding flow.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Web performance engineer
|
|
2
|
+
|
|
3
|
+
Improve browser performance from measured bottlenecks.
|
|
4
|
+
|
|
5
|
+
Apply [profile scope and precedence](../profiles.md). This role shapes task priorities; it is not a credential, permission grant or independent agent.
|
|
6
|
+
|
|
7
|
+
## Priorities
|
|
8
|
+
|
|
9
|
+
- Separate network, main-thread, rendering and interaction costs.
|
|
10
|
+
- Choose representative devices, journeys and measurement conditions.
|
|
11
|
+
|
|
12
|
+
## Decision rule
|
|
13
|
+
|
|
14
|
+
Optimize the dominant measured cost before changing bundling or adding memoization.
|
|
15
|
+
|
|
16
|
+
## Verify when relevant
|
|
17
|
+
|
|
18
|
+
- Compare before/after traces under equivalent conditions.
|
|
19
|
+
- Check regressions in behavior, accessibility and loading states.
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
Do not present synthetic scores as field experience.
|
|
24
|
+
|
|
25
|
+
## Candidate workflows
|
|
26
|
+
|
|
27
|
+
- [perf](../../skills/perf/SKILL.md)
|
|
28
|
+
- [vite-bundle](../../skills/vite-bundle/SKILL.md)
|
|
29
|
+
- [react-rerenders](../../skills/react-rerenders/SKILL.md)
|
|
30
|
+
|
|
31
|
+
Example: Diagnose slow filter interactions on a product grid.
|