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

@soleri/cli

v1.12.5

Published

Developer CLI for creating and managing Soleri AI agents.

Downloads

2,274

Readme

@soleri/cli

Developer CLI for creating and managing Soleri AI agents.

Part of the Soleri framework — building AI assistants that learn, remember, and grow with you.

Quick Start

npx @soleri/cli create my-agent

The interactive wizard walks you through agent configuration: name, role, domains, principles, and greeting. When you're done, it scaffolds a complete agent project ready to build and run.

Commands

| Command | Description | | ---------------------------------- | ------------------------------------------------------ | | soleri create [name] | Interactive wizard to scaffold a new agent | | soleri list [dir] | Show agents in a directory | | soleri add-domain <domain> | Add a knowledge domain to the agent in cwd | | soleri install-knowledge <pack> | Install knowledge packs from a local path | | soleri dev | Run agent in development mode (stdio MCP server) | | soleri doctor | Health check — Node, npm, tsx, agent, deps, build, MCP | | soleri hooks add <editor> | Generate editor hooks/config files | | soleri hooks remove <editor> | Remove editor hooks/config files | | soleri hooks list | Show installed editor hooks | | soleri hooks add-pack <pack> | Install a hook pack globally (~/.claude/) | | soleri hooks remove-pack <pack> | Remove a hook pack | | soleri hooks list-packs | Show available hook packs and their status | | soleri hooks upgrade-pack <pack> | Upgrade a hook pack to the latest version |

Create

# Interactive wizard
soleri create my-agent

# Force host setup target
soleri create my-agent --setup-target codex

# Non-interactive with config file
soleri create --config agent.json

The config file follows the same schema as the wizard output:

{
  "id": "my-agent",
  "name": "My Agent",
  "role": "Code Review Advisor",
  "description": "Reviews code for quality and security issues.",
  "domains": ["security", "code-quality"],
  "principles": ["Security is not optional"],
  "greeting": "Ready to review.",
  "outputDir": ".",
  "setupTarget": "both",
  "hookPacks": ["typescript-safety", "clean-commits"]
}

Hook Packs

Hook packs are curated sets of quality gate rules that install as hookify files to ~/.claude/. They enforce code standards during AI-assisted development.

Built-in packs:

| Pack | Hooks | Description | | ------------------- | ---------------------------------------------------- | ------------------------- | | typescript-safety | no-any-types, no-console-log | Block unsafe TS patterns | | a11y | semantic-html, focus-ring-required, ux-touch-targets | Accessibility enforcement | | css-discipline | no-important, no-inline-styles | CSS best practices | | clean-commits | no-ai-attribution | No AI attribution in git | | full | All 8 hooks | Complete quality suite |

soleri hooks list-packs                    # See available packs
soleri hooks add-pack typescript-safety    # Install globally
soleri hooks add-pack full --project       # Install to project .claude/
soleri hooks upgrade-pack full             # Upgrade to latest version
soleri hooks remove-pack typescript-safety # Remove

Custom packs: Create a .soleri/hook-packs/<pack-name>/ directory with a manifest.json and hookify .md files. Local packs override built-in packs with the same name.

Editor Hooks

Generate editor-specific configuration files for your agent:

soleri hooks add claude-code   # .claude/settings.json with lifecycle hooks
soleri hooks add cursor        # .cursorrules
soleri hooks add windsurf      # .windsurfrules
soleri hooks add copilot       # .github/copilot-instructions.md

Development Workflow

soleri create my-agent         # Scaffold
cd my-agent
npm install                    # Install dependencies
npm run build                  # Build
soleri dev                     # Run locally
soleri doctor                  # Verify everything works
soleri hooks add claude-code   # Add editor hooks
soleri add-domain security     # Add a domain later

How It Works

The CLI wraps @soleri/forge — the same scaffolding engine that powers AI-driven agent creation via MCP. The CLI provides a terminal-first interface for the same operations.

Development

# From monorepo root
npm install
npm run build --workspace=@soleri/cli
npm run test --workspace=@soleri/cli

Requirements

  • Node.js 18+
  • npm 8+

License

Apache-2.0