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

claude-task-tracker

v1.0.11

Published

CLI task tracker with dependency management for agentic code workflows

Downloads

18

Readme

Claude Task Tracker (ctt)

A CLI task tracker with dependency management designed to extend memory for agentic code workflows like Claude Code.

Features

  • Task Dependencies: Blocking dependencies that prevent task execution until completed
  • Soft References: Non-blocking references between related tasks
  • Task Overviews: Context summaries filled on completion for dependent tasks to reference
  • Plan File References: Link tasks to external plan files with detailed implementation notes
  • Ready Task Detection: next command finds tasks ready to work on (open + all blockers completed)
  • Multiple Output Formats: Default, JSON, and compact (token-efficient for LLMs)
  • Claude Code Integration: Auto-generates CLAUDE.md with usage instructions on init

Installation

Homebrew (macOS/Linux)

brew tap farisphp/tap
brew install ctt

npm

npm install -g claude-task-tracker

From Source

git clone https://github.com/farisphp/claude-task-tracker.git
cd claude-task-tracker
npm install
npm run build
npm link

Quick Start

# Initialize in your project (creates .tasks/tasks.json and CLAUDE.md)
ctt init

# Add tasks with dependencies
ctt add "Design API schema" -d "Define REST endpoints"
ctt add "Implement auth" --blocked-by t1
ctt add "Write tests" --blocked-by t2 --ref t1

# Add a task with a plan file
ctt add "Refactor database" -p .tasks/plans/db-refactor.md

# Get next ready task
ctt next
# Output: t1 - Design API schema

# Start working
ctt start t1

# Complete with overview (context for dependent tasks)
ctt complete t1 -o "Created OpenAPI spec with /users, /auth endpoints. JWT-based auth."

# Get context for dependent task (includes blocker overviews)
ctt context t2

Commands

| Command | Description | |---------|-------------| | ctt init | Initialize .tasks/tasks.json in current directory | | ctt add <title> | Add task (-d description, -b blockedBy, -r refs, -p planFile) | | ctt list | List all tasks (-s filter by status) | | ctt show <id> | Show task details | | ctt next | Get next ready task (open + all blockers completed) | | ctt start <id> | Mark as in progress | | ctt complete <id> | Mark as completed (-o overview) | | ctt block <id> --by <id> | Add blocking dependency | | ctt unblock <id> --by <id> | Remove blocking dependency | | ctt ref <id> --to <id> | Add soft reference | | ctt unref <id> --to <id> | Remove soft reference | | ctt context <id> | Show task + all dependency overviews | | ctt overview <id> <text> | Update task overview | | ctt plan <id> <path> | Set or update plan file reference | | ctt delete <id> | Delete a task | | ctt cleanup | Remove old completed tasks (-d days, default 7, --dry-run) |

Output Formats

Default (Human-readable)

ctt list
# ○ t1 - Design API
# ○ t2 - Implement auth [blocked by: t1]
# ○ t3 - Write tests [blocked by: t2]

JSON (Structured)

ctt --json next
{
  "id": "t1",
  "title": "Design API",
  "status": "open",
  "blockedBy": [],
  "references": [],
  "overview": null
}

Compact (Token-efficient for LLMs)

ctt --compact list
# t1:Design API[O]
# t2:Implement auth[O] <t1
# t3:Write tests[O] <t2 ~t1

ctt --compact context t3
# t3:Write tests[O] <t2 ~t1
# --blockers--
# t2:Implement auth[O] <t1
# --refs--
# t1:Design API[C] >Created OpenAPI spec...

Compact format legend:

  • [O] = open, [P] = progress, [C] = completed
  • <t1,t2 = blocked by t1 and t2
  • ~t1 = references t1
  • >text = overview
  • @path = plan file reference

Task States

| Status | Symbol | Description | |--------|--------|-------------| | open | ○ / O | Not started | | progress | ◐ / P | In progress | | completed | ● / C | Done |

Agentic Workflow Example

# Agent picks up next task
TASK=$(ctt --compact next)
# t1:Design API[O]

# Agent starts working
ctt start t1

# Agent completes with context for future tasks
ctt complete t1 -o "Defined /users CRUD, /auth/login, /auth/refresh. Using JWT with 1h expiry."

# Agent picks up next task and gets context
ctt --compact context t2
# t2:Implement auth[O] <t1
# --blockers--
# t1:Design API[C] >Defined /users CRUD, /auth/login...

Storage

Tasks are stored in .tasks/tasks.json in the current directory. This file can be version-controlled.

License

MIT