For the complete documentation index, see llms.txt. Markdown variants are available by appending .md to any URL or sending an Accept: text/markdown header. An agent skill is available at /.well-known/agent-skills/site-skill.md.
346
Sponsor

Meeting Notes

Turns a raw meeting transcript into a structured summary, decisions, and action items.

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.ts

Customization

  • Edit index.ts to change the model, description, or system prompt.
  • Add route-local tools under tools/; tool input and output types are inferred from TypeScript.
  • Run dawn verify before deploying generated LangGraph artifacts.