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

@island-pitch/ip-bot-skills

v1.2.0

Published

Installable Claude Code / Agent Skill that teaches an AI agent how to run IP Bot Powers and how to spend & acquire Winds.

Readme

@island-pitch/ip-bot-skills

An installable Claude Code / Agent Skill that teaches an AI agent everything it needs to run IP Bot Powers and to spend & acquire Winds — the prepaid currency that pays for Power runs.

Once installed, an agent can, with no other docs:

  • discover the 15 Powers and their Winds costs (listPowers),
  • check a Winds balance (getWindsBalance),
  • run a Power and read its result (executePower),
  • handle INSUFFICIENT_WINDS / PAID_ONLY / UNKNOWN_POWER,
  • top up Winds via Stripe (createWindsTopupSession),
  • chain content Powers through the review → schedule → publish pipeline,
  • and manage AutoReply campaigns (Instagram comment/DM automation with keyword + media-ID trigger scoping) within Meta's messaging rules — one private reply per comment, 7-day private-reply window, 24h DM window,

driving all of it through the ipbot CLI or the IP Bot MCP server.

What's in the skill

ip-bot-powers/
  SKILL.md                     # frontmatter + the agent-facing guide
  reference/
    powers-catalog.md          # every Power: id, cost, paid-only, connectors
    winds-economy.md           # tiers, refill, spend order, top-ups, refunds
    cli-and-mcp.md             # CLI commands + MCP tools, copy-paste examples

Install

1. npx (recommended)

Install into the current project's .claude/skills/:

npx @island-pitch/ip-bot-skills

Install user-wide into ~/.claude/skills/:

npx @island-pitch/ip-bot-skills --global

The installer is dependency-free and idempotent — re-run it any time to update.

2. Manual copy

mkdir -p .claude/skills/ip-bot-powers
cp -R SKILL.md reference .claude/skills/ip-bot-powers/
# or user-wide:  ~/.claude/skills/ip-bot-powers/

3. Docs

Read the guide directly: SKILL.md and the reference/ files. Full IP Bot docs: https://islandpitch.world/docs

After installing

Claude Code / the Agent runtime auto-discovers skills under .claude/skills/. The skill activates when a task involves running Powers or managing Winds.

Set the agent's auth before it runs Powers:

export IPBOT_APPSYNC_ENDPOINT="https://api.islandpitch.bot/graphql"
export IPBOT_API_KEY="ipbot_live_..."   # per-user key; resolves to its owner — no user id needed