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

vibe-secure-me

v1.3.1

Published

Framework-agnostic security auditor skill for agentic AI assistants. Audits codebases against OWASP Top 10:2025, API/Mobile/CI-CD/LLM Top 10, and CWE.

Readme

Vibe Secure Me

License: MIT

Vibe Secure Me is a comprehensive, framework-agnostic security auditor skill designed for agentic AI assistants (like Claude, Gemini, Codex, and Cursor). It equips your AI coding assistant with the knowledge to audit codebases for common vulnerabilities introduced during "vibe-coding", as well as complex enterprise attack vectors across web, API, mobile, cloud, and AI platforms.

Features

  • Automated Security Scanning Simulation: Empowers your AI to act as a specialized security expert to review your architecture and code.
  • OWASP Alignment: Maps to authoritative baselines including OWASP Top 10, API Security Top 10, Mobile Top 10, and LLM Applications Top 10.
  • Deep Architectural Review: Guides the AI to look beyond surface-level issues to find broken access controls (BOLA/IDOR), business logic flaws, and race conditions.
  • Remediation Guidance: Provides concrete secure-code remediation examples without outputting exploitative payloads.

Installation

You can install this skill into your project so your AI assistant can access it.

Method 1: Manual Drop-in (Works for any AI IDE / Agent) Copy the SKILL.md contents into your AI's custom instructions file (e.g., .cursorrules, .windsurfrules, CLAUDE.md, or your agent's system prompt). Alternatively, clone this repository directly into your project's agent skills directory:

git clone https://github.com/ajibolagenius/vibe-secure-me.git .agent-skills/secure-me

Method 2: Via npm (any agent)

npx vibe-secure-me install

Installs into ~/.claude/skills/secure-me. Use --project to install into ./.claude/skills so the skill ships with a repository, --dir <path> to target another agent's skills directory, and --force to overwrite an existing copy. Remove it with npx vibe-secure-me uninstall.

Method 3: Via curl (no Node required)

curl -fsSL https://raw.githubusercontent.com/ajibolagenius/vibe-secure-me/main/install.sh | bash

This installs the pinned release, not the tip of main. SKILL.md is read as instructions by an agent, so tracking a moving branch would mean any push lands directly in your agent's context — the installer defaults to an immutable tag instead.

| Variable | Effect | | --- | --- | | SECURE_ME_REF | Install a different tag, or main to track the branch | | SECURE_ME_DIR | Install into a project, e.g. ./.claude/skills | | SECURE_ME_REPO | Install from a fork, as owner/repo |

An existing install is moved to a timestamped backup rather than overwritten; the two most recent backups are kept and older ones removed.

Method 4: Via Claude Code plugin

/plugin marketplace add ajibolagenius/vibe-secure-me
/plugin install vibe-secure-me@vibe-secure-me

Updates then arrive through /plugin update vibe-secure-me.

Method 5: Via Antigravity CLI If you are using Google Antigravity, you can install it directly as a plugin:

agy plugin install https://github.com/ajibolagenius/vibe-secure-me.git

Usage

Once installed, simply ask your agent to run a security audit using the secure-me skill. For example:

  • "Run a security audit on this project using the secure-me skill."
  • "Check the security of my authentication flow with secure-me."
  • "Audit the new payment logic and ensure there are no business logic flaws."

The agent will leverage the skill's comprehensive checklist to analyze your project's codebase, returning a prioritized list of findings ranging from Critical to Low severity.

Repository layout

plugin.json                      Antigravity plugin manifest
.claude-plugin/                  Claude Code plugin + marketplace manifests
skills/secure-me/SKILL.md        Audit methodology, severity model, output format
skills/secure-me/references/     21 on-demand deep-dive references
bin/cli.js                       npm installer
install.sh                       curl installer

SKILL.md is what the agent loads when the skill triggers. The files under references/ hold the detailed root causes and before/after remediation code, and are read on demand only for the areas an audit actually touches — that keeps the always-loaded footprint small while the depth stays available.

Development

npm test                    # verify the packaged skill and the benchmark corpus
claude plugin validate .    # check the Claude Code manifests

Benchmark suite

tests/ holds a corpus of 16 known-vulnerable cases and 4 control cases — code that superficially resembles a vulnerability but is correctly written. Control cases matter as much as detection ones: an auditor that flags everything has perfect recall and no value, so a finding raised against a control case counts as a false positive.

node tests/run.js validate            # corpus integrity (runs in CI)
node tests/run.js manifest            # emit the audit worklist for an eval run
node tests/run.js score results.json  # recall and false-positive rate

CI validates corpus integrity only. Scoring detection quality requires running an agent over the fixtures — see tests/README.md.

CI runs both on every push, plus a version-agreement check across package.json, plugin.json, and .claude-plugin/plugin.json — bump all three together when releasing. SKILL.md carries its own independent content version.

Releasing

  1. Bump the version in package.json, plugin.json, and .claude-plugin/plugin.json.
  2. Bump PINNED_REF in install.sh to match. CI fails if it drifts, so this can't be forgotten silently.
  3. Merge, then publish a GitHub release tagged v<version>.

The release triggers .github/workflows/publish.yml, which re-runs the checks and publishes to npm with provenance — a signed attestation linking the published tarball to the commit and workflow that produced it. Publishing by hand from a laptop produces no such attestation, so prefer the release flow. It requires an NPM_TOKEN secret with publish rights.

Contributing

Contributions are welcome! Please read the CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.

When adding a reference file, link it from the reference table in SKILL.mdnode bin/cli.js verify fails if SKILL.md links a file that doesn't exist, but nothing catches a file that exists and is never linked.

License

This project is licensed under the MIT License - see the LICENSE file for details.