| 1 | # Raw Agent Output — Appendix Format |
| 2 | |
| 3 | > This template defines the format for the `## APPENDIX: RAW AGENT OUTPUTS` section |
| 4 | > in any multi-agent artifact. |
| 5 | |
| 6 | ## Rules |
| 7 | |
| 8 | 1. **Verbatim only.** Paste the agent's response exactly as returned. No edits. |
| 9 | 2. **No summarizing.** Do not condense, paraphrase, or rephrase any part of the output. |
| 10 | 3. **No rewriting.** Do not fix typos, grammar, formatting, or style. |
| 11 | 4. **No code fences around the entire output.** The raw output is pasted as-is, not wrapped in ``` blocks. |
| 12 | 5. **One section per agent.** Each agent that contributed gets its own heading. |
| 13 | 6. **Order matches work order.** List agents in the order they were spawned. |
| 14 | 7. **Include all outputs.** Even if an agent's work was rejected, include their output for diagnostic traceability. |
| 15 | |
| 16 | ## Format |
| 17 | |
| 18 | ```markdown |
| 19 | ## APPENDIX: RAW AGENT OUTPUTS |
| 20 | |
| 21 | ### {Name} ({Role}) — Raw Output |
| 22 | |
| 23 | {Paste agent's verbatim response here, unedited} |
| 24 | |
| 25 | ### {Name} ({Role}) — Raw Output |
| 26 | |
| 27 | {Paste agent's verbatim response here, unedited} |
| 28 | ``` |
| 29 | |
| 30 | ## Why This Exists |
| 31 | |
| 32 | The appendix provides diagnostic integrity. It lets anyone verify: |
| 33 | - What each agent actually said (vs. what the Coordinator assembled) |
| 34 | - Whether the Coordinator faithfully represented agent work |
| 35 | - What was lost or changed in synthesis |
| 36 | |
| 37 | Without raw outputs, multi-agent collaboration is unauditable. |