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

kelyra

v0.1.2

Published

Governed agent execution with Strict Write Discipline, signed receipts, policy-as-code, and CI proof bundles

Readme

Kelyra

Governed agent execution for AI-assisted code changes.

Kelyra turns agent file changes into reviewable evidence: policy checks, filesystem verification, signed receipts, proof bundles, and CI gates. It can run with built-in model providers, or it can operate as a model-free verification layer for any external agent that emits structured file actions.

Why Use It

  • Verify claimed file writes against real filesystem snapshots.
  • Produce local SWD receipts for successful non-dry-run changes.
  • Sign receipts with Ed25519 keys for reviewer trust.
  • Enforce project policy for paths, test commands, write sizes, receipt signatures, and CI coverage.
  • Export portable proof bundles for audit and review.
  • Run read-only CI verification without any model API key.
  • Route external agents through the same verification boundary without sharing provider keys.

Install

npm install -g kelyra
kelyra chat

Or run without a global install:

npx kelyra@latest chat

Provider Keys

Protocol tools do not need a model key:

kelyra swd apply --stdin --json
kelyra receipts verify latest
kelyra proof share latest
kelyra verify --ci

The built-in chat and run commands need at least one provider key:

export ANTHROPIC_API_KEY="sk-ant-..."
# or
export OPENAI_API_KEY="sk-proj-..."
# or
export DEEPSEEK_API_KEY="..."

kelyra providers check

Quick Start

kelyra init
kelyra doctor
kelyra providers check
kelyra chat

Use Kelyra as a model-free verification layer for another agent:

your-agent --emit-file-actions | kelyra swd apply --stdin --json

Scaffold CI and team policy:

kelyra setup-ci --policy-template team
kelyra ci explain
kelyra verify --ci

Generate, sign, and export proof:

kelyra receipts keygen
kelyra receipts sign latest
kelyra proof export latest
kelyra proof share latest

Publish a local receipt to a hosted Kelyra API that you operate:

export KELYRA_API_URL="https://kelyra.example"
export KELYRA_API_SECRET="..."
kelyra receipts publish latest

Core Commands

| Command | Purpose | | --- | --- | | kelyra init | Scaffold .kelyraignore, MEMORY.md, project policy, agent manifest, and skill directories | | kelyra doctor | Check local setup, providers, receipts, CI, policy, and hosted API readiness | | kelyra providers check | Show whether protocol tools and chat/run are ready | | kelyra ci explain | Explain why the current diff would pass or fail Kelyra CI | | kelyra chat | Interactive model session with SWD verification | | kelyra run | One-shot model task with the same verification pipeline | | kelyra swd apply | Model-free external-agent file action verification | | kelyra receipts | List, inspect, verify, sign, publish, and chain SWD receipts | | kelyra policy | Validate and scaffold project policy templates | | kelyra proof | Export, inspect, or create static share pages for portable proof bundles | | kelyra manifest | Manage external-agent identity metadata | | kelyra migrate | Import compatible SWD router artifacts into .kelyra/ | | kelyra setup-ci | Scaffold GitHub Actions verification | | kelyra verify --ci | Read-only PR/diff verification without a model key | | kelyra mcp | Expose SWD and proof tools over MCP stdio | | kelyra mcp config | Print paste-ready MCP client config for generic, Claude, or Cursor clients | | kelyra skills | List, inspect, create, and validate project, global, and official skill packs | | kelyra learn | Generate a repo-local skill from deterministic project signals |

PR-ready receipt summary:

kelyra receipts show latest --markdown

MCP client config:

kelyra mcp config cursor --json

Local Files

Kelyra stores project state under .kelyra/:

  • .kelyra/policy.json
  • .kelyra/receipts/
  • .kelyra/proofs/
  • .kelyra/agent-manifest.json
  • .kelyra/skills/

User-global state is stored under ~/.kelyra/.

Official Skills

Kelyra ships with official SKILL.md rule packs under skills/official/. They are loaded by name when no project-local or user-global skill with the same id exists.

kelyra skills
kelyra skills show frontend-polish
kelyra run --file TASK.md -s repo -s security-review

Bundled skills include repo, security-review, frontend-polish, protocol-audit, ci-hardening, docs-release, agent-proof, token-launch, smart-contract-review, and console-product-review.

Docs

Development

npm install
npm run build
npm test

Node.js 20+ is required. SQLite-backed telemetry, cache, and memory-index features work best on Node.js 22.5+ and safely degrade on older supported versions.

License

MIT