aura-frog

agent
SUMMARY

Aura Frog โ€” Claude Code plugin โ€” 10 agents, 5-phase TDD workflow, 3-tier rules, 27 hooks. Stop prompting. Start shipping. ๐Ÿธ

README.md

Aura Frog

Aura Frog

Stop prompting. Start shipping.

The most powerful plugin for Claude Code โ€” turns your AI into a structured development team with agents, TDD workflows, and real multi-agent orchestration.

Version
License
Claude Code
PRs Welcome

One prompt. Five phases. Production-ready code with tests.

Install in 30 seconds ยท See it in action ยท Why Aura Frog?


The Problem

You open Claude Code. You type a prompt. Claude writes code. You hope it works.

No structure. No tests. No quality gates. Every session starts from scratch. Every complex feature turns into prompt spaghetti.

You're the project manager, QA lead, and architect โ€” all while trying to code.

The Solution

Aura Frog gives Claude Code structure, memory, and a team. You describe the feature. Aura Frog runs a 5-phase TDD workflow โ€” analyzing requirements, writing tests first, building to pass them, reviewing for security, and finalizing docs.

You approve twice. Aura Frog handles the rest.


Before & After

โŒ Without Aura Frogโœ… With Aura Frog
You: "Add user authentication"
Claude: *writes 500 lines of untested code*
You: "Wait, that's not what Iโ€”"
Claude: *rewrites everything from scratch*
You: "Add user authentication"

๐Ÿธ Phase 1: "JWT or OAuth2? Here are trade-offs.
   3 endpoints needed. Approve?"

You: "approve"

๐Ÿธ Phase 2-3: 5 tests โ†’ all GREEN.
๐Ÿธ Phase 4-5: Reviewed. Documented. Done.

Result: Production-ready code with tests, security review, and documentation โ€” from a single prompt.


Install

# In Claude Code (takes 30 seconds):
/plugin marketplace add nguyenthienthanh/aura-frog
/plugin install aura-frog@aurafrog

Start your first workflow:

workflow:start "Your task here"
Optional: Install the af CLI for health checks outside Claude Code
# In Claude Code:
setup:cli

# Or manually:
sudo ln -sf "$HOME/.claude/plugins/marketplaces/aurafrog/scripts/af" /usr/local/bin/af

Then use anywhere: af doctor, af setup remote, af measure.

Works on other platforms (skills-only mode)
Platform Install What Works
Claude Code /plugin marketplace add nguyenthienthanh/aura-frog Everything
OpenAI Codex cp -r aura-frog/skills/* ~/.codex/skills/ Skills + commands
Gemini CLI cp -r aura-frog/skills/* ~/.gemini/skills/ Skills + commands
OpenCode cp -r aura-frog/skills/* .opencode/skills/ Skills + commands

Hooks, agent detection, and MCP servers are Claude Code exclusive.


Why Teams Ship Faster With Aura Frog

1. Every Feature Gets a TDD Workflow

No more "write code and hope." Every feature follows RED โ†’ GREEN โ†’ REFACTOR automatically:

  โœ‹ Phase 1: Understand + Design    โ†’ You approve the plan
  โšก Phase 2: Test RED               โ†’ Failing tests written
  โœ‹ Phase 3: Build GREEN            โ†’ You approve the implementation
  โšก Phase 4: Refactor + Review      โ†’ Auto quality + security check
  โšก Phase 5: Finalize               โ†’ Docs + notifications

Two approvals. Five phases. Zero untested code.

2. The Right Expert for Every Task

10 specialized agents activate automatically โ€” no configuration:

"Build a React dashboard"     โ†’ frontend
"Optimize the SQL queries"    โ†’ architect
"Set up CI/CD pipeline"       โ†’ devops
"Fix the login screen crash"  โ†’ mobile
"Run a security audit"        โ†’ security
All 10 agents
Agent When it activates
lead Coordinates workflows, team orchestration
architect System design, databases, backend (Node, Python, Laravel, Go)
frontend React, Vue, Angular, Next.js + design systems
mobile React Native, Flutter, Expo, NativeWind
strategist ROI evaluation, MVP scoping, scope creep detection
security OWASP audits, vulnerability scanning, SAST
tester Jest, Cypress, Playwright, Detox, coverage
devops Docker, K8s, CI/CD, monitoring
scanner Project detection, config, context
router Agent + model selection

3. Complex Features Get Debated Before Built

For deep tasks, 4 agents independently analyze your plan โ€” then challenge each other:

๐Ÿ“ Architect    โ†’ "How to build it"
๐Ÿ” Tester       โ†’ "How it can fail"
๐Ÿ‘ค Frontend     โ†’ "How users experience it"
๐Ÿ’ผ Strategist   โ†’ "Should we even build this?"

Plans survive 4 rounds of scrutiny before a single line of code. Catches scope creep and wasted effort before it happens.

4. Your Codebase Loads in Seconds, Not Minutes

Run project:init once. Every future session instantly understands your codebase โ€” conventions, architecture, patterns, file relationships. 12 pattern detections. 7 context files generated.

No more re-explaining your project every session.

5. Multi-Agent Teams for Big Features

For complex work, Aura Frog spins up a real team working in parallel:

lead
โ”œโ”€โ”€ architect     โ†’ Designs the system
โ”œโ”€โ”€ frontend      โ†’ Builds the UI
โ”œโ”€โ”€ tester        โ†’ Writes tests
โ””โ”€โ”€ security      โ†’ Reviews for vulnerabilities

All cross-reviewing each other's work.

Only activates when needed. Simple tasks stay single-agent (saves ~3x tokens).

6. Context-Aware MCP Servers โ€” Zero Config

6 bundled servers auto-invoke when Claude needs them:

"Build with MUI"          โ†’ context7 fetches current MUI docs
"Test the login page"     โ†’ playwright launches a browser
"Check test coverage"     โ†’ vitest runs your suite
"Deploy to Firebase"      โ†’ firebase manages the project

Plus Figma design fetching and Slack notifications.

More features

Self-Improving Learning

Detects your patterns, remembers corrections, creates rules that persist across sessions. Optional Supabase sync for teams.

Smart Complexity Routing

Automatically matches effort to task size โ€” typos get direct edits, features get full workflows, architecture gets collaborative planning. No configuration.

Built-in Safety Net

Workflow crashed? workflow:resume. Context full? Decisions preserved across /compact. Need to pause? workflow:handoff saves everything.

Performance by Design

3-tier rule loading (~60% less context), conditional hooks (~40% fewer executions), agent detection caching, session start caching (<1s repeat sessions).


The Numbers

Component Count Why it matters
Agents 10 Right expert auto-selected per task
Skills 43 8 auto-invoke on context, 35 on-demand
Commands 89 5 bundled menus โ€” discoverability built in
Rules 44 3-tier loading โ€” only what's needed per phase
Hooks 26 Conditional โ€” skip processing for non-code files
MCP Servers 6 Zero-config, auto-invoked

Full workflow target: โ‰ค30K tokens across all 5 phases.


Workflow Modes

Mode Command Best for
Full Workflow workflow:start "task" New features, production code
Fast-Track fasttrack: <specs> Pre-approved specs
Quick Fix bugfix:quick "fix" Small bugs with TDD
Refactor refactor "file" Code cleanup

Documentation

Getting Started GET_STARTED.md
First Workflow Tutorial FIRST_WORKFLOW_TUTORIAL.md
All Commands (89) commands/README.md
All Skills (43) skills/README.md
Agent Teams Guide AGENT_TEAMS_GUIDE.md
MCP Setup MCP_GUIDE.md
Hooks & Lifecycle hooks/README.md
Troubleshooting TROUBLESHOOTING.md
Changelog CHANGELOG.md

Architecture

aura-frog/
โ”œโ”€โ”€ agents/         10 specialized agents (auto-selected)
โ”œโ”€โ”€ skills/         43 skills (8 auto-invoke + 35 reference)
โ”œโ”€โ”€ commands/       89 commands (5 bundled menus)
โ”œโ”€โ”€ rules/          44 quality rules (3-tier: core/agent/workflow)
โ”œโ”€โ”€ hooks/          26 lifecycle hooks (conditional execution)
โ”œโ”€โ”€ scripts/        41 utility scripts
โ”œโ”€โ”€ docs/           Guides, tutorials & references
โ””โ”€โ”€ .mcp.json       6 bundled MCP servers

Contributing

We welcome contributions โ€” especially new MCP integrations, agents, skills, and bug fixes. See CONTRIBUTING.md or submit an issue.

Godot and SEO/GEO modules available as separate addons.


License

MIT โ€” See LICENSE


Aura Frog

Your AI writes code. Aura Frog makes it production-ready.

Install Now ยท Tutorial ยท Report Issue

Built by @nguyenthienthanh ยท Changelog ยท Release Notes

Reviews (0)

No results found