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

@omegaengine/cli

v0.1.1

Published

OmegaEngine CLI for governance management

Readme


✨ Features

  • 🚀 Deploy Policies — Push policies from terminal
  • 📡 Stream Logs — Real-time decision streaming
  • 🔑 Manage API Keys — Create and rotate keys
  • 🔧 Configuration Sync — Sync org settings
  • 🧪 Local Testing — Test policies before deploy
  • 📊 Analytics — View usage and metrics

📦 Installation

npm install -g @omegaengine/cli

Requires Node.js 18+. Then run omega --help.


🚀 Quick Start

# Authenticate
omega login

# Deploy a policy
omega policy push ./policies/my-policy.yaml

# Stream live decisions
omega logs --tail

# Check status
omega status

📋 Commands

Authentication

# Login with browser
omega login

# Login with API key
omega login --api-key sk_live_xxx

# Check authentication
omega whoami

# Logout
omega logout

Policy Management

# Push policy to OmegaEngine
omega policy push ./policy.yaml

# Push multiple policies
omega policy push ./policies/

# Push to specific environment
omega policy push ./policy.yaml --env staging

# List policies
omega policy list

# Get policy details
omega policy get pol_abc123

# Delete policy
omega policy delete pol_abc123

# Validate locally
omega policy validate ./policy.yaml

Logs & Streaming

# Stream live logs
omega logs --tail

# Filter by policy
omega logs --policy pol_abc123

# Filter by decision
omega logs --decision DENY

# Export logs
omega logs --since 24h --format json > logs.json

API Keys

# List API keys
omega keys list

# Create new key
omega keys create --name "Production Server"

# Rotate key
omega keys rotate sk_live_xxx

# Revoke key
omega keys revoke sk_live_xxx

Analytics

# View usage summary
omega analytics

# Decision breakdown
omega analytics decisions --since 7d

# Export metrics
omega analytics export --format csv

Configuration

# View config
omega config show

# Set default environment
omega config set environment production

# Set organization
omega config set org org_abc123

⚙️ Configuration File

# ~/.omega/config.yaml
apiKey: sk_live_xxx
baseUrl: https://omegaengine.ai
organization: org_abc123
environment: production
output: table  # table, json, yaml

🔧 Environment Variables

| Variable | Description | |----------|-------------| | OMEGA_API_KEY | API key for authentication | | OMEGA_BASE_URL | API base URL | | OMEGA_ORG | Default organization ID | | OMEGA_ENV | Default environment |


📊 Output Formats

# Table format (default)
omega policy list

# JSON format
omega policy list --format json

# YAML format
omega policy list --format yaml

# Quiet (IDs only)
omega policy list --quiet

🔄 CI/CD Integration

GitHub Actions

- name: Deploy Policies
  run: |
    omega login --api-key ${{ secrets.OMEGA_API_KEY }}
    omega policy push ./policies/ --env production

GitLab CI

deploy:
  script:
    - omega login --api-key $OMEGA_API_KEY
    - omega policy push ./policies/ --env production

📄 License

Licensed under Apache-2.0.