AI-native workspace for agents and product teams.
PlanWiki helps product teams move from planning to execution fast. Paste raw ideas or AI-generated plans and instantly get structured checklists, timelines, tasks, and workflows your team and AI agents can execute.
→ PlanWiki — hosted version, no setup and credit card required.
Paste — Drop a feature spec, sprint plan, PRD, or project brief from any AI output.
Structure — PlanWiki breaks it into tasks, phases, and execution views your team can review and act on.
Execute — Connect your agents via MCP. Track progress in real time. Just start working.
PlanWiki has a built-in MCP server. Connect Claude Code, Cursor, Codex, GitHub Copilot, Windsurf, Gemini, or any MCP-compatible agent directly to your workspace. Your agent reads the plan, picks up tasks, and updates progress automatically.
Head to the Agents tab in your workspace to grab your config.
git clone https://github.com/planwiki/planwiki-app
cd planwiki
cp .env.example .env
npm install
npx drizzle-kit push
npm run devOr deploy in one click:
Copy .env.example to .env and fill in:
# Database
DATABASE_URL=postgresql://user:password@localhost:5432/planwiki
# Auth
BETTER_AUTH_SECRET=replace-me
BETTER_AUTH_URL=http://localhost:3000
NEXT_PUBLIC_APP_URL=http://localhost:3000
# AI provider — pick one
LLM_PROVIDER=openai # openai | anthropic | google | groq | azure
LLM_MODEL=gpt-4.1-mini # optional, overrides the provider default
# API keys — only set the one you need
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
GOOGLE_GENERATIVE_AI_API_KEY=
GROQ_API_KEY=
AZURE_API_KEY=
AZURE_RESOURCE_NAME=Set LLM_PROVIDER to the provider you want and add only that provider's API key. Everything else is optional.
PlanWiki uses PostgreSQL with Drizzle ORM. Push the schema to your database with:
npx drizzle-kit pushUses Better Auth with email and password. No OAuth setup required for self-hosting.
/and/login— login page- Authenticated users land on
/workspaces
- Next.js — Frontend
- Drizzle ORM — Typesafe Queries
- PostgreSQL — Database
- AI SDK — LLM provider routing
- Better Auth — Email and password authentication
- shadcn/ui — UI library
- tRPC — End-to-end typesafe API