We turn departing employees into specialized agents to preserve knowledge and keep work going.
Bridge AI is an intelligent knowledge transfer platform that captures tribal knowledge from departing employees and transforms it into actionable deliverables: enhanced documentation, workflow memos, and AI-powered agents that can answer questions about their processes.
- Guided Knowledge Capture - Interactive interview flow that identifies knowledge gaps from scanned documents and artifacts
- Document Enhancement - AI-proposed updates to existing documentation with human-in-the-loop review
- Automated Memo Generation - Comprehensive knowledge transfer memos with editable sections
- AI Agent Creation - Specialized agents trained on captured knowledge that teammates can query
- Source Attribution - All agent responses include traceable sources back to conversations, documents, and memos
- Framework: Next.js 14 (App Router)
- Language: TypeScript
- Styling: Tailwind CSS
- AI: Anthropic Claude API
- Runtime: Node.js
- Node.js 18+
- npm or yarn
- Anthropic API key
-
Clone the repository
git clone https://github.com/yourusername/bridge_ai.git cd bridge_ai -
Install dependencies
npm install
-
Set up environment variables
cp .env.example .env.local
Add your Anthropic API key:
ANTHROPIC_API_KEY=your_api_key_here -
Run the development server
npm run dev
src/
├── app/ # Next.js App Router pages
│ ├── api/ # API routes
│ │ ├── chat/ # Agent chat endpoint
│ │ └── generate-agent/ # Agent creation endpoint
│ ├── conversation/ # Knowledge capture interview
│ ├── handoff/ # Document review & agent creation
│ └── page.tsx # Landing page
├── components/ # React components
│ └── conversation/ # Interview UI components
├── context/ # React context providers
├── data/ # Data and responses
├── lib/ # Utilities and stores
└── types/ # TypeScript type definitions
The demo follows Alice Chen, a Risk Analyst managing quarterly credit loss forecasts. Bridge AI:
- Scans her artifacts (Excel files, Python scripts, policy docs)
- Identifies undocumented knowledge gaps
- Conducts a guided interview to capture her expertise
- Proposes documentation enhancements
- Generates a knowledge transfer memo
- Creates an AI agent her team can query after she leaves