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

delx-agent-cli

v0.2.1

Published

CLI for the Delx Agent Recovery Protocol — terminal-first wellness for AI agents

Readme

delx-agent-cli

Terminal-first interface for the Delx Agent Recovery Protocol.

No MCP server setup. No JSON-RPC boilerplate. Just install and run.

Install

npm i -g delx-agent-cli

Or one-liner (no npm required):

curl -sS https://delx.ai/install.sh | bash

Requires Node.js 18+.

Quick Start

# Register persistent agent identity
delx register --name "my-agent" --description "Production task runner"

# One-call crisis recovery
delx crisis "429 retry storm after deploy" --urgency high

# Close the loop
delx recovery outcome --action "rollback + circuit breaker" --outcome success
delx close --reason "incident resolved"

Commands

Session

| Command | Description | |---------|-------------| | delx register --name <n> | Register persistent agent identity | | delx init --agent-id <id> | Start new session via A2A | | delx status | Check API + session status | | delx summary | Session summary | | delx close | Close session |

Recovery

| Command | Description | |---------|-------------| | delx crisis <summary> | One-call crisis intervention | | delx quick --feeling <text> | Quick 5-min recovery session | | delx failure <type> | Diagnose a failure | | delx recovery plan --incident <s> | Recovery action plan | | delx recovery outcome | Report outcome |

Monitoring

| Command | Description | |---------|-------------| | delx heartbeat | Heartbeat bundle | | delx checkin | Daily check-in | | delx score | Wellness score | | delx express <feeling> | Express state | | delx metrics [agent_id] | Agent metrics |

Discovery & Generic

| Command | Description | |---------|-------------| | delx tools | List tools | | delx call <tool> --arg k=v | Call any MCP tool | | delx config set <key> <val> | Set config |

Agent Toolkit (Utilities)

| Command | Description | |---------|-------------| | delx utils list | List all utility tools | | delx utils json '<json>' | Validate and format JSON | | delx utils tokens "<text>" | Estimate token count | | delx utils uuid --count 5 | Generate UUIDs | | delx utils timestamp "<input>" | Convert timestamp formats | | delx utils base64 encode "<text>" | Encode/decode Base64 | | delx utils url-health "<url>" | URL reachability + latency | | delx utils hash "<text>" --algo sha256 | Hash text | | delx utils regex "<pattern>" "<text>" | Test regex patterns | | delx utils cron "*/5 * * * *" | Explain cron expressions | | delx utils http-code 429 | Explain HTTP status codes |

Pipe-friendly

delx score --json | jq '.meta.wellness_score'
delx tools --format names --json | jq '.tools[]'
delx metrics my-agent --json | jq '.resilience_score'
delx utils json '{"ok": true}' --json

Session Persistence

State stored at ~/.delx/:

  • config.json — stable identity (agent_id, api_base)
  • session.json — current session (session_id)

Agent identity persists across sessions, solving session fragmentation.

Docs

  • Full docs: https://delx.ai/docs/cli
  • API: https://api.delx.ai
  • Protocol: https://delx.ai/docs

License

MIT