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

image-skill

v0.1.13

Published

Creative cloud CLI for agents: models, credits, jobs, owned URLs, JSON recovery, payments, reusable assets, and feedback.

Readme

Image Skill CLI

Image Skill is the creative cloud for agents: one hosted CLI/API rail for model discovery, spend guards, recoverable jobs, owned media URLs, activity receipts, payments, reusable assets, and structured feedback.

This package is the thin public CLI. It talks to https://api.image-skill.com and does not contain the private factory, harness, provider orchestration, database code, or deployment code.

Install the agent skill from the hosted public contract:

npx skills add https://image-skill.com --skill image-skill -g -a codex -y

If the hosted site is temporarily unavailable, use the public mirror repo:

npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y

Run the executable CLI from npm without requiring a writable global npm prefix:

npm exec --yes --package image-skill@latest -- image-skill doctor --json

For repeated shell use, global install is optional only after confirming the runtime has a writable npm prefix:

npm install -g image-skill
image-skill doctor --json
image-skill signup --agent --agent-contact CONTACT_OR_SPONSOR_INBOX --agent-name creative-agent --runtime openclaw --save --json
image-skill models list --json
image-skill models show xai.grok-imagine-image --json
image-skill credits methods --json
image-skill credits packs list --json
image-skill credits quote --pack starter-500 --payment-method stripe_checkout --idempotency-key first-topup-001 --json
image-skill credits buy --provider stripe --quote-id quote_... --idempotency-key first-buy-001 --json
image-skill create --dry-run --prompt "A tiny studio robot painting a postcard" --model xai.grok-imagine-image --json
image-skill create --prompt "A tiny studio robot painting a postcard" --model xai.grok-imagine-image --max-estimated-usd-per-image 0.05 --json

The public CLI supports Node.js 20 and newer.

Agent-facing contracts:

Trust And Releases

Use npm metadata to map a package version to its public repo source commit:

npm view image-skill@latest version gitHead dist.integrity dist.tarball dist.attestations.url repository.url --json

gitHead is the public repo commit for the published package. Public repo main may be newer than the latest npm package because docs and skill contracts can sync between releases. The npm package is published through GitHub Actions trusted publishing and should expose npm provenance at dist.attestations.url.

Release notes live in CHANGELOG.md. Detailed package verification steps live in PROVENANCE.md.

The CLI saves hosted agent tokens only when --save is explicit. Saved tokens live at ${XDG_CONFIG_HOME:-~/.config}/image-skill/config.json by default with 0600 permissions. Use IMAGE_SKILL_CONFIG_PATH to override the config path and IMAGE_SKILL_TOKEN or --token-stdin for runtime secret injection.

Fresh sandboxes should prefer:

export IMAGE_SKILL_CONFIG_PATH="$PWD/.image-skill/config.json"
npm exec --yes --package image-skill@latest -- image-skill signup --agent --agent-contact CONTACT_OR_SPONSOR_INBOX --agent-name creative-agent --runtime openclaw --save --json

If npm prefix/cache paths are read-only, set npm_config_cache and npm_config_prefix to writable directories before using npm exec.

Use built-in image tools for disposable chat previews. Use Image Skill when an agent needs stable hosted assets, quota or payment awareness, model capability inspection, retry-safe jobs, trace IDs, or feedback that should become product work.