Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/huifer/skill-security-scan/claude-mdgit clone --depth 1 https://github.com/huifer/skill-security-scanWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/huifer/skill-security-scan/claude-md)<a href="https://agentmods.dev/instructions/huifer/skill-security-scan/claude-md"><img src="https://agentmods.dev/badge/instructions/huifer/skill-security-scan/claude-md.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01490 | $0.01490 |
| Opus 5 | $0.00745 | $0.00745 |
| Sonnet 5 | $0.00298 | $0.00298 |
| Haiku 4.5 | $0.00149 | $0.00149 |
Grade A, and why
skill-security-scan CLAUDE.md scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- +0.2 if contains suspicious keywords (password, secret, eval, curl, etc.) How it starts
The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
skill-security-scan is a command-line security scanner for Claude Skills. It performs static analysis to detect security risks like data exfiltration, sensitive file access, code injection, and dangerous command execution in third-party Skills before installation.
Development Commands
Installation & Setup
# Install dependencies
pip install -r requirements.txt
# Install in development mode with dev dependencies
pip install -e ".[dev]"
Running the Scanner
# Basic scan
python -m src.cli scan /path/to/skill
# Scan with JSON output
python -m src.cli scan /path/to/skill --format json --output report.json
# Scan with custom rules
python -m src.cli scan /path/to/skill --rules custom-rules.yaml
# Scan with severity filter
python -m src.cli scan /path/to/skill --severity CRITICAL
Testing
# Run all tests
pytest tests/
# Run specific test file
pytest tests/test_skills_scanner.py
# Run with coverage
pytest tests/ --cov=src --cov-report=html
# Run specific test
pytest tests/test_skills_scanner.py::TestSkillsScanner::test_detect_network_exfiltration -v
Code Quality
# Format code with Black
black src/ tests/
# Lint with Ruff
ruff check src/ tests/
# Type check with MyPy
mypy src/
Architecture
Core Components
The scanner follows a layered architecture:
-
CLI Layer (
src/cli.py)- Entry point using Click framework
- Command parsing and user interaction
- Coordinates config loading, rule creation, scanning, and reporting
-
Configuration Layer (
src/config_loader.py)- Loads YAML configs from
config/directory - Supports multiple config paths with fallback
- Loads rules and whitelist
- Loads YAML configs from
-
Business Logic Layer
RulesFactory(src/rules_factory.py): Instantiates rule objects from configSecurityDetector(src/scanner/detector.py): Main controller coordinating scan workflow
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 184 lines · 1,490 tokens per session scan A 594cdb72a225
skill-security-scan CLAUDE.md is an instructions file published in the GitHub repository huifer/skill-security-scan (169 stars, last pushed 8mo ago), licensed MIT. It adds 1,490 tokens to every session, about $0.0075 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
ai-toolkit AGENTS.md
AGENTS.md instructions for pipefy/ai-toolkit, covering repository guidelines, documentation map, project structure, import namespace migration: pipefysdk → pipefy and src/pipefysdk/init.py (transitional shim).
superpowers-reasonix AGENTS.md
Instructions for christopherarter/superpowers-reasonix, covering project guidance, skills — stop. load a skill before you act, red flags — these thoughts mean stop. you are rationalizing and priority.
ai-mind AGENTS.md
AGENTS.md instructions for HWYD/ai-mind, covering agents, version spec workspace continuity (mandatory), 项目定位, 事实来源优先级 and 开始大改前先读什么.
vvvv-skills CLAUDE.md
Claude Code instructions for tebjan/vvvv-skills, covering vvvv gamma, when to patch vs code, core concepts, live environment and important conventions.
pi AGENTS.md
AGENTS.md instructions for counterposition/pi, covering agents.md, commands, pattern: pnpm --filter @counterposition/pi-web-search run, single test file and single test by name.
SciCrucible CLAUDE.md
Claude Code instructions for Xinyang-Li666/SciCrucible, covering 科学知识库, 知识库结构, 可用命令, 项目目录 and 工作原则.