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-setup

v0.1.1

Published

Scaffold Kiro configuration boilerplate (agents, MCPs, steering, skills) into any project

Downloads

131

Readme

kiro-setup

npm version license

Scaffold Kiro configuration boilerplate into any project. Sets up agents, MCP servers, steering docs, and skills in one command.

Usage

Run directly with npx (no install needed):

npx kiro-setup

Or specify a target directory:

npx kiro-setup ./my-project

This creates a .kiro/ directory with the following structure:

.kiro/
  agents/
    default.json          # Agent configuration
  settings/
    mcp.json              # MCP server definitions
  steering/
    conventions.md        # Project conventions (commits, PRs, code style)
    product-context.md    # Product context template
  skills/
    code-review.md        # Code review skill
    documentation.md      # Documentation skill
    testing.md            # Testing skill

Existing files are never overwritten. Run it again safely after adding new templates upstream.

Install globally (optional)

npm install -g kiro-setup
kiro-setup

What gets scaffolded

  • agents/ - Agent configuration defining available tools and MCP server bindings.
  • settings/ - MCP server definitions. Add your own servers here (GitHub, git, custom MCPs).
  • steering/ - Project conventions and product context that guide agent behavior.
  • skills/ - Reusable skill definitions for common tasks (code review, docs, testing).

Customization

All generated files are meant to be edited. They are starting points, not locked configs. Modify them to match your project's needs, add new skills, configure MCP servers, or adjust conventions.

Contributing

  1. Fork the repository.
  2. Create a feature branch from main.
  3. Make your changes. If adding new templates, place them under templates/.
  4. Commit using Conventional Commits format.
  5. Open a pull request.

Releases and changelog entries are managed automatically by release-please. Conventional commit messages drive version bumps and changelog generation.

See CHANGELOG.md for the release history.

Requirements

  • Node.js >= 18

License

MIT