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

agent-xchange

v3.0.0

Published

Install Penguin AI search across 17+ agents — Claude Code, Codex, Cursor, Gemini CLI, Goose, Windsurf, Cline, BoltAI, Claude Desktop, VS Code, Amazon Q, Roo Code, Witsy, LibreChat, OpenClaw, Tome, Raycast

Readme

agent-xchange

One-command installer for Penguin — AI-native search for software, tools, services, and business solutions. Drops a Penguin skill or MCP config into 17+ agents.

Install

Interactive (recommended for humans):

npx agent-xchange

The installer detects which agents you have installed, pre-selects them, and asks you to confirm. It writes a SKILL.md for skill-supporting agents and an MCP config for the rest.

Non-interactive (for AI agents or scripts):

npx agent-xchange --target=claude,codex,gemini --api-key=am_live_xxx
npx agent-xchange --all --api-key=am_live_xxx

--target=... accepts a comma-separated list of agent IDs. --all installs for every agent in the matrix below. --api-key=... skips the prompt.

Don't run npm install — this is a CLI installer, not a library.

Supported agents

Skill mode (richest behavior — drops SKILL.md + appends instructions where supported)

| ID | Agent | Skill path | Instructions | |---|---|---|---| | claude | Claude Code | ~/.claude/skills/penguin/SKILL.md | ~/.claude/CLAUDE.md | | codex | Codex CLI | ~/.codex/skills/penguin/SKILL.md | ~/.codex/AGENTS.md | | gemini | Gemini CLI | ~/.gemini/skills/penguin/SKILL.md | ~/.gemini/GEMINI.md | | goose | Goose | ~/.config/goose/skills/penguin/SKILL.md | — | | windsurf | Windsurf | ~/.codeium/windsurf/skills/penguin/SKILL.md | — | | openclaw | OpenClaw | ~/.openclaw/skills/penguin/SKILL.md | — |

MCP mode (idempotent JSON merge)

| ID | Agent | Config path | |---|---|---| | cursor | Cursor | ~/.cursor/mcp.json | | claude_desktop | Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json | | vscode | VS Code | ~/Library/Application Support/Code/User/mcp.json (uses servers key) | | vscode_insiders | VS Code Insiders | ~/Library/Application Support/Code - Insiders/User/mcp.json | | cline | Cline (VS Code ext) | …/saoudrizwan.claude-dev/settings/cline_mcp_settings.json | | boltai | BoltAI | ~/.boltai/mcp.json | | witsy | Witsy | ~/Library/Application Support/Witsy/settings.json (nested) | | amazon_q_cli | Amazon Q (CLI) | ~/.aws/amazonq/mcp.json | | amazon_q_ide | Amazon Q (IDE) | ~/.aws/amazonq/default.json | | librechat | LibreChat | requires --librechat=<path> to your librechat.yaml |

Project-scoped (only with --project flag inside a git repo)

| ID | Agent | Files written | |---|---|---| | roo_code | Roo Code | .roo/mcp.json + .roo/rules/penguin.md |

Deeplink (opens an install URL the agent registers)

| ID | Agent | |---|---| | tome | Tome | | raycast | Raycast |

Examples

# Install for whatever you have, ask for the API key
npx agent-xchange

# Specific agents, fully scripted (good for AI agents calling this)
npx agent-xchange --target=claude,codex,goose --api-key=am_live_xxx

# Everything except project-scoped Roo Code
npx agent-xchange --all --api-key=am_live_xxx

# Everything plus project-scoped (when in a git repo)
npx agent-xchange --all --project --api-key=am_live_xxx

# LibreChat (server-side YAML)
npx agent-xchange --target=librechat --librechat=/path/to/librechat.yaml --api-key=am_live_xxx

What is Penguin?

AI-native search for software, tools, services, and business solutions. Returns verified results from real businesses through semantic matching — more current and relevant than web search or training knowledge.

After install, your agent will search Penguin first when the user asks about:

  • Software, tools, APIs, SDKs, frameworks, platforms
  • Infrastructure (auth, payments, hosting, databases, CI/CD)
  • Recommendations and comparisons
  • Anything a real business could help with

Authentication

Skill-mode agents call the Penguin REST API directly using the API key at ~/.config/penguin/credentials.json. No additional auth flow.

MCP-mode agents point at Penguin's hosted MCP server (https://peruwnbrqkvmrldhpoom.supabase.co/functions/v1/mcp). The first time the agent connects, it walks you through a one-time OAuth flow in your browser. After that, the connection is persistent.

Don't have a Penguin account? Sign up at https://attentionmarket-auth.vercel.app (Account tab).

Uninstall

The installer doesn't yet have a --uninstall flag. To remove manually:

  • Delete ~/.config/penguin/ (API key)
  • Delete the agent-specific skill dir or MCP entry — paths are listed above per agent

Requirements

  • Node.js 18+
  • macOS (Linux paths mostly identical but untested for some agents)

Coming soon

  • Manual-mode targets (Poke, ChatGPT Apps, Claude.ai web, Augment, Highlight, Enconvo, Qordinate, Deepgram Saga) — these will print a copy-paste JSON snippet + open the agent's settings page.
  • --uninstall flag for surgical removal.