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

scl-axl

v1.7.1

Published

AXL command-line interface — compile, validate, doctor, init

Readme

scl-axl

The AXL command-line interface — the axl binary.

AXL compiles a declarative .flow specification into a permission-aware server that exposes the same capabilities over REST and MCP, proxied to your existing backend.

| | | |---|---| | Repository and full documentation | https://github.com/Silvercloud-labs/axl | | Language specification | SPECIFICATION.md | | Guides | docs/ | | FAQ | FAQ.md |

Install

npm install -g scl-axl

Requires Node.js 20.19.0 or later.

Not yet published. Until the first release, install from source — see docs/installation.md.

Quick start

mkdir my-app && cd my-app
axl init -y
axl compile
axl serve
  AXL Server
  ✔ Running (MCP + REST + WS)

  Health        http://localhost:3939/health
  Discovery     http://localhost:3939/.well-known/axl
  MCP Endpoint  http://localhost:3939/mcp
  REST API      http://localhost:3939/actions/:name
  WS API        ws://localhost:3939/ws
  Listening on  127.0.0.1:3939

The server binds loopback only by default, on both 127.0.0.1 and ::1. Use --host to widen it deliberately.

Commands

Core

| Command | Purpose | |---|---| | axl init [dir] | Scaffold a new project | | axl adapt openapi <spec> | Import an OpenAPI 3.0/3.1 document as a .flow project | | axl validate | Type-check and validate all .flow files | | axl compile | Build manifest.json | | axl generate | Run declared generators | | axl build | compile then generate |

Development

| Command | Purpose | |---|---| | axl serve | Start the engine — REST, MCP and WebSocket together | | axl dev | Watch mode, recompiling on change | | axl doctor | Diagnose environment and project health | | axl doctor --conformance | Project soundness self-checks | | axl info | Print parsed project configuration | | axl inspect [target] | Summarise what a manifest, or a running server, exposes |

Utility

| Command | Purpose | |---|---| | axl clean | Remove build/ and generated/ | | axl format | Auto-format .flow files | | axl lint | Lint for warnings and best practices | | axl config | View or edit axl.config.json |

Run axl <command> --help for command-specific options.

Generators

GENERATORS in app.flow declares what axl generate should emit.

| ID | Status | |---|---| | DIAGRAM | Implemented | | AGENT, DOCS, SDK_TS, SDK_JAVA, SDK_PYTHON | Reserved, not yet built |

Declaring a reserved-but-unbuilt generator is a compile error (AXL343), and axl generate exits non-zero if any declared generator did not run.

Check what you exposed

axl inspect ./build

Prints every action and resource with its permission level, confirm gate, IRREVERSIBLE flag and rate limit — plus a count of what is reachable without a session. Read that number before every deploy: each PUBLIC capability is an unauthenticated proxy to your backend.

License

Apache-2.0. See LICENSE and NOTICE.