Skip to content

Commit c2ebaf6

Browse files
committed
feat: add team-lead agent to registry
Register Mathews-Tom/team-lead in the gitagent registry.
1 parent 601aee3 commit c2ebaf6

File tree

4 files changed

+55
-0
lines changed

4 files changed

+55
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# team-lead
2+
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.
4+
5+
## Run
6+
7+
```bash
8+
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/team-lead
9+
```
10+
11+
## What It Can Do
12+
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
19+
20+
## Structure
21+
22+
```
23+
team-lead/
24+
├── .gitignore
25+
├── LICENSE
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
37+
```
38+
39+
## Built with
40+
41+
Built for the [gitagent](https://gitagent.sh) ecosystem.
162 KB
Loading
28.6 KB
Loading
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "team-lead",
3+
"author": "Mathews-Tom",
4+
"description": "Meta-orchestrator — decomposes complex requests into agent-sized tasks, delegates to specialized agents, manages sequencing and parallelism",
5+
"repository": "https://github.com/Mathews-Tom/team-lead",
6+
"version": "1.0.0",
7+
"category": "developer-tools",
8+
"tags": ["orchestration", "delegation", "multi-agent", "coordination", "workflow", "meta-agent"],
9+
"license": "MIT",
10+
"model": "claude-opus-4-6",
11+
"adapters": ["claude-code", "system-prompt"],
12+
"icon": true,
13+
"banner": true
14+
}

0 commit comments

Comments
 (0)