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/pezhik/skilltotal/claude-mdgit clone --depth 1 https://github.com/pezhik/skilltotalWrote 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/pezhik/skilltotal/claude-md)<a href="https://agentmods.dev/instructions/pezhik/skilltotal/claude-md"><img src="https://agentmods.dev/badge/instructions/pezhik/skilltotal/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.03300 | $0.03300 |
| Opus 5 | $0.01650 | $0.01650 |
| Sonnet 5 | $0.00660 | $0.00660 |
| Haiku 4.5 | $0.00330 | $0.00330 |
Grade A, and why
skilltotal CLAUDE.md scanned grade A with 2 findings 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 3d 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.
not flag its own pattern literals, a README's example attack, a `# Usage: curl|bash` comment, or a Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
targeted JSON/markdown parsing. (Security hooks may flag `eval`/`os.system` in scanner How it starts
The opening of the file, as written. The whole thing — 203 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
SkillTotal is an AI Component Security Platform — a CLI engine that statically analyzes AI-related components (skills, plugins, MCP servers, npm/Python packages, repos) for supply-chain risks, dangerous capabilities, prompt-injection surfaces, and exfiltration paths. This phase is CLI-only, but the core is built to be reused by future web/SaaS products.
Commands
# Install (editable) + dev deps
pip install -e ".[dev]"
# Run the full test suite (pytest config lives in pyproject.toml; addopts = -q)
pytest
# Run one test file / one test
pytest tests/test_scoring.py
pytest tests/test_scoring.py::test_combo_rule_fires_when_fs_and_network_present
# Security checks (required on every change — see memory + SECURITY.md)
bandit -r skilltotal # static security scan (clean = exit 0)
pre-commit install # once: enables gitleaks/detect-secrets/ruff/bandit on commit
# Run the CLI (console script or module form — identical)
skilltotal scan <path-or-url> [--json | --sarif] [--output FILE] [--fail-on-high]
skilltotal scan <path-or-url> [--baseline FILE | --write-baseline FILE]
skilltotal rules list [--json]
python -m skilltotal scan <path-or-url>
Zero runtime dependencies (Python stdlib only); dev deps (pip install -e ".[dev]")
cover testing/lint/security/build. Requires Python 3.10+. git is required only for scanning
remote URLs. Secret-leak defense is layered: pre-commit (gitleaks/detect-secrets) → CI
secrets job (gitleaks) → GitHub push protection → OIDC publishing (no stored tokens); see
SECURITY.md.
On Windows PowerShell, do not pipe between two python processes (encoding corruption);
use a script file or one process.
Non-negotiable invariants
These define the product and are enforced in code — preserve them in any change:
- Every confirmed
Findingcarries evidence.Finding.__post_init__(models.py) raises ifevidenceis empty. Signals that cannot be anchored to a file/line/snippet must be emitted asNeedsReview, never asFinding, andNeedsReviewnever affects the score. - Component-only analysis. Derive everything from files inside the component — never from user/company/environment/deployment/runtime context.
- Never execute analyzed code, never call an LLM. Detection is deterministic regex +
targeted JSON/markdown parsing. (Security hooks may flag
eval/os.systemin scanner regexes — those are detection string literals, not calls.) - Interpret evidence only. Descriptions may explain what a matched API does ("child_process.exec enables shell execution"); they must not assert unproven intent ("this steals secrets").
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.
- 3d ago First seen · 203 lines · 3,300 tokens per session scan A 545d25343930
skilltotal CLAUDE.md is an instructions file published in the GitHub repository pezhik/skilltotal (1 stars, last pushed 8d ago), licensed Apache-2.0. It adds 3,300 tokens to every session, about $0.0165 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
helm-ai-kernel AGENTS.md
AGENTS.md instructions for Mindburn-Labs/helm-ai-kernel, covering agent operational guidelines for helm-ai-kernel, developer runbook and governance & rules.
ai-appsec AGENTS.md
Instructions for subodhkc/ai-appsec, covering agents.md — haiec agent security mcp (phase -1 → phase 18), 1. workspace layout, 2. architectural principles (apply to every phase), 3. hard constraints (never violate) and 4. phase discipline.
MCP-Sentinel AGENTS.md
Instructions for BashaarJavaid/MCP-Sentinel, covering agents.md, project, where things live, conventions and commands.
gauntlex AGENTS.md
AGENTS.md instructions for sanjoy1234/gauntlex, covering agents.md, what this project is, setup, running the test suite and key cli commands an agent will typically need.
vellaveto CLAUDE.md
Claude Code instructions for paolovella/vellaveto, covering claude.md — vellaveto project instructions, mission, current 2026 execution priorities, before every session and architecture.
jakk CLAUDE.md
Claude Code instructions for akar5h/jakk, covering jakk — agent guidance, repo orientation, probe library policy (load-bearing), active project — fastmcp ecosystem audit and engineering conventions.