Live preview
EveOutput will stream here when you run the agent.
Summary
The Customer Feedback Summary Agent answers questions about your customer feedback. It retrieves entries from your data source, categorizes them by theme and segment, and produces an executive summary with representative quotes and concrete recommendations. Reach for it to turn a backlog of reviews, tickets, or survey responses into something a team can act on.
Install
$ pnpm dlx shadcn@latest add https://agentcn.vercel.app/r/eve/feedback-summary.json
Composition
agent/
├── agent.ts # Agent definition (model + config)
├── instructions.md # Retrieve / categorize / summarize instructions
└── tools/
└── get_feedback.ts # Paginated feedback retrievalCustomization
- Connect your source. Point
get_feedbackat your database, support desk, or reviews API — keep the pagination + segment parameters. - Change the categories. Edit
instructions.mdto use your own taxonomy (severity tiers, product areas, sentiment). - Swap the model. Edit
agent/agent.ts— a larger model for nuanced synthesis, a smaller one for speed. - Add a scorer. Track summary quality across runs to tune the prompt.