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

@sibyllinesoft/arbiter-cli

v1.0.0

Published

CUE-based specification validation and management CLI with agent-first automation

Downloads

7

Readme

@sibyllinesoft/arbiter-cli

CUE-based specification validation and management CLI with agent-first automation

npm version License

Features

  • 🎯 Declarative Infrastructure - Define complex systems in CUE and generate everything
  • 🤖 Agent-First Design - CLI optimized for AI/automation consumption
  • 📦 Full-Stack Generation - From database schemas to UI components to CI/CD pipelines
  • Validation-First - Strong typing and validation throughout the development lifecycle
  • 🚀 Pre-built Presets - Quick start with web-app, mobile-app, api-service, and microservice templates

Installation

Via npm

npm install -g @sibyllinesoft/arbiter-cli

Via yarn

yarn global add @sibyllinesoft/arbiter-cli

Via pnpm

pnpm add -g @sibyllinesoft/arbiter-cli

Via bun

bun add -g @sibyllinesoft/arbiter-cli

Quick Start

1. Initialize a New Project

From a preset (recommended):

# Create a full-stack web application
arbiter init my-app --preset web-app

# Create a mobile app
arbiter init my-mobile-app --preset mobile-app

# Create an API service
arbiter init my-api --preset api-service

# Create a microservice
arbiter init my-service --preset microservice

From a template:

# Create a basic CUE project
arbiter init my-project --template basic

# Create a Kubernetes configuration project
arbiter init k8s-config --template kubernetes

# Create an API schema project
arbiter init api-schema --template api

2. Add Components to Your Specification

# Add a service
arbiter add service api --language typescript --port 3000

# Add a database
arbiter add database postgres --engine postgresql

# Add an endpoint
arbiter add endpoint /users --method GET --service api

# Add a frontend route
arbiter add route /dashboard --component Dashboard

3. Generate Code from Specification

# Generate all artifacts
arbiter generate

# Validate your CUE files
arbiter check

# Watch for changes
arbiter watch

Available Commands

Project Management

  • `arbiter init [name]` - Initialize a new project
  • `arbiter add ` - Add components to your specification
  • `arbiter list ` - List components by type
  • `arbiter status` - Show project status

Development

  • `arbiter generate` - Generate code from specifications
  • `arbiter check [patterns...]` - Validate CUE files
  • `arbiter watch [path]` - Watch files with live validation
  • `arbiter diff ` - Compare CUE schemas

Integration

  • `arbiter integrate` - Generate CI/CD workflows
  • `arbiter sync` - Synchronize project manifests
  • `arbiter surface ` - Extract API surface from code

Utilities

  • `arbiter health` - Check server health
  • `arbiter version` - Show version information

Entity Types

The CLI supports 26+ entity types:

Services & Infrastructure:

  • `service` - Microservices
  • `client` - Client applications
  • `database` - Databases
  • `cache` - Cache services
  • `load-balancer` - Load balancers
  • `infrastructure` - Infrastructure components

API & Communication:

  • `endpoint` - API endpoints
  • `route` - UI routes
  • `view` - UI views
  • `contract` - Workflow contracts
  • `schema` - API schemas

Business Logic:

  • `flow` - User flows
  • `module` - Modules
  • `component` - UI components
  • `package` - Packages
  • `capability` - Business capabilities

Project Management:

  • `epic` - Project epics
  • `task` - Tasks
  • `tool` - Developer tools

And more...

Configuration

Create an `.arbiter/config.json` in your project:

{
  "apiUrl": "http://localhost:5050",
  "format": "table",
  "color": true,
  "timeout": 10000
}

Examples

List Available Presets

arbiter init --list-presets

Output:

Available presets (require API server):

web-app         Full-stack web application with React frontend and Node.js backend
mobile-app      Cross-platform mobile app with React Native
api-service     RESTful API service with database integration
microservice    Containerized microservice with monitoring

List All Services in Project

arbiter list service

Generate CI/CD Workflows

arbiter integrate

Extract API Surface from TypeScript Code

arbiter surface typescript

Requirements

  • Node.js >= 18.0.0
  • CUE (for local validation)
  • Arbiter API server (for preset-based initialization and advanced features)

Development

# Clone the repository
git clone https://github.com/sibyllinesoft/arbiter.git
cd arbiter/packages/cli

# Install dependencies
bun install

# Build the CLI
bun run build

# Run tests
bun test

# Run in development mode
bun run dev

Documentation

For comprehensive documentation, visit https://github.com/sibyllinesoft/arbiter

License

LicenseRef-SPL-1.0

Author

Nathan Rice

Contributing

Contributions are welcome! Please read our contributing guidelines and submit pull requests to our repository.

Support