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

@runics/cli

v0.2.0

Published

Command-line interface for the Runics semantic skill search API

Readme

runics

npm version npm downloads License: MIT

Command-line interface for the Runics semantic skill search API.

Installation

npm install -g runics

Quick Start

# Search for skills
runics search "check license compliance"

# Get detailed skill info
runics inspect cargo-deny

# Show configuration
runics config

Commands

runics search <query>

Search for skills by natural language query.

Options:

  • --limit, -l <number> — Max results (default: 5)
  • --min-trust, -t <number> — Minimum trust score 0.0-1.0 (default: 0.0)
  • --max-tier <1|2|3> — Cap search tier to skip LLM invocation
  • --trace — Show full search trace and debug info
  • --json — Output raw JSON for piping
  • --execution-layer <layer> — Filter by execution layer
  • --url <url> — Override API URL

Example:

runics search "lint rust code" --limit 3 --trace

runics inspect <slug>

Display full skill details by slug.

Options:

  • --json — Output raw JSON
  • --url <url> — Override API URL

Example:

runics inspect cargo-deny

runics feedback <event-id> <skill-id> <type>

Submit quality feedback for a search result.

Type values: click, use, dismiss, explicit_good, explicit_bad

Options:

  • --position, -p <number> — Result position (default: 0)
  • --url <url> — Override API URL

Example:

runics feedback evt_123 skill_456 click --position 0

runics mcp-serve

Start a local MCP server exposing Runics tools.

Options:

  • --transport <stdio|sse> — Transport type (default: stdio)
  • --port <number> — Port for SSE transport (default: 3100)
  • --url <url> — Override API URL

Example:

# Use with Claude Code or any MCP-compatible agent
runics mcp-serve

# SSE mode for networked agents
runics mcp-serve --transport sse --port 3100

runics config

Show resolved configuration (helpful for debugging).

Configuration

Priority order (highest wins):

  1. CLI flags
  2. Environment variables
  3. Config file

Config File

Create .runicsrc.json in your current directory or home directory:

{
  "url": "https://runics.example.com",
  "apiKey": "rk_...",
  "defaultLimit": 5,
  "defaultMinTrust": 0.0
}

Environment Variables

  • RUNICS_URL — API endpoint URL
  • RUNICS_API_KEY — API key for authentication (future)

Examples

Basic search with custom limits

runics search "deploy to cloudflare workers" --limit 10 --min-trust 0.8

Debug search trace

runics search "fix security issues" --trace

JSON output for scripting

runics search "run tests" --json | jq '.results[0].name'

Inspect skill details

runics inspect fossa-scan

License

MIT