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

@iteraitive/platform-cli

v0.7.1

Published

Contextua-wired platform-operator CLI for scaffolding and maintaining first-party platform service code repositories. v0.7.1 fixes the hardcoded runtime version string missed in the 0.7.0 bundle (0.7.0 reported itself as 0.6.0). v0.7.0 added `platform-cli

Downloads

844

Readme

@iteraitive/platform-cli

Contextua platform-operator CLI for scaffolding and managing first-party platform service code repositories.

npm install -g @iteraitive/platform-cli
platform-cli --help

v0.1.0 bootstrap slice

Contextua is pre-launch. WorkOS tenants, App Registry, and the platform auth service don't exist yet — platform-cli itself scaffolds the auth service. v0.1.0 therefore works without any authentication or network code. See the monorepo README for the full v0.1.0 scope, DoD, and v0.2.0+ roadmap.

Verbs shipped in v0.1.0

Three verbs are real; seven are stubs that declare the full ADR 0118 §4.3 flag surface but exit 1 with a roadmap message pointing at the kickoff plan.

Real

  • platform-cli list [--workspace-root <path>] [--format text|json] — enumerates platform-product SDDs under one or more workspace roots.
  • platform-cli add --archetype <name> --domain <d> --service <s> [--workspace-root <path>] [--description <text>] [--allow-existing] — scaffolds a platform service code repo as a sibling of the SDD and writes a schema-valid orchestration/repo-config/{domain}/{service}.yaml entry back. Five archetypes: api-gateway, worker, bff, frontend, cron.
  • platform-cli validate [--service <name>] [--workspace-root <path>] — local-only schema + archetype-metadata checks. Stability-class + pre-deploy validation land in v0.2.0 with deploy.

Stubs

login, deploy, dev, upgrade, contracts, artifacts, catalog. Each one's flag surface is declared at the Commander level so --help shows the full framework shape; the action body prints a structured v0.1.0 roadmap message and exits 1.

Bootstrap self-verification

# 1. Clone the platform SDD (isolated working copy so the real repo stays clean)
git clone --depth 1 https://github.com/contextua-dev/contextua-platform /tmp/ctxp-bootstrap

# 2. Scaffold the auth service
platform-cli add \
  --archetype api-gateway \
  --domain identity \
  --service identity-auth \
  --workspace-root /tmp/ctxp-bootstrap

# 3. Validate
platform-cli validate --workspace-root /tmp/ctxp-bootstrap --service identity-auth

This is the load-bearing DoD proof for v0.1.0 — the tool scaffolds the service it will eventually authenticate against.