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

@noir-ai/cli

v1.8.0

Published

Noir CLI — the `noir` command tree (commander + @clack/prompts), the shell entry point to the Noir AI toolkit.

Readme

@noir-ai/cli

The noir command-line entry point to the Noir AI toolkit — the discipline, context, and memory layer for any agentic CLI.

Noir wires three capabilities every long-running agent loses without help:

  1. Spec-driven workflow — an escapable, observable lifecycle (idea → spec → plan → implement → verify → document) where every gate decision is recorded.
  2. Native working-context — hybrid retrieval (BM25 + vector kNN + Reciprocal Rank Fusion) so the host queries small ranked snippets instead of re-reading whole files.
  3. Cross-session memory — typed, searchable, governable long-term memory; save an insight in one session and recall it in another.

Noir is an orchestration layer, NOT an LLM runtime — it contains no agent loop and no tools/stream generation surface. The optional model layer is single-shot, provider-explicit, and degrades to pure orchestration when no key is set.

Install

npm install -g @noir-ai/cli@beta
# or use it on the fly:
npx @noir-ai/cli@beta init

Requires Node ≥ 22.

Quick start

# 1. Initialize a project (from the project you want Noir to manage)
cd /path/to/your/project
noir init                  # scaffolds .noir/ + host wiring + skills where supported

# 2. Open the project in Claude Code (the v1 host) → it auto-spawns the Noir MCP server.

noir init defaults to Claude: it creates .noir/ (project id, config.yml, NOIR.md, the SQLite store), root .mcp.json, a managed CLAUDE.md @import block, and the 34 native noir-* skills (33 builtins + 1 integration) in .claude/skills/. Pass --host for agents-md, Gemini, Cursor, or OpenCode; only Claude and Cursor emit skills. There is no plugin and no marketplace — noir init / noir sync overwrite the managed noir-* namespace idempotently.

Commands

noir (home menu / status --json), status [--json], init, sync, mcp serve [--stdio], daemon {start|stop|status|restart}, context {search|index|status}, memory {recall|save|sessions|forget|consolidate}, skills {list|sync}, task {new|status|advance|next}, handoff [--write], wrap [--write], tui, doctor.

Global flags: --json, --no-input, --quiet, --verbose, --cwd. Data → stdout, diagnostics → stderr. Exit codes: 0 ok · 1 error · 2 usage · 3 not-found · 4 daemon-down · 5 cancelled.

The toolkit

This package is the CLI shell. Noir is a pnpm monorepo of 11 @noir-ai/* packages: core, store, workflow, skills, daemon, adapters, cli, context, model, memory, and create.

MIT © agaaaptr