review
Run when user calls /review. Analyzes local changes and runs a comprehensive code review using the agent-reviewer prompt.
Run when user calls /commit or asks to generate a commit message. Analyzes staged changes and writes a structured commit message.
> /plugin marketplace add guanyang/open-agent-hub > /plugin install open-agent-hub@open-agent-hub
How it fires
How this command gets triggered: by you, by Claude, or both.
/commitContext preview
What this command does when you run it.
Run when user calls /commit or asks to generate a commit message. Analyzes staged changes and writes a structured commit message.
name: commit description: Run when user calls /commit or asks to generate a commit message. Analyzes staged changes and writes a structured commit message. type: command
Analyze staged git modifications and generate/write a high-quality Semantic Commit message.
1. **Analyze Staged Changes**: Run `git diff --cached` to inspect what changes have been staged. 2. **Determine Conventional Commit Type**:
3. **Format Subject & Body**:
4. **Action**: Write the generated message directly to `.git/COMMIT_EDITMSG`. 5. **Output**: Output the commit message for the user to review, and tell them they can run `git commit -F .git/COMMIT_EDITMSG` to finalize the commit.
A lightweight, zero-dependency CLI tool to manage and activate capabilities for AI coding assistants (such as Claude Code, Cursor, Trae, etc.).
Repo: guanyang/open-agent-hub
Run when user calls /review. Analyzes local changes and runs a comprehensive code review using the agent-reviewer prompt.