Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

regex-builder正则表达式生成器

Agent Skill

regex-builder 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

745

周安装

32

GitHub Stars

216

下载量

261
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:regex-builder(正则表达式生成器)
来源仓库:https://github.com/mathews-tom/armory
仓库路径:skills/regex-builder
安装命令:
npx skills add https://github.com/mathews-tom/armory --skill regex-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mathews-tom/armory --skill regex-builder

简介

regex-builder 用于查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的研究类任务。
  • 通过 npx 安装,需确认权限范围和维护状态,注意可能触发联网操作。
  • 建议结合来源仓库和原始 README 核验具体用法,避免依赖未经验证的搜索结果。

SKILL.md

DEPRECATED — Modern Claude models produce accurate, well-explained regex patterns with edge-case test suites natively, including multi-language usage examples. The uplift delta from this skill approaches zero. Retained for archival reference only.

Regex Builder

Transforms matching requirements (positive and negative examples) into tested regex patterns with component-by-component explanations, capture group documentation, edge case identification, and ready-to-use code in Python and JavaScript.

Reference Files

FileContentsLoad When
references/character-classes.mdCharacter class reference, Unicode categories, POSIX classesAlways
references/quantifiers.mdQuantifier behavior, greedy vs lazy vs possessive, backtrackingPattern needs repetition
references/common-patterns.mdValidated patterns for email, URL, phone, IP, date, UUID, etc.Common validation requested
references/flavor-differences.mdSyntax differences between Python, JavaScript, PCRE, POSIXMulti-language usage needed

Prerequisites

  • Clear specification: what should match and what should not
  • Target regex flavor (Python re, JavaScript, PCRE) — defaults to Python

Workflow

Phase 1: Collect Examples

Gather positive (should match) and negative (should not match) examples:

  1. From user — Explicit examples provided
  2. From context — If the user says "match email addresses," infer standard positive and negative examples
  3. From data — If sample data is provided, identify the pattern within it

Minimum: 3 positive examples and 3 negative examples. Fewer examples risk overfitting the pattern to specific cases.

Phase 2: Infer Pattern

Analyze the examples to build a pattern:

  1. Identify fixed literals — Characters that appear in the same position across all positive examples
  2. Identify character classes — Positions where different characters appear but follow a pattern (digits, letters, alphanumeric)
  3. Identify repetition — Elements that appear a variable number of times
  4. Identify optional elements — Parts present in some positive examples but not others
  5. Identify anchoring — Must the pattern match the entire string or can it be a substring?

Phase 3: Explain Pattern

Break down the pattern into a component table:

ComponentMeaning
^Start of string
[A-Za-z]One letter (upper or lower)
\d{3,5}3 to 5 digits
$End of string

Document capture groups separately if the pattern uses them.

Phase 4: Generate Edge Cases

For every pattern, identify inputs that are likely to cause problems:

  1. Empty string — Does the pattern handle it correctly?
  2. Almost-matching strings — One character off from a valid match
  3. Boundary lengths — Minimum and maximum valid lengths
  4. Special characters — Dots, brackets, backslashes in the input
  5. Unicode — Multi-byte characters, emoji, diacritics
  6. Catastrophic backtracking — Inputs that cause exponential matching time

Phase 5: Output

Produce the pattern, explanation, test cases, and usage examples.

Output Format

## Regex Pattern: {Brief Description}

### Requirements
- **Must match:** {description of valid inputs}
- **Must reject:** {description of invalid inputs}
- **Flavor:** {Python re | JavaScript | PCRE}

### Pattern

{pattern}


### Explanation

| Component | Meaning |
| --- | --- |
| `{component}` | {what it matches and why} |

### Capture Groups

| Group | Name | Captures | Example |
| --- | --- | --- | --- |
| 1 | {name} | {what} | {example value} |

### Test Cases

| # | Input | Should Match | Reason |
| --- | --- | --- | --- |
| 1 | `{input}` | Yes | {why — happy path} |
| 2 | `{input}` | Yes | {why — boundary} |
| 3 | `{input}` | No | {why — invalid} |
| 4 | `{input}` | No | {why — near-miss} |
| 5 | `` (empty) | No | Empty input |

### Edge Cases

- {Edge case 1}: {what to watch for}
- {Edge case 2}: {what to watch for}

### Usage

**Python:**

import re

pattern = re.compile(r'{pattern}')

Match entire string

if pattern.fullmatch(text): ...

Search within string

match = pattern.search(text) if match: captured = match.group(1)

Find all matches

matches = pattern.findall(text)


**JavaScript:**

const pattern = /{pattern}/;

// Test if (pattern.test(text)) { ... }

// Match const match = text.match(pattern); if (match) { const captured = match[1]; }

// Find all const matches = [...text.matchAll(/{pattern}/g)];

Calibration Rules

  1. Correctness over cleverness. A readable, slightly longer pattern is better than

a cryptic short one. [A-Za-z0-9] is clearer than \w when you specifically mean alphanumeric without underscores.

  1. Test negatives as rigorously as positives. A pattern that matches everything

technically matches all positive examples. Negative examples prevent over-matching.

  1. Anchor when appropriate. ^\d{3}$ matches exactly 3 digits. \d{3} matches

3 digits anywhere in the string. State the anchoring intent explicitly.

  1. Avoid catastrophic backtracking. Nested quantifiers like (a+)+ cause exponential

time on non-matching input. Test with adversarial inputs.

  1. Named groups over numbered groups. (?P<year>\d{4}) (Python) or (?<year>\d{4})

(JS) is self-documenting. Use numbered groups only for simple patterns.

  1. Specify the flavor. Python re, JavaScript, and PCRE have different feature sets.

Lookaheads, lookbehinds, and Unicode support vary.

Error Handling

ProblemResolution
Insufficient examplesAsk for more. Minimum 3 positive, 3 negative.
Contradictory examplesFlag the contradiction. Ask which examples are correct.
Requirements too complex for regexSuggest a parser instead. Regex cannot handle recursive structures (nested brackets, HTML).
Pattern causes backtrackingRewrite with atomic groups or possessive quantifiers. Test with worst-case input.
Unicode requirements unclearAsk if the pattern needs to handle non-ASCII. Default to ASCII unless specified.
Multiple valid patternsPresent the simplest one. Mention alternatives if they have meaningful tradeoffs (performance vs readability).

When NOT to Build Regex

Push back if:

  • The input requires parsing a recursive grammar (HTML, JSON, nested expressions) — use a parser
  • The validation is for a standard format with a library (email validation, URL parsing) — use the standard library
  • The pattern is for security-critical input validation as the sole defense — regex is a first filter, not a security boundary
  • The user wants to modify matched content in complex ways — regex replacement has limits; suggest code instead

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.69%
按下载量换算96

Claude

31.91%
按下载量换算83

Cursor

19.33%
按下载量换算50

Gemini CLI

9.82%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills