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

yatt-md

v0.1.1

Published

Yet Another Task Tracker — plain-text Markdown task tracking with Gantt, Kanban, and git integration

Downloads

239

Readme

YATT — Yet Another Task Tracker

Markdown is the database. Git is the history. YATT is the UI.

YATT is a plain-text task tracker that lives inside your Markdown files. Tasks are written in a simple one-line format — status, name, duration, assignee, tags — and YATT renders them as a Gantt timeline, Kanban board, or people view. Because everything is text, your whole team can edit tasks in any editor, review changes in pull requests, and get a full audit trail from git for free.

build license


Why YATT?

Most task trackers store data in a database you can't read or diff. YATT flips this: the .md file is the source of truth. This means:

  • Git-native — every task change is a commit. Branch for experiments, merge to ship, revert mistakes.
  • No lock-in — your tasks are plain text. Open them in Vim, VS Code, Obsidian, or cat them in a terminal.
  • Team-friendly — pull requests are planning reviews. Comment on task lines, suggest changes, approve.
  • Offline-first — nothing to sync. The file is always up to date.
  • Lightweight server — run yatt in any folder to get a live Gantt, Kanban, and People view. Commit and push without leaving the browser.

What it looks like

YATT — write, visualize, edit

3 slides: write plain text → timeline view → kanban board. Cycles automatically.

title: Product v2 Launch
start: 2026-01-05

[x] Discovery & planning | id:phase1 | 5d | @alice | delayed 3d
// Research took longer than expected — scope was broader than estimated.
>> Kickoff complete | after:phase1

parallel: design | after:phase1
[done] UX wireframes  | 4d | @carol | %100
[~]    Visual design  | 3d | @carol | %80 | delayed 2d
end: design

parallel: engineering | after:phase1
[x] API scaffold  | id:api | 3d | @bob | blocked 1w | delayed 2d
[ ] Auth service  | 4d | @bob   | after:api | %45
[ ] Core features | 1w | @alice | after:api
end: engineering

[ ] Integration & QA | id:qa | 5d | @alice @bob | after:design,engineering
>> v2.0 Release      | after:qa | +deadline

Tasks render as a minimal line + circle timeline — a filled dot at start, hollow ring at end, bright leading segment for progress. Milestones are bullseye circles. Hover any row for a details card.


Install

npm install -g yatt-md

The package is yatt-md on npm, but the command is just yatt.


Usage

yatt                  # open current folder in the browser
yatt ./my-project     # open a specific folder
yatt --port 4000      # use a custom port
yatt --no-open        # start server without opening the browser
yatt --help           # show all options

Open http://localhost:3000. Pick any .md file from the sidebar. YATT finds all ```yatt blocks in the file and renders them.

The Edit tab lets you write raw YATT syntax. Changes save automatically and the view updates live.

You can also try without installing:

npx yatt-md

Task syntax

One task per line:

[status] Task name | duration | @assignee | #tag | %progress | id:slug | after:dep
// Optional description — attach one or more comment lines immediately after a task

Status sigils:

| Sigil | Word | Meaning | |---|---|---| | [ ] | [new] | Not started | | [~] | [active] | In progress | | [=] | [review] | In review | | [!] | [blocked] | Blocked | | [o] | [paused] | Paused | | [x] | [done] | Complete | | [_] | [cancelled] | Cancelled |

Other syntax:

>> Milestone name | after:id | +deadline   ← milestone; +deadline draws a full-height line
parallel: name                              ← parallel block start
end: name                                  ← parallel block end
[ ] Task | blocked 2w                      ← externally blocked for 2 weeks (red ghost)
[ ] Task | delayed 3d                      ← running 3 days late (orange overrun)
[ ] Task | 5bd                             ← 5 business days
[ ] Task | 2026-04-01                      ← fixed start date
[ ] Task | !high                           ← priority: low / normal / high / critical

The server

yatt [folder] [--port 3000]

Four views, switchable by tab:

| View | What you see | |---|---| | Timeline | Minimal Gantt — lines and circles, hover for details | | Kanban | Columns by status; drag to reassign; empty columns collapse to slim strips | | People | Tasks grouped by assignee | | Edit | Raw YATT source with live save |

Click any task in any view to open the edit modal — change status, assignees, dates, priority, delayed/blocked duration, and description.

Git integration

The top bar shows your current branch and sync state. No terminal needed for day-to-day use:

  • Pull — fetch and merge the latest from remote
  • Commit — stages everything (git add -A) and commits with your message
  • Push — pushes to remote

Merge conflicts and auth are left to the CLI — YATT surfaces the error and tells you to resolve from the terminal.


Key features

  • Descriptions// comment lines immediately after a task become its description (shown in hover card and list view)
  • Dependenciesafter:a,b (AND), after:a|b (OR), cross-block by ID
  • Parallel workstreamsparallel: nameend: name
  • Subtasks — leading . or .. (sequential within parent)
  • Progress%60 renders as a bright leading segment on the timeline bar
  • Delayed / blockeddelayed 3d extends the end; blocked 2w shifts the start; both show ghost indicators
  • Business days5bd or header schedule: business-days
  • Milestones>> name | +deadline

Examples

| File | Description | |---|---| | 01-hello-world.md | Simplest chart — sequential tasks with descriptions | | 02-team-sprint.md | Sprint with statuses, assignees, priorities, dependencies | | 03-product-launch.md | Phased launch with milestones, subtasks, cross-phase deps | | 04-parallel-workstreams.md | Multiple workstreams converging on shared milestones | | 05-enterprise-program.md | Full-scale program — all features combined | | 06-delays-and-blocks.md | delayed X and blocked X with ghost indicators |


Documentation

  • SPEC.md — Full language reference

License

MIT