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

@hjr15/blaze-board

v0.4.4

Published

A file-based, git-native issue board that AI coding agents can drive. Tickets are markdown; status is the directory.

Readme


Blaze is plain files, all the way down:

  • A ticket is a markdown file — frontmatter + a body. No database, no login.
  • A ticket's status is the directory it sits in. There is no status: field, so it cannot drift out of sync with reality.
  • Git is the history. git log --follow on a ticket file is its full audit trail; every mutation is a small, revertable commit.
  • The board is a rendering, never a second source of truthblaze board reads the same files you'd ls / grep / git mv by hand.

It's built AI-first: an agent drives the tracker with the file tools it already has, or with the blaze CLI. No API client, no auth, no SDK required either way.

Install

npm i -g @hjr15/blaze-board
# or, without installing:
npx @hjr15/blaze-board <command>

Requires Node 20+ and git on PATH.

The engine ⟂ data split

This package is the engine — the blaze CLI and its web board. Your tickets live in a separate data repo: a blaze.config.json plus a projects/<KEY>/<status>/ tree, versioned in its own git history.

Attach the engine to a data repo one of two ways:

  • run blaze from inside the data repo (it looks for a projects/ directory in the current working directory), or
  • set BLAZE_PROJECTS_DIR to the data repo's projects/ directory, from anywhere.

One global npm i -g @hjr15/blaze-board install can drive any number of unrelated data repos this way — upgrade the engine once, keep every board's ticket history in its own repo.

flowchart TB
    subgraph Engine["Engine — npm @hjr15/blaze-board (public)"]
        direction TB
        Bin["blaze CLI · supervisor · serve"]
        Model["scripts/model/ + scripts/views/"]
        Note["no tickets, no config — pure engine"]
    end

    subgraph Resolve["resolveRoots ladder (config.mjs) — first match wins"]
        direction TB
        L1["1 · BLAZE_PROJECTS_DIR env<br/>explicit projects/ dir; dataRoot = its parent"]
        L2["2 · ./projects under CWD<br/>run from inside the data repo"]
        L3["3 · engine tree itself<br/>single-tree back-compat only;<br/>refuses when installed under node_modules"]
        L1 --> L2 --> L3
    end

    subgraph DataA["Data repo A (own git)"]
        DA["blaze.config.json · projects/ · .blaze/"]
    end
    subgraph DataB["Data repo B (own git)"]
        DB["blaze.config.json · projects/ · .blaze/"]
    end

    Engine --> Resolve
    Resolve -->|dataRoot / projectsDir| DataA
    Resolve -->|dataRoot / projectsDir| DataB

See docs/architecture.md for the full as-built picture.

Quickstart

# 1. a data repo — just a directory with its own git history
mkdir my-tracker && cd my-tracker && git init

# 2. the engine needs a key and at least one project
mkdir -p projects/ENG
cat > blaze.config.json <<'EOF'
{ "key": "ENG", "projects": ["ENG"] }
EOF
git add -A && git commit -m "init board"

# 3. create a ticket — task/story/bug require --estimate; every type gets a
#    scaffolded description body
blaze new --project ENG --type task "Fix the export bug" --estimate 30

# 4. open the board
blaze board   # → http://localhost:4321

blaze new writes the ticket, validates it against the schema, and commits it — one small commit per ticket, scoped to the files it actually touched.

CLI verbs

| Command | Does | |---|---| | blaze new --project <KEY> --type <type> "<title>" [--estimate m] [--parent ID] [--priority p] [--labels a,b] | Create a ticket in its type's initial status | | blaze move <id> <status> | Change status (validates the transition; auto-sets resolution on a terminal status) | | blaze resolve <id> <done\|wont-do\|duplicate\|cannot-reproduce> | Set a non-default resolution without moving the file | | blaze log <id> <minutes> | Append a worklog entry | | blaze rollup [<id>] | Print rolled-up estimate/logged time for one node, or a summary of every goal/epic | | blaze reconcile [--apply] [--fetch] | Mirror a linked code repo's branch/PR state onto delivery-workflow tickets (dry-run by default) | | blaze edit <id> ... | Edit ticket fields | | blaze reindex | Rebuild/validate the on-disk index | | blaze commit | Flush queued ops into one commit (commitMode: batch) | | blaze migrate [--dry-run\|--live] [--project <KEY>] | Import tickets from an external tracker via a reviewed disposition ledger (--project optional — falls back to blaze.config.json's projects list) | | blaze board | Serve the read-only kanban view |

See AGENTS.md for the full contract — types, workflows, the git join key, and how an agent should drive the board.

The board

blaze board serves a live rendering over the files — never a second source of truth:

  • Search over id / title / labels / assignee, filtering every view live.
  • Status filter chips with live counts plus All / Active presets; the selection lives in the URL hash, so a filtered board is a shareable link. Search and chips compose.
  • Board, List, Metrics and Live views, switchable in the header.
  • A detail panel — click a ticket id for the rendered description, full frontmatter, parent/children and links; Acceptance-Criteria checkboxes toggle in place and commit.

Configuration

blaze.config.json lives at the data repo's root. Minimally:

{ "key": "ENG", "projects": ["ENG"] }

key is the ticket id prefix (ENG-1, ENG-2, ...); projects lists which projects/<KEY>/ directories the board renders. Per-project settings (labels, codeRepos to mirror, requireWorklogBeforeTerminal) live in projects/<KEY>/project.json — see AGENTS.md.

A views block toggles which of Board / List / Live / Metrics / Map are available — every view defaults to true, so an existing config sees no change. Set one to false (e.g. "views": { "map": false }) to hide its pill and 404 its fragment endpoint until it's ready; board can't be disabled since the shell always needs a default view.

The type registry and workflows are themselves configurable: add a schema block (top-level or per-project) to override or extend the built-in defaults without editing engine source — see docs/schema-customization.md.

Origin

This is a public continuation of sychyoboN/blaze.

License

MIT.