EN DE
← ← Back to Index

multi-agent-build

multi-agent-build

Description

Delegate sub-tasks of website building to parallel agents. Split work into design, backend, and content agents, coordinate via shared specs, and merge results. Patterns adapted from OpenClaw+Hermes multi-agent workflows.

Relevance to Our Projects

Parallel development through multiple agents. Enables 3x faster website creation by working on design, backend, and content simultaneously.

Pipeline

1🧩 Aufteilung — Design, Backend, Content in separate Sub-Agenten
2📋 Spezifikation — Gemeinsame Architektur-Vorgabe für alle Agenten
3🚀 Parallele Ausführung — Jeder Agent baut seinen Teil unabhängig
4🔗 Zusammenführung — Ergebnisse mergen, Konflikte auflösen
5✅ Integrationstest — Gesamtsystem prüfen

SKILL.md Preview

# Multi-Agent Build

## When to use this
Load this skill when a website project is large enough to benefit from parallel execution. Use when:
- Building a site with 5+ pages or distinct sections (design, backend, content)
- The user wants simultaneous progress on frontend components + backend logic
- You need a planning agent that hands implementation tasks to specialized subagents
- You want to apply the supervisor-builder pattern (one agent plans/reviews, others build)
- You're coordinating mu

← ← Back to Index