Output will stream here when you run the agent.
Summary
The CSV to Questions Agent takes a CSV dataset and turns it into a set of sharp, answerable analytical questions. It first summarizes the data — columns, types, ranges, patterns — to compress large files and avoid token-limit errors, then generates questions a data analyst would actually ask. Reach for it to kickstart exploratory analysis or build study material from raw data.
Installation
$ pnpm dlx shadcn@latest add @agentcn/langgraph/csv-to-questions
Composition
├── index.ts
├── instructions.md
├── tools/fetch_csv.ts
├── tools/generate_questions.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.