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

@frehilm/ordna-cli

v0.1.4

Published

The `ordna` CLI and Ink-based Kanban TUI for Ordna. Re-exports the core API.

Readme

@frehilm/ordna-cli

The ordna binary plus an embeddable Ink-based Kanban TUI. Re-exports the entire @frehilm/ordna-core API, so this is the only Ordna package you need if you're a terminal user or embedding the TUI in an IDE.

Install

Global binary:

npm i -g @frehilm/ordna-cli   # provides the `ordna` command

As a library:

pnpm add @frehilm/ordna-cli

CLI commands

ordna                     Launch the TUI (default)
ordna board               Launch the TUI
ordna init                Create .ordna/config.yaml and tasks/
ordna list [-s status]    List tasks, optionally filtered
ordna show <id>           Print a task
ordna create <title...>   Create a task
  -p, --priority <level>  high | medium | low
  -t, --tag <tag...>      one or more tags
  -d, --depends-on <id..> one or more dependency IDs
  -a, --assignee <name>
  -s, --status <status>
ordna move <id> <status>  Change status (depends_on gate on the terminal status)
ordna assign <id> [name]  Omit name to unassign
ordna commit [-m msg]     Stage tasks/ and git commit
ordna web [-p port]       Start the local web Kanban (delegates to @frehilm/ordna-web)

TUI

Launch with ordna or ordna board. Three-pane layout: topbar · filter sidebar · board (columns) · subbar · footer hints.

| Key | Action | |----------------|------------------------------------------| | Tab | Toggle focus between sidebar and board (auto-peeks the sidebar if hidden, auto-hides on tab away) | | f | Hide / show the filter sidebar | | ← → / h l | Switch column | | ↑ ↓ / j k | Select task / sidebar row | | Enter | Open task detail popup / apply filter | | Space | Pick up task; then ← → to move columns | | c | Create a new task | | m | Move task via status picker | | a | Set assignee | | e | Edit the task file in $EDITOR | | x | Archive selected task | | g | Send task to agent hook (only if enabled)| | / | Search | | Esc | Clear search / drop / close | | q | Quit |

Sidebar

Views (All · per-status counts · Archived) · Priority (high / medium / low) · Tags (top 8 by usage). Counts are live; selected filter scopes the board and the subbar title.

Columns

  • Double-line border, colored dot for the status, title + count.
  • Single-line rows: › T-001 !h Title #tag @user ███░░ 3/5 ↪1 — priority letter, colored tag chips, assignee, acceptance-criteria progress bar, depends-on count.
  • Scrolling: when a column overflows, ↑ N more and ↓ N more appear. Selection auto-scrolls to stay visible. Moving a task scrolls the target column to reveal it.
  • Columns fill the available width evenly. The Archived view keeps a single-column width so it doesn't dominate.

Popup

Enter on a task opens a centered modal with the full body. e opens in $EDITOR. Esc / q closes.

Behavior

The TUI runs in the alternate screen buffer so it never pollutes your scrollback, and reloads automatically when task files change on disk (CLI, web, agent, editor — they all show up live).

Embedded use

import { runBoard } from "@frehilm/ordna-cli";

await runBoard({
  agentHook: {
    url: "http://127.0.0.1:9999/agent",
    label: "Claude",
    headers: { "X-Token": "..." },
  },
});

For a full IDE embedding (xterm.js + node-pty pane), see the Host integration section in the root README.

Configuration

Inherits everything from @frehilm/ordna-core. The CLI does not add or override any keys.

License

MIT — see LICENSE.