Skip to content

jee599/agentcrow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

70 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation


🐦 AgentCrow

Claude Code Agent Teams is powerful. But it doesn't know which agents to use.
AgentCrow does. 9 builtin agents + external agents. Auto-dispatch. npx agentcrow init

npm Agents Tests License

Problem β€’ Install β€’ How It Works β€’ Agents β€’ Commands β€’ ν•œκ΅­μ–΄ β€’ ζ—₯本θͺž β€’ δΈ­ζ–‡ β€’ EspaΓ±ol β€’ PortuguΓͺs β€’ Deutsch β€’ FranΓ§ais β€’ Русский β€’ ΰ€Ήΰ€Ώΰ€¨ΰ₯ΰ€¦ΰ₯€ β€’ TΓΌrkΓ§e β€’ TiαΊΏng Việt


πŸ†š Agent Teams alone vs. Agent Teams + AgentCrow

Agent Teams alone + AgentCrow
Spawn subagents βœ… βœ…
Know which agents to use ❌ you decide βœ… auto-matched
9 builtin + external agent roles ❌ you write prompts βœ… ready to go
Auto-decompose prompts ❌ you split manually βœ… one prompt in
Agent identity & rules ❌ blank subagents βœ… personality, MUST/MUST NOT
Works without config ❌ needs --agents JSON βœ… npx agentcrow init
Multiple divisions (eng, game, design...) ❌ βœ…

Agent Teams gives you the engine. AgentCrow gives it a brain.


  You:    "Build a SaaS dashboard with Stripe billing, auth, and docs"

  🐦 AgentCrow auto-dispatches 5 agents:

    πŸ–₯️  frontend_developer  β†’ React dashboard UI, charts, responsive layout
    πŸ—οΈ  backend_architect   β†’ Auth system, REST API, database schema
    πŸ’³  backend_architect   β†’ Stripe integration, webhook handlers
    πŸ§ͺ  qa_engineer         β†’ E2E billing flow tests, auth edge cases
    πŸ“  technical_writer    β†’ API reference, onboarding guide

  You didn't pick them. AgentCrow did.

⬇️ One line. That's it.

npx agentcrow init

Then just run claude as usual. AgentCrow handles the rest.
macOS Β· Linux Β· Windows


πŸ‘€ Before / After

❌ Without AgentCrow

You: Build a dashboard with API,
     tests, and docs

Claude: (one agent does everything)
        - reads all files
        - writes all code
        - runs all tests
        - writes all docs
        = one context window
        = forgets early work
        = 10+ minutes

βœ… With AgentCrow

You: same prompt

AgentCrow auto-dispatches:
  @ui_designer     β†’ layout
  @frontend_dev    β†’ React code
  @backend_arch    β†’ API
  @qa_engineer     β†’ tests
  @tech_writer     β†’ docs

  = parallel agents
  = each focused
  = better results

⚑ Install

npx agentcrow init

That's it. This does two things:

First run only β€” downloads agents to ~/.agentcrow/ (global, shared across all projects)

Every run β€” merges AgentCrow section into .claude/CLAUDE.md (your existing rules are preserved)

Note

Agents are stored globally at ~/.agentcrow/. Second project onward = instant, no download.

Tip

Already have a CLAUDE.md? AgentCrow appends its section β€” your existing rules stay untouched.

βš™οΈ How It Works

  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
  β”‚  Your prompt                        β”‚
  β”‚           ↓                         β”‚
  β”‚  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”‚
  β”‚  β”‚ CLAUDE.md reads agent list β”‚     β”‚
  β”‚  β”‚ Claude decomposes prompt   β”‚     β”‚
  β”‚  β”‚ Dispatches Agent tool      β”‚     β”‚
  β”‚  β”‚ Each agent works in scope  β”‚     β”‚
  β”‚  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜     β”‚
  β”‚           ↓                         β”‚
  β”‚  Files created, tests written,      β”‚
  β”‚  docs generated β€” by specialists    β”‚
  β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
  1. You run claude in a project with AgentCrow initialized
  2. You type a prompt β€” anything complex
  3. Claude reads CLAUDE.md β€” sees the agent roster and dispatch rules
  4. Claude decomposes β€” splits your prompt into focused tasks
  5. Claude dispatches β€” uses the Agent tool to spawn subagents
  6. Each agent works β€” with its own expertise

No API key. No server. Just Claude Code + CLAUDE.md.

πŸ€– 9 Builtin Agents + External Agents

Division Examples
Engineering frontend_developer, backend_architect, ai_engineer, sre
Game Dev game_designer, level_designer, unreal, unity, godot
Marketing content_strategist, seo_specialist, social_media
Testing test_automation, performance_tester
Design ui_designer, ux_researcher, brand_guardian
Builtin qa_engineer, korean_tech_writer, security_auditor
+ more sales, support, product, strategy, spatial-computing...

πŸ”§ Commands

npx agentcrow init              # Set up agents + CLAUDE.md (English default)
npx agentcrow init --lang ko    # Korean template
npx agentcrow status            # Check if active
npx agentcrow off               # Disable temporarily
npx agentcrow on                # Re-enable
npx agentcrow agents            # List all agents
npx agentcrow agents search ai  # Search by keyword
npx agentcrow compose "prompt"  # Preview decomposition (dry run)

πŸ’‘ Example Prompts

Build an AI-powered news aggregator with crawling and email alerts
β†’ ai_engineer + data_pipeline_engineer + frontend_developer + devops_automator

E-commerce site with Stripe, inventory management, and admin panel
β†’ frontend_developer + backend_architect + ui_designer + qa_engineer

Open source CLI tool with tests, docs, and CI/CD pipeline
β†’ frontend_developer + qa_engineer + technical_writer + devops_automator

Simple prompts run normally. AgentCrow only activates for multi-task requests.

πŸ›‘οΈ Zero Overhead

🟒 Complex prompts Auto-decomposed into agents
πŸ”΅ Simple prompts Runs normally, no agents
πŸ”΄ agentcrow off Completely disabled

Important

AgentCrow only touches .claude/CLAUDE.md and .claude/agents/. No project dependencies, no background processes. agentcrow off backs up and removes both cleanly.

🀝 Contributing

git clone --recursive https://github.com/jee599/agentcrow.git
cd agentcrow && npm install && npm test  # 60 tests

πŸ“œ License

MIT β€” External agents from agency-agents.


🐦 One prompt. Many agents. Zero config.

Star

About

🐦 The missing piece for Claude Code Agent Teams β€” auto-decompose prompts and dispatch 144 specialized agents. npx agentcrow init

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors