- Add .shared/prompts/ with tool-neutral prompts - Add .opencode/config/project.md, rules/, skills/ from opencode-kit - Add .codex/config/project.md from codex-kit - Copy .shared/prompts/ to both .opencode/prompts/ and .codex/prompts/ - Add features/INDEX.md and features/README.md - Update README with unified structure The two original starter kits are now redundant.
1.1 KiB
1.1 KiB
name, description, category
| name | description | category |
|---|---|---|
| deploy | Deploys to Vercel with production-ready checks | devops |
DevOps
Deploys the project to Vercel with production-ready checks.
When to Use
/deploy
Skill Steps
-
Pre-deployment checks
- Run
npm run build- must succeed - Run
npm run lint- no errors
- Run
-
Deploy
- Run
vercel --prod - Capture deployment URL
- Run
-
Verify deployment
- Test the deployed URL
- Run smoke tests on key features
-
Post-deployment
- Update
features/INDEX.mdwith deployment URL - Mark feature as "Deployed"
- Update
Rules
- Build must succeed before deployment
- Lint must pass before deployment
- Verify deployment URL is accessible
If Build Fails
- Fix compilation errors
- Re-run
npm run build - Re-run
npm run lint - Then deploy
If Lint Fails
- Run
npm run lint:fix - Commit fixes
- Re-run
npm run lint - Then deploy
Context Recovery
If context is compacted during deployment:
- Check if
verceldeployment completed - Verify deployment URL
- Mark as deployed if successful