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

@capabletooling/cli

v0.3.0

Published

CapableCore CLI — unified multi-vertical command line (mding, acing, fding)

Readme

@capabletooling/cli

Unified command-line interface for the CapableCore platform. Ships multiple binaries — one per vertical — from a single package:

  • mding — markdown.ing workspace sync, editor bridge, GitHub import
  • acing — agentconfig.ing command surface

Bin shims set CAPABLE_CLI_MODE and dispatch to the vertical's register() entrypoint under src/verticals/<vertical>/. Shared code (auth, config, theme, hooks, components) lives in src/core/.

Install

The canonical package:

npm i -g @capabletooling/cli

Alias packages exist so legacy / vertical-specific names still work. They are thin wrappers that depend on @capabletooling/cli and expose a single bin:

npm i -g mding                    # installs `mding`
npm i -g acing-cli                # installs `acing` (agentconfig.ing)
npm i -g @capabletooling/agentconfiging  # installs `acing` (agentconfig.ing, scoped)
npm i -g fding-cli                # installs `fding` (filediff.ing)

Pick whichever name matches how you think about the tool. They all install the same underlying code — agentconfig users can use either acing-cli or the scoped @capabletooling/agentconfiging.

Usage

mding --help
mding login
mding sync

acing --help
acing status

Each vertical registers its own subcommands; run <bin> --help for the current surface.

Environments

Every command accepts --server <url>, --dev, or --test (mutually exclusive). With no flag, the stored config default — or the prod URL — is used.

| Vertical | prod (default) | --dev | --test | |-------------|------------------------------|---------------------------------------------|------------------------------| | markdowning | https://app.markdown.ing | http://dev.markdown.ing.junoddev:4010 | https://test.markdown.ing | | agentconfig | https://app.agentconfig.ing| http://dev.agentconfig.ing.junoddev:4012 | https://test.agentconfig.ing | | filediff | https://app.filediff.ing | http://dev.filediff.ing.junoddev:4011 | https://test.filediff.ing |

--server <url> overrides everything else.

Platform-host endpoints (CLI auth + /ws/cli)

Starting with the endpoint split (Elixir Pre-PR 4), CLI auth endpoints (/api/cli/*) and the CLI WebSocket (/ws/cli) live on the CapableCore platform host — NOT on the vertical host:

| Env | Platform URL | |-------|----------------------------------------------| | prod | https://app.capabletool.ing | | dev | http://dev.capabletool.ing.junoddev:4000 | | test | https://test.capabletool.ing |

The CLI swaps --server (a vertical URL) for the matching platform URL for CLI auth / WS hops automatically. Operators on a custom --server can override the platform URL via the CAPABLE_PLATFORM_URL env var.

Requirements

  • Node.js >= 20.3.0 (the device-login flow uses AbortSignal.any())

Links

  • Platform: https://capabletool.ing
  • markdown.ing: https://markdown.ing
  • agentconfig.ing: https://agentconfig.ing
  • Source: https://github.com/junoddev/markdown.ing (directory: cli/)

License

MIT