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/finish-feature" ~/.claude/skills/majiayu000-claude-skill-registry-finish-feature && rm -rf "$T"
manifest:
skills/data/finish-feature/SKILL.mdsource content
Phase 1: Identify Feature
Goal: Determine feature name from current branch or argument.
Actions:
- If
provided, use it as feature name$ARGUMENTS - Otherwise, extract from current branch:
(stripgit branch --show-current
prefix)feature/
Phase 2: Pre-finish Checks
Goal: Run tests before finishing.
Actions:
- Identify test commands (check package.json, Makefile, etc.)
- Run tests if available; exit if tests fail
Phase 3: Update Changelog
Goal: Document changes in CHANGELOG.md.
Actions:
- Ensure changes are in
section per[Unreleased]${CLAUDE_PLUGIN_ROOT}/examples/changelog.md - Commit CHANGELOG updates with
footerCo-Authored-By
Phase 4: Finish Feature
Goal: Complete feature using git-flow-next CLI.
Actions:
- Run
git flow feature finish $FEATURE_NAME - Push develop:
git push origin develop