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

kiro-super-skills

v1.0.2

Published

Unofficial community package that bundles Anthropic's open-source Claude Code skills for easy installation in Kiro IDE. Skills are redistributed unchanged under Apache 2.0.

Readme

kiro-super-skills

This is an unofficial community package. The skills bundled here were originally created by Anthropic as part of Claude Code. The skill files are included unchanged — this package simply provides a convenient way to install and keep them up to date in Kiro IDE, without manually copying files.

We regularly update this package to stay in sync with the latest upstream skill releases from Anthropic.

Quick Start

npm install kiro-super-skills

That's it. Skills are automatically copied to ~/.kiro/skills/ on install. Open Kiro IDE and they're ready to use.

Manual install (if postinstall didn't run)

npx kiro-super-skills install

Install to a specific workspace

npx kiro-super-skills install --workspace ./my-project

Included Skills

All skills below are authored by Anthropic and distributed under the Apache 2.0 license. See each skill's LICENSE.txt for details.

| Skill | Description | |-------|-------------| | algorithmic-art | Create algorithmic art using p5.js with seeded randomness and interactive parameter exploration | | brand-guidelines | Apply Anthropic's official brand colors and typography to artifacts | | canvas-design | Create beautiful visual art in .png and .pdf documents using design philosophy | | doc-coauthoring | Structured workflow for co-authoring documentation, proposals, and technical specs | | docx | Create, read, edit, and manipulate Word documents (.docx files) | | frontend-design | Create distinctive, production-grade frontend interfaces with high design quality | | internal-comms | Write internal communications — status reports, leadership updates, newsletters, FAQs | | mcp-builder | Guide for creating high-quality MCP servers that enable LLMs to interact with external services | | pdf | Read, create, merge, split, encrypt, OCR, and manipulate PDF files | | pptx | Create, read, edit PowerPoint presentations and slide decks | | skill-creator | Guide for creating new skills that extend agent capabilities | | slack-gif-creator | Create animated GIFs optimized for Slack with constraints and validation | | theme-factory | Style artifacts with pre-set or custom themes — slides, docs, reports, landing pages | | web-artifacts-builder | Create elaborate multi-component web artifacts using React, Tailwind, and shadcn/ui | | webapp-testing | Test local web applications using Playwright — verify UI, capture screenshots, debug | | xlsx | Create, read, edit Excel spreadsheets with formulas, formatting, and charts |

How It Works

  1. Skills are bundled (unchanged) in the skills/ directory of this npm package
  2. On npm install, a postinstall script copies them to ~/.kiro/skills/
  3. Kiro IDE discovers skills automatically from that directory
  4. When your request matches a skill's description, Kiro activates it and loads the full instructions

Each skill follows the agentskills.io standard:

  • SKILL.md — YAML frontmatter (name + description) plus markdown instructions
  • Optional scripts/, references/, assets/ subdirectories for additional resources

CLI Commands

# List all bundled skills
npx kiro-super-skills list

# Install skills to Kiro (global)
npx kiro-super-skills install

# Install to a workspace
npx kiro-super-skills install --workspace ./my-project

# Force overwrite existing skills
npx kiro-super-skills install --force

# Show path info
npx kiro-super-skills info

For skill maintainers (build from Claude Code)

# Interactive skill selection from Claude Code
npx kiro-super-skills build

# Bundle all Claude Code skills
npx kiro-super-skills build --all

# Custom source directory
npx kiro-super-skills build --source /path/to/skills

Attribution & License

The skill files in the skills/ directory are copyright Anthropic and licensed under the Apache License 2.0. They are redistributed here unmodified. See the LICENSE.txt file inside each skill folder for the full license text.

The packaging code (CLI, installer scripts, build tooling) is licensed under the MIT license. See LICENSE for details.

This project is not affiliated with, endorsed by, or sponsored by Anthropic. It is an independent community effort to make Anthropic's open-source skills easily installable in Kiro IDE.

Compatibility

  • Node.js >= 18
  • OS: Windows, macOS, Linux
  • Kiro IDE: Any version with skills support

Dependencies

Skills may reference external tools (Python packages, CLI tools) in their instructions. These are installed on-demand by the AI agent when a skill is activated — no manual setup required.