スキル一覧に戻る
gunderwonder

ship

by gunderwonder

0🍴 0📅 2026年1月25日
GitHubで見るManusで実行

SKILL.md


name: ship description: Commit and push changes with an auto-generated commit message. Use when the user says "ship it", "commit and push", or wants to save and deploy their changes.

Ship

Commit and push all changes with a well-crafted commit message.

Instructions

  1. Check current state

    • Run git status to see all changes
    • Run git diff to understand what changed
    • Run git log --oneline -5 to see recent commit style
  2. Stage changes

    • Add relevant files with git add
    • NEVER commit sensitive files (.env, credentials.json, secrets/, etc.)
    • Warn the user if sensitive files are detected
  3. Generate commit message

    • Write in English
    • Focus on the "why" rather than the "what"
    • Keep the first line concise (50-72 chars)
    • Use imperative mood ("Add feature" not "Added feature")
  4. Commit with signature Use HEREDOC format for proper formatting:

    git commit -m "$(cat <<'EOF'
    Your commit message here
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    EOF
    )"
    
  5. Push to remote

    • Run git push
    • If no upstream is set, use git push -u origin <branch>
  6. Report result

    • Show the commit hash
    • Confirm which branch was pushed
    • Confirm push was successful

Safety

  • NEVER force push
  • NEVER push to main/master without explicit user approval
  • NEVER commit files that look like secrets or credentials
  • If there are no changes, inform the user instead of creating an empty commit

スコア

総合スコア

40/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です