AI-powered sprint management for modern development teams.
Sprintable combines agile project management with AI agents to automate standups, code reviews, meeting notes, and sprint operations — all in one platform.
📸 Note: Replace placeholder images with actual screenshots after first deployment. Run
pnpm devand capture the kanban board, meeting notes, and pricing pages.
- 📋 Kanban Board — Stories, epics, sprints with drag-and-drop
- 🤖 AI Agents — Automated standups, code reviews, meeting summaries
- 🎙 Meeting Notes — Browser recording, STT transcription, AI structuring
- 📝 Memos — Team communication with @mentions and threading
- 📊 Analytics — Velocity tracking, burndown charts, team workload
- 🎨 Mockup Editor — Drag-and-drop UI prototyping
- 📄 Docs — Markdown documentation with version history
- 🏆 Rewards — Gamified team recognition
- 💳 Billing — Paddle integration, usage metering, tiered pricing
- 🔌 MCP Server — AI agent integration via Model Context Protocol
| Layer | Technology |
|---|---|
| Frontend | Next.js 15, React 19, Tailwind CSS, next-intl |
| Backend | Next.js API Routes, Supabase (Postgres + Auth + Storage) |
| AI | OpenAI GPT-4o-mini, Anthropic Claude, Whisper STT |
| Payments | Paddle Billing API v2 |
| MCP | @modelcontextprotocol/sdk |
| Monorepo | pnpm workspaces, Turborepo |
sprintable/
├── apps/web/ # Next.js frontend + API routes
├── packages/
│ ├── db/ # Supabase migrations + types
│ ├── mcp-server/ # MCP tool server (stdio/SSE)
│ └── shared/ # Shared schemas + utilities
└── docs/ # Documentation
- Node.js 20+
- pnpm 9+
- Supabase project (local or cloud)
# Clone
git clone https://github.com/moonklabs/sprintable.git
cd sprintable
# Install dependencies
pnpm install
# Copy environment variables
cp .env.example apps/web/.env.local
# Run database migrations
pnpm --filter @sprintable/db migrate
# Start development server
pnpm devVisit http://localhost:3000 to get started.
# stdio mode (for Claude Desktop, Codex, etc.)
pnpm --filter @sprintable/mcp-server start
# SSE mode (for web clients)
MCP_MODE=sse MCP_PORT=3100 pnpm --filter @sprintable/mcp-server startpnpm lint # ESLint
pnpm type-check # TypeScript
pnpm test # Vitest
pnpm build # Production buildAGPL-3.0 — See LICENSE for details.
For commercial licensing (SaaS hosting, white-label, closed-source modifications), contact license@moonklabs.com.
We welcome contributions! Please read our Contributing Guide before submitting a PR.
Built with ❤️ by Moonklabs