Output 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.
Installation
$ pnpm dlx shadcn@latest add @agentcn/langgraph/meeting-notes
Composition
├── index.ts
├── instructions.md
├── tools/get_transcript.ts
├── tools/list_meetings.ts
├── tools/save_notes.tsCustomization
- Edit
index.tsto change the model, description, or system prompt. - Add route-local tools under
tools/; tool input and output types are inferred from TypeScript. - Run
dawn verifybefore deploying generated LangGraph artifacts.