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

@jentrix/cli

v0.11.1

Published

Command-line client for the Jentrix MCP surface (jentrix tool <name>, generated noun-verb commands).

Readme

Jentrix open client

The command-line client and the official coding-agent plugins for Jentrix — open at the edge, governed at the centre. Everything that runs on your machine is in this repository; everything that decides authority (authorization, tenancy, audit, idempotency, concurrency, rate limits) is enforced by the hosted service on every request, whatever the client says.

| Package | What it is | | --- | --- | | @jentrix/cli (this directory) | The jentrix command: every MCP tool as a shell command (jentrix task list --board-id <id> --json), OAuth sign-in, connected-session commands, jentrix session doctor, and the jentrix-session-host bin the plugins' hooks call | | @jentrix/plugin-claude (plugins/claude) | The official Claude Code plugin: /jentrix-connect, /jentrix-align, /jentrix-plan, /jentrix-checkpoint, /jentrix-review, /jentrix-status, /jentrix-end and the trusted lifecycle hooks | | @jentrix/plugin-codex (plugins/codex) | The official Codex plugin: the same seven workflows as $jentrix-… skills, plus the hooks | | @jentrix/plugin-opencode (plugins/opencode) | The official OpenCode plugin: the same seven /jentrix-… commands registered in-process, session identity handed to every bash command, and the lifecycle/token-receipt ledger the session host reads | | @jentrix/plugin-pi (plugins/pi) | The official Pi package: the same seven /jentrix-… extension commands (injected as marked custom messages) and the same ledger |

The CLI depends on all four plugin packages with exact pins and materializes them into your provider — Claude Code and Codex with the hook commands pinned to absolute paths, OpenCode through one managed loader file, Pi through pi install. MIT licensed, DCO signed, no CLA.

Install — one command

npx --yes --package @jentrix/cli@latest jentrix setup

The same line works in bash, zsh, fish, PowerShell and cmd; it needs Node ≥ 20. jentrix setup checks the machine, installs the CLI globally, signs you in through the browser, installs the official plugin for every coding agent it finds (Claude Code, Codex, OpenCode, Pi), and leaves the checkout connected. It is preview-first: read the plan it prints, then confirm.

Without Node on the machine, the hosted bootstrap installs it first and runs the same command:

bash -c "$(curl -fsSL https://tm.jentrix.ai/install.sh)"     # macOS / Linux
irm https://tm.jentrix.ai/install.ps1 | iex                  # Windows PowerShell

Direct use, no setup

npm install -g @jentrix/cli
jentrix --version                  # version and bundled product-tool count
jentrix login                      # OAuth in the browser; or export STACKS_TOKEN=tm_…
jentrix whoami
jentrix task list --board-id <id> --json | jq .

# or run it without installing (the --package form is required: the package
# ships several executables, so a bare `npx @jentrix/cli` cannot pick one)
npx --yes --package @jentrix/cli jentrix --help

jentrix plugin install claude and jentrix plugin install codex install the official plugins on their own; jentrix session doctor reports what is installed, who owns each provider's jentrix marketplace, whether the hooks are pinned, and how this build's contract compares with the server's.

Connected work and task labels

Start Claude Code or Codex normally, then connect inside the provider:

jentrix folder align --workspace <workspace-slug>  # once per checkout
jentrix session connect --provider codex          # or claude
jentrix session align --task JEN-42
jentrix task project add --task JEN-42 --project <project-slug>

Sessions use the folder's workspace. Projects are optional task labels; ID-based label edits also work outside a bound checkout. Human task keys require a bound workspace and are checked against the returned identity. session claude also supports foreground launch; Codex uses connect only. Capture and skeleton preferences are preserved unless you explicitly change them.

session align and task context close their Related evidence block with a Beyond this card: line for a subject query with nine evidence kinds, the 25-hit ceiling, and a command to list everything on the card; fresh cards print the same recipe beneath their one-line summary.

The product CLI does not run Ops commands. An unreadable bundled tool manifest refuses raw tool calls with a reinstall instruction. See the exact migration refusals and remaining thin aliases in compatibility.

Where the contract lives

The CLI is built from a contract the service serves, not from a copy of its source:

GET https://tm.jentrix.ai/api/mcp/contract          the manifest: surface, apiRelease, digest, publicationState
GET https://tm.jentrix.ai/api/mcp/contract/bundle   the bundle: every tool's schema + the golden vectors

scripts/adopt-contract.mjs https://tm.jentrix.ai/api/mcp/contract verifies the digest and writes surface.json, contract-vectors.json and contract.json — the three files the command tree, the help goldens, the mirror test and jentrix --version derive from. The bundle this release adopted is checked in at docs/contract/mvp.json; the OAuth protocol contract is docs/contract/oauth.md. How versions, digests, drift and the 180/90-day support window work: docs/compatibility.md.

Documentation

Build and test

pnpm install
pnpm typecheck && pnpm test
CLI_PACK_SMOKE=1 pnpm test        # + cold install of the packed tarballs (what CI runs)
pnpm validate:examples
pnpm build                        # dist/: the two bins and the @jentrix/cli/core entry

See CONTRIBUTING.md (DCO sign-off, what is in scope), SECURITY.md (private reporting, severity targets), TRADEMARKS.md (reserved names, how to name a fork) and EXTRACTION.md (how this repository was created from the private source, and what was audited).

License

MIT © Jentrix — see LICENSE and NOTICE.