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-mcpThe 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.