Turn PRDs into Linear issues and Trello boards using AI.
Paste a feature spec, sprint plan, or raw idea. PlanWiki structures it into tasks, phases, and checklists — then exports directly to Linear or Trello so your team can start working immediately.
→ PlanWiki — hosted version, no setup or credit card required.
Paste — Drop a PRD, feature spec, sprint plan, or AI-generated output into the chat.
Structure — PlanWiki breaks it into tasks, phases, checklists, and timelines your team can review and act on.
Export — Push to Linear or Trello in one click. Issues and cards are created automatically, ready for your team.
Execute — Optionally connect AI agents via MCP to pick up tasks and update progress in real time.
Once your workspace is structured, export it directly to your existing tools:
- Linear — Creates a project with issues, priorities, and labels mapped from your plan.
- Trello — Creates a board with cards organized by phase or checklist.
No manual copy-paste. No reformatting. Just connect your account and push.
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=
# Integrations
LINEAR_CLIENT_ID=
LINEAR_CLIENT_SECRET=
TRELLO_API_KEY=
TRELLO_API_SECRET=Set LLM_PROVIDER to the provider you want and add only that provider's API key. Add Linear or Trello credentials only when you want those integrations.
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