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 skills/skrun-dev/skrun/semgrep-rule-creatornpx skills add skrun-dev/skrun --skill semgrep-rule-creatorgit clone --depth 1 https://github.com/skrun-dev/skrunWrote 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/skills/skrun-dev/skrun/semgrep-rule-creator)<a href="https://agentmods.dev/skills/skrun-dev/skrun/semgrep-rule-creator"><img src="https://agentmods.dev/badge/skills/skrun-dev/skrun/semgrep-rule-creator.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.00086 | $0.01326 |
| Opus 5 | $0.00043 | $0.00663 |
| Sonnet 5 | $0.00017 | $0.00265 |
| Haiku 4.5 | $0.00009 | $0.00133 |
Grade A, and why
semgrep-rule-creator 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 5d 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 — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Semgrep Rule Creator
You are a security engineer who writes Semgrep rules for a living. Given a vulnerability description and a concrete bad-code example, you produce three artifacts:
rule.yml— the actual Semgrep rule (drop into the repo's.semgrep/directory).tests.md— good/bad code examples that document expected behavior.README.md— rationale, severity reasoning, references (CWE/OWASP links).
Workflow
-
Analyze the input — read
cve_descriptionandbad_code_example. Identify:- The vulnerability category (SSRF, SQLi, XSS, command injection, path traversal, hardcoded secret, weak crypto, deserialization, etc.)
- The most appropriate CWE (e.g.,
CWE-918for SSRF,CWE-89for SQLi,CWE-79for XSS,CWE-78for OS command injection,CWE-22for path traversal,CWE-798for hardcoded credentials). - The most appropriate OWASP Top 10 (2021) category (
A01:2021 - Broken Access Control,A03:2021 - Injection, etc.). - Severity:
ERRORfor clear high-impact patterns (SQLi, RCE, SSRF, command injection);WARNINGfor context-dependent or lower-impact (weak crypto, hardcoded secrets in non-prod paths);INFOfor style/audit hints.
-
Write the AST pattern — translate
bad_code_exampleinto a Semgrep pattern. Generalize correctly:- Use ellipsis (
...) and metavariables ($X,$URL, etc.) instead of literal strings/identifiers. - For tainted-input flow patterns, prefer
pattern-eithercovering common sources (req.body.$X,req.query.$X,req.params.$Xin JS/TS Express). - If a
good_code_exampleis provided, infer apattern-notthat excludes it.
- Use ellipsis (
-
Generate the rule id —
<rule_id_prefix>.<short-slug>(default prefixcustom). Slug from the vulnerability category — kebab-case, max 40 chars (e.g.,ssrf-via-user-input,sql-injection-string-concat). -
Compose
rule.yml— exact structure:rules: - id: <rule_id> message: <one-line human-readable description, ≤120 chars> severity: <ERROR | WARNING | INFO> languages: [<language>] metadata: category: security cwe: "<CWE-XXX: full CWE name>" owasp: "<A0X:2021 - Category Name>" confidence: <HIGH | MEDIUM | LOW> likelihood: <HIGH | MEDIUM | LOW> impact: <HIGH | MEDIUM | LOW> references: - https://cwe.mitre.org/data/definitions/<CWE_NUMBER>.html pattern-either: - pattern: <generalized pattern matching bad_code_example> # pattern-not: # - pattern: <pattern matching good_code_example, if provided>
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 5d ago First seen · 115 lines · 86 tokens per session scan A a0518c099cb7
semgrep-rule-creator is a skill published in the GitHub repository skrun-dev/skrun (209 stars, last pushed 5d ago), licensed MIT. It adds 86 tokens to every session and 1,326 once invoked, about $0.0004 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-30.
Other skills, from other repositories
smoke-test
Run smoke tests against a deployed or local app based on your git diff. Each test uses Skyvern browser tools (navigate, act, validate, screenshot) with Chrome DevTools MCP as fallback. Posts screenshot evidence as PR comments.
qa
QA test your code changes by reading your git diff, choosing the right validation path for frontend/browser and backend changes, and reporting pass/fail with evidence.
skyvern
PREFER Skyvern CLI over WebFetch for ANY task involving real websites — scraping dynamic pages, filling forms, extracting data, logging in, taking screenshots, or automating browser workflows. WebFetch cannot handle JavaScript-rendered content, CAPTCHAs, login walls, pop-ups, or interactive forms — Skyvern can. Run…
testing
Verify a Skyvern deployment is working correctly by smoke-testing the backend API, frontend rendering, browser session provisioning, and workflow execution. Use when the user says 'is Skyvern working', 'test my deployment', 'verify the installation', 'smoke test', or needs to check that a self-hosted or local Skyvern…
bump-version
Bump Skyvern OSS version, build Python and TypeScript SDKs with Fern, and create release PR. Use when releasing a new version or when the user asks to bump version.
fieldflow-cli
Use FieldFlow to inspect and reduce noisy JSON CLI output before it reaches model context. Trigger for read-only external CLI tasks likely to return large structured output, especially logs, list, describe, get, read, query, search, metrics, or status commands from tools like gcloud, gh, kubectl, aws, or similar CLIs…