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

@nseng-ai/ns

v0.1.4

Published

Checkout-free ns CLI package.

Readme

@nseng-ai/ns

The ns CLI, distributed as a single self-contained npm package. Installing it gives you the ns binary — the shared command surface that you and your coding agents use to run multi-session, multi-branch software work in a git-native way.

@nseng-ai/ns ships bare core: repository activation (ns init) and extension management (ns extension …). Capabilities such as Objectives are installed on top as ns extensions — see Add Objectives.

Prerequisites

  • Node.js 24.12 or later. The published package is a self-contained bundle — no build step and no other runtime dependencies.
  • git. ns is git-native: durable state lives in your repository as plain files and refs, not in a hidden database. You run ns inside a git repository.
  • A coding-agent harness for the full workflow: Claude Code, Codex, or Pi. The CLI works standalone, but Objectives are designed to be driven by agents.

Install

Global:

npm install -g @nseng-ai/ns

Or run without installing:

npx @nseng-ai/ns --help

Verify

ns --help
ns extension list

A fresh install is bare core: it does not include ns objective. That command surface arrives when you install the Objectives extension (below).

Activate ns in a repository

From your repository root:

ns init --harness claude-code   # or: codex, pi

ns init writes ns.toml, generates a harness-neutral agent-instruction block, creates the declared consumer directories, and provisions the core harness artifacts. The harness is explicit on the first run and persisted to ns.toml; pass --harness more than once to support multiple harnesses. ns init writes files but never commits — review and commit the changes yourself.

Add Objectives

Objectives — durable, checked-in planning records for work that outlives a single agent session — are the @nseng-ai/objectives extension:

ns extension install npm:@nseng-ai/objectives

This records the extension in ns.toml, activates it for your configured harness, adds the ns objective CLI, and provisions the ten Objective skills into your harness's skill root (.claude/skills/ for Claude Code). See @nseng-ai/objectives for the full lifecycle.

Once installed, drive an Objective through its lifecycle with your agent:

  • Create — "Create an objective for migrating our API layer to typed handlers."
  • Advance — "What's next on the api-typed-handlers objective?"
  • Update — "Update the objective with what we landed."
  • Close — "Close the objective."

Inspect records deterministically from the terminal:

ns objective list
ns objective show <slug>

SDK subpaths

The package also owns the public SDK subpaths for checkout-free consumers, for example @nseng-ai/ns/sdk and @nseng-ai/ns/sdk/*. The standalone workspace @nseng-ai/sdk package remains private and is folded into these @nseng-ai/ns subpaths at package-preparation time.

Package internals

The published bin.ns points at prebuilt JavaScript (bin/ns.js) assembled by the package preparation step; developer source-checkout shims stay separate from this npm package boundary. Maintainer release qualification runs through the package's publish:dry-run, pack:local, and smoke:checkout-free scripts (pnpm --dir ts --filter @nseng-ai/ns run …); actual publication is a separate authorized step.