Live preview
EveOutput will stream here when you run the agent.
Summary
The Meeting Notes Agent takes a raw meeting transcript and returns clean, structured notes: a short summary, the decisions that were made, action items as owner/task pairs, and any open questions. Reach for it to close out standups, planning sessions, or customer calls without writing up notes by hand.
Install
$ pnpm dlx shadcn@latest add https://agentcn.vercel.app/r/eve/meeting-notes.json
Composition
agent/
├── agent.ts # Agent definition (model + config)
├── instructions.md # Notes-extraction instructions
└── tools/
└── save_notes.ts # Saves the structured notesCustomization
- Reshape the notes. Edit the schema in
save_notesto add fields like attendees, risks, or next meeting date. - Persist the output. Change
save_notesto write to Notion, Linear, or a database instead of returning JSON. - Tune the extraction. Edit
instructions.mdto change how owners are inferred or how decisions are phrased. - Swap the model. Edit
agent/agent.tsfor longer transcripts or faster runs.