Sprout
Description
Experimental self-improving multi-agent coding system: a root agent recursively decomposes goals and delegates to specialist subagents, learning from failures by mutating a git-backed agent genome. Supports Claude, GPT, and Gemini.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
๐ฑ Sprout
A self-improving, multi-agent AI system that decomposes tasks and delegates to specialist agents. Sprout is an autonomous coding assistant built on a recursive agent architecture โ where every action is a goal-directed delegation to a subagent.
Overview
Sprout operates on a simple but powerful loop:
Perceive โ Recall โ Plan โ Act โ Verify โโโ loop
โ
โโโโ Learn (async)
A **root agent** receives your goal, breaks it into subgoals, and delegates each to a specialist. Specialists can be orchestrators themselves (delegating further) or leaf workers that execute primitives directly. The system learns from its mistakes โ stumbles, failures, and inefficiencies are detected and fed into an asynchronous learning pipeline that mutates the agent genome over time.
Key Concepts
- Agents all the way down โ Every action is a delegation to a subagent. The root never executes tools directly.
- Genome โ A git-backed knowledge base storing agent definitions, memories, routing rules, and learned behaviors. Every mutation is committed for full auditability and rollback.
- Primitives โ The immutable kernel operations:
read_file,write_file,edit_file,apply_patch,exec,grep,glob,fetch. Only leaf agents execute these. - Learn signals โ Failures, timeouts, retries, and inefficiencies are detected automatically. When patterns emerge (โฅ3 repeated stumbles, โฅ2 unresolved errors), the system triggers genome mutations to improve future performance.
- Multi-provider LLM โ First-class support for Anthropic (Claude), OpenAI (GPT/o-series), OpenAI Codex, and Google (Gemini) with a unified adapter interface.
Architecture
root (best model โ orchestrator)
โโ utility/reader (fast โ read-only file discovery)
โโ utility/editor (balanced โ file editing & creation)
โโ utility/command-runner (fast โ shell command execution)
โโ utility/
Related Skills
Epic Sync
Sync epic issue bodies, labels, and local coordination snapshots from GitHub.
Git ไฝฟ็จ Git Worktrees
ๅๅปบๅญค็ซ็ Git worktrees๏ผๅธฆๆๆบ่ฝ็ฎๅฝ้ๆฉไธๅฎๅ จ้ช่ฏใ
Git Claude skills github
[Building agent skills blog](https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-ag
Git #148
, [#161](https://github.com/affaan-m/everything-claude-code/pull/161))
Git GitHub MCP
| Token | Repos, issues, PRs, workflows |
Git GitHub MCP Server
Official first-party server to read repos, manage issues/PRs, and automate workflows.
Git