Complete beginner-friendly guide to installing specialized AI agents. Start using agents in your Claude Code conversations in under 5 minutes.
Installation takes under 5 minutes. Browse the marketplace, copy the agent definition, move it to ~/.claude/agents/, and start using it immediately in Claude Code conversations.
Browse the Marketplace
Visit the agents page and find specialized agents matching your needs (frontend, backend, testing, DevOps, etc.)
Copy Installation Code
Click the agent card and copy the one-line installation snippet that downloads the agent definition
Add to Agents Directory
Paste into terminal: mv agent-name.md ~/.claude/agents/ to add the agent to your Claude Code setup
Reference in Conversations
Start using the agent immediately in Claude Code conversations with natural language prompts
Iterate and Optimize
Refine agent behavior with follow-up prompts, customize outputs, and build production-ready code faster
Go to the marketplace and browse agents by category
Click on an agent to view details and ratings
Copy the one-line installation command
Move the agent file to your Claude Code directory
Reference the agent in Claude Code conversations
# 1. Download the Frontend Architect agent
curl -o frontend-architect.md https://marketplace.claude.com/agents/frontend-architect/download
# 2. Add to your agents directory
mv frontend-architect.md ~/.claude/agents/
# 3. Open Claude Code and use it
# Prompt: "Using Frontend Architect, build a responsive navbar with search and user menu"
# Output: Complete React component with:
# - TypeScript with full types
# - Tailwind CSS styling
# - Full accessibility (ARIA labels)
# - Mobile responsive design# Install Frontend Agent
curl -o frontend-architect.md https://marketplace.claude.com/agents/frontend-architect/download
mv frontend-architect.md ~/.claude/agents/
# Install Backend Agent
curl -o backend-pro.md https://marketplace.claude.com/agents/backend-pro/download
mv backend-pro.md ~/.claude/agents/
# Install Test Agent
curl -o test-automator.md https://marketplace.claude.com/agents/test-automator/download
mv test-automator.md ~/.claude/agents/
# Now all three are available in Claude Code
# Use any of them in conversations# In Claude Code conversation:
USER:
"Using the Backend Pro agent, build a complete REST API for a
task management app with:
- User authentication (JWT)
- CRUD endpoints for tasks
- Database schema in PostgreSQL
- Full test coverage with Jest
- Error handling and validation"
AGENT OUTPUT:
// Generated complete Express.js application:
// - server.ts with all endpoints
// - database/schema.sql with migrations
// - middleware/auth.ts for JWT verification
// - tests/api.test.ts with E2E tests
// - .env.example with required variables
// - README with setup instructionscurl is pre-installed on Mac/Linux. On Windows, use PowerShell (built-in) or install Git Bash.
The directory will be created automatically. You can also create it manually: mkdir -p ~/.claude/agents/
Restart Claude Code after adding the agent file. Make sure the file extension is .md
Try with sudo: sudo mv agent-name.md ~/.claude/agents/ (you may need to enter your password)
Try more specific prompts. Example: "Build a NextJS page with React hooks, Tailwind CSS, and TypeScript"