Specialized agents and commands for Claude Code that enhance development workflows through targeted expertise, orchestrated collaboration, and custom utilities.
- Claude Code CLI
- acli - for Jira workflows (
jira-workitem-implementer
,jira-workitem-analyzer
) - gh CLI - for GitHub operations (PR creation, issue management)
- Firecrawl API key - for web scraping (
meta-agent
)
# Clone the repository
git clone https://github.com/everwise/claude-code-extensions.git
cd claude-code-extensions
# Create Claude Code directories
mkdir -p ~/.claude/{agents,commands}
# Install agents and commands
ln -sf $(pwd)/agents ~/.claude/agents/torch
ln -sf $(pwd)/commands ~/.claude/commands/torch
# Verify installation
ls ~/.claude/agents/torch/
ls ~/.claude/commands/torch/
For Firecrawl (meta-agent)
claude mcp add firecrawl -e FIRECRAWL_API_KEY=fc-<YOUR_KEY> -- npx -y firecrawl-mcp
The agents follow a hierarchical structure with orchestrational agents coordinating specialized capabilities:
├── ORCHESTRATIONAL AGENTS (workflow coordinators)
│ ├── feature-architect → 3-phase development planning
│ ├── jira-workitem-implementer → ticket to PR automation
│ ├── pr-review-comment-resolver → systematic PR feedback
│ └── iterative-quality-fixer → quality gate enforcement
│
└── SPECIALIZED AGENTS (focused expertise)
├── debugger → error troubleshooting
├── code-quality-reviewer → production readiness
├── tdd-test-writer → test-driven development
└── 7 other specialized agents
Custom Claude Code commands for streamlined workflows:
- pr-refresh-summary → refresh PR summary to comprehensively reflect all current changes while preserving template structure
- New features/bugs:
feature-architect
- Jira tickets:
jira-workitem-implementer
- Quality issues:
iterative-quality-fixer
- PR feedback:
pr-review-comment-resolver
- Code review:
code-quality-reviewer
- Test creation:
tdd-test-writer
- Errors/failures:
debugger
- Comment cleanup:
pr-comment-validator
📖 Complete documentation and usage guidelines →
Individual agent specifications are in the agents/
directory.