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

Docs Chatbot

Answers questions about a library's functions by looking up structured documentation.

Output will stream here when you run the agent.

Summary

The Docs Chatbot Agent answers questions about a code library's API. It looks up structured function documentation — signatures, parameters, and examples — and answers using only what the docs say. Reach for it to drop a grounded "ask the docs" assistant into a docs site, an IDE, or a support channel.

Installation

$ pnpm dlx shadcn@latest add @agentcn/langgraph/docs-chatbot

Composition

├── data/functions.json
├── index.ts
├── instructions.md
├── tools/lookup_docs.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.