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,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vercel-runtime
|
|
3
|
+
description: "Investigate function errors, timeouts, and runtime differences Use for failures after a successful build; vercel-build-fix handles build-time errors."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vercel-runtime
|
|
7
|
+
|
|
8
|
+
Investigate function errors, timeouts, and runtime differences
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for failures after a successful build; vercel-build-fix handles build-time errors.
|
|
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; deployment, route/function, error window, and correlation IDs.
|
|
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
|
+
Runtime exceptions, timeouts, resource limits, and local/deployed behavior differences.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Correlate logs with revision/runtime, inspect request and dependency boundaries, separate cold-start/resource/network causes, and propose a focused reproduction or fix.
|
|
33
|
+
- Correlate deployment/request/time and inspect handler entry, environment presence, dependency waits and runtime-specific API support.
|
|
34
|
+
- 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.
|
|
35
|
+
|
|
36
|
+
## Read when relevant
|
|
37
|
+
|
|
38
|
+
- Resolving check, deployment or migration identity: [Delivery evidence](../../references/scenarios/delivery-evidence.md).
|
|
39
|
+
|
|
40
|
+
## Decision branches
|
|
41
|
+
|
|
42
|
+
- **When timeout logs contain no downstream completion:** Treat the waiting boundary as evidence, not proof of which dependency caused the delay.
|
|
43
|
+
|
|
44
|
+
## Deliver and verify
|
|
45
|
+
|
|
46
|
+
- Supported diagnosis, relevant log references, and repair/verification steps.
|
|
47
|
+
- Request/deployment identity, causal hypotheses, discriminating probe and recovery limits.
|
|
48
|
+
|
|
49
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
50
|
+
|
|
51
|
+
- Build success is not mistaken for runtime health; a timeout has evidence identifying the waiting boundary.
|
|
52
|
+
|
|
53
|
+
## Stop and recover
|
|
54
|
+
|
|
55
|
+
- Do not trigger billable/high-volume traffic or expose request data. Apply changes only when remediation is requested.
|
|
56
|
+
|
|
57
|
+
## Example requests
|
|
58
|
+
|
|
59
|
+
- **Normal (inspect):** Investigate function timeouts for this deployment and time window.
|
|
60
|
+
- **edge (inspect):** Diagnose a function that builds but times out awaiting a database connection.
|
|
61
|
+
- **blocked (inspect):** Analyze redacted runtime logs without generating live traffic.
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: verify
|
|
3
|
+
description: "Run relevant checks and report supporting evidence Use to establish evidence for explicit completion criteria; test authors missing checks."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# verify
|
|
7
|
+
|
|
8
|
+
Run relevant checks and report supporting evidence
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to establish evidence for explicit completion criteria; test authors missing checks.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [General methods](../../references/packs/general.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **apply**. Apply because checks may create artifacts; target change and claimed success criteria. Inspect mode reads existing evidence only.
|
|
19
|
+
|
|
20
|
+
Resolve the user brief and inspect the relevant project or supplied evidence. External capabilities are optional unless the selected action actually needs them.
|
|
21
|
+
|
|
22
|
+
Declared evidence requirements: `project.read`. Use actual host discovery or adequate supplied artifacts; unavailable evidence remains blocked/unknown.
|
|
23
|
+
|
|
24
|
+
## Scope
|
|
25
|
+
|
|
26
|
+
Relevant tests, builds, type checks, and runtime validation; no automatic repairs.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
1. Read the relevant package scripts and changed behavior before choosing checks. Identify scripts that install, deploy, seed shared databases or make external calls before running them.
|
|
33
|
+
2. Execute the relevant bounded checks with the active host tool and capture actual exit code, revision, output summary and any generated artifacts. Use read-only existing evidence in inspect mode.
|
|
34
|
+
3. Do not repair failures unless the user also requested repair. Keep failed, blocked and unrun checks separate from passes; identify pre-existing failures only with evidence.
|
|
35
|
+
|
|
36
|
+
Task-specific method: Select checks from project scripts and changed behavior, inspect commands for side effects, run bounded checks, and associate results with the tested revision. Map every criterion to an existing check, inspected artifact or bounded interaction; inspect script side effects and record the revision and environment.
|
|
37
|
+
|
|
38
|
+
## Decision branches
|
|
39
|
+
|
|
40
|
+
- **When a required check is unavailable or fails before exercising behavior:** Mark that criterion unverified and report the prerequisite separately from product failure.
|
|
41
|
+
|
|
42
|
+
## Deliver and verify
|
|
43
|
+
|
|
44
|
+
- Check results, exit statuses, covered criteria, and blocked/unverified areas.
|
|
45
|
+
- Criterion/check/result matrix with commands, exit statuses, revision and gaps.
|
|
46
|
+
|
|
47
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
48
|
+
|
|
49
|
+
- A failing command produces a failed result; unavailable dependencies remain blocked rather than skipped into an overall pass.
|
|
50
|
+
|
|
51
|
+
## Stop and recover
|
|
52
|
+
|
|
53
|
+
- Do not run deployment scripts as verification. Separate pre-existing failures from introduced failures using evidence.
|
|
54
|
+
|
|
55
|
+
## Example requests
|
|
56
|
+
|
|
57
|
+
- **Normal (apply):** Verify this checkout change using the project checks; report blocked checks.
|
|
58
|
+
- **edge (apply):** Verify a fix where unit tests pass but the browser build fails.
|
|
59
|
+
- **blocked (inspect):** Review existing CI artifacts without running commands or treating stale results as current.
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vite-assets
|
|
3
|
+
description: "Fix asset paths, public files, base paths, and deployment paths Use for missing assets or wrong emitted URLs; vercel-routing handles platform rewrites."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vite-assets
|
|
7
|
+
|
|
8
|
+
Fix asset paths, public files, base paths, and deployment paths
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for missing assets or wrong emitted URLs; vercel-routing handles platform rewrites.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vite methods](../../references/packs/vite.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; broken asset URLs, deployment base path, source assets, and target routes.
|
|
19
|
+
|
|
20
|
+
project manifests, lockfile, Vite/framework/plugin versions, and existing build scripts. Verify current version-specific documentation when changing configuration. Apply-mode checks may generate build/cache artifacts; inspect mode uses existing 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
|
+
Imported/public assets, URL construction, and base-path handling; no asset redesign.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Resolve the actual mode, root, base path and deployment routing. Trace each failing URL from an imported asset, public file, CSS reference or runtime string to emitted output; compare dev and production behavior.
|
|
33
|
+
- Repair the owning URL construction using supported installed-version semantics. Keep case-sensitive paths, hashed output and assets consumed by lazy routes distinct; do not fix every route with an unconditional root-relative path.
|
|
34
|
+
- Verify root navigation, direct nested navigation, configured subpath base and refresh in a production preview. Check response status and content type: a fallback HTML page with status 200 is still a broken image or module.
|
|
35
|
+
|
|
36
|
+
## Decision branches
|
|
37
|
+
|
|
38
|
+
- **When runtime concatenation prevents static asset discovery:** Use an explicit asset map or supported URL/import pattern appropriate to the installed version.
|
|
39
|
+
|
|
40
|
+
## Deliver and verify
|
|
41
|
+
|
|
42
|
+
- Asset-path patch and production-build/browser verification.
|
|
43
|
+
- Source-to-output mapping and root/subpath/nested-route results.
|
|
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
|
+
- Emitted asset URLs resolve under the requested base and nested routes, with correct content types and no reliance on navigation from the root.
|
|
48
|
+
|
|
49
|
+
## Stop and recover
|
|
50
|
+
|
|
51
|
+
- Do not hard-code a development origin or copy secret files into public output. Missing deployment evidence is stated separately.
|
|
52
|
+
|
|
53
|
+
## Example requests
|
|
54
|
+
|
|
55
|
+
- **Normal (apply):** Fix images that work locally but fail when hosted under a subpath.
|
|
56
|
+
- **edge (apply):** Fix images that work in dev but fail under a deployed subdirectory.
|
|
57
|
+
- **blocked (inspect):** Inspect source paths without deployment access; separate build evidence from live serving.
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vite-bundle
|
|
3
|
+
description: "Analyze bundle composition and measured size reductions Use for bundle composition and size; vite-chunks focuses on loading boundaries."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vite-bundle
|
|
7
|
+
|
|
8
|
+
Analyze bundle composition and measured size reductions
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for bundle composition and size; vite-chunks focuses on loading boundaries.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vite methods](../../references/packs/vite.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; saved build stats/artifacts and size/performance goal; generating a build selects authorized execution.
|
|
19
|
+
|
|
20
|
+
project manifests, lockfile, Vite/framework/plugin versions, and existing build scripts. Verify current version-specific documentation when changing configuration. Apply-mode checks may generate build/cache artifacts; inspect mode uses existing 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
|
+
Bundle composition and measured reductions, not arbitrary dependency removal.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Record the installed versions, command, mode, route and baseline artifact. Separate raw output, compressed size and actual transferred bytes; compare equivalent build and cache conditions.
|
|
33
|
+
- Trace a large or duplicate module to imports and the user journey that loads it. Distinguish startup cost from total application cost and verify whether an existing lazy boundary is defeated by an eager import.
|
|
34
|
+
- Choose a focused change based on the observed cost. Splitting a module can add a waterfall or alter side-effect order; avoid generic manual-chunk rules or removing dependencies solely because they are large.
|
|
35
|
+
- Build and exercise affected entry/lazy routes, direct navigation and failure recovery. Report comparable before/after measurements plus functional checks; a smaller output file alone does not prove faster interaction.
|
|
36
|
+
|
|
37
|
+
## Decision branches
|
|
38
|
+
|
|
39
|
+
- **When a dependency is large but loaded only after an optional interaction:** Measure its contribution to that interaction rather than attributing it to initial load.
|
|
40
|
+
|
|
41
|
+
## Deliver and verify
|
|
42
|
+
|
|
43
|
+
- Size breakdown, cause, changes if authorized, and comparable before/after results.
|
|
44
|
+
- Import path, size metric, loaded route and before/after build conditions.
|
|
45
|
+
|
|
46
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
47
|
+
|
|
48
|
+
- Measurements share build/mode/version assumptions, and affected initial and lazy routes still load correctly. Raw bytes are not mislabeled as transfer size or user-perceived performance.
|
|
49
|
+
|
|
50
|
+
## Stop and recover
|
|
51
|
+
|
|
52
|
+
- Do not equate smaller bytes with faster UX without timing evidence. Missing stats limit numerical conclusions.
|
|
53
|
+
|
|
54
|
+
## Example requests
|
|
55
|
+
|
|
56
|
+
- **Normal (inspect):** Analyze the supplied production bundle statistics and prioritize size reductions.
|
|
57
|
+
- **edge (inspect):** Reduce initial bytes without breaking a lazily loaded editor.
|
|
58
|
+
- **blocked (inspect):** Review available bundle stats without installing an analyzer or inventing timing gains.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vite-chunks
|
|
3
|
+
description: "Investigate loading boundaries, duplicated modules, and chunks Use to change lazy-loading/cache boundaries; vite-bundle first identifies heavy contributors."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vite-chunks
|
|
7
|
+
|
|
8
|
+
Investigate loading boundaries, duplicated modules, and chunks
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to change lazy-loading/cache boundaries; vite-bundle first identifies heavy contributors.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vite methods](../../references/packs/vite.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; route/loading behavior, build artifacts, and chunk configuration.
|
|
19
|
+
|
|
20
|
+
project manifests, lockfile, Vite/framework/plugin versions, and existing build scripts. Verify current version-specific documentation when changing configuration. Apply-mode checks may generate build/cache artifacts; inspect mode uses existing 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
|
+
Dynamic imports, shared chunks, duplicate modules, and loading boundaries.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Map entry/chunk relationships, inspect waterfalls and dependency duplication, evaluate cache/initial-load tradeoffs, and propose focused splitting changes.
|
|
33
|
+
- Map dynamic imports and shared chunks to representative navigation waterfalls; examine duplication, circular dependencies and cache invalidation costs.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When manual splitting changes execution order or creates a waterfall:** Verify module side effects and route transitions before accepting byte reductions.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Chunk graph explanation and optimization plan or authorized patch with loading evidence.
|
|
42
|
+
- Chunk/dependency map, request waterfall and relevant navigation checks.
|
|
43
|
+
|
|
44
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
45
|
+
|
|
46
|
+
- A split reduces the intended initial work; deep-link and lazy-load paths still resolve all required modules.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Avoid arbitrary manual chunk rules without evidence. Report missing network traces rather than inventing loading improvements.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Find duplicated dependencies and loading-boundary issues in these build artifacts.
|
|
55
|
+
- **edge (inspect):** Split a heavy dashboard while preserving direct deep links and shared vendor initialization.
|
|
56
|
+
- **blocked (inspect):** Plan chunks without network traces; report loading benefits as hypotheses.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vite-config
|
|
3
|
+
description: "Audit aliases, plugins, build options, and environment handling Use to inspect effective configuration; vite-hmr or vite-assets handles a known failure surface."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vite-config
|
|
7
|
+
|
|
8
|
+
Audit aliases, plugins, build options, and environment handling
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to inspect effective configuration; vite-hmr or vite-assets handles a known failure surface.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vite methods](../../references/packs/vite.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; configuration files, intended behavior, and observed issue.
|
|
19
|
+
|
|
20
|
+
project manifests, lockfile, Vite/framework/plugin versions, and existing build scripts. Verify current version-specific documentation when changing configuration. Apply-mode checks may generate build/cache artifacts; inspect mode uses existing 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
|
+
Aliases, plugins/order, build targets, server options, and environment handling.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Read effective configuration sources and version compatibility, trace conflicting options, compare development/production behavior, and propose focused corrections.
|
|
33
|
+
- Resolve command, mode, root, envDir, aliases and plugin order from the actual invoked script; compare TypeScript resolution with bundler resolution.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a config function branches on command or mode:** Assess each relevant branch statically before executing potentially side-effecting configuration.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Configuration findings, reasoning, and optional authorized patch.
|
|
42
|
+
- Effective configuration by invocation and unsupported/conflicting settings.
|
|
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 TypeScript-only alias missing at runtime is identified; a version-unsupported option is not recommended.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not execute arbitrary config code during read-only inspection without considering its side effects. Missing build evidence remains unknown.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Audit aliases and plugin order for the installed Vite version.
|
|
55
|
+
- **edge (inspect):** Diagnose an alias that typechecks but fails in the production bundle.
|
|
56
|
+
- **blocked (inspect):** Inspect config source with no build permission; do not execute arbitrary imports.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vite-env
|
|
3
|
+
description: "Check environment loading and exposure of server-only values Use for build mode, environment loading and client exposure; vercel-env checks deployment scope metadata."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vite-env
|
|
7
|
+
|
|
8
|
+
Check environment loading and exposure of server-only values
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for build mode, environment loading and client exposure; vercel-env checks deployment scope metadata.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vite methods](../../references/packs/vite.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; build mode, expected variable names, environment files, and exposure policy.
|
|
19
|
+
|
|
20
|
+
project manifests, lockfile, Vite/framework/plugin versions, and existing build scripts. Verify current version-specific documentation when changing configuration. Apply-mode checks may generate build/cache artifacts; inspect mode uses existing 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
|
+
Load precedence, prefixes, build-time replacement, and client/server separation.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Inspect variable references and configuration names, trace which mode supplies them, inspect existing generated bundles for exposure when available, and recommend narrow corrections.
|
|
33
|
+
- Trace import.meta.env usage and configured envPrefix, inspect mode-specific files by names only, and separate build mode from NODE_ENV.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a required secret is referenced by client code:** Move the privileged operation behind a server boundary instead of adding a client-exposed prefix.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Redacted environment map and exposure/missing-value findings.
|
|
42
|
+
- Name/consumer/mode/exposure table and evidence from a controlled built artifact.
|
|
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
|
+
- Server-only credentials are not moved into client-exposed prefixes; development and production modes resolve the intended public configuration.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Never print secret values. Secret rotation is a separate authorized action; configuration edits follow an explicit repair request.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Check whether server-only configuration is exposed in the client bundle.
|
|
55
|
+
- **edge (inspect):** Diagnose a staging build made with a production NODE_ENV and a custom mode.
|
|
56
|
+
- **blocked (inspect):** Inspect environment references without reading secret values or building output.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vite-hmr
|
|
3
|
+
description: "Diagnose broken, slow, or inconsistent hot-module updates Use for broken development updates; react-effects handles lifecycle bugs visible during refresh."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vite-hmr
|
|
7
|
+
|
|
8
|
+
Diagnose broken, slow, or inconsistent hot-module updates
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for broken development updates; react-effects handles lifecycle bugs visible during refresh.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vite methods](../../references/packs/vite.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; affected file/component, development environment, and HMR logs or reproduction.
|
|
19
|
+
|
|
20
|
+
project manifests, lockfile, Vite/framework/plugin versions, and existing build scripts. Verify current version-specific documentation when changing configuration. Apply-mode checks may generate build/cache artifacts; inspect mode uses existing 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
|
+
Watcher events, module invalidation, framework refresh, and proxy/network transport.
|
|
27
|
+
|
|
28
|
+
None by default. Plan artifacts may be saved when requested.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Trace file change to browser update, inspect plugin boundaries and duplicate modules, distinguish full reload from hot replacement, and localize the failure.
|
|
33
|
+
- Follow file watcher to module graph to HMR connection and framework boundary; distinguish transport loss from invalidation and deliberate full reload.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When updates fail only through a proxy or container:** Inspect websocket origin/port and mounted-path watching before relaxing host/filesystem protections.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Diagnosis and focused fix proposal; apply and validate when requested.
|
|
42
|
+
- Reproduction steps, failing HMR boundary and update/state-preservation checks.
|
|
43
|
+
|
|
44
|
+
Verify these observable conditions when applicable to the actual task; do not claim they were exercised from merely reading this file:
|
|
45
|
+
|
|
46
|
+
- A changed module updates correctly after remediation; unrelated state is preserved when the framework supports it.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Running a dev server requires execution authorization. Do not disable host protections or broadly relax filesystem access as a default fix.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (inspect):** Investigate why changes trigger full reloads and lose form state.
|
|
55
|
+
- **edge (inspect):** Diagnose refresh failing behind a reverse proxy while direct localhost works.
|
|
56
|
+
- **blocked (inspect):** Inspect HMR configuration without starting a dev server; identify needed browser evidence.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vite-setup
|
|
3
|
+
description: "Configure Vite for the framework and project requirements Use to add or repair Vite project wiring; vite-upgrade changes an existing version."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vite-setup
|
|
7
|
+
|
|
8
|
+
Configure Vite for the framework and project requirements
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use to add or repair Vite project wiring; vite-upgrade changes an existing version.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vite methods](../../references/packs/vite.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; framework, language, project location, deployment shape, and dependency constraints.
|
|
19
|
+
|
|
20
|
+
project manifests, lockfile, Vite/framework/plugin versions, and existing build scripts. Verify current version-specific documentation when changing configuration. Apply-mode checks may generate build/cache artifacts; inspect mode uses existing 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
|
+
Vite configuration and required scripts/integration; no app redesign or unrelated toolchain replacement.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Inspect existing setup, choose compatible plugins, configure development/build/preview scripts, preserve existing source, and validate basic development and production paths.
|
|
33
|
+
- Inspect package manager, workspace root, framework plugin and Node support; preserve existing entry files and establish dev/build/preview paths using project conventions.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When an existing app already has a bundler or non-root deployment path:** Plan an explicit transition and base-path handling rather than copying a new template over it.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Working setup, dependency/config changes, usage, and check results.
|
|
42
|
+
- Configuration/script changes and dev/production/subpath verification.
|
|
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 existing app builds; deploying under the requested base path resolves assets correctly.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- Do not overwrite an existing project with a template. Respect no-new-dependency constraints and unsupported framework combinations.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (apply):** Set up Vite for this existing React app without replacing source files.
|
|
55
|
+
- **edge (apply):** Configure Vite in an existing React workspace served under /dashboard/.
|
|
56
|
+
- **blocked (inspect):** Inspect setup requirements without installing dependencies or overwriting source.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vite-upgrade
|
|
3
|
+
description: "Upgrade Vite and plugins with compatibility and build checks Use for a requested Vite version transition; deps handles general dependency selection."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# vite-upgrade
|
|
7
|
+
|
|
8
|
+
Upgrade Vite and plugins with compatibility and build checks
|
|
9
|
+
|
|
10
|
+
## Choose this workflow
|
|
11
|
+
|
|
12
|
+
Use for a requested Vite version transition; deps handles general dependency selection.
|
|
13
|
+
|
|
14
|
+
Read [shared execution](../../references/execution.md) for context/mode/authority handling and [Vite methods](../../references/packs/vite.md) for tool selection and operational details. Resolve these paths from this skill file; all runtime assets ship inside the plugin.
|
|
15
|
+
|
|
16
|
+
## Input and mode
|
|
17
|
+
|
|
18
|
+
Use the complete request appended to this invocation, preserving all constraints and references. Default mode: **apply**. Apply for a requested upgrade; source/target version, framework/plugins, and runtime constraints.
|
|
19
|
+
|
|
20
|
+
project manifests, lockfile, Vite/framework/plugin versions, and existing build scripts. Verify current version-specific documentation when changing configuration. Apply-mode checks may generate build/cache artifacts; inspect mode uses existing 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
|
+
Compatible Vite/toolchain upgrade and necessary config changes.
|
|
27
|
+
|
|
28
|
+
Only the requested local changes; external actions require their exact action and target in session authorization.
|
|
29
|
+
|
|
30
|
+
## Execute
|
|
31
|
+
|
|
32
|
+
- Read relevant migration notes, inspect plugin and Node compatibility, update controlled dependencies/lockfile, adjust deprecated behavior, and test development plus production build.
|
|
33
|
+
- Check target migration notes and framework-plugin/Node compatibility, update only the required graph and compare dev refresh, production output and preview behavior.
|
|
34
|
+
|
|
35
|
+
## Decision branches
|
|
36
|
+
|
|
37
|
+
- **When a required plugin has no compatible version:** Stop at that compatibility boundary and propose a supported intermediate target.
|
|
38
|
+
|
|
39
|
+
## Deliver and verify
|
|
40
|
+
|
|
41
|
+
- Upgrade patch, compatibility rationale, checks, and rollback steps.
|
|
42
|
+
- Version/peer matrix, configuration changes and dev/build/runtime 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
|
+
- Framework refresh and build both work; incompatible plugins are resolved or explicitly block the target version.
|
|
47
|
+
|
|
48
|
+
## Stop and recover
|
|
49
|
+
|
|
50
|
+
- No unrelated major upgrades. If a required peer is unsupported, stop before presenting a broken combination as complete.
|
|
51
|
+
|
|
52
|
+
## Example requests
|
|
53
|
+
|
|
54
|
+
- **Normal (apply):** Upgrade to the specified Vite version and verify framework-plugin compatibility.
|
|
55
|
+
- **edge (apply):** Upgrade Vite while retaining an older framework plugin until a supported replacement exists.
|
|
56
|
+
- **blocked (inspect):** Plan an upgrade with unavailable release-note access; do not guess removed options.
|