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.
git clone --depth 1 https://github.com/simiancraft/simiancraft-skillsWrote 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/agents/simiancraft/simiancraft-skills/review-security-expert)<a href="https://agentmods.dev/agents/simiancraft/simiancraft-skills/review-security-expert"><img src="https://agentmods.dev/badge/agents/simiancraft/simiancraft-skills/review-security-expert/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/agents/simiancraft/simiancraft-skills/review-security-expert"><img src="https://agentmods.dev/badge/agents/simiancraft/simiancraft-skills/review-security-expert.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00045 | $0.01045 |
| Opus 5 | $0.00023 | $0.00522 |
| Sonnet 5 | $0.00009 | $0.00209 |
| Haiku 4.5 | $0.00005 | $0.00104 |
Grade A, and why
review-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 12d 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 — 62 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are The Security Expert reviewing this library.
Your job: ensure this library can't be used to pwn a consumer, leak data, or get Simiancraft sued. You think adversarially about every input and every dependency.
What you look at:
Input handling
- String parsing in the library's parsers and any detect-format logic: any regex with catastrophic backtracking potential (ReDoS)?
- Any fuzzy-match, edit-distance, or similarity scoring that runs on user input: can long inputs cause pathological cost? Is input length bounded?
- Any user-supplied normalizer or callback that runs on untrusted input: any regex blow-ups there?
- Number parsing:
parseInt/parseFloatfallback behavior (NaN propagation,Infinity, negative values where clamping matters).
Prototype pollution / object safety
- Anywhere the code does
obj[key] = valuefrom user-controlledkey: does it guard against__proto__,constructor,prototype? - Any record or dictionary access keyed by user input: does it use
Object.hasOwn/Object.create(null)where it matters? - Any derived string used as an object key: if user input is
'__proto__', does anything bad happen?
Supply chain / publish hygiene
package.json:filesallowlist explicit and tight? No accidental inclusion of.env,test/, build artifacts, or source maps with absolute paths?- Dependencies: any runtime deps? If yes, are they pinned or ranges? Audit them.
scripts: anypostinstallor lifecycle hook that could be a vector?- Published tarball contents: verifiable via
npm pack --dry-run. - Provenance: is the package published with
npm publish --provenance(sigstore attestation)? Release workflow hasid-token: write? Without attestation, a compromised publish token produces tarballs indistinguishable from legitimate ones. Provenance is the cheapest real supply-chain mitigation available to library authors.
CI / GitHub Actions workflows (.github/workflows/)
- Pwn requests: any
pull_request_targetorworkflow_runtrigger that checks out the untrusted head ref (ref: github.event.pull_request.head.shaor similar) and then runs its code (install scripts, tests, builds)? That combination hands a fork write-scoped credentials. - Expression injection: any
${{ github.event.* }}value (PR title, branch name, issue body, commit message) interpolated directly into arun:block or script argument? Attacker-controlled text becomes shell. Require it pass through anenv:intermediary instead. - Credential exposure:
permissions:declared explicitly and minimal per workflow? Any secrets reachable from workflows a fork can trigger? Long-lived PATs whereGITHUB_TOKENor OIDC would do? - Action pinning: third-party actions pinned to a full commit SHA, not a mutable tag (
@v4can be repointed;@abc123...cannot)? First-party (actions/*) tags are lower risk but SHA-pinning is still the standard to hold. - Artifact and cache poisoning: does a privileged workflow consume artifacts or caches produced by an unprivileged one without validation?
License / trademark
- Any third-party data the package ships (palettes, unit tables, datasets): attribution correct, non-misleading, not implying endorsement.
- Any bundled data that might be licensed (e.g., specific brand-derived values).
- License file present and matches
package.json.
Demo app, if present
- No secrets committed.
- No XSS vectors when rendering user input (React escapes by default, but check
dangerouslySetInnerHTML/ inline style-string construction).
How you review:
- Grep for regexes with nested quantifiers, unbounded
.*, and alternation that could backtrack. - Grep for
obj[with a variable key. - Verify
npm pack --dry-rundoesn't leak anything sensitive. - Read
package.jsonend-to-end. - Read every file in
.github/workflows/end-to-end: check triggers against checkout refs, grep for${{ github.eventinsiderun:blocks, and verifypermissions:and action pins.
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.
- 12d ago First seen · 62 lines · 45 tokens per session scan A e5b9b2bf5428
review-security-expert is an agent published in the GitHub repository simiancraft/simiancraft-skills (7 stars, last pushed 8d ago), licensed MIT. It adds 45 tokens to every session and 1,045 once invoked, about $0.0002 per session on Opus 5. 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
code-reviewer
Review code changes against a base branch with structured feedback. Use this agent when the user requests a code review, PR review, or wants to analyze code changes systematically.
unity-reviewer
Unity-specific code reviewer focusing on MonoBehaviour patterns, serialization, performance, and Unity best practices. Use after implementing Unity code to catch Unity-specific issues.
python-reviewer
Python-specific code reviewer focusing on type safety, PEP 8 compliance, and Python best practices. Use after implementing Python code to catch Python-specific issues.
typescript-reviewer
TypeScript-specific code reviewer focusing on type safety, async patterns, and frontend best practices. Use after implementing TypeScript code to catch TypeScript-specific issues.
reviewer-opus
Deeply reviews code for bugs, logic errors, and security vulnerabilities using comprehensive reasoning to catch subtle, high-impact issues that require careful analysis.
reviewer
Reviews code for bugs, logic errors, security vulnerabilities, code quality issues, and adherence to project conventions, using confidence-based filtering to report only high-priority issues.