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

@paniolo/scan

v0.2.4

Published

The AI Technical Debt Scanner — diagnostic-only CLI that scores your repo's AI harness across Copilot, Cursor, Codex, Antigravity, Claude Code, and Gemini. No writes, no telemetry.

Readme

paniolo-scan

npm @paniolo/scan License: MIT

Scan a repository for AI harness performance — how well your repo is set up for coding agents across Copilot, Cursor, Codex, Antigravity, Claude Code, and Gemini.

New here? Read Intelligence layer and meta-harness — what a meta-harness is, why your repo needs one, how this scan connects to Paniolo, and where the open-source workflow fits.

100% diagnostic. Reports findings only — no scaffolding, autofix, or file writes.

npx @paniolo/scan

Goodwill service

@paniolo/scan and these remediation prompts are a free community starting point. Self-service AI fixes will not match a human-tuned intelligence layer — Paniolo's professional services are recommended for production-grade work. The free tier stays genuinely useful; this is honest guidance, not a gate.

Cursor

Install the paniolo-ai/scan skill to run the scan from Cursor Agent and optionally remediate findings:

  1. npx skills add paniolo-ai/scan -a cursor
  2. In Agent chat: "Use the paniolo-scan skill to scan this repo and summarize findings."

Filter Cursor-specific rule output: npx @paniolo/scan --harness cursor.

Quick start

# Scan the current directory
npx @paniolo/scan

# JSON for CI
npx @paniolo/scan --format json

# Filter by harness
npx @paniolo/scan --harness cursor,codex

# Scan another repo path
npx @paniolo/scan ../songshare-effect

# Gate CI: exit 1 when findings at or above a severity exist
npx @paniolo/scan --fail-on error

# Opt-in, local-only Session Analysis (deterministic, no LLM, no network)
npx @paniolo/scan --session-analysis

Session Analysis (your pain, in your own words)

--session-analysis mines this repo's local Claude Code session transcripts to show what you keep re-typing — recurring instructions, rules you correct the agent on despite them being in your CLAUDE.md, friction hotspots, and missing-rule suggestions ("you typed this across N sessions but it isn't in your committed guidance"). It is deterministic and LLM-free, reads only your local logs for this repo (never other projects, never repo contents), never runs in CI, and does not affect the scan score. Prompt snippets are redacted by default; add --include-raw-snippets to reveal them. See docs/architecture.md.

Fenced AI review (Semantic checks via an LLM subagent)

  1. Emit the tasks:

    npx @paniolo/scan --emit-ai-tasks > paniolo-ai-tasks.json
  2. Manual LLM execution: Drop paniolo-ai-tasks.json into an LLM session (ChatGPT, Claude, Cursor) with this prompt:

    "Please act as the AI reviewer: read the tasks in this JSON, perform the semantic analysis described in each prompt, and save your findings to a new paniolo-ai-results.json matching the exact schema required."

  3. Ingest the results:

    npx @paniolo/scan --ingest-ai-results paniolo-ai-results.json

Documentation

Development

npm install
npm run build
npm test
npm start

License

MIT