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

@qlucent/fishi-governance

v0.1.1

Published

Governance plugin for Claude Code — blocks destructive agent operations and logs an audit trail. Works with any framework.

Readme

@qlucent/fishi-governance

Governance plugin for Claude Code — blocks destructive agent operations and logs an audit trail.

Works alongside any framework: Ruflo, BMAD, Oh-My-ClaudeCode, or raw Claude Code.

Why?

AI agents are deleting production files, force-pushing to main, and overwriting .env files — right now, today. This plugin stops that.

Before fishi-governance:

Agent: "Let me clean up the project..."
> rm -rf migrations/    ← your database migrations, gone
> git push --force origin main    ← your team's work, overwritten

After fishi-governance:

Agent: "Let me clean up the project..."
> rm -rf migrations/
[fishi-governance] BLOCKED: Recursive delete of all files in cwd
> git push --force origin main
[fishi-governance] BLOCKED: Force push to main/master

Quick Start (2 minutes)

# 1. Install the plugin
npm install -g @qlucent/fishi-governance

# 2. That's it. Start a Claude Code session.
# Destructive operations are now blocked. Audit trail is logging.

Zero configuration required. Works immediately.

What It Blocks

| Category | Examples | |----------|---------| | Filesystem destruction | rm -rf /, rm -rf *, mkfs, dd if= | | Dangerous git operations | git push --force main, git reset --hard, git clean -fd | | Database destruction | DROP TABLE, TRUNCATE TABLE, DELETE FROM (no WHERE) | | Privilege escalation | sudo, su root, chmod 777 | | Remote code execution | curl ... \| bash, wget ... \| sh | | Environment exposure | .env file overwrites, env > dumps | | System commands | shutdown, reboot, kill -9 |

Audit Trail

Every agent action is logged to .fishi/audit-log.jsonl:

{"ts":"2026-04-02T12:00:00Z","event":"blocked","tool":"Bash","command":"rm -rf migrations/","reason":"Recursive delete of all files in cwd","override":false}
{"ts":"2026-04-02T12:00:01Z","event":"allowed","tool":"Write","command":"src/index.ts","reason":"","override":false}
  • Append-only — existing entries can never be modified
  • Persists across sessions
  • Structured JSONL — easy to parse and review

Works With

  • Ruflo — governance hooks layer on top, no conflicts
  • BMAD Method — complementary: BMAD plans, FISHI governs
  • Oh-My-ClaudeCode — additive hooks, independent operation
  • Raw Claude Code — standalone protection for any project
  • Full FISHI framework — coexists with v0.20.6+

How It Works

Three Claude Code hooks, zero dependencies:

  1. SessionStart — confirms governance is active, creates .fishi/ directory
  2. PreToolUse (Bash) — checks commands against 30+ destructive patterns, blocks matches
  3. PostToolUse (Bash|Write|Edit) — logs every action to audit trail

All processing is local. Zero network calls. Zero telemetry. Zero tracking.

License

MIT