semgrep-rule-creator

semgrep-rule-creator is a skill for Claude Code from Dannykkh/skill-olympus. It costs 37 tokens per session (1,578 once invoked), scanned A, a copy of semgrep-rule-creator, MIT.

A guide for creating custom Semgrep rules, which are code patterns used to detect bugs, security weaknesses, or unwanted practices.

In plain words
What is it for?
Use it to write pattern-matching or data-flow checks for vulnerabilities, bug patterns, and coding standards, then test those checks.
Why use it?
It helps avoid rules that match the wrong code or miss safe and unsafe cases. Testing the rules makes their results more trustworthy.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the semgrep-rule-creator plugin — 1 skill, 1 command shipped together

Good fit Use it to write pattern-matching or data-flow checks for vulnerabilities, bug patterns, and coding standards, then test those checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dannykkh/skill-olympus/semgrep-rule-creator
Install

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.

Any agent
npx skills add Dannykkh/skill-olympus --skill semgrep-rule-creator
Clone the repo
git clone --depth 1 https://github.com/Dannykkh/skill-olympus

Made for: Claude Code.

Or install semgrep-rule-creator, the plugin that ships this one along with the rest of its 1 skill, 1 command.

Wrote 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.

agentmods badge for semgrep-rule-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/dannykkh/skill-olympus/semgrep-rule-creator/github.svg)](https://agentmods.dev/skills/dannykkh/skill-olympus/semgrep-rule-creator)
Your own site
<a href="https://agentmods.dev/skills/dannykkh/skill-olympus/semgrep-rule-creator"><img src="https://agentmods.dev/badge/skills/dannykkh/skill-olympus/semgrep-rule-creator/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.

agentmods 80×15 button for semgrep-rule-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/dannykkh/skill-olympus/semgrep-rule-creator"><img src="https://agentmods.dev/badge/skills/dannykkh/skill-olympus/semgrep-rule-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,578 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.01578
Opus 5 $0.00018 $0.00789
Sonnet 5 $0.00007 $0.00316
Haiku 4.5 $0.00004 $0.00158

Measured 6d ago against content hash 6879173cb00f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

semgrep-rule-creator 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 6d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

pattern: os.system("rm " + $VAR)
Origin

This is a copy

88% identical to semgrep-rule-creator — 11 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/semgrep-rule-creator/SKILL.md · 163 lines

How it starts

The opening of the file, as written. The whole thing — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Semgrep Rule Creator

Create production-quality Semgrep rules with proper testing and validation.

Runtime requirements: Semgrep for rule execution and web access for current official documentation.

When to Use

Ideal scenarios:

  • Writing Semgrep rules for specific bug patterns
  • Writing rules to detect security vulnerabilities in your codebase
  • Writing taint mode rules for data flow vulnerabilities
  • Writing rules to enforce coding standards

When NOT to Use

Do NOT use this skill for:

  • Running existing Semgrep rulesets
  • General static analysis without custom rules (use static-analysis skill)

Rationalizations to Reject

When writing Semgrep rules, reject these common shortcuts:

  • "The pattern looks complete" → Still run semgrep --test --config <rule-id>.yaml <rule-id>.<ext> to verify. Untested rules have hidden false positives/negatives.
  • "It matches the vulnerable case" → Matching vulnerabilities is half the job. Verify safe cases don't match (false positives break trust).
  • "Taint mode is overkill for this" → If data flows from user input to a dangerous sink, taint mode gives better precision than pattern matching.
  • "One test is enough" → Include edge cases: different coding styles, sanitized inputs, safe alternatives, and boundary conditions.
  • "I'll optimize the patterns first" → Write correct patterns first, optimize after all tests pass. Premature optimization causes regressions.
  • "The AST dump is too complex" → The AST reveals exactly how Semgrep sees code. Skipping it leads to patterns that miss syntactic variations.

Anti-Patterns

Too broad - matches everything, useless for detection:

# BAD: Matches any function call
pattern: $FUNC(...)

# GOOD: Specific dangerous function
pattern: eval(...)

Missing safe cases in tests - leads to undetected false positives:

# BAD: Only tests vulnerable case
# ruleid: my-rule
dangerous(user_input)

# GOOD: Include safe cases to verify no false positives
# ruleid: my-rule
dangerous(user_input)

# ok: my-rule
dangerous(sanitize(user_input))

# ok: my-rule
dangerous("hardcoded_safe_value")

Read the full file on GitHub · 163 lines

Files

What ships with it

5 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.

Changes

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.

  1. 6d ago First seen · 163 lines · 37 tokens per session scan A 6879173cb00f

Subscribe to this mod's changes

semgrep-rule-creator is a skill published in the GitHub repository Dannykkh/skill-olympus (5 stars, last pushed yesterday), licensed MIT. It adds 37 tokens to every session and 1,578 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). It is 88% identical to semgrep-rule-creator, differing in 11 lines, and is treated as a copy.