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

@pincerclaw/agent

v0.1.0

Published

`pincer-agent` pairs with a deployed Pincer Worker, sends signed runtime calls, and submits adapter proposals.

Downloads

6

Readme

pincer-agent

pincer-agent pairs with a deployed Pincer Worker, sends signed runtime calls, and submits adapter proposals.

Fast Path

On the admin machine:

pincer-admin setup

On the OpenClaw host:

pincer-agent connect pincer-worker.example.workers.dev --code ABCD-1234

Submit a proposal:

pincer-agent adapters propose --file ./manifest.json

Call an activated adapter:

pincer-agent call <adapter_id> <action_name> --input '{"key":"value"}'

Or load input from a file:

pincer-agent call <adapter_id> <action_name> --input-file ./payload.json

Local (No Global Link)

npm run pincer-agent -- connect <worker-host> --code <CODE>
npm run pincer-agent -- adapters propose --file ./manifest.json
npm run pincer-agent -- adapters validate --file ./manifest.json
npm run pincer-agent -- adapters list
npm run pincer-agent -- call <adapter> <action> --input '<json>'

Credential Resolution

Credentials are resolved in this order:

  1. Environment variables (preferred when all three are set):
    • PINCER_WORKER_URL
    • PINCER_RUNTIME_KEY (format: <keyId>.<keySecret>)
    • PINCER_HMAC_SECRET
  2. Credentials file at ~/.pincer/credentials.json

Commands

connect <worker-host> --code <CODE>

  • Exchanges pairing code via POST /v1/connect.
  • Saves credentials.
  • Verifies /v1/health.
  • Installs OpenClaw skill at ~/.openclaw/skills/pincer/SKILL.md.

call <adapter> <action> [--input '<json>' | --input-file <path>]

  • Validates input is a JSON object.
  • Signs request with runtime key + HMAC headers.
  • Sends POST /v1/adapter/<adapter>/<action>.

adapters list [--json]

  • Sends runtime-authenticated request to GET /v1/adapters.
  • Returns enabled adapter IDs and action names.

adapters validate --file <path> [--json]

  • Validates a manifest file locally.
  • Does not require runtime credentials.

adapters propose (--manifest '<json>' | --file <path>)

  • Validates manifest locally.
  • Sends runtime-authenticated proposal to POST /v1/adapters/proposals.

Troubleshooting

  • No credentials found
    • Run pincer-agent connect or set PINCER_* env vars.
  • Request failed (401/403)
    • Verify runtime key/HMAC.
    • Run pincer-admin doctor.
  • invalid_manifest
    • Validate required fields and schema constraints before proposing.