SprintiQ: Open-Source Sprint Planning for Claude Code

✍️ OpenClawRadar📅 Published: May 5, 2026🔗 Source
SprintiQ: Open-Source Sprint Planning for Claude Code
Ad

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 photos
  • images (private) — for task and workspace image uploads
Ad

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

Ad

👀 See Also

Reddit user shares detailed prompt for exporting personal knowledge from AI assistants
Tools

Reddit user shares detailed prompt for exporting personal knowledge from AI assistants

A Reddit user has created a comprehensive prompt for extracting structured personal knowledge from AI assistants like Claude, addressing perceived limitations in Anthropic's ChatGPT import feature. The prompt generates three distinct JSON artifacts covering personal knowledge bases, intellectual frameworks, and knowledge graphs.

OpenClawRadar
Claude Code Skills for Automated Project Scaffolding
Tools

Claude Code Skills for Automated Project Scaffolding

A developer has built Claude Code skills that automate full-stack project setup with commands for React, Next.js, Node.js APIs, and Turborepo monorepos. The skills pull latest dependencies, support 50+ integrations, and are MIT licensed.

OpenClawRadar
OpenClaw as Infrastructure-as-Code Interface for Home Lab Management
Tools

OpenClaw as Infrastructure-as-Code Interface for Home Lab Management

OpenClaw transforms from AI gadget to primary computer interface for home lab management, executing tasks like configuring Traefik containers, creating Dashy configurations, and setting up Tailscale access with direct machine access.

OpenClawRadar
Claudraband: Terminal Wrapper for Persistent Claude Code Sessions
Tools

Claudraband: Terminal Wrapper for Persistent Claude Code Sessions

Claudraband wraps the official Claude Code TUI in a controlled terminal to enable resumable workflows, remote session control via HTTP daemon, and ACP server integration for alternative frontends like Zed or Toad. It requires Node.js/Bun, authenticated Claude Code, and tmux for first-class local workflows.

OpenClawRadar