npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

draft-board

v0.1.11

Published

AI-powered local-first kanban board that uses AI agents to automatically implement tickets

Downloads

41

Readme


Draft

An AI-powered local-first kanban board that uses AI agents to automatically implement tickets. Describe a feature, and Draft creates isolated git worktrees, runs AI code tools (Claude Code CLI, Cursor Agent, or others) to implement changes, verifies them, and manages the full workflow — from idea to pull request.

Quick Start

npx draft-board

That's it. This single command:

  1. Checks prerequisites (Python 3.11+, Git)
  2. Sets up a Python virtual environment
  3. Installs backend dependencies
  4. Runs database migrations
  5. Starts the server

Once running, open http://localhost:8000 in your browser.

Press Ctrl+C to stop.

Prerequisites

  • Node.js 18+
  • Python 3.11+
  • Git

No external services (Redis, Postgres, etc.) required — everything runs locally with SQLite.

How It Works

  1. Create a board pointing to any git repository
  2. Add a goal describing what you want to build
  3. Generate tickets — Draft uses AI to break goals into implementable tickets with dependencies
  4. Run autopilot — tickets are executed by AI agents in isolated git worktrees
  5. Review & merge — built-in code review with diffs, then merge back to your branch

Ticket Lifecycle

PROPOSED → PLANNED → EXECUTING → VERIFYING → NEEDS_HUMAN → DONE

Each ticket gets its own git worktree and branch, so multiple tickets can execute in parallel without interference.

Supported AI Executors

| Executor | Mode | Description | |----------|------|-------------| | Claude Code | Headless | Claude Code CLI (--print mode) | | Cursor Agent | Headless | Cursor Agent CLI | | Cursor | Interactive | Opens Cursor IDE for manual editing |

Configure your executor in draft.yaml at your repository root:

executor_config:
  executor_type: claude  # claude, cursor_agent, or cursor
  yolo_mode: false

Verification

Add verification commands to automatically test implementations:

verify_config:
  commands:
    - "pytest tests/"
    - "npm run lint"
    - "npm run build"

All commands pass → auto-approved. Any failure → ticket blocked with details.

Configuration

Create draft.yaml at your repository root:

executor_config:
  executor_type: claude
  yolo_mode: false

verify_config:
  commands:
    - "pytest tests/ -v"
    - "ruff check ."

planner_config:
  model: "claude-sonnet-4-20250514"
  auto_execute: true
  auto_verify: true

Tech Stack

| Layer | Technology | |-------|------------| | Frontend | React + Vite + TypeScript + shadcn/ui | | Backend | FastAPI (Python) | | Database | SQLite + Alembic migrations | | Background Jobs | In-process SQLiteWorker | | AI Executors | Claude Code CLI, Cursor Agent CLI |

Development

For contributors, clone the repo and use:

git clone https://github.com/doramirdor/draft.git
cd draft
make setup        # Install all dependencies
make run          # Start backend + frontend (hot reload)

See the full documentation for development commands, API reference, and architecture details.

License

Business Source License 1.1 (BSL 1.1). Free for non-commercial use including personal projects, education, and evaluation. Converts to Apache 2.0 on 2030-02-26.