Multi-Reviewer Feedback
Collect feedback from multiple stakeholders on the same artifact
Multi-Reviewer Feedback
Share the same URL with multiple people. Each submits independent feedback.
The setup
- Agent publishes a design proposal
- You share the URL with:
- Tech lead (cares about feasibility)
- Product manager (cares about user impact)
- Designer (cares about UX)
Aggregating feedback
Each reviewer submits independently. When you ask the agent to check feedback:
{
"feedback": [
{ "reviewer": "Tech Lead", "answers": { "approval": "yes", "risk": "Low" } },
{ "reviewer": "PM", "answers": { "approval": "needs_changes", "risk": "Medium" } },
{ "reviewer": "Designer", "answers": { "approval": "yes", "risk": "Low" } }
]
}The agent can summarize: "2/3 approved. PM needs changes — flagged medium risk."
Tips
- Use the
reviewerfield so the agent knows who said what - Use
approvequestions for gate decisions (all must approve) - Use
choicequestions for polls (majority wins) - Use
textquestions for open-ended concerns