SprintiQ: Open-Source Sprint Planning for Claude Code

SprintiQ is a self-hosted, open-source (Apache 2.0) sprint planning tool built specifically for developers using Claude Code. It sits as an orchestration layer above Claude Code: while Claude writes code, SprintiQ manages what gets built, when, and why. It is not a generic project management tool — it's an operating system for Claude Code workflows.
Key Features
- Bidirectional sync with Claude Code via the SprintiQ CLI (
sprintiq watch) - AI-powered user story generation trained on agile anti-patterns (TAWOS)
- Sprint planning, capacity management, and velocity tracking
- Persona-aware story generation — adapts stories based on defined user personas
- Single-user, self-hosted — your data, your infrastructure, your Claude API key
- Multi-modal story generation (text + image support via Supabase storage)
Quick Start (Self-Hosted)
Prerequisites:
- Node.js 18 or later
- A Supabase project (free tier works for personal use)
- An Anthropic API key (Claude Sonnet 4.6 + Opus)
- A Voyage AI API key (for embeddings)
Setup:
git clone https://github.com/SprintiQ-Incorporated/sprintiq.git
cd sprintiq
cp env.example .env.local
# Fill in the required env vars — see SELF_HOSTING.md
npm install
npx supabase db push
npm run dev
After supabase db push, create two storage buckets in your Supabase dashboard:
avatars(public) — for user profile photosimages(private) — for task and workspace image uploads
CLI: sprintiq watch
The CLI connects your local codebase to your SprintiQ workspace, tracking git activity and syncing it to your active sprint in real time.
Install and authenticate:
cd packages/cli
npm install
npm run build
npm link
From your project directory:
sprintiq login
Start watching:
sprintiq watch
Requirements:
- Must run from a git-initialized project directory
- Requires an active sprint in your SprintiQ workspace
- Node 18+
Architecture
Built on Next.js App Router, Supabase (auth, Postgres, pgvector), Claude Sonnet 4.6 for generation, and Voyage AI for embeddings. The CLI creates a live bridge between Claude Code sessions and your sprint board. Row-Level Security (RLS) enforces single-owner workspace isolation at the database layer.
The repo includes a CLAUDE.md file optimized for AI agent context — useful if you want Claude Code to understand the project's structure.
Who It's For
Developers who use Claude Code for development and want a lightweight, self-hosted planning layer that syncs git activity with sprint tasks — without leaving the terminal or sending data to a third-party SaaS.
📖 Read the full source: HN AI Agents
👀 See Also

Open-source Claude skill for management consulting frameworks and case studies
A free, MIT-licensed Claude skill provides structured reference material for management consulting work, including frameworks, industry context, and case studies. The project consists of 80+ markdown files organized by domain and seeks contributors to expand coverage.

Visdiff: Visual Feedback Loop for Claude's Frontend Code Generation
Visdiff addresses the visual accuracy gap in Claude's frontend code generation by comparing rendered output pixel-by-pixel with Figma designs and feeding differences back into the loop until they match.

Comparing Multi-Agent AI Systems: Anthropic's Harness vs Agyn's Engineering Org Model
Anthropic published a harness design for long-running application development, while Agyn's multi-agent system for team-based autonomous software engineering was open-sourced last month. Both systems reject monolithic agents in favor of role separation, structured handoffs, and review loops.

Android CLI and Skills for AI Agent Development Workflows
Google released Android CLI with commands like android create and android sdk install, plus Android Skills GitHub repository with modular instruction sets. Internal benchmarks show 70% reduction in LLM token usage and 3x faster task completion.