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

Google Sheets Analysis

Reads, analyzes, and edits Google Sheets via the Sheets API.

Output will stream here when you run the agent.

Summary

The Google Sheets Analysis Agent reads a spreadsheet, answers questions about it, and — on request — writes results back. It loads ranges in A1 notation, computes totals/trends/joins, and updates cells only when you ask. Reach for it to turn a sheet into a conversational analyst or to automate routine spreadsheet edits.

Installation

$ pnpm dlx shadcn@latest add @agentcn/langgraph/google-sheets

Composition

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