The company brain for AI agents. Built for Y Combinator Summer 2026 against Tom Blomfield's "Company Brain" RFS.
Live demo: https://skforge.dev/demo
Skillforge connects to a company's Slack, Notion, Drive, GitHub, Intercom, and Linear; extracts structured facts with provenance; and synthesizes them into executable skills in Claude's Agent Skills format.
The output is a folder of versioned SKILL.md files an AI agent can pick up and run — turning generic agents into ones that know your refund matrix, your discount ladder, your incident runbook.
src/
├── app/
│ ├── page.tsx # landing
│ ├── demo/ # live side-by-side agent demo
│ ├── skills/ # skill library + detail pages
│ ├── sources/ # connected sources + doc detail pages
│ ├── manifesto/ # vision page
│ └── api/ # streaming agent + skills + sources endpoints
├── components/ # UI primitives + demo client
└── lib/
├── agent.ts # with-brain vs without-brain runner
├── claude.ts # Anthropic SDK wrapper
├── db/ # Drizzle schema + Neon client
└── seed/ # Northwind demo dataset (19 docs, 18 facts, 7 skills)
npm install
cp .env.example .env.local
# Set ANTHROPIC_API_KEY in .env.local
npm run devOpen http://localhost:3000.
See ../application/deployment_guide.md for the step-by-step.
Short version: push to GitHub, import to Vercel, set ANTHROPIC_API_KEY env var, deploy.
- Next.js 16 (App Router)
- Tailwind CSS v4
- Anthropic SDK (Claude Sonnet 4.6 for the agent, Haiku 4.5 for triage)
- Drizzle ORM + Neon Postgres + pgvector (optional — waitlist + future live extraction)
- Vercel (frontend + serverless)
All rights reserved (for now). The Northwind demo dataset is fictional and licensed as CC-BY for educational use.