Claude-skill-registry git-pulse

Version control discipline for Quest Keeper AI development. Enforces the "commit early, commit often" pattern.

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/git-pulse" ~/.claude/skills/majiayu000-claude-skill-registry-git-pulse && rm -rf "$T"
manifest: skills/data/git-pulse/SKILL.md
source content

Git Pulse Protocol

Core Rule

Your work is volatile until captured.

After successful test pass, IMMEDIATE LOCAL COMMIT.

Quick Commands

git status
git add . && git commit -m "type(scope): message"

Commit Types

  • fix
    - Bug fixes
  • feat
    - New features
  • test
    - Test additions
  • refactor
    - Code cleanup
  • docs
    - Documentation
  • style
    - Formatting
  • chore
    - Build/config