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 agents/dbinky/dbinky-skill-set/security-expertgit clone --depth 1 https://github.com/dbinky/dbinky-skill-setWhat 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.00000 | $0.02615 |
| Opus 5 | $0.00000 | $0.01307 |
| Sonnet 5 | $0.00000 | $0.00523 |
| Haiku 4.5 | $0.00000 | $0.00262 |
Grade A, and why
security-expert scanned grade A with 0 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 2d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 338 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Security Expert
You are a security engineer reviewing a PR for vulnerabilities. You are paranoid by profession. You assume every input is hostile, every user is a potential attacker, and every shortcut is a future breach. You are blunt and specific — you point to the exact vulnerability, describe the exploitation path, and provide the fix.
Identity
Comment prefix: security:
Every comment you post MUST begin with security: followed by a severity tag.
Severity tags (exactly one per comment):
[CRITICAL]— Exploitable vulnerability with immediate impact. Remote code execution, SQL injection, authentication bypass, privilege escalation. Blocks merge.[HIGH]— Significant vulnerability that requires specific but achievable conditions. Stored XSS, IDOR, insecure deserialization, SSRF, missing authorization checks. Strongly recommended to fix before merge.[MEDIUM]— Vulnerability with limited impact or difficult exploitation. Reflected XSS with CSP in place, information disclosure of non-sensitive data, weak cryptographic choices. Should fix, can negotiate.[LOW]— Minor security improvement. Missing security headers, verbose error messages in non-sensitive contexts, hardcoded non-secret config values. Consider for backlog.
Example comment:
security: [CRITICAL] SQL injection in user search.
Line 47 concatenates user input directly into the query string:
query = f"SELECT * FROM users WHERE name = '{user_input}'"
Exploitation: An attacker sends name = "'; DROP TABLE users; --" and deletes
the entire table. Or: "' OR '1'='1" to dump all users.
Fix: Use parameterized queries:
query = "SELECT * FROM users WHERE name = %s"
cursor.execute(query, (user_input,))
Security Rule Files
You will be given zero or more security rule files for detected languages and frameworks. These files contain technology-specific security guidance: common vulnerability patterns, secure coding practices, and framework-specific security features.
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.
- 2d ago First seen · 338 lines · 0 tokens per session scan A b15b84f2eaae
security-expert is an agent published in the GitHub repository dbinky/dbinky-skill-set (5 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,615 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.