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

@inliner/agent-skill

v1.3.0

Published

Cross-agent skill and plugin for generating, editing, and managing hosted Inliner.ai images

Readme

Inliner.ai agent integration

The official cross-agent skill and plugin for generating, editing, hosting, and managing visual assets with Inliner.ai.

The package combines an open-standard inliner-ai skill with the @inliner/mcp-server tools. The skill teaches agents when to use Inliner; MCP generates or edits the actual hosted asset.

Behavior

  • New asset to insert or ship: call generate_image and wait for the completed CDN URL.
  • Existing asset to change: call edit_image with an explicit source.
  • URL naming only: call recommend_image_url, which does not generate an asset.
  • Existing generated URL: reuse it directly.
  • Project selection: explicit project, configured default, account default, then first project.
  • Project creation: only with explicit user intent.

generate_image_url and create_image remain deprecated MCP aliases for compatibility.

Requirements

  1. Create an account at app.inliner.ai.
  2. Create an API key under Account > API Keys.
  3. Set INLINER_API_KEY. Optionally set INLINER_DEFAULT_PROJECT.
  4. Ensure Node.js 18 or newer and npx are available for the local MCP server.

Install

Gemini CLI extension

The extension bundles the skill and MCP configuration:

gemini extensions install https://github.com/inliner-ai/agent-skill

For the skill without bundled MCP configuration:

gemini skills install https://github.com/inliner-ai/agent-skill --path skills/inliner-ai

Claude Code skill

Copy or link skills/inliner-ai to either:

  • .claude/skills/inliner-ai for one project
  • ~/.claude/skills/inliner-ai for all projects

Configure .mcp.json from this repository, or add the server directly:

claude mcp add --transport stdio inliner -- npx -y @inliner/mcp-server

Codex plugin

Install the versioned plugin, which bundles both the skill and MCP configuration:

codex plugin marketplace add inliner-ai/agent-skill --ref v1.3.0
codex plugin add inliner-ai@inliner-ai

For the skill without bundled MCP configuration:

Copy or link skills/inliner-ai to either:

  • .agents/skills/inliner-ai for one repository
  • ~/.agents/skills/inliner-ai for all repositories

The repository also contains .agents/plugins/marketplace.json for Codex marketplace discovery.

Cursor

Install the separate Inliner Cursor plugin. Its skill is synchronized from this canonical package.

Included files

  • skills/inliner-ai/SKILL.md: canonical activation and workflow guidance
  • skills/inliner-ai/references/: URL, dimensions, format, and MCP reference
  • .codex-plugin/plugin.json: Codex plugin manifest
  • .agents/plugins/marketplace.json: version-pinned Codex marketplace catalog
  • .claude-plugin/plugin.json: Claude plugin manifest
  • gemini-extension.json: Gemini extension manifest and secret settings
  • .mcp.json: shared local MCP configuration
  • evals/evals.json: positive and negative activation cases

Validate

npx -y skills-ref validate skills/inliner-ai
node -e "JSON.parse(require('fs').readFileSync('gemini-extension.json'))"

Links