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

@todoforai/cli

v0.1.3

Published

CLI for [TODOforAI](https://todofor.ai) — create, watch, and inspect AI-powered todos.

Downloads

478

Readme

todoai CLI

CLI for TODOforAI — create, watch, and inspect AI-powered todos.

Install

bun install -g @todoforai/cli

Setup

todoai --set-default-api-url http://localhost:4000   # or https://api.todofor.ai
todoai --set-default-api-key <your-api-key>

Usage

Create a todo from a prompt

todoai "Fix the login bug"
todoai -n "Quick task"                    # non-interactive (run and exit)
echo "content" | todoai                   # pipe from stdin
todoai --path /my/project "Fix bug"       # explicit workspace

Start from a registry template

todoai --template alternativeto-listing                          # interactive input prompts
todoai --template f5bot-monitoring-setup --input "monitoring_details=My Brand"  # with inputs
todoai --template f5bot-monitoring-setup --no-watch --json       # create only

When inputs are missing, the CLI prompts interactively (unless -n).

Inspect a todo (read-only)

todoai --inspect <todo-id>

Prints the full chat log: messages, tool calls (type, status, path/cmd), results, and errors. No logo, no interactive mode.

Resume / continue

todoai -c                     # continue most recent todo
todoai --resume <todo-id>     # resume specific todo

All Options

--path <dir>                    Workspace path (default: cwd)
--project <id>                  Project ID
--agent, -a <name>              Agent name (partial match)
--api-url <url>                 API URL
--api-key <key>                 API key
--template, -t <id>             Start from a registry template
--input <key=value>             Template input (repeatable)
--inspect, -i <todo-id>         Print full chat log (read-only)
--resume, -r [todo-id]          Resume existing todo
--continue, -c                  Continue most recent todo
--non-interactive, -n           Run to completion and exit
--dangerously-skip-permissions  Auto-approve all blocks (CI/benchmarks)
--allow-all                     Set permissions to allow all tools (no approval needed)
--no-watch                      Create todo and exit
--json                          Output as JSON
--safe                          Validate API key upfront
--debug, -d                     Debug output
--show-config                   Show config
--set-defaults                  Interactive defaults setup
--set-default-api-url           Set default API URL
--set-default-api-key           Set default API key
--reset-config                  Reset config file
--help, -h                      Show this help