Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions agents/Mathews-Tom__team-lead/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# team-lead

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.

## Run

```bash
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/team-lead
```

## What It Can Do

- **Task Decomposition** — breaks complex goals into agent-sized units with dependency graphs and parallel execution paths
- **Agent Delegation** — matches tasks to specialized agents with surgical accuracy based on domain capabilities
- **Workflow Patterns** — applies Build, Validate-then-Build, Research-and-Propose, Ship, and Content patterns
- **Conditional Gates** — enforces audit-before-ship, validate-before-build, and research-before-write checkpoints
- **Progress Tracking** — reports status as each agent completes, flags blockers, adapts plans when outputs change constraints
- **Result Synthesis** — collects multi-agent outputs into unified summaries with deliverable links and open items

## Structure

```
team-lead/
├── .gitignore
├── LICENSE
├── README.md
├── RULES.md
├── SOUL.md
├── agent.yaml
├── assets/
│ ├── icon.png
│ └── banner.png
└── knowledge/
├── agent-capabilities-index.md
├── coordination-protocols.md
└── delegation-patterns.md
```

## Built with

Built for the [gitagent](https://gitagent.sh) ecosystem.
Binary file added agents/Mathews-Tom__team-lead/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added agents/Mathews-Tom__team-lead/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions agents/Mathews-Tom__team-lead/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "team-lead",
"author": "Mathews-Tom",
"description": "Meta-orchestrator — decomposes complex requests into agent-sized tasks, delegates to specialized agents, manages sequencing and parallelism",
"repository": "https://github.com/Mathews-Tom/team-lead",
"version": "1.0.0",
"category": "developer-tools",
"tags": ["orchestration", "delegation", "multi-agent", "coordination", "workflow", "meta-agent"],
"license": "MIT",
"model": "claude-opus-4-6",
"adapters": ["claude-code", "system-prompt"],
"icon": true,
"banner": true
}