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

@akanjs/cli

v2.4.1

Published

[Docs](https://akanjs.com/docs) | [npm](https://www.npmjs.com/package/@akanjs/cli) | [Runtime](https://www.npmjs.com/package/akanjs)

Readme

@akanjs/cli

Docs | npm | Runtime

Command-line tooling for Akan.js workspaces.

@akanjs/cli provides the akan executable used to create, build, test, lint, release, and maintain Akan applications, libraries, and framework packages. It is a Bun-first CLI package and bundles Akan development tooling internally so application runtimes can depend on the smaller akanjs package.

Install

Create a new workspace:

bunx create-akan-workspace@latest

Or install the CLI globally:

bun install -g @akanjs/cli@latest
akan --help

Common Commands

akan create-workspace <workspace-name>
akan start <app-name>
akan build <app-name>
akan test <app-or-lib-or-pkg>
akan lint <app-or-lib-or-pkg>
akan create-application <app-name>
akan create-library <lib-name>
akan create-module <module-name>
akan create-scalar <scalar-name>

Agent And MCP Commands

akan context --format markdown
akan context --format json --module <module-name>
akan doctor --format json
akan guideline list
akan guideline show framework
akan agent install cursor
akan mcp

These commands expose Akan workspace structure, module abstracts, diagnostics, and guideline instructions for coding agents. The MCP server is read-only and is intended to provide context rather than edit files directly.

Package maintenance commands are also exposed through the same executable:

akan build-package akanjs
akan build-package @akanjs/cli
akan build-package @akanjs/devkit
akan build-package create-akan-workspace
akan verify-akan-publish-packages
akan smoke-registry --test=true --tag=rc

Publish Akan framework packages from dist/pkgs/* only. verify-akan-publish-packages runs npm pack --dry-run --json against the built packages and checks metadata that must be correct before deploy-akan or local registry smoke. For repository releases, prefer bun run release:build-packages && bun run release:verify-packages so the CLI package artifact is built last and is not overwritten by the root akan bootstrap script.

Package Boundary

  • Use akanjs from application and runtime code.
  • Use @akanjs/cli as the user-facing executable package.
  • @akanjs/devkit is bundled into the CLI for published CLI usage; it is not required as a separate runtime dependency for ordinary CLI users.

Requirements

  • Bun >=1.3.13
  • A TypeScript Akan workspace

License

MIT