Made for Claude Opus 4.8 · Mythos Level Intelligence

Drop a File. Claude Becomes the Expert You Hired.

107 ready-made Claude agents — code review, copywriting, analytics, support, growth, legal. Drop them into Claude Code and watch the right one auto-route to your task in under 5 seconds.

⚡ Get Instant Access for $19
107 agents · 9 categories
5-second install
Lifetime access
24×7 email support
24×7 email supportbetterwithclaude@gmail.com
Better with Claude — 100+ Claude Agents Bundle
107
Premium Agents
9
Categories
Lifetime
Free updates
Pay, own forever
What you can actually do

Specific Wins. Not Vague Promises.

107
Ready-Made Agents
9
Categories
5s
Install Time
₹0
Monthly Fee

See It Work

Real Inputs. Real Outputs.

These aren't mockups. Each example below is the actual format you get back when you trigger the named subagent in Claude Code. The agent reads the description, decides it's the right one, and produces output in a structured shape you can copy-paste into a PR, ticket, or doc.

💬Claude Code · agent: code-reviewer
You
Review the diff on this branch for security issues before I merge.
Claude routes to →code-reviewer
Agent output
🔴 Blocking — fix before merge

1. app/api/auth.ts:42 — JWT secret hardcoded in source. Move to env.
2. app/api/upload.ts:15 — SSRF: fetch URL is user-controlled, no allowlist.
3. lib/db.ts:88 — SQL built via string concat. Parameterize.

🟡 Should fix

1. middleware.ts:23 — rate limit only by IP, trivially bypassed by VPN.
2. app/api/verify/route.ts:67 — error message leaks DB schema.
💬Claude Code · agent: bug-hunter
You
/api/checkout returns 500 only on Fridays around 6pm IST. Logs show nothing useful.
Claude routes to →bug-hunter
Agent output
## Hypotheses (likeliest first)

1. Weekly cron clobbers DB connections — test: align cron schedule
   against the 500 timestamps. Look for a job that fires Fri 5:55pm.
2. Friday traffic spike exhausts pool — test: pool metrics + latency
   p99 around the failure window.
3. Time-zone bug treating Fri evening as off-hours — test: grep the
   handler for any Date comparisons or business-hours guards.

## Next observation

Pull the last 4 Fridays' 500s with timestamps + correlation IDs. If
they cluster in a 5-min window → it's the cron. Spread across hours
→ pool. Mixed with timezone strings → the TZ bug.
💬Claude Code · agent: ad-copywriter
You
Write 3 Meta ad variants for the agents pack. Indian audience.
Claude routes to →ad-copywriter
Agent output
Hook 1 — price flex
Spent ₹40k on ChatGPT Plus this year? 107 ready-made Claude
agents for ₹499. One-time. Lifetime.

Hook 2 — workflow
Drop one file. Claude becomes your QA, copywriter, analyst,
support team. 107 agents. 5-second install.

Hook 3 — contrarian
Stop writing prompts. Drop subagent files instead. Claude
auto-routes the right expert in 5 seconds. ₹499 once.

Inside the Agents Pack

One Drop. An Expert Team.

  • 📦

    107 Claude Subagents

    Engineering, content, marketing, business, data, productivity, legal, India-context, personal — 9 categories of opinionated, ready-to-fire agents.

  • 📖

    Getting Started + Full Manual

    5-minute install guide plus a deep reference manual covering customization, chaining, troubleshooting, and FAQ.

  • 🔧

    Claude Agent SDK Starter

    Working TypeScript project (customer-research-agent) built on the Anthropic SDK. Run it, fork it, ship it.

  • 🔄

    Lifetime Free Updates

    v1.1 ships with 30+ more agents (sales, customer success, design, recruiting) plus 2 more SDK starters — free for existing buyers.

Sample Agents Included

A small sample of the 107:

🔍 Code Reviewer🐛 Bug Hunter🧪 Test Writer🔐 Security Auditor📝 Blog Writer📧 Email Copywriter🎯 Ad Copywriter📺 YouTube Script📊 SQL Expert📈 Cohort Analyst🏢 Competitor Analyst💰 Pricing Strategist📅 Meeting Summarizer📥 Inbox Triage⚖️ NDA Reviewer🇮🇳 GST India Helper

Under the Hood

What's Inside a Subagent File

Every agent in the pack is a single markdown file. YAML frontmatter tells Claude when to use it and what tools it can touch; the body is the system prompt. Plain text. Read it, edit it, version-control it.

---
name: code-reviewer
description: Use when reviewing a diff, pull request, or commit
  before merge. Focuses on correctness and footguns, not nit-pickery.
tools: Read, Grep, Glob, Bash
---

You are a senior code reviewer. Your job is to catch the things a
careless review would miss, while ignoring things that don't actually
matter.

## What to look for, in order

1. Correctness. Does the code do what the diff claims?
   Look at edge cases the author probably skipped: empty inputs,
   nulls, concurrent access, error paths, off-by-one, time zones.

2. Security. Anything that touches user input, auth, secrets, or
   external services: assume it's wrong until proven otherwise.

3. Concurrency & state. Race conditions, missing locks, stale
   caches, non-idempotent operations called from retried paths.

... (continues — full file is ~120 lines)
name
Stable identifier. You call it explicitly with "use the code-reviewer to..." or let Claude auto-route by description.
description
How Claude decides whether to use this agent. Sharper descriptions = more reliable routing. Keep it specific to the trigger, not the agent's job.
tools (optional)
Restricts the agent to a subset of Claude Code's tools. Missing this line = inherits everything. Security-auditor is read-only by design — it comments, it doesn't refactor.
system prompt body
Plain markdown. Becomes the agent's identity, rules, process, and refusals. Edit this freely — the agent gets better the more you tune it to your codebase or voice.

5-Minute Install

From Zip to Working Agents in Four Steps

No accounts to create. No API keys. No new tools to learn. If you already have Claude Code installed, you're 60 seconds away from your first agent firing.

Step 1

Unzip and copy — the one-liner

User-scoped install (agents available across every project). The full breakdown is below if you want it.

unzip agents-bundle.zip && cp -r agents-bundle/subagents/* ~/.claude/agents/
Step 2

Project-scoped, if your team uses it together

Agents live inside one repo, version-controlled with the code. Anyone who clones the repo gets them.

cd /path/to/your/repo
mkdir -p .claude/agents
cp -r /path/to/agents-bundle/subagents/* .claude/agents/
Step 3

Use them — by description, or by name

Claude auto-routes by reading every agent's description field. You can also call one explicitly.

# Auto-route (most common)
> "Review the last commit for security issues."
   → security-auditor

# Explicit
> "Use bug-hunter to figure out the 500 on /api/x."
Step 4 (optional)

Customize for your stack

Each agent is plain markdown. Open it, sharpen the system prompt with your codebase / brand voice / customer context. The agents get noticeably better the more they know about your specific work.

code ~/.claude/agents/code-reviewer.md
# edit body, save, done — Claude picks it up on next message
User-scoped vs project-scoped — the decision
User-scopedProject-scoped
Where files live~/.claude/agents/<repo>/.claude/agents/
Works across projectsYesNo — this repo only
Shared with collaboratorsNo (just you)Yes (via git)
When to useSolo work, all projectsTeam workflows

You can use both. Project-scoped agents with the same name override user-scoped ones — handy when you need a tuned variant just for one codebase.


Chain Them Together

One Prompt. Multi-Step Workflows.

Claude reads your full instruction and orchestrates the hand-off between agents. Output from one becomes context for the next. Three real chains people run with this pack:

Investigate → Fix → Verify

Triage a production 500 without burning a Saturday

bug-hunter(your fix)test-writercode-reviewer

Use bug-hunter to find the root cause of the 500 on /api/x. Once you've isolated it and I've written the fix, use test-writer to lock in a regression test, then code-reviewer on the diff before I merge.

Plan → Draft → Critique

Run a launch campaign in an afternoon

competitor-analystad-copywriterlanding-page-copywriterbrand-voice-coach

Use competitor-analyst on Stripe, Razorpay, and PayU to find the positioning gap. Pass that brief to ad-copywriter for 3 Meta variants and landing-page-copywriter for the above-fold. Then brand-voice-coach reviews everything for tone consistency.

Research → Decide → Document

Enter a new market without lying to yourself

market-sizing-analystcustomer-research-interviewergtm-strategist

Use market-sizing-analyst to give me an honest TAM/SAM/SOM for tier-2 Indian cities. Then customer-research-interviewer designs the discovery interview script. After I run 8 interviews, gtm-strategist proposes the launch motion based on what we learned.


9 Categories

Coverage from Code Review to Customer Success

Each category is curated — not a dump of every possible agent, but the ones that earn their keep. Each agent is opinionated, focused on one job, and ready to fire.

⚙️

Engineering

15 agents

✍️

Content

12 agents

📣

Marketing

11 agents

📊

Business

13 agents

📈

Data

12 agents

⏱️

Productivity

14 agents

⚖️

Legal

10 agents

🇮🇳

India Context

5 agents

🧘

Personal

14 agents


Compatibility

Works With Every Claude Surface

Subagent files are markdown + YAML. They work natively in Claude Code; the prompt content works anywhere else you can paste a system prompt. The bundle's SDK starter is a separate, self-contained TypeScript project for the autonomous-agent case.

Claude Code

Native fit. Drop into ~/.claude/agents/ — Claude auto-routes by description. The bundle's primary target.

Claude.ai (web)

Copy the body of any agent file (everything below the frontmatter) into a Project's custom instructions. Auto-routing isn't available, but the prompt content works identically.

Claude Cowork

Same flow as Claude Code — agents go into the project's .claude/agents/ folder and the whole team gets them. Subagent routing works out of the box.

Claude Agent SDK

The bundle includes a working TypeScript starter (customer-research-agent) built on the SDK. Fork it for autonomous agents that run on schedules, webhooks, or as part of a larger app.


One Price. The Whole Team.

Made for Claude Opus 4.8 · Mythos Level Intelligence
🚀 Founders Pricing — $19
Launch pricing — rises to $39 on July 1, 2026.
What you get
107 Premium Agents (9 categories)$89
Getting Started Guide + Full Manual$19
Claude Agent SDK Starter Project$19
Lifetime Free Updates$29
Total value$156
$99
$19
One-time payment · Lifetime access · No subscription
🎁 BEST VALUESave $58

Get Skills + Agents + Projects

All 2,000+ skills, 107 agents, 50 pre-built Claude.ai Projects, every guide & the SDK starter. One purchase, lifetime access.

$87$29
Pay withUPIVisaMastercardRuPayWalletsNetbanking
Secure Checkout (Razorpay)
Instant Delivery
Lifetime Access
Mythos Level (Opus 4.8)
24×7 Email Support

Stop Writing the Same Prompts. Hire the Whole Team.

107 agents covering every role you wish you could afford. $19 once. Made for Claude Opus 4.8 — Mythos Level Intelligence inside.

⚡ Get Instant Access for $19

One-time payment · Lifetime access · Instant delivery

Better with Claude — 107 Agents for Claude Opus 4.8