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

skill-scanner

v1.1.0

Published

Security scanner for agent skill files - detects command injection, unsafe file operations, hardcoded secrets, and code injection risks

Readme

🔒 Skill Scanner (v1.1.0)

Enterprise-Grade Security Orchestrator for AI Agent Skills

Skill Scanner is a powerful security tool designed to protect your AI ecosystem by validating Agent Skills against advanced threats, "Shadow AI" patterns, and supply chain attacks.

NPM Version License: MIT GitHub Action


🚀 Quick Start (No Installation Needed)

You can run Skill Scanner instantly on any repository or file using npx:

# Basic scan
npx skill-scanner ./my-skills

# Scan with full Enterprise features (AI + Malware Intelligence)
export GEMINI_API_KEY="your_api_key"
npx skill-scanner ./my-skills --report --sarif

🔥 Enterprise Features

  • 🧠 AI Semantic Analysis: Uses Gemini 2.0 to detect malicious intent, data exfiltration, and Prompt Injection (Jailbreak attempts).
  • 🛡️ SARIF Support: Ready for GitHub Security Tab. Export standard reports for enterprise audit trails.
  • 📊 Risk Scoring (A-F): Instant assessment of your skill's risk level with weighted category analysis.
  • 📦 Dependency Audit: Scans package.json for deprecated, malicious, or typosquatted packages.
  • 🔗 VirusTotal Integration: Reality-check code hashes against global malware intelligence.
  • 🏷️ OWASP LLM Top 10 Mapping: Every finding is automatically mapped to industry-standard LLM risk categories.

🛠️ Usage

Installation

If you prefer to install it globally:

npm install -g skill-scanner

Advanced Scan Examples

# 1. Standard scan with Risk Assessment
skill-scanner ./skills

# 2. Automated Report generation (JSON + SARIF)
skill-scanner ./skills --report --sarif

# 3. High-Security mode (only report High/Critical)
skill-scanner ./skills --severity high

# 4. Filter specific checks
skill-scanner ./skills --checks semantic-analysis,dependency-audit

🤖 GitHub Actions Integration

Automate your security checks by adding our ready-to-use workflow. Create .github/workflows/skill-scan.yml:

uses: JonusNattapong/Skill-Scanner/.github/workflows/skill-scan.yml@main
with:
  api-key: ${{ secrets.GEMINI_API_KEY }}

This will automatically upload results to your GitHub Security results (SARIF).


🏷️ Risk Coverage

| Category | OWASP Mapping | Description | |----------|---------------|-------------| | Prompt Injection | LLM01 | Detection of jailbreak patterns and instruction overrides. | | Data Exfiltration | LLM02 | DNS tunneling, unauthorized webhooks, and credential theft. | | Supply Chain | LLM03 | Malicious dependencies and typosquatted package names. | | Excessive Agency | LLM06 | Hidden backdoors, reverse shells, and unauthorized persistence. | | Command Injection | LLM05 | Unsafe execution of system commands. |


📄 License

Distributed under the MIT License. See LICENSE for more information.


Developed by JonusNattapong for the Secure AI Future.