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

agentodo

v0.1.3

Published

Local-first kanban board for AI agent tasks. Turn coding prompts into structured tasks, run Claude Code or Codex against them, keep the transcripts.

Readme

agentodo

A local-first kanban board for the work you hand to AI agents.

agentodo turns coding prompts into structured tasks on a real board. Assign an agent, pick a model, point it at a local project — then step away while it runs. Every run keeps its transcript, so you can review, follow up, or re-run from the same card.


Quick start

npx agentodo

That's it. The CLI boots the server at http://localhost:3737 and opens your browser.

npx agentodo --port 4000 --no-open

Prerequisites

  • Node.js >=22.5.0
  • At least one agent CLI installed locally (optional — needed only to run tasks):

You can open the board and create tasks without an agent installed — you just can't run them.


Why it exists

Most AI coding workflows fall apart the same way:

  • Useful prompts get lost inside long chat threads.
  • Long-running work has no clear owner or status.
  • Model, effort, and mode choices aren't tracked.
  • Analysis and implementation get tangled together.
  • There's no reliable record of what the agent actually did.

agentodo gives that work a shape:

  • Create tasks instead of one-off prompts.
  • Assign the right agent, model, and mode per task.
  • Run against a selected local project directory.
  • Move cards through Backlog → Todo → In Progress → Completed.
  • Open the live console during the run, review the full transcript after.

Features at a glance

  • Kanban board with a backlog panel for queued ideas.
  • Two agents out of the box: Claude Code and Codex.
  • Ask mode for read-only analysis · Code mode for implementation.
  • Per-task controls: model, effort tier (Low → Max), Fast mode, task type.
  • Live run console with streamed thoughts, tool calls, and shell output.
  • Task-scoped transcripts — every run is attached to its card.
  • Local project picker with a safe ~/.agentodo/scratch fallback.
  • Keyboard shortcuts: N new task, B backlog, / search, Esc close.
  • Light / dark themes with no-flash theme boot.

Your first task

  1. Open the board at http://localhost:3737.
  2. Click Add task (or press N).
  3. Pick a project directory — or leave it empty to use the scratch workspace.
  4. Choose the agent, model, effort, and mode (Ask vs Code).
  5. Drag the card to In Progress (or hit run from the editor) to kick it off.
  6. Watch the live console stream the agent's work.
  7. Move the card to Completed when you're happy, or send a follow-up message on the same transcript.

Tip. Use Ask mode first to scope a change ("Trace how auth works in this repo"). Convert the result into a Code mode task once the direction is clear.


Local data

agentodo stores everything on your machine:

  • SQLite database: ~/.agentodo/agentodo.db
  • Scratch workspace (when no project is selected): ~/.agentodo/scratch

Nothing is sent to a remote server.


Development

git clone https://github.com/sushil-kamble/agent-todo.git
cd agent-todo
pnpm install
pnpm dev
pnpm build       # build shared + client for production
pnpm start       # run the built app via the root CLI (port 3737)
pnpm test        # run all package test suites
pnpm typecheck   # typecheck every package
pnpm check:ci    # typecheck + biome + tests

Tech stack

  • Monorepo managed with pnpm
  • Node.js >=22.5.0
  • Client: TanStack Start, Vite, React 19, TypeScript, Tailwind v4
  • Server: Node ESM HTTP backend with agent orchestration
  • Shared: contracts, config, constants, runtime helpers, validation

License

MIT © Sushil Kamble