A discovery platform for Claude Code sub-agents. Browse, install, and share specialized AI agents that enhance your development workflow.
Install any subagent with a single command:
npx @augmnt-sh/subagents add owner/repo/agent-nameThe agent is saved to .claude/agents/ and automatically used by Claude Code when relevant.
| Command | Description |
|---|---|
npx @augmnt-sh/subagents add owner/repo/name |
Install a subagent |
npx @augmnt-sh/subagents list |
List installed subagents |
npx @augmnt-sh/subagents remove name |
Remove a subagent |
npx @augmnt-sh/subagents update |
Update all subagents |
Create a markdown file with YAML frontmatter:
---
name: my-agent
description: What this agent does
tools:
- Read
- Write
- Bash
---
Your agent instructions here...Host it on GitHub in one of these locations:
.claude/agents/(recommended)agents/- Repository root
Users install directly from your repo:
npx @augmnt-sh/subagents add your-username/your-repo/agent-nameYour agent appears on the leaderboard as people install it.
| Field | Required | Description |
|---|---|---|
name |
Yes | Agent identifier |
description |
No | Brief description for listings |
tools |
No | Claude Code tools the agent uses |
- Node.js 18+
- Supabase CLI
git clone https://github.com/augmnt/subagents.sh.git
cd subagents.sh
npm install
cp .env.example .env.local
# Edit .env.local with your credentials
npm run devNEXT_PUBLIC_SUPABASE_URL=your_supabase_url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
SUPABASE_SERVICE_ROLE_KEY=your_service_role_key
GITHUB_TOKEN=your_github_token| Script | Description |
|---|---|
npm run dev |
Start development server |
npm run build |
Build for production |
npm run test |
Run tests |
npm run lint |
Lint code |
- Next.js 14 - React framework
- TypeScript - Type safety
- Tailwind CSS - Styling
- shadcn/ui - UI components
- Supabase - Database & auth
- Vercel - Deployment
- Fork the repository
- Create a feature branch:
git checkout -b feat/my-feature - Commit changes:
git commit -m "feat: add my feature" - Push to your fork:
git push origin feat/my-feature - Open a Pull Request
See CONTRIBUTING.md for detailed guidelines.
MIT License - see LICENSE for details.
Built by augmnt
