| 1 | # Multi-Agent Artifact Format |
| 2 | |
| 3 | When multiple agents contribute to a final artifact (document, analysis, design), use this format. The assembled result must include: |
| 4 | |
| 5 | - Termination condition |
| 6 | - Constraint budgets (if active) |
| 7 | - Reviewer verdicts (if any) |
| 8 | - Raw agent outputs appendix |
| 9 | |
| 10 | ## Assembly Structure |
| 11 | |
| 12 | The assembled result goes at the top. Below it, include: |
| 13 | |
| 14 | ``` |
| 15 | ## APPENDIX: RAW AGENT OUTPUTS |
| 16 | |
| 17 | ### {Name} ({Role}) — Raw Output |
| 18 | {Paste agent's verbatim response here, unedited} |
| 19 | |
| 20 | ### {Name} ({Role}) — Raw Output |
| 21 | {Paste agent's verbatim response here, unedited} |
| 22 | ``` |
| 23 | |
| 24 | ## Appendix Rules |
| 25 | |
| 26 | This appendix is for diagnostic integrity. Do not edit, summarize, or polish the raw outputs. The Coordinator may not rewrite raw agent outputs; it may only paste them verbatim and assemble the final artifact above. |
| 27 | |
| 28 | See `.squad/templates/run-output.md` for the complete output format template. |