super-speedy-syslog-searcher: Skill for Claude Code

.claude/skills/ere-regex-increment/SKILL.md

ere-regex-increment is a skill for Claude Code from jtmoon79/super-speedy-syslog-searcher. It costs 58 tokens per session (734 once invoked), scanned A, original, MIT.

A procedure for renumbering paired date-and-time regular-expression declarations in a Rust source file. Regular expressions are text patterns used to recognize formats such as dates.

In plain words
What is it for?
Incrementing or shifting regex IDs, preserving other configuration selectors, checking continuity, and updating the related maximum-length constant.
Why use it?
It keeps configuration identifiers, macro arguments, and the maximum identifier count aligned after a pattern is inserted or shifted.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

This is jtmoon79/super-speedy-syslog-searcher's own configuration. It tells Claude Code how to work on super-speedy-syslog-searcher itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything super-speedy-syslog-searcher configures →

Reuse

Borrowing it

Nothing to install: this file belongs to jtmoon79/super-speedy-syslog-searcher. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/jtmoon79/super-speedy-syslog-searcher/main/.claude/skills/ere-regex-increment/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jtmoon79/super-speedy-syslog-searcher

Made for: Claude Code.

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 ere-regex-increment

README.md
[![agentmods](https://agentmods.dev/badge/skills/jtmoon79/super-speedy-syslog-searcher/ere-regex-increment/github.svg)](https://agentmods.dev/skills/jtmoon79/super-speedy-syslog-searcher/ere-regex-increment)
Your own site
<a href="https://agentmods.dev/skills/jtmoon79/super-speedy-syslog-searcher/ere-regex-increment"><img src="https://agentmods.dev/badge/skills/jtmoon79/super-speedy-syslog-searcher/ere-regex-increment/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 ere-regex-increment

Your own site · 80×15
<a href="https://agentmods.dev/skills/jtmoon79/super-speedy-syslog-searcher/ere-regex-increment"><img src="https://agentmods.dev/badge/skills/jtmoon79/super-speedy-syslog-searcher/ere-regex-increment.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 734 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found 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.00058 $0.00734
Opus 5 $0.00029 $0.00367
Sonnet 5 $0.00012 $0.00147
Haiku 4.5 $0.00006 $0.00073

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

Security

Grade A, and why

ere-regex-increment 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 11d 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.

.claude/skills/ere-regex-increment/SKILL.md · 76 lines

How it starts

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

ERE Regex Increment

Use this skill to renumber ERE_REGEX_DATETIME! declarations in subprojects/ere/ere_datetimes_impl/src/ere_datetimes_impl.rs when a new datetime regex is inserted or an existing run needs to shift.

The workflow updates the declaration identifier, not datetime test expectations or match offsets.

Target Pattern

Each declaration has two paired identifiers that must stay equal:

#[cfg(any(regex = "N", regex = "ALL"))]
ERE_REGEX_DATETIME!(
    N,
    counter!(DP_KEY),
    // ...
)

Some declarations include extra cfg selectors, such as regex = "TEST". Preserve all non-numeric selectors and only change the numeric regex id for the declaration being renumbered.

Preflight

  1. Read the target area in subprojects/ere/ere_datetimes_impl/src/ere_datetimes_impl.rs.
  2. Identify the exact starting declaration from the user's line number, regex id, nearby comment, or example text.
  3. If the same numeric id appears more than once near the start point, use the line number or surrounding comment to choose the intended declaration. Ask a short clarification only if the start declaration is genuinely ambiguous.
  4. Determine the increment amount. Default to +1 when the user says increment, shift, bump, or make room.
  5. Find the last declaration in the affected run and the current value of DATETIME_PARSE_DATAS_LEN_MAX.

Edit Rules

For each affected ERE_REGEX_DATETIME! declaration, update exactly these values in lockstep:

  1. The numeric regex = "N" selector inside the immediately preceding #[cfg(any(...))] attribute.
  2. The first numeric argument inside the immediately following ERE_REGEX_DATETIME! invocation.

Do not change:

  • Test-vector tuple values inside the &[...] examples.
  • Date, time, offset, or expected parse tuple values.
  • Comments, examples, declaration order, or regex pattern text.
  • Other cfg selectors such as regex = "ALL" or regex = "TEST".
  • Unrelated numeric literals in the macro body.

If the final declaration id changes, update DATETIME_PARSE_DATAS_LEN_MAX to the new highest declaration id.

Read the full file on GitHub · 76 lines

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. 11d ago First seen · 76 lines · 58 tokens per session scan A 44b23970a791

Subscribe to this mod's changes

ere-regex-increment is a skill published in the GitHub repository jtmoon79/super-speedy-syslog-searcher (59 stars, last pushed 3d ago), licensed MIT. It adds 58 tokens to every session and 734 once invoked, about $0.0003 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.