$git clone https://github.com/Comfy-Org/comfy-claude-prompt-libraryA collection of reusable Claude Code commands for the Comfy-Org team to streamline development workflows.
| 1 | # Claude Code Prompt/Command Library |
| 2 | |
| 3 | A collection of reusable Claude Code commands for the Comfy-Org team to streamline development workflows. |
| 4 | |
| 5 | > **💡 Looking for more commands?** Check out [Awesome Claude Code](https://github.com/hesreallyhim/awesome-claude-code) - a community collection of general-purpose Claude Code commands! |
| 6 | |
| 7 | ## Quick Start |
| 8 | |
| 9 | Commands are stored in `.claude/commands/` and can be invoked using `/project:command-name` or `/user:command-name`. |
| 10 | |
| 11 | ## Commands |
| 12 | |
| 13 | ### Meta Commands |
| 14 | |
| 15 | - [`/user:AGENT-create-command`](.claude/commands/agents/AGENT-create-command.md) - Create a command by providing a task description and automatically generate an optimal prompt file |
| 16 | - [`/user:AGENT-improve-command`](.claude/commands/agents/AGENT-improve-command.md) - Improve an existing command by referencing Claude/Anthropic documentation materials |
| 17 | - [`/user:AGENT-playbook-to-automated-agent-workflow`](.claude/commands/agents/AGENT-playbook-to-automated-agent-workflow.md) - Convert playbooks/workflows to automated agent workflows using local files and MCP tools |
| 18 | - [`/user:AGENT-summarize-and-log-current-session`](.claude/commands/agents/AGENT-summarize-and-log-current-session.md) - Create ultra-compact summaries of conversations and save them with timestamp-based filenames |
| 19 | - [`/user:AGENT-memory-search`](.claude/commands/agents/AGENT-memory-search.md) - Search through past conversations using semantic memory system |
| 20 | - [`/user:AGENT-learn-claude-code-best-practices`](.claude/commands/agents/AGENT-learn-claude-code-best-practices.md) - Study and synthesize Claude Code best practices from comprehensive knowledge base |
| 21 | - [`/user:summarize-book`](.claude/commands/summarize-book.md) - Create comprehensive summaries of books with structured analysis |
| 22 | |
| 23 | ### GitHub/Git Commands |
| 24 | |
| 25 | - [`/user:PR-submit-local-as-new-pr`](.claude/commands/github/PR-submit-local-as-new-pr.md) - Make a PR based on local changes, whether you've committed, made a branch, etc. or not |
| 26 | - [`/user:GH-PR-implement-review-comments`](.claude/commands/github/GH-PR-implement-review-comments.md) - Fetch the PR associated with local branch, read reviews and comments, implement the requested changes with one commit for each change |
| 27 | - [`/user:SOLVEBUG-solve-issue-tdd`](.claude/commands/github/SOLVEBUG-solve-issue-tdd.md) - Fetch an issue at the provided link. Solve the bug using test-driven development (write tests first, verify they fail, keep trying to fix until tests pass) |
| 28 | - [`/user:GH-create-github-issue`](.claude/commands/github/GH-create-github-issue.md) - Create a GitHub issue or feature request. Reference the repo name at least once in the argument |
| 29 | - [`/user:GH-ISSUE-enhance-issue-description`](.claude/commands/github/GH-ISSUE-enhance-issue-description.md) - Enhance GitHub issue descriptions with better formatting and clarity |
| 30 | - [`/user:GH-PR-add-review-comments-to-pr`](.claude/commands/github/GH-PR-add-review-comments-to-pr.md) - Add review comments to a pull request |
| 31 | - [`/user:GH-PR-summarize-my-open-prs`](.claude/commands/github/GH-PR-summarize-my-open-prs.md) - Summarize the status of all open pull requests for the current user |
| 32 | - [`/user:GH-summarize-my-recent-prs`](.claude/commands/github/GH-summarize-my-recent-prs.md) - Summarize your recent pull requests across repositories |
| 33 | - [`/user:GH-daily-report`](.claude/commands/github/GH-daily-report.md) - Create a daily summary of GitHub issues and PRs for comfy-org repos |
| 34 | - [`/user:GH-rebase-onto`](.claude/commands/github/GH-rebase-onto.md) - Rebase the current branch onto the target branch, handling conflicts safely human-in-the-loop style |
| 35 | |
| 36 | ### Research Commands |
| 37 | |
| 38 | - [`/user:STUDY-comfy-api-architecture`](.claude/commands/research/STUDY-comfy-api-architecture.md) - Load pre-generated architecture overview for Comfy-Org/comfy-api |
| 39 | - [`/user:STUDY-comfyui-custom-nodes-ecosystem`](.claude/commands/research/STUDY-comfyui-custom-nodes-ecosystem.md) - Analyze ComfyUI custom nodes ecosystem patterns and trends using comprehensive dataset |
| 40 | - [`/us |