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

kilo-openspec-libretto

v0.1.2

Published

A Kilo Code / Kilo CLI plugin that packages the OpenSpec spec-driven development workflow into a single installable package: a libretto orchestrator agent, 2 subagents, and 8 skills. Depends on the @fission-ai/openspec CLI.

Readme

kilo-openspec-libretto

license

A Kilo Code / Kilo CLI plugin that packages the OpenSpec spec-driven development workflow into a single installable package, exposing a libretto orchestrator agent that drives explore → propose → apply → verify → sync → archive.

Prerequisites

  • Node.js ≥ 18
  • OpenSpec CLI: npm install -g @fission-ai/openspec (libretto depends on it at runtime for validation, status, and archiving)

Installation

Two steps required. Step ① installs the CLI binary; step ② installs the agents and skills into Kilo.

Step ① — Install the CLI:

npm install -g kilo-openspec-libretto

Step ② — Install into Kilo:

kilo-openspec-libretto install

Step ③ — Restart Kilo (fully quit and reopen; Reload Window in VS Code).

After this, libretto appears in the agent picker — pick it to enter the OpenSpec workflow.

Step ④ — Initialize OpenSpec in your project (per-project, once):

cd your-project
openspec init --tools none

💡 --tools none skips per-tool skill/command generation. openspec 1.6.0's adapters (e.g. kilocode) still write into .kilocode/skills/, but kilo CLI ≥ 7.4 (post-opencode refactor) no longer scans that directory — those files would be dead writes. libretto already provides its own prefixed skills (libretto-*) under ~/.kilo/skills/libretto/, so we only need the openspec/ workspace (config + changes/ + specs/).

What gets installed

  • 8 skills under the libretto namespace (junction at ~/.kilo/skills/libretto): core, explore, propose, apply-change, sync-specs, archive-change, verify-change, handoff.
  • 3 agents: libretto (primary orchestrator), libretto-apply (implementation subagent), libretto-verify (verification subagent).

CLI usage

kilo-openspec-libretto <command>

Commands:
  install     Install skills and agents (default)
  uninstall   Remove everything this package installed (manifest-based)
  update      Re-run install (idempotent)

Options:
  -v, --version    Show version
  -h, --help       Show help

Environment variables

| Variable | Purpose | |---|---| | KILO_HOME=<path> | Override user home (for testing) | | KILO_LIBRETTO_SKIP_OPENSPEC_CHECK=1 | Skip openspec CLI detection | | KILO_LIBRETTO_DRY_RUN=1 | Print actions without modifying | | KILO_LIBRETTO_VERBOSE=1 | Verbose logging (stderr) |

Update & uninstall

npm update -g kilo-openspec-libretto   # upgrade package
kilo-openspec-libretto update          # re-sync to Kilo (idempotent)

kilo-openspec-libretto uninstall       # remove artifacts
npm uninstall -g kilo-openspec-libretto

Development

node --test     # zero-dependency tests
npm pack        # inspect the tarball

Documentation

License

MIT — see LICENSE. libretto's skills/agents/installer are original work. Runtime depends on @fission-ai/openspec (MIT).