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

make-it-done

v0.2.2

Published

Token-optimized skill orchestration framework for Claude Code

Readme

make-it-done

Token-optimized orchestration framework for Claude Code projects.

Node.js >= 18 npm Version License: MIT

make-it-done helps you run projects in structured phases, break work into wave-sized chunks, and keep orchestration token usage low with TOON-based payloads.

Table of Contents

Why makeitdone

  • Phase-based planning: keep scope explicit and milestone-driven.
  • Wave execution: group independent tasks for efficient parallel-style progress.
  • Lean orchestration: 5 focused agents and selective step injection.
  • Built-in quality gates: verify progress before phase transitions.
  • TOON-native payloads: lower token overhead versus verbose JSON flows.

Core Workflow

flowchart LR
  A[/mid:init/] --> B[Create .planning files]
  B --> C[/mid:plan --mode roadmap/]
  C --> D[/mid:plan --mode phase --phase N/]
  D --> E[/mid:do N/]
  E --> F[/mid:verify --phase N --mode audit/]
  F --> G[/mid:next/]

Architecture

flowchart TD
  U[User Commands] --> C[commands/mid/*.md]
  C --> W[makeitdone/workflows/*.md]
  W --> S[makeitdone/steps/*.md]
  W --> A[agents/mid-*.md]
  A --> T[mid-tools.cjs]
  T --> P[.planning/*]

Execution model

  • Commands are thin stubs that delegate to workflows.
  • Workflows orchestrate state, model routing, and agent handoffs.
  • mid-tools.cjs handles TOON conversion and state/config/roadmap utilities.
  • .planning/STATE.md is the single execution truth for phase/wave progress.

Install

Quick install (npx)

No global install needed:

# Claude Code (global)
npx make-it-done --claude --global

# Claude Code (project-local)
npx make-it-done --claude --local

# OpenCode (global)
npx make-it-done --opencode --global

# OpenCode (project-local)
npx make-it-done --opencode --local

From npm

npm install -g make-it-done
# or
bun add -g make-it-done

# Then run installer
makeitdone --claude --global       # install for Claude Code (global)
makeitdone --claude --local        # install for Claude Code (project-local)
makeitdone --opencode --global     # install for OpenCode (global)
makeitdone --opencode --local      # install for OpenCode (project-local)

From source (development)

git clone https://github.com/itzmail/make-it-done.git
cd make-it-done
npm install
node bin/install.js --claude --global

Update or uninstall

makeitdone --update --global
makeitdone --uninstall --global

Quick Start

  1. Initialize project context:
/mid:init
  1. Generate roadmap:
/mid:plan --mode roadmap
  1. Plan first phase:
/mid:plan --mode phase --phase 1
  1. Execute phase:
/mid:do 1
  1. Verify and move next:
/mid:verify --phase 1 --mode audit
/mid:next
  1. Check progress anytime:
/mid:status

Commands

| Command | Purpose | |---|---| | /mid:init | Initialize a new makeitdone project | | /mid:plan | Create/update roadmap and phase plans | | /mid:do | Execute phase plans using wave workflow | | /mid:verify | Run quality checks (integration/security/ui/audit) | | /mid:next | Advance to next phase after successful verification | | /mid:status | Show current project status | | /mid:report | Generate project report | | /mid:debug | Diagnose execution blockers/failures | | /mid:backlog | Manage project backlog items | | /mid:quick | Ad-hoc execution without full phase ceremony | | /mid:help | Command reference |

Project Structure

After /mid:init, your project gets a planning workspace:

project-root/
├── .planning/
│   ├── PROJECT.md
│   ├── REQUIREMENTS.md
│   ├── ROADMAP.md
│   ├── STATE.md
│   ├── config.json
│   └── phases/
│       ├── 01/
│       ├── 02/
│       └── 03/
└── (your application code)

Core templates shipped with framework:

  • makeitdone/templates/project.md
  • makeitdone/templates/requirements.md
  • makeitdone/templates/roadmap.md
  • makeitdone/templates/state.md
  • makeitdone/templates/plan.md
  • makeitdone/templates/summary.md

Token Optimization

1) TOON-native utilities

node ~/.claude/makeitdone/bin/mid-tools.cjs init execute 1
node ~/.claude/makeitdone/bin/mid-tools.cjs state get

2) Selective step injection

Workflows include only the fragments they need instead of loading every step file.

3) Context-aware degradation

| Context window | Tier | Behavior | |---|---|---| | < 300k | POOR | read-only fallback, limited actions | | 300k-500k | DEGRADING | favor small reads + lightweight models | | 500k-1M | GOOD | standard operation | | > 1M | PEAK | full capability |

4) Lean agent set

5 consolidated agents replace larger multi-agent layouts from older versions.

Configuration

Project-level config lives at .planning/config.json:

{
  "project_name": "My Project",
  "description": "Brief description",
  "model_profile": "balanced",
  "context_window": 200000,
  "team_size": 1,
  "created": "2026-04-05"
}

Model profiles:

  • budget: prioritize lower token cost
  • balanced: quality/cost default
  • quality: prefer stronger generation models

Troubleshooting

  • Missing .planning files: run /mid:init first, then /mid:plan --mode roadmap.
  • Phase not found: confirm phase directory exists under .planning/phases/.
  • State drift: use mid-tools state get to inspect current phase/wave truth.
  • Low context behavior: reduce large reads and run focused commands (status, then plan/do).
  • Node runtime issues: use Node.js 18+.

Development

Build bundled utility:

node build.js

Watch mode:

node build.js --watch

Package metadata and release notes:

  • package.json
  • CHANGELOG.md

Roadmap

Planned next improvements:

  • CI integrations and workflow automation hooks
  • richer notifications
  • broader compatibility beyond current runtime assumptions
  • expanded test coverage and benchmarks

License

MIT


Built for structured execution with token discipline as a first-class constraint.