.claude/skills/commit-only/SKILL.md
Commit changes only (no push)
npx skillsauth add AtsushiHashimoto/research-project-template .claude/skills/commit-onlyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
変更をコミットのみ(プッシュしない)
用途: 一時的にローカルに変更を保存したい場合
変更内容を確認
git status
git diff --stat
簡易チェック
すべての変更をステージング
git add .
コミット
Refs #ISSUE_ID)現在のブランチから Issue 番号を取得:
BRANCH=$(git branch --show-current)
ISSUE_ID=$(echo "$BRANCH" | grep -oE '[0-9]+' | head -1)
# エラーチェック
if [ -z "$ISSUE_ID" ]; then
echo "Error: Could not extract Issue ID from branch name: $BRANCH"
echo "Branch name must contain Issue number (e.g., feature/123-description)"
exit 1
fi
変更をステージング:
git add .
コミット(適切なメッセージで):
git commit -m "適切なコミットメッセージ
Refs #${ISSUE_ID}
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>"
/commit/push、完了: /issue/finish)data-ai
Set up data directories in a new worktree
testing
Safely remove a worktree after checking for important data
data-ai
Initialize worktree data protection configuration (run once in main repository)
research
Sync updates from research-project-template (テンプレート更新の取り込み)