--- title: "Multi-Agent Workflow: Landing Page Sprint" type: source tags: [multi-agent, workflow, landing-page, conversion-optimization] date: 2026-04-21 --- ## Source File - [[raw/Agent/agency-agents/examples/workflow-landing-page.md]] ## Summary(用中文描述) - 核心主题:多 Agent 协作在一天内完成高转化率 landing page 的完整工作流 - 问题域:如何在极短时间内协调多个专业 Agent(文案、设计、开发、增长)并行与串行工作,产出可上线的 landing page - 方法/机制:上午并行(文案 + 设计)→ 中午合并构建 → 下午增长优化 + 反馈循环 - 结论/价值:展示了 Multi-Agent 协作中的 4 个核心设计模式(并行启动、合并点、反馈循环、时间盒) ## Key Claims(用中文描述) - 文案 Agent 与 UI 设计 Agent 可在上午并行工作,因两者输出互相独立 - 前端开发 Agent 需要等待文案和设计两者完成后才能开始(合并点依赖) - 增长黑客 Agent 在第一版完成后进行转化率审查,前端开发根据反馈进行修改 - 每个阶段有明确的时间盒,防止范围蔓延 ## Key Quotes > "Parallel kickoff: Copy and design happen at the same time since they're independent" — 工作流核心原则:独立任务并行启动 > "Merge point: Frontend Developer needs both outputs before starting" — 前端开发的依赖管理 > "Feedback loop: Growth Hacker reviews, then Frontend Developer applies changes" — 质量保障的迭代机制 > "Time-boxed: Each step has a clear timebox to prevent scope creep" — 项目管理原则 ## Key Concepts - [[Parallel-Kickoff]]:独立 Agent 任务在同一时间并行启动,无需相互等待 - [[Merge-Point]]:多个并行分支的输出在特定节点合并,触发下一阶段 - [[Feedback-Loop]]:后续 Agent 审查并反馈,前序 Agent 根据反馈修改的迭代机制 - [[Time-Boxing]]:为每个工作阶段设定严格时间限制,防止范围蔓延 ## Key Entities - [[Content-Creator]]:负责撰写 landing page 文案(标题、副标题、CTA、定价等)的 Agent - [[UI-Designer]]:负责设计布局、配色、字体、组件规格的 Agent - [[Frontend-Developer]]:负责将文案和设计合并构建为可部署 HTML 的 Agent - [[Growth-Hacker]]:负责转化率审查和优化建议的 Agent - [[FlowSync]]:案例中的虚构产品——一个 API 集成平台 ## Connections - [[Content-Creator]] ← depends_on ← (无,独立启动) - [[UI-Designer]] ← depends_on ← (无,独立启动) - [[Frontend-Developer]] ← merge_point ← [[Content-Creator]] + [[UI-Designer]] - [[Growth-Hacker]] ← depends_on ← [[Frontend-Developer]] - [[workflow-startup-mvp]] ← extends ← [[Parallel-Kickoff]] + [[Merge-Point]] + [[Feedback-Loop]] + [[Time-Boxing]] ## Contradictions - 无明显冲突。workflow-startup-mvp 的时间线以"周"为单位(长周期迭代),本工作流以"小时"为单位(短周期冲刺)。两者互补,后者是前者在单日冲刺场景下的具体化。