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

@xaccefy/pi-casefile

v0.3.1

Published

Offensive security case tracker for Pi Agent — bug bounties, CTFs, security audits

Downloads

3,042

Readme

pi-casefile

Local-first security case ledger for Pi Agent. Tracks hypotheses → confirmed findings with a hard PoC gate, SQLite storage, and an isolated PoC runner.

Install

pi install npm:@xaccefy/pi-casefile

Or via the XPI umbrella package: pi install npm:@xaccefy/pi-xpi

XP mode (default OFF)

The cyber-workflow context injection is quiet by default so normal dev work is not flooded with security process text.

| Control | Effect | |---------|--------| | /xp | Toggle ON/OFF | | /xp on / /xp off | Set explicitly | | PI_XP_MODE=on | Force ON for this process (overrides file) | | PI_XP_MODE=off | Force OFF |

When ON, every prompt injects the attacker-oriented cyber workflow plus any active (non-killed/non-reported) cases. When OFF, nothing is injected; tools remain available.

State is persisted next to the ledger as xp-mode (e.g. .pi/xp-mode).

Environment

| Variable | Purpose | |----------|---------| | PI_CASEFILE_PATH | Absolute path to the SQLite ledger file | | CASEFILE_WORKSPACE_ROOT / PI_WORKSPACE_ROOT | Override workspace root used to place .pi/casefile.db |

Default DB path: <workspace>/.pi/casefile.db

State machine

hypothesis → investigating → confirmed → reported
                 ↓               ↓
              blocked         killed (terminal)
  • investigating requires evidence + confidence
  • confirmed only via PromoteFinding (PoC exit 0) — CaseUpdate(status:"confirmed") is rejected
  • reported requires CaseReport first
  • killed / reported are terminal (no further field edits)

There is no impact_proof tool field. Put proof text in impact or evidence.

Tools

| Tool | Use | |------|-----| | CaseAdd | Open a case (title required; start as hypothesis or investigating) | | CaseUpdate | Evidence, impact, severity, status (not direct confirm) | | PromoteFinding | Run on-disk PoC (Docker sandbox by default; local:true for host) → confirm on exit 0 | | CaseGet / CaseList / CaseSearch | Read / filter / search | | CaseLink / CaseUnlink | Bidirectional exploit chains | | CaseReport | Markdown report for confirmed/reported cases |

Commands: /casefile (dashboard), /xp (XP mode).

Development

bun test packages/pi-casefile
bun run typecheck