RegexAssistant

PassAudited by ClawScan on May 1, 2026.

Overview

RegexAssistant is a coherent local regex testing helper with no evidence of network access, credential use, persistence, or destructive behavior.

This skill appears safe for local regex testing. Avoid pasting highly sensitive text unless needed, and be cautious with very large inputs or unfamiliar regex patterns 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 pathological regex or very large input could slow or hang the local agent session, but there is no evidence of data theft or system modification.

Why it was flagged

The skill intentionally evaluates user-provided regular expressions against user-provided text using Python's re module. This is purpose-aligned, but the artifacts do not show timeout or input-size limits.

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

Use bounded input sizes and avoid running unknown complex regex patterns on large text; adding a timeout or length limit would make the helper more robust.