diff --git a/agents/Mathews-Tom__team-lead/README.md b/agents/Mathews-Tom__team-lead/README.md new file mode 100644 index 0000000..3f0596c --- /dev/null +++ b/agents/Mathews-Tom__team-lead/README.md @@ -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. diff --git a/agents/Mathews-Tom__team-lead/banner.png b/agents/Mathews-Tom__team-lead/banner.png new file mode 100644 index 0000000..b81fcf7 Binary files /dev/null and b/agents/Mathews-Tom__team-lead/banner.png differ diff --git a/agents/Mathews-Tom__team-lead/icon.png b/agents/Mathews-Tom__team-lead/icon.png new file mode 100644 index 0000000..3131d78 Binary files /dev/null and b/agents/Mathews-Tom__team-lead/icon.png differ diff --git a/agents/Mathews-Tom__team-lead/metadata.json b/agents/Mathews-Tom__team-lead/metadata.json new file mode 100644 index 0000000..1688f77 --- /dev/null +++ b/agents/Mathews-Tom__team-lead/metadata.json @@ -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 +}