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

@mdeloughry/cmd-threadline

v1.5.0

Published

A Command Code mod that keeps a persistent orientation card for dyslexic developers: goal, just did, next, needs you.

Readme

Threadline

A Command Code mod that helps dyslexic developers keep their place in long coding sessions.

Long sessions are hard to hold in your head. Threadline keeps one short orientation card on screen, so you can look up and instantly see where you are.

The card

The agent keeps four fields current. Empty fields are never shown.

  • Goal — what you are trying to achieve.
  • Just did — the step most recently finished.
  • Next — the single next action.
  • Needs you — anything the agent is waiting on you for. Highlighted in yellow.

Commands

All commands live under the /threadline: group.

  1. /threadline:where — show the latest card again.
  2. /threadline:park <text> — set a tangent aside without losing your current goal.
  3. /threadline:parked — list everything you have parked.
  4. /threadline:pop [n] — pop a parked tangent onto your Next. Your old Next is re-parked automatically so you never lose it. With no argument, pops the latest.
  5. /threadline:unpark <n> — remove a parked tangent without touching your card. /threadline:unpark all clears the list.
  6. /threadline:history — a stacked timeline of your last few Threadline cards, so you can see how your focus shifted.
  7. /threadline:reset — clear the card and parked list. The agent creates a fresh card next time work begins.

Cards and parked items persist in the session transcript. They survive resume and session branching — and your card reappears on its own when you come back, so you never start a session lost.

Every field shows how long ago it was updated. If a field hasn't changed in over ten minutes, it gets an asterisk — a quick "am I stuck?" signal.

How it works

  1. The mod adds a threadline_update tool the agent can call.
  2. A stable system-prompt note tells the agent to call it only when something material changes — never after every tool call.
  3. Updates render as a short, well-spaced custom feed card. Bold labels, one idea per line, generous spacing.
  4. Everything is local and deterministic. The mod never makes model requests of its own.

Install

Personal use — copy the file and reload:

cp Threadline.ts ~/.commandcode/mods/
# then run /reload in Command Code

As a package — install from this repo (GitHub):

cmd mods add mdeloughry/cmd-threadline

From npm:

cmd mods add npm:@mdeloughry/cmd-threadline

Develop

  1. Edit Threadline.ts.
  2. Try it without installing: cmd --mod ./Threadline.ts.
  3. Run the tests: npm test (12 checks against a mock mod API — no model calls).
  4. Reload with /reload to pick up changes.

License

MIT. See LICENSE.