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

Flash Cards from PDF

Turns a PDF into study flash cards, with optional AI-generated images per concept.

Output will stream here when you run the agent.

Summary

The Flash Cards from PDF Agent turns a document into ready-to-study flash cards. It extracts the text, identifies the concepts worth memorizing, and writes concise front/back pairs — and on request, generates an illustrative image for each card. Reach for it to build study decks from textbooks, slides, or notes.

Installation

$ pnpm dlx shadcn@latest add @agentcn/langgraph/flashcards-pdf

Composition

├── index.ts
├── instructions.md
├── tools/generate_image.ts
├── tools/parse_pdf.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.