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

@everform/cli

v0.3.3

Published

Everform CLI — process intelligence for AI-era organizations. Score, test, and govern your AI workflows.

Readme

Everform CLI

Your AI workflows are running your business. Eve tells you which ones are working, which are failing silently, and makes them better over time.

Everform CLI demo — process scoring and constellation overview

Quick Start

# Install globally
npm install -g @everform/cli

# Or run without installing
npx @everform/cli process test my-workflow.yaml

# Or use Bun
bun add -g @everform/cli

Configure your LLM provider

# Set your provider (Anthropic is default)
eve config set LLM_PROVIDER anthropic
eve config set ANTHROPIC_API_KEY sk-ant-...

# Or use free local models — no API key needed
eve config set LLM_PROVIDER local
ollama pull llama3 && ollama serve

Commands

Design processes from natural language

# Convert an SOP document to a process DAG
eve ingest onboarding-sop.md

# Validate the generated process
eve process validate onboarding-sop.yaml

Score and test

# Structural analysis (no LLM needed)
eve process score onboarding-sop.yaml

# The killer feature: design-time validation loop
# CLI tests → deterministic scoring → Eve improves → repeat → converge
eve process test onboarding-sop.yaml --max-iterations 10 --budget $5

Run and export

# Execute with governance gate + real-time progress
eve process run onboarding-sop.yaml

# Export to governance.yaml + SKILL.md
eve process export onboarding-sop.yaml

System overview

# See your organization as a constellation
eve system inspect

CI Integration

# JSON output for pipelines
eve process test workflow.yaml --json | jq '.best_score'

# Exit code: 0 = converged, 1 = not converged
eve process test workflow.yaml --convergence-threshold 85
echo $?

What makes Eve different

  1. Automation suitability scoring — real-time, automatic, from execution data
  2. Paradigm prescription — Eve recommends deterministic/AI-driven/hybrid per step
  3. Organizational learning — the expertise ratchet that never loses knowledge

LLM Providers

| Provider | Setup | Cost | |----------|-------|------| | Anthropic (default) | eve config set ANTHROPIC_API_KEY sk-ant-... | Subscription or pay-per-use | | OpenAI | eve config set LLM_PROVIDER openai | Subscription or pay-per-use | | OpenRouter | eve config set LLM_PROVIDER openrouter | Pay-per-use (100+ models) | | Local (Ollama) | eve config set LLM_PROVIDER local | Free |

Process DAG Format

Processes are defined as YAML DAGs:

name: customer-onboarding
description: Onboard new customer with welcome email and account setup
nodes:
  - id: collect-info
    prompt: "Extract customer name, email, and plan from the signup form data"
    paradigm: dag_node

  - id: create-account
    bash: "curl -X POST https://api.example.com/accounts -d '...'"
    paradigm: dag_node
    depends_on: [collect-info]

  - id: send-welcome
    prompt: "Write a personalized welcome email for the new customer"
    paradigm: dag_node
    depends_on: [create-account]

Links