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,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ui-responsive
|
|
3
|
+
description: "Fix layouts across screen sizes and input methods Use for layout adaptation, zoom and input differences; responsive is the same canonical workflow."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ui-responsive
|
|
7
|
+
|
|
8
|
+
Fix layouts across screen sizes and input methods
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for layout adaptation, zoom and input differences; responsive is the same canonical workflow.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [UI and frontend methods](../../references/packs/ui.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; target layouts, content extremes, and supported input/viewport conditions.
|
|
19
|
+
|
|
20
|
+
target screens/flows, existing design conventions, and runnable UI or supplied references. Visual claims require actual renders; accessibility claims distinguish automated, keyboard, and assistive-technology evidence.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `project.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Layout adaptation including touch, pointer, zoom, and keyboard effects; shares primitives with `responsive`.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Inspect intrinsic sizes and flow, reproduce failures, adjust layout constraints, and verify intermediate widths, long text, and relevant orientation changes.
|
|
33
|
+
- Find the intrinsic width constraint or overflow source, adjust layout at content-driven boundaries and test nearby widths with long text and keyboard focus.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When hiding an element would remove required functionality:** Reflow or provide an equivalent reachable interaction instead of suppressing it.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Layout fixes and a viewport/input coverage record.
|
|
42
|
+
- Viewport/content/input matrix and observed reachability/overflow 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
|
+
- Content remains reachable at narrow widths and zoom; hover-only controls have a usable alternate interaction.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not hide required functionality or claim device coverage from a single desktop screenshot.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (apply):** Fix the checkout layout for narrow screens, zoom, and touch input.
|
|
55
|
+
- **edge (apply):** Repair a table at narrow widths and high zoom without hiding essential actions.
|
|
56
|
+
- **blocked (inspect):** Review responsive source and screenshots without claiming real-device interaction coverage.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ui-states
|
|
3
|
+
description: "Add loading, empty, error, partial-data, disabled, and success states Use to implement missing interface states; ui-flow connects states across a journey."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ui-states
|
|
7
|
+
|
|
8
|
+
Add loading, empty, error, partial-data, disabled, and success states
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to implement missing interface states; ui-flow connects states across a journey.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [UI and frontend methods](../../references/packs/ui.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; feature and valid loading/empty/error/partial/disabled/success conditions.
|
|
19
|
+
|
|
20
|
+
target screens/flows, existing design conventions, and runnable UI or supplied references. Visual claims require actual renders; accessibility claims distinguish automated, keyboard, and assistive-technology evidence.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `project.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Missing state behavior and presentation for the selected feature.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Derive states from data and business rules, define transitions and recovery, implement accessible feedback, and exercise each state with controlled data.
|
|
33
|
+
- Derive loading, empty, partial, stale, failed and success states from the data contract; define retry and back-navigation transitions before rendering them.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a partial response has useful data and an error:** Preserve usable content and explain the failed portion rather than displaying a misleading empty state.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- State-complete UI plus transition/state verification.
|
|
42
|
+
- State/trigger/message/action table and controlled fixture 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
|
+
- Empty data is distinguished from failed loading; a retry preserves relevant user input and context.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not invent payment/account policies. Unspecified critical transitions become questions while independent states proceed.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (apply):** Complete billing states for missing cards, failed renewal, and successful recovery.
|
|
55
|
+
- **edge (apply):** Add partial failure and retry states to a dashboard without losing filters.
|
|
56
|
+
- **blocked (inspect):** Design states with unknown payment policy; leave the policy-dependent transition unresolved.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ui-system
|
|
3
|
+
description: "Establish typography, spacing, colors, tokens, and component conventions Use to establish or refine shared design tokens/components; polish makes local refinements."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ui-system
|
|
7
|
+
|
|
8
|
+
Establish typography, spacing, colors, tokens, and component conventions
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to establish or refine shared design tokens/components; polish makes local refinements.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [UI and frontend methods](../../references/packs/ui.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; existing screens, brand constraints, reusable components, and desired consistency.
|
|
19
|
+
|
|
20
|
+
target screens/flows, existing design conventions, and runnable UI or supplied references. Visual claims require actual renders; accessibility claims distinguish automated, keyboard, and assistive-technology evidence.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `project.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Tokens and component conventions; implementation requires an explicit build/adoption request.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Inventory existing values, identify a coherent scale, define semantic tokens and component states, and plan incremental adoption without visual regressions.
|
|
33
|
+
- Inventory actual repeated values and component states; separate semantic roles from raw scales and define incremental adoption with representative specimens.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When two themes require different contrast relationships:** Map semantic tokens per theme and verify components rather than applying one global color substitution.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Typography/spacing/color/state system and migration mapping or authorized implementation.
|
|
42
|
+
- Token roles/scales, component state matrix and migration examples.
|
|
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
|
+
- Tokens express meaning across components; contrast and long-content behavior remain usable in representative states.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not replace branding or add a component framework without need. Resolve competing theme requirements explicitly.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (plan):** Plan semantic design tokens from the existing screens and brand constraints.
|
|
55
|
+
- **edge (plan):** Consolidate spacing and color tokens across light and dark settings screens.
|
|
56
|
+
- **blocked (inspect):** Plan a system from existing UI without replacing unavailable brand assets.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ui-visual-diff
|
|
3
|
+
description: "Compare screenshots against an accepted reference Use to compare matched visual states; ui-audit judges usability of the resulting interface."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ui-visual-diff
|
|
7
|
+
|
|
8
|
+
Compare screenshots against an accepted reference
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to compare matched visual states; ui-audit judges usability of the resulting interface.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [UI and frontend methods](../../references/packs/ui.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 existing captures; reference/current renders with matching viewport, state, data, fonts, and theme.
|
|
19
|
+
|
|
20
|
+
target screens/flows, existing design conventions, and runnable UI or supplied references. Visual claims require actual renders; accessibility claims distinguish automated, keyboard, and assistive-technology evidence.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `browser.inspect`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Visual differences and regression classification; automatic fixes belong to `match` or an explicit apply request.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Normalize capture conditions, identify meaningful regions, separate dynamic content noise, and describe differences by user impact.
|
|
33
|
+
- Match viewport, DPR, fonts, content, theme and animation state; mask only justified nondeterminism and inspect changed regions before accepting baselines.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When captures differ in environment or content:** Recreate comparable captures or give qualitative differences without a precise pixel claim.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Compared images or annotated difference report with conditions and confidence.
|
|
42
|
+
- Capture conditions, changed regions, accepted differences and remaining mismatches.
|
|
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 layout shift is detected; a timestamp-only change is not misclassified as a design regression.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- New captures require authorized browser execution. Unmatched conditions invalidate precise pixel-difference claims.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Compare these matched-viewport screenshots and separate dynamic noise from regressions.
|
|
55
|
+
- **edge (inspect):** Compare screenshots with dynamic timestamps and a real layout shift.
|
|
56
|
+
- **blocked (inspect):** Compare supplied captures with unknown font loading; do not assert exact pixel fidelity.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vercel-audit
|
|
3
|
+
description: "Inspect project configuration, build settings, and deployment assumptions Use to compare repository configuration with a specific Vercel project; vercel-runtime investigates a particular runtime failure."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vercel-audit
|
|
7
|
+
|
|
8
|
+
Inspect project configuration, build settings, and deployment assumptions
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to compare repository configuration with a specific Vercel project; vercel-runtime investigates a particular runtime failure.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vercel methods](../../references/packs/vercel.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; project and repository plus reported deployment concerns.
|
|
19
|
+
|
|
20
|
+
exact team/project/environment and deployment/revision when applicable; read access to relevant configuration/logs. Verify installed CLI/API support and framework behavior during implementation. Never print environment values or infer promotion authorization from a preview request.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `vercel.context`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Framework detection, root/build/output settings, runtime assumptions, and deployment configuration.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Compare repository scripts/configuration with project settings, inspect recent deployment metadata, and identify drift or unsupported assumptions.
|
|
33
|
+
- Record team/project/revision and compare root directory, build/install command, output directory, framework preset and runtime against the relevant package.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a monorepo's deployed root differs from the package under review:** Trace install/build working directories and workspace dependency resolution before changing settings.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Configuration inventory, evidence-backed findings, and ordered fixes.
|
|
42
|
+
- Setting/source/effective-value comparison with drift and unavailable observations.
|
|
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 wrong monorepo root is identified; missing settings access is reported rather than assumed to match local defaults.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- No settings edits or new deployment. Do not treat a successful old deployment as evidence the current revision is healthy.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Audit the linked project's build settings against this monorepo configuration.
|
|
55
|
+
- **edge (inspect):** Audit a monorepo deploying the wrong workspace package.
|
|
56
|
+
- **blocked (inspect):** Audit supplied settings and logs without live Vercel access.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vercel-build-fix
|
|
3
|
+
description: "Reproduce and repair failed deployment builds Use for a failed Vercel build; vite-bundle handles size and splitting of a successful build."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vercel-build-fix
|
|
7
|
+
|
|
8
|
+
Reproduce and repair failed deployment builds
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for a failed Vercel build; vite-bundle handles size and splitting of a successful build.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vercel methods](../../references/packs/vercel.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; failed deployment, branch/revision, and build logs.
|
|
19
|
+
|
|
20
|
+
exact team/project/environment and deployment/revision when applicable; read access to relevant configuration/logs. Verify installed CLI/API support and framework behavior during implementation. Never print environment values or infer promotion authorization from a preview request.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `vercel.context`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Repository/build configuration causing the failure; project settings changes require explicit target scope.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Identify the failing deployment, SHA, environment and first causal build error. Compare repository/install root, build package, output path, runtime/package manager and resolved dependencies with the successful environment.
|
|
33
|
+
- Reproduce the failing boundary locally when possible using the same workspace command and versions. Check case sensitivity, hoisted undeclared dependencies, build-time environment names and generated-file assumptions before patching application behavior.
|
|
34
|
+
- Apply a focused fix and verify the corresponding build path. Keep local success separate from remote deployment verification; reuse the existing deployment/project identity and create a new deployment only when requested.
|
|
35
|
+
- Report the causal evidence, changed configuration/code, local result and the deployment/revision actually observed remotely. Redact values and do not download secrets as incidental diagnosis.
|
|
36
|
+
- Use the matching bundled evidence collector when available; read its result and limitations rather than treating exit zero as readiness. Revalidate identity before a dependent action.
|
|
37
|
+
|
|
38
|
+
## Read when relevant
|
|
39
|
+
|
|
40
|
+
- Resolving check, deployment or migration identity: [Delivery evidence](../../references/scenarios/delivery-evidence.md).
|
|
41
|
+
|
|
42
|
+
## Decision branches
|
|
43
|
+
|
|
44
|
+
- **When local build succeeds but deployment fails:** Reproduce the specific environment difference before changing application code or adding dependencies.
|
|
45
|
+
|
|
46
|
+
## Deliver and verify
|
|
47
|
+
|
|
48
|
+
- Fix, root-cause explanation, local check results, and deployment verification if authorized.
|
|
49
|
+
- Causal build boundary, environment comparison, patch and reproduction outcome.
|
|
50
|
+
|
|
51
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
52
|
+
|
|
53
|
+
- A missing runtime dependency is resolved correctly; environment differences are not masked by hard-coded secret values.
|
|
54
|
+
|
|
55
|
+
## Stop and recover
|
|
56
|
+
|
|
57
|
+
- Do not deploy or alter production settings merely to test. Inaccessible logs limit the diagnosis explicitly.
|
|
58
|
+
|
|
59
|
+
## Example requests
|
|
60
|
+
|
|
61
|
+
- **Normal (apply):** Repair the preview build failure using the supplied deployment logs.
|
|
62
|
+
- **edge (apply):** Fix a deployment where an omitted runtime dependency exists only through workspace hoisting.
|
|
63
|
+
- **blocked (inspect):** Diagnose from a build log without a valid Vercel token; do not deploy to test.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vercel-env
|
|
3
|
+
description: "Compare required variable names and scopes without exposing values Use to inspect or explicitly manage variable names/scopes; vite-env traces client exposure and build modes."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vercel-env
|
|
7
|
+
|
|
8
|
+
Compare required variable names and scopes without exposing values
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to inspect or explicitly manage variable names/scopes; vite-env traces client exposure and build modes.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vercel methods](../../references/packs/vercel.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; project, environment/branch scopes, and required variable names.
|
|
19
|
+
|
|
20
|
+
exact team/project/environment and deployment/revision when applicable; read access to relevant configuration/logs. Verify installed CLI/API support and framework behavior during implementation. Never print environment values or infer promotion authorization from a preview request.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `vercel.context`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Presence, scope, and source of configuration names; values remain secret.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Derive required names from code/configuration, compare authorized metadata, identify missing/mis-scoped variables, and explain rebuild/redeployment implications.
|
|
33
|
+
- Map each referenced name to build-time or runtime usage and intended environment/branch; report presence and scope without fetching secret values.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a changed value is compiled into a static client bundle:** Explain the required rebuild/deployment and inspect public exposure; editing a variable alone does not change an existing bundle.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Redacted name/scope matrix and proposed corrections.
|
|
42
|
+
- Variable-name table with consumer, environment, branch scope and rebuild implications.
|
|
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 preview-only missing variable is distinguished from production; reports and commands never include secret values.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Mutation needs an explicit configuration request and secure input channel. Do not fetch values when metadata suffices or copy production secrets into previews.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Compare required variable names across preview and production without exposing values.
|
|
55
|
+
- **edge (inspect):** Inspect a variable present in production but absent on a branch-specific preview.
|
|
56
|
+
- **blocked (inspect):** Assess required environment names from source without downloading secret values.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vercel-performance
|
|
3
|
+
description: "Investigate slow routes using available measurements and logs Use for measured deployment latency/cache problems; react-rerenders handles client render cost."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vercel-performance
|
|
7
|
+
|
|
8
|
+
Investigate slow routes using available measurements and logs
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for measured deployment latency/cache problems; react-rerenders handles client render cost.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vercel methods](../../references/packs/vercel.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; slow routes, deployment, workload, and existing measurements.
|
|
19
|
+
|
|
20
|
+
exact team/project/environment and deployment/revision when applicable; read access to relevant configuration/logs. Verify installed CLI/API support and framework behavior during implementation. Never print environment values or infer promotion authorization from a preview request.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `vercel.context`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Server response, cold starts, caching, payloads, and relevant client delivery behavior.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Correlate timing with runtime/cache state, separate server from network/client delays, compare like-for-like requests, and rank optimizations by evidence.
|
|
33
|
+
- Separate cold start, warm handler, dependency, network and browser timing; compare matching regions, payloads and cache states.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a fast sample is cached and a slow sample is uncached:** Report separate distributions and investigate cache eligibility before claiming compute regression.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Bottleneck analysis, measurement conditions, and bounded optimization plan.
|
|
42
|
+
- Measurement conditions, distributions, limiting boundary and bounded optimization experiment.
|
|
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
|
+
- Cache hits and misses are compared separately; a single slow sample does not become a universal latency claim.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- New load/profiling requires authorized execution and budget. No automatic paid plan upgrade or unrelated application rewrite.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Analyze these route timings; distinguish cached responses from cold execution.
|
|
55
|
+
- **edge (inspect):** Compare slow preview requests with cached production responses fairly.
|
|
56
|
+
- **blocked (inspect):** Assess supplied timing samples without load testing or changing the paid plan.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vercel-preview
|
|
3
|
+
description: "Prepare and validate a branch or PR preview deployment Use for a specifically requested preview deployment; vercel-release-check assesses production readiness."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vercel-preview
|
|
7
|
+
|
|
8
|
+
Prepare and validate a branch or PR preview deployment
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for a specifically requested preview deployment; vercel-release-check assesses production readiness.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vercel methods](../../references/packs/vercel.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; branch/PR, project, revision, and preview goal. An explicit create-preview request authorizes that preview deployment.
|
|
19
|
+
|
|
20
|
+
exact team/project/environment and deployment/revision when applicable; read access to relevant configuration/logs. Verify installed CLI/API support and framework behavior during implementation. Never print environment values or infer promotion authorization from a preview request.
|
|
21
|
+
|
|
22
|
+
Resolve any task-specific tools, target identity and evidence before dependent actions. No external connection is assumed.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Preview environment only, including authorized smoke checks.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Resolve project/revision, inspect prerequisites, reuse a matching deployment where suitable, create only when requested, and verify URL, revision, routing, and key behavior.
|
|
33
|
+
- Resolve intended commit and project, reuse a matching deployment if appropriate and verify identity, access protection, routes and representative behavior.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a deployment request times out:** Query for the intended revision before retrying; distinguish a protected URL from an unhealthy app.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Preview plan or actual URL/deployment ID with smoke-check results.
|
|
42
|
+
- Preview identity/URL, exact revision, access requirements and observed 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
|
+
- The preview serves the intended commit; a protected preview is reported as access-restricted rather than broken without evidence.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- No promotion, production-domain changes, or unsolicited sharing. Check for existing deployment after uncertain creation.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (plan):** Prepare a preview for this branch and project; identify prerequisites first.
|
|
55
|
+
- **edge (plan):** Create a preview after an earlier request returned no deployment ID.
|
|
56
|
+
- **blocked (inspect):** Plan a preview without provider access; do not invent a URL.
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vercel-release-check
|
|
3
|
+
description: "Verify a deployment and prepare promotion or rollback steps Use to verify a named deployment's release gates; deploy executes authorized transition."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vercel-release-check
|
|
7
|
+
|
|
8
|
+
Verify a deployment and prepare promotion or rollback steps
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to verify a named deployment's release gates; deploy executes authorized transition.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vercel methods](../../references/packs/vercel.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; candidate deployment, intended production target, health criteria, and previous stable deployment.
|
|
19
|
+
|
|
20
|
+
exact team/project/environment and deployment/revision when applicable; read access to relevant configuration/logs. Verify installed CLI/API support and framework behavior during implementation. Never print environment values or infer promotion authorization from a preview request.
|
|
21
|
+
|
|
22
|
+
Resolve any task-specific tools, target identity and evidence before dependent actions. No external connection is assumed.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Readiness and promotion/rollback preparation; actual promotion is a separate authorized action.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Resolve team/project, candidate deployment ID, immutable Git SHA and intended environment from observed metadata. Compare that identity with the tested commit, build output and required configuration names/scopes.
|
|
33
|
+
- Check build completion, representative route/API health, asset content types, access protection and environment-specific behavior. Distinguish a protected preview from an unhealthy deployment; do not use a generic successful homepage as proof of the application journey.
|
|
34
|
+
- Identify the previous known-good deployment and test the proposed recovery against schema/data and external effects. Reverting code may not restore data compatibility or undo published messages.
|
|
35
|
+
- Produce a gate table tied to this candidate: criterion, evidence identity/time, pass/fail/unknown and blocking consequence. Re-read candidate identity before readiness is reported. Promotion, alias/DNS changes and rollback require their own authorized action/target.
|
|
36
|
+
|
|
37
|
+
## Decision branches
|
|
38
|
+
|
|
39
|
+
- **When rollback would restore code but not reverse a schema/data change:** Mark that recovery gap and require an explicit compatible recovery plan.
|
|
40
|
+
|
|
41
|
+
## Deliver and verify
|
|
42
|
+
|
|
43
|
+
- Candidate identity, evidence-linked release gates, concrete blockers or unknowns, recovery target/limits and readiness for the exact requested action.
|
|
44
|
+
|
|
45
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
46
|
+
|
|
47
|
+
- All readiness evidence applies to the named deployment and revision; unknown health or incompatible recovery is not converted to a pass. No deployment or promotion is implied by an audit.
|
|
48
|
+
|
|
49
|
+
## Stop and recover
|
|
50
|
+
|
|
51
|
+
- Do not promote or change aliases from a check request. Missing required health evidence means not yet verified.
|
|
52
|
+
|
|
53
|
+
## Example requests
|
|
54
|
+
|
|
55
|
+
- **Normal (inspect):** Check the candidate deployment before promotion; do not promote it.
|
|
56
|
+
- **edge (inspect):** Check readiness for a deployment that removes a database column.
|
|
57
|
+
- **blocked (inspect):** Assess readiness without current health evidence; do not promote aliases.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vercel-routing
|
|
3
|
+
description: "Diagnose redirects, rewrites, headers, domains, and route behavior Use for platform/framework route interaction; vite-assets diagnoses emitted asset paths."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vercel-routing
|
|
7
|
+
|
|
8
|
+
Diagnose redirects, rewrites, headers, domains, and route behavior
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for platform/framework route interaction; vite-assets diagnoses emitted asset paths.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vercel methods](../../references/packs/vercel.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; URL/path, expected response, project, and deployment configuration.
|
|
19
|
+
|
|
20
|
+
exact team/project/environment and deployment/revision when applicable; read access to relevant configuration/logs. Verify installed CLI/API support and framework behavior during implementation. Never print environment values or infer promotion authorization from a preview request.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `vercel.context`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Redirects, rewrites, headers, domains, and framework routing interactions.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Inspect precedence and base paths, trace bounded read-only requests, compare preview/production assumptions, and identify loops or unmatched paths.
|
|
33
|
+
- Build a request table with host, path, method and expected handler; trace redirects, rewrites, filesystem and framework routing in effective order.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a catch-all rewrite returns HTML for API or asset paths:** Narrow the rule and verify reserved paths plus direct nested navigation.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Route trace, cause, and proposed configuration patch; apply on an explicit fix request.
|
|
42
|
+
- Route matrix, observed status/location/content type and responsible rule.
|
|
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
|
+
- Redirect loops are identified; API routes are not swallowed by a catch-all SPA rewrite.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- No DNS or custom-domain mutation implicitly. Distinguish framework behavior from platform configuration and unavailable network evidence.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Explain why nested API routes receive the SPA page instead of JSON.
|
|
55
|
+
- **edge (inspect):** Fix preview deep links without swallowing API requests.
|
|
56
|
+
- **blocked (inspect):** Inspect routing configuration without DNS access or live request evidence.
|