npx claudepluginhub poindexter12/claude-flowGit workflow commands and the Will Haacket agent - a modern take on GitHub Flow aliases
A Claude Code plugin for git workflow automation. Modernizes Phil Haack's GitHub Flow aliases for the AI era.
| Command | Description |
|---|---|
/flow:start <branch> | Create feature branch from updated default |
/flow:sync | Pull with rebase and prune |
/flow:save [msg] | Quick savepoint commit |
/flow:wip | Commit tracked changes as WIP |
/flow:undo | Undo last commit, keep changes |
/flow:done | Complete branch: checkout default, sync, clean |
/flow:clean | Delete merged local branches |
A git workflow assistant that handles the interactive stuff:
Invoke with: @will-haacket commit and push
/flow:start.# Add to your project's .claude/settings.json
{
"plugins": ["github:poindexter12/claude-flow"]
}
# Start a feature (branch name or description)
/flow:start add-user-auth
/flow:start "add user authentication"
# Work on your code...
# Quick save
/flow:save "checkpoint before refactor"
# Ready to commit properly
@will-haacket commit and push
# After PR merges
/flow:done
MIT