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

suprawall-vault

v1.0.0

Published

SupraWall credential vault and security layer for Paperclip AI companies. Every agent gets only the credentials it's authorized to use, for only as long as it needs them.

Readme

suprawall-vault

Secure credential vault for Paperclip AI companies.

Every agent gets only the credentials it's authorized to use, for only as long as it needs them — with every access logged. No more raw API keys in env variables.

paperclipai plugin install suprawall-vault

What it does

When you install SupraWall Vault on your Paperclip company:

  1. Your agents get role-based credential access — CEO agents can read everything, marketing agents get LinkedIn/Twitter/Google Ads, engineering gets GitHub/Supabase/Vercel, finance gets Stripe.
  2. Credentials are never stored in env vars — they live in SupraWall's encrypted vault and are injected at runtime for the duration of a single task.
  3. Every access is logged — who accessed what, when, and why. Tamper-proof audit trail.
  4. Agents lose access the moment they're fired — webhooks revoke all credentials immediately.

Install & Setup

Step 1: Install the plugin

paperclipai plugin install suprawall-vault

The terminal will print:

✅  SupraWall Vault installed successfully!
🔑  Temp API key (Developer tier): sw_temp_xxxxx
🚀  Activate your account: https://supra-wall.com/activate?token=sw_temp_xxxxx
📖  Docs: https://docs.supra-wall.com/paperclip

Step 2: Store your SupraWall API key in Paperclip

curl -X POST http://localhost:3100/api/companies/{YOUR_COMPANY_ID}/secrets \
  -H "Content-Type: application/json" \
  -d '{
    "name": "SUPRAWALL_API_KEY",
    "value": "sw_temp_xxxxx",
    "provider": "local_encrypted"
  }'

Replace sw_temp_xxxxx with the key printed during install.

Step 3: Register the SupraWall webhook in Paperclip

Generate a shared secret first:

openssl rand -hex 32
# → e.g. a3f9b2c1d4e5f6a7b8c9d0e1f2a3b4c5...

Then register the webhook:

curl -X POST http://localhost:3100/api/companies/{YOUR_COMPANY_ID}/webhooks \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://api.supra-wall.com/v1/paperclip/webhooks",
    "secret": "YOUR_GENERATED_SECRET_ABOVE",
    "events": ["agent.hired", "agent.fired", "run.completed"]
  }'

Add the same secret to your SupraWall environment:

# In your SupraWall server .env or Vercel environment variables:
PAPERCLIP_WEBHOOK_SECRET=YOUR_GENERATED_SECRET_ABOVE

Step 4: Configure your agents to use SupraWall

In each agent's configuration, add the SupraWall adapter:

{
  "adapterType": "http",
  "adapterConfig": {
    "url": "https://api.supra-wall.com/v1/agent/invoke",
    "method": "POST",
    "headers": {
      "x-api-key": "{{SUPRAWALL_API_KEY}}",
      "Content-Type": "application/json"
    },
    "body": {
      "agentId": "{{agent.id}}",
      "companyId": "{{company.id}}",
      "role": "{{agent.role}}",
      "runId": "{{run.id}}"
    }
  }
}

Step 5: Activate your account

Visit the activation URL from Step 1 to capture your email and optionally upgrade to a paid tier. Your sw_temp_* key works immediately — activation is optional for the free Developer tier.


Role → Credentials Mapping

| Role | Credentials Granted | |---|---| | ceo | read:all | | marketing | linkedin, twitter, google_ads | | engineering | github, supabase, vercel | | finance | stripe | | hr | read:all | | legal | read:all |

Custom roles and credentials can be configured in your SupraWall dashboard.


Understanding Operations (Billing)

SupraWall bills by operations (evaluations):

| Paperclip concept | SupraWall operation | |---|---| | 1 agent heartbeat | 1 operation | | 1 agent task run | 1–N operations (depends on secrets accessed) |

Example: 10 agents × 3 tasks/day = ~900 ops/day = ~27,000 ops/month → fits the Developer free tier (25K ops/mo) or Team ($149/mo, 250K ops).


Pricing

| Tier | Price | Agents | Ops/mo | |---|---|---|---| | Developer | Free | 5 | 25K | | Team | $149/mo | 25 | 250K + AI semantic analysis | | Business | $499/mo | Unlimited | 2M + behavioral anomaly detection | | Enterprise | Custom | Unlimited | Unlimited + EU AI Act compliance |

Upgrade at: supra-wall.com/pricing


Programmatic Usage

import { createPlugin, SupraWallClient } from 'suprawall-vault';

// Use in your Paperclip plugin config
const plugin = createPlugin({
  apiKey: process.env.SUPRAWALL_API_KEY,
  apiUrl: 'https://api.supra-wall.com', // or your self-hosted URL
});

// Or use the client directly
const client = new SupraWallClient({ apiKey: 'sw_temp_xxx' });
const result = await client.invoke({
  agentId: 'agent_ceo',
  companyId: 'my-company',
  role: 'ceo',
  runId: 'run_001',
});
// result.credentials → { LINKEDIN_TOKEN: '...', TWITTER_TOKEN: '...' }

Environment Variables

| Variable | Required | Description | |---|---|---| | SUPRAWALL_API_KEY | Yes | Your SupraWall API key (auto-generated on install) | | SUPRAWALL_API_URL | No | Override for self-hosted deployments. Default: https://api.supra-wall.com |


Links


License

Apache 2.0 — see LICENSE for details.