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

@xxkeefer/mrkl

v1.0.0

Published

Lightweight CLI tool for structured markdown task tracking

Readme


Why mrkl?

  • No external service — tasks live in .tasks/ as structured markdown
  • Git-native — commit, branch, and diff your tasks like any other file
  • AI-agent friendly — consistent YAML frontmatter for programmatic parsing
  • Conventional commits vocabularyfeat, fix, chore, etc.
  • Zero config — one command to set up

Install

pnpm add -g @xxkeefer/mrkl

Quick Start

mrkl init                                    # set up .tasks/
mrkl create feat "user auth"                 # create a task
mrkl create fix "login loop" -P 5            # with priority (1-5)
mrkl list                                    # interactive TUI
mrkl list --plain                            # pipe-friendly output
mrkl done fub-09a3k1                         # mark done + archive
mrkl close fub-09a3k2 -r "duplicate"         # close with reason

Every command has a short alias: i init, c create, ls list, e edit, d done, p prune, x close.

Running a command without arguments opens an interactive TUI.

Commands

| Command | Alias | Description | | ---------------- | ----- | ---------------------------------------------- | | init | i | Initialize .tasks/ in the current project | | create | c | Create a new task | | edit | e | Edit a task in an interactive TUI | | list | ls | List tasks (interactive TUI or --plain) | | done | d | Mark task(s) done and archive | | close | x | Close task(s) with optional reason and archive | | prune | p | Delete archived tasks before a cutoff date | | install-skills | — | Install bundled Claude Code skills |

create

mrkl create <type> <title> [--desc <text>] [--ac <text>]... [--priority <1-5>]

Types: feat fix chore docs perf refactor test ci build style

list

mrkl list [--type <type>] [--status <status>] [--search <text>] [--sortby <field:dir>] [--plain]

TUI controls:

| Key | Action | | ----- | ------------------------------ | | ↑↓ | Navigate tasks | | / | Search / filter | | s | Cycle sort field | | d | Toggle sort direction | | p | Toggle preview panel | | Tab | Switch between Tasks / Archive | | Enter | Open task in edit TUI | | Esc | Quit |

edit

mrkl edit [id]          # by ID or prefix — omit to pick from list

done / close

mrkl done <id...>
mrkl close <id...> [--reason <text>]

prune

mrkl prune <YYYY-MM-DD> [--force]

Icons

All output uses single-cell Unicode symbols — no emoji, consistent across terminals.

| Symbol | Meaning | | ------ | --------------------------- | | | todo | | | in-progress | | | done / success | | | closed / error | | | warn | | | info | | ▼▽◇△▲ | priority (lowest → highest) | | « » | blocks / blocked-by | | | epic / child |

Task File Format

Tasks are markdown with YAML frontmatter, stored in .tasks/:

---
id: fub-09a3k1
title: user authentication
type: feat
status: todo
priority: 3
created: '2026-03-20'
parent: fub-08z1a0
blocks:
  - fub-09b2c3
---

## Description

Implement user authentication with OAuth2.

## Acceptance Criteria

- [ ] login page renders
- [ ] OAuth flow completes

Statuses: todo in-progress done closed

Relationships: Tasks can have a parent (epic/child hierarchy) and blocks (dependency tracking). These are displayed in the list TUI with / and «/» indicators.

Team Workflow

IDs are temporal base36 (ddd-mmmmmm — days since epoch + milliseconds since midnight). No counter, no config, no sync — create tasks on any branch and merge without conflicts.

Development

git clone https://github.com/xxKeefer/mrkl.git
cd mrkl
pnpm install
pnpm test
pnpm dev list        # run CLI in development
pnpm build

Contributing

See CONTRIBUTING.md.

License

MIT