← Back to list

deploy
by bselee
Basic MRP development
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
name: deploy description: Build the project, commit all changes, and deploy directly to main. Use when deploying changes to production. allowed-tools: Bash, Read, Glob, Write, Edit
Deploy to Main
Automates the complete deployment workflow for pushing changes to production.
Workflow
- Build: Run
npm run buildto ensure no compilation errors - Status Check: Check git status for uncommitted changes
- Commit: Commit changes with a descriptive message
- Deploy: Push directly to main to trigger production deployment
- Confirm: Provide deployment status
Commands
# Build project
npm run build
# Check status
git status
git log --oneline -3
# Commit (if changes exist)
git add -A
git commit -m "chore: <descriptive message>"
# Push directly to main
git push origin main
When to Use
- "deploy to main"
- "push changes to production"
- "deploy these changes"
- "/deploy"
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon