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

Company Knowledge

Indexes internal documents into a vector store and answers questions over them, with PII redaction.

Output will stream here when you run the agent.

Summary

The Company Knowledge Agent answers questions over your internal documents — issues, wiki pages, notes. It indexes them into a vector store, searches the corpus first, and redacts personal data (emails, phone numbers, SSNs, card numbers, API keys) from responses. Reach for it to build an internal "ask the company" assistant.

Installation

$ pnpm dlx shadcn@latest add @agentcn/langgraph/company-knowledge

Composition

├── index.ts
├── instructions.md
├── lib/pii.ts
├── lib/vector-store.ts
├── tools/index_document.ts
├── tools/search_knowledge.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.