|
1 | 1 | # team-lead |
2 | 2 |
|
3 | | -Meta-orchestrator agent that analyzes complex requests, decomposes them into agent-sized tasks, and delegates to specialized agents. Manages sequencing, parallelism, and result synthesis across multi-agent workflows. |
4 | | - |
5 | | ---- |
| 3 | +Multi-agent orchestration engine that decomposes complex requests into agent-sized tasks, delegates to specialized agents, manages execution order and dependencies, and synthesizes results into unified deliverables. The conductor that coordinates architecture, implementation, content, research, and release pipelines. |
6 | 4 |
|
7 | 5 | ## Run |
8 | 6 |
|
9 | 7 | ```bash |
10 | 8 | npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/team-lead |
11 | 9 | ``` |
12 | 10 |
|
13 | | ---- |
14 | | - |
15 | 11 | ## What It Can Do |
16 | 12 |
|
17 | | -- **Task Decomposition** — Break complex requests into discrete, agent-sized work units |
18 | | -- **Agent Delegation** — Route tasks to the most suitable specialized agent based on capabilities |
19 | | -- **Sequencing** — Determine dependency order and execute tasks in the correct sequence |
20 | | -- **Parallel Execution** — Identify independent tasks and run them concurrently for throughput |
21 | | -- **Result Synthesis** — Collect outputs from multiple agents and merge into a coherent deliverable |
22 | | -- **Error Recovery** — Detect agent failures and reassign or retry with adjusted parameters |
23 | | - |
24 | | ---- |
| 13 | +- **Task Decomposition** — breaks complex goals into agent-sized units with dependency graphs and parallel execution paths |
| 14 | +- **Agent Delegation** — matches tasks to specialized agents with surgical accuracy based on domain capabilities |
| 15 | +- **Workflow Patterns** — applies Build, Validate-then-Build, Research-and-Propose, Ship, and Content patterns |
| 16 | +- **Conditional Gates** — enforces audit-before-ship, validate-before-build, and research-before-write checkpoints |
| 17 | +- **Progress Tracking** — reports status as each agent completes, flags blockers, adapts plans when outputs change constraints |
| 18 | +- **Result Synthesis** — collects multi-agent outputs into unified summaries with deliverable links and open items |
25 | 19 |
|
26 | 20 | ## Structure |
27 | 21 |
|
28 | 22 | ``` |
29 | 23 | team-lead/ |
30 | | -├── agent.yaml |
31 | | -├── SOUL.md |
32 | | -├── RULES.md |
| 24 | +├── .gitignore |
33 | 25 | ├── LICENSE |
34 | | -├── icon.png |
35 | | -└── banner.png |
| 26 | +├── README.md |
| 27 | +├── RULES.md |
| 28 | +├── SOUL.md |
| 29 | +├── agent.yaml |
| 30 | +├── assets/ |
| 31 | +│ ├── icon.png |
| 32 | +│ └── banner.png |
| 33 | +└── knowledge/ |
| 34 | + ├── agent-capabilities-index.md |
| 35 | + ├── coordination-protocols.md |
| 36 | + └── delegation-patterns.md |
36 | 37 | ``` |
37 | 38 |
|
38 | | ---- |
39 | | - |
40 | 39 | ## Built with |
41 | | -[gitagent](https://github.com/open-gitagent/gitagent) — a git-native, framework-agnostic open standard for AI agents. |
| 40 | + |
| 41 | +Built for the [gitagent](https://gitagent.sh) ecosystem. |
0 commit comments