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.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.