RegexTester

PassAudited by ClawScan on May 1, 2026.

Overview

RegexTester appears to be a straightforward local regex-testing helper with no network access, credentials, persistence, or destructive behavior shown.

This skill looks safe for local regex testing. Avoid pasting secrets unless you are comfortable with them being echoed in the agent output, and be cautious with very large text or complex regexes that may run slowly.

Findings (1)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A poorly chosen regex or very large text could make the local command slow or temporarily hang, although this behavior is central to a regex-testing tool.

Why it was flagged

The script directly evaluates user-provided regex patterns and text using Python's regex engine, with no visible timeout or input-size guard.

Skill content
match_parser.add_argument("pattern", help="正则表达式") ... result = re.search(pattern, text, flags)
Recommendation

Use reasonably sized inputs, avoid known catastrophic-backtracking patterns, and consider adding time or length limits if this skill will process untrusted large text.