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

@incorpus/cli

v0.4.1

Published

Native Incorpus CLI installer for agentic business workflows

Readme

@incorpus/cli

Thin npm/Bun installer for the native Incorpus CLI.

This package is not the CLI runtime. During installation it downloads the signed/checksummed native binary from GitHub Releases for the current platform and exposes it as incorpus.

The native CLI is Incorpus's only structured agent interface. MCP is not part of Incorpus. Tax Pack is source-data handoff only; tax computations and filing documents belong in the external tax agent's workflow.

The published package includes a generated agent-context/ folder for AI harnesses that inspect installed package files before or without running install scripts. During normal installation, the installer downloads the native binary and asks it to refresh that folder from the binary's embedded CLI resources. The folder is generated during package publishing and install, not checked into source as a separate manual copy, and the same guidance can be regenerated anywhere with incorpus setup-agent.

For AI-agent usage, install the package, then ask your agent to run:

incorpus login
incorpus status
incorpus doctor
incorpus --output json tools

incorpus login opens the user's browser for WorkOS authentication. The agent does not need a source checkout or a manually created API key.

If the AI harness benefits from local markdown context, export the embedded guide:

incorpus setup-agent ./incorpus-agent-context

Give the generated context folder to the customer's AI agent so it can discover supported commands, JSON-output guidance, safety rules, web-only workflows, and official Malaysian accounting/tax/statutory references. Claude Code users can run incorpus setup-claude.

For source-free command discovery, agents can also run:

incorpus --output json tools
incorpus --output json describe invoices create
incorpus --output json describe imports questions generate
incorpus --output json describe accounting-pack preview

The generated context folder includes catalog.json, which contains the same machine-readable command catalog for harnesses that inspect installed package files.

Supported installer platforms match the native release matrix:

  • macOS arm64
  • macOS x86_64
  • Linux amd64
  • Linux arm64
  • Windows amd64

Environment overrides:

  • INCORPUS_CLI_VERSION: release version, defaults to this package version.
  • INCORPUS_CLI_RELEASE_TAG: release tag, defaults to v${version}.
  • INCORPUS_CLI_REPOSITORY: public GitHub release-artifact repository, defaults to srank-com-my/incorpus-cli.
  • INCORPUS_CLI_BINARY_PATH: wrapper-only override for local development.
  • INCORPUS_CLI_SKIP_DOWNLOAD=1: skip native binary download during package install. The package still contains the publish-time agent-context/ fallback, but it cannot refresh that context without a native binary.

Troubleshooting:

  • Checksum mismatch means the archive is not the release artifact named in checksums.txt; retry against the official release and do not run the binary.
  • Unsupported platform errors are expected outside macOS arm64/x64, Linux amd64/arm64, and Windows amd64.
  • If incorpus reports that the native binary is missing, reinstall the package so the postinstall step can download the native archive.
  • Corporate networks can mirror the GitHub Release files by setting INCORPUS_CLI_REPOSITORY, INCORPUS_CLI_RELEASE_TAG, or using the direct install.sh / install.ps1 scripts with INCORPUS_CLI_DOWNLOAD_BASE_URL.