Claude-skill-registry commit-and-push

Create atomic conventional git commit and push to remote

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/commit-and-push" ~/.claude/skills/majiayu000-claude-skill-registry-commit-and-push && rm -rf "$T"
manifest: skills/data/commit-and-push/SKILL.md
source content

Phase 1: Create Commits

Goal: Create all commits following conventional commits format

Actions:

  1. Invoke the
    /commit
    command to create all commits following conventional commits format

Phase 2: Push to Remote

Goal: Push commits to the remote repository

Actions:

  1. Once all commits are created, push the current branch to the remote repository
  2. Use
    git push
    (add
    -u origin <branch>
    if upstream is not set)