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

@aeriox-co/skills

v1.0.0

Published

AERIOX skills bundle for Claude Code / Claude Desktop — image animation, character building, prism application, multi-shot composition. Wraps the @aeriox-co/mcp server.

Readme

@aeriox-co/skills

Pre-packaged Claude Code / Claude Desktop skills for the AERIOX public API. Each skill orchestrates one or more aeriox-mcp (the CLI command exposed by the @aeriox-co/mcp package) tool calls with sane defaults, prompting strategy, and error recovery — so the agent doesn't have to figure out the choreography from scratch every time.

Skills (4)

| Skill | What it does | |-------|-------------| | /aeriox:bring-to-life | Take an image, animate it via the best-fit motion preset and (optional) prism. Wraps apply_prism + generate_video. | | /aeriox:character-builder | Guided character creation — collect 3-5 references, train, validate identity fidelity. Wraps create_character + get_job_status + retry logic. | | /aeriox:prism-apply | Browse the prism catalog, preview top 3 candidates against your asset, apply the chosen one. Wraps list_prisms + apply_prism. | | /aeriox:compose-film | Multi-shot video assembly — gather characters, generate per-shot videos, stitch into a single output. Wraps list_characters + generate_video (loop) + compose_video. |

Prerequisites

Each skill calls aeriox-mcp tools, so you must have:

  1. @aeriox-co/mcp installed and configured in your client (Claude Desktop, Cursor, Continue, etc.) — see https://github.com/aeriox/sdk-mcp#configuration. The CLI command is aeriox-mcp.
  2. AERIOX_API_KEY set in the MCP server's env. Get a key at https://create.aeriox.co/settings/api-keys.

Install

npm install -g @aeriox-co/skills

Then point Claude Code at the installed bundle. The exact installer command is moving as the skills ecosystem matures — see the canonical Anthropic docs at https://docs.anthropic.com/en/docs/skills (or your client's skills documentation) for the current path.

The skills themselves live at node_modules/@aeriox-co/skills/skills/<name>/SKILL.md after install.

Skill anatomy

Every skill is a single SKILL.md file with YAML frontmatter:

---
name: <skill-id>
description: <one-line summary, used for trigger matching>
triggers:
  - <natural-language phrase>
  - <natural-language phrase>
tools:
  - aeriox-mcp.<tool_name>
---

The body is markdown the agent reads when the skill is invoked: prerequisites, step-by-step workflow, examples, error recovery.

Development

git clone https://github.com/aeriox/skills-aeriox
cd skills-aeriox
npm install
npm run lint    # checks SKILL.md frontmatter parses + required keys present

License

MIT © AERIOX LLC