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

v0.1.1

Published

CLI + MCP tool for managing Kiro feature contexts across sessions

Downloads

30

Readme

kiro-buddy

Never lose your Kiro context again.

kiro-buddy is a CLI + MCP tool that manages persistent feature contexts across Kiro sessions. When your context window fills up and you start a new session, kiro-buddy reloads everything so you can pick up right where you left off.

The Problem

Kiro's context window has limits. When it fills up, you lose all the context about what you were building — requirements, decisions, progress, what's done, what's next. Starting a new session means re-explaining everything from scratch.

How It Works

Each feature you're working on gets a dedicated folder with structured markdown files:

~/.kiro-buddy/features/user-auth/
├── requirements.md   # what you're building
├── progress.md       # what's done, what's left
├── notes.md          # decisions, gotchas, freeform notes
├── sessions.md       # timestamped session history
├── dependencies.md   # blocked-by / blocks
├── steering.md       # auto-generated context for Kiro
└── snapshots/        # progress checkpoints

When you start a new Kiro session, kiro-buddy detects your active feature (via git branch or explicit selection) and feeds the context back to Kiro automatically.

Installation

npm install -g kiro-buddy --registry https://registry.npmjs.org

Quick Start

# Create a new feature
kiro-buddy new "user-auth" --desc "Add login and signup endpoints"

# Check current status
kiro-buddy status

# Switch between features
kiro-buddy switch "user-auth"

# Log progress during a session
kiro-buddy log "Added JWT validation middleware"

# Save a snapshot at a milestone
kiro-buddy snapshot "login endpoint working"

# End a session with a summary
kiro-buddy end "Added login endpoint, JWT validation pending"

Commands

| Command | Description | |---|---| | kiro-buddy new <name> | Create a new feature with scaffolded context files | | kiro-buddy list | List all features (active one marked with ▶) | | kiro-buddy switch <name> | Switch active feature | | kiro-buddy status | Show active feature's steering context and progress | | kiro-buddy log <entry> | Add a timestamped entry to session history | | kiro-buddy snapshot <label> | Save a checkpoint of current progress | | kiro-buddy end <summary> | End session, log summary, update steering file | | kiro-buddy template <type> | Show a prompt template (api-endpoint, bug-fix, refactor) |

MCP Integration

kiro-buddy also runs as an MCP server, so Kiro can call it directly as a tool. Add this to your Kiro MCP config:

{
  "mcpServers": {
    "kiro-buddy": {
      "command": "kiro-buddy",
      "args": ["mcp"]
    }
  }
}

This lets Kiro automatically log progress, update files, and end sessions without you running CLI commands manually.

Auto-Detection

kiro-buddy tries to detect your active feature automatically:

  1. Git branch — if you're on feat/user-auth or feature/user-auth, it maps to the user-auth feature
  2. Local marker — falls back to a .kiro-buddy-active file in your working directory

Prompt Templates

Kickstart common feature types with structured prompts:

kiro-buddy template api-endpoint   # API endpoint scaffold
kiro-buddy template bug-fix        # Bug investigation template
kiro-buddy template refactor       # Refactor planning template

License

MIT