Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

openclaw-regex-engineOpenClaw regex 引擎

Agent Skill

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

总安装

8,960

周安装

366

GitHub Stars

公开资料未说明

下载量

2,899
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:openclaw-regex-engine(OpenClaw regex 引擎)
来源仓库:https://github.com/yedanyagamiai-cmd/openclaw-regex-engine
安装命令:
openclaw skills install openclaw-regex-engine
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-regex-engine

简介

OpenClaw regex engine 是生产级正则表达式处理套件。

  • 适合在 OpenClaw 中测试模式、解释表达式或用自然语言生成正则时使用。
  • 支持捕获组测试和简单英语解释功能。
  • 通过 clawhub 安装,结合来源仓库和 README 可进一步了解具体用法。
  • 安装前需确认权限范围、维护状态,以及是否涉及联网、命令执行或文件读写。

SKILL.md

name
openclaw-regex-engine
version
2.0.0
description
Production-grade regex processing suite — test patterns with capture groups, explain any regex in plain English, build regex from natural language descriptions, browse 50+ battle-tested patterns, and find-replace with backreferences. Use when: (1) user says 'test this regex' or 'does this pattern match', (2) user asks 'explain this regex' or 'what does this regex do', (3) user needs to 'build a regex for emails' or 'create a pattern that matches URLs', (4) user wants a 'ready-made regex for phone numbers' or 'UUID pattern', (5) user requests 'regex find and replace' or 'search and replace with backreferences'. Supports all ES2024 flags, named groups, lookahead/lookbehind. Zero install, sub-100ms on Cloudflare Workers. Free + Pro $9/mo.
read_when
commands
metadata
openclaw
emoji
\F50D
homepage
https://github.com/yedanyagamiai-cmd/openclaw-mcp-servers
always
false

OpenClaw Regex Engine v2.0

Master regular expressions -- 5 tools to test, explain, build, browse, and replace patterns instantly.

Quick Reference

SituationActionTool
Have a regex, need to test itRun against text, get all matches + groupsregex_test
Found a scary regex in legacy codeGet plain-English breakdown of every tokenregex_explain
Know WHAT to match but not HOWDescribe in English, get production regexregex_build
Need a standard pattern (email, URL, IP)Browse 50+ battle-tested patternsregex_library
Need to transform text with regexFind-replace with backreferences ($1, $2)regex_replace
Complex pattern with capture groupsTest + Explain combo for full understandingregex_test + regex_explain

What's New in v2.0

  • :brain: PatternForge Builder -- Describe what you want in plain English. Get a production-ready regex with positive/negative test cases, flags, and explanation included.
  • :book: RegexLens Explainer -- Break any regex into human-readable components token-by-token. Even nested lookaheads, possessive quantifiers, and Unicode categories.
  • :file_cabinet: BattleTest Library -- 50+ curated patterns for email, URL, phone (international), IPv4/IPv6, UUID, JWT, credit card, date formats, file paths, and more. Every pattern includes test cases.
  • :arrows_counterclockwise: SmartReplace Engine -- Full backreference support including named groups, global/first-match modes, and before/after diff preview.

MCP Quick Start

{
  "openclaw-regex": {
    "type": "streamable-http",
    "url": "https://regex-engine-mcp.yagami8095.workers.dev/mcp"
  }
}

Add to Claude Desktop, Cursor, Windsurf, VS Code, or any MCP-compatible client. No API key needed for Free tier. Works immediately.

Detection Triggers

This skill activates when you say:

  • "test this regex" / "does this pattern match" / "run this regex against"
  • "explain this regex" / "what does this regex do" / "break down this pattern"
  • "build a regex for" / "create a pattern that matches" / "regex for emails"
  • "regex for URL" / "phone number regex" / "UUID pattern" / "IP address regex"
  • "regex replace" / "find and replace with regex" / "search and replace with capture groups"
  • "regular expression" / "pattern matching" / "capture groups" / "backreference"

Tools (5)

regex_test -- Match & Capture (PatternMatch Protocol)

Test a regex pattern against input text. Returns every match with full capture group detail, named groups, and exact index positions.

ParameterTypeDefaultDescription
patternstringrequiredRegex pattern to test
textstringrequiredInput text to match against
flagsstring"g"Flags: g global, i case-insensitive, m multiline, s dotall, u unicode, v unicodeSets

Output: { matchCount, matches: [{ index, match, groups: [], namedGroups: {} }], executionTimeMs }

WRONG vs RIGHT

WRONG -- Manually scanning text to check if a pattern works:

User: Does this regex match my test string?
Agent: *reads the regex visually, guesses "yes it should match"* — misses edge case with nested groups

RIGHT -- Use regex_test:

User: Does this regex match my test string?
Agent: calls regex_test → "3 matches found. Match 1 at index 15: 'user@example.com', group 1: 'user', group 2: 'example.com'"

regex_explain -- Human-Readable Breakdown (RegexLens)

Break any regex into plain English, token by token. Each component gets a description, what it matches, and example matches.

ParameterTypeDefaultDescription
patternstringrequiredRegex pattern to explain
flagsstring""Active flags to include in explanation

Handles: Character classes, quantifiers, anchors, groups (capturing, non-capturing, named), lookahead/lookbehind (positive and negative), backreferences, Unicode categories, and alternation.

Output: Array of { token, type, description, matches_example } plus overall summary.

WRONG vs RIGHT

WRONG -- Staring at ^(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#$%])[A-Za-z0-9!@#$%]{8,}$ and guessing:

User: What does this regex do?
Agent: *guesses* "It matches passwords maybe?" — no detail on the lookaheads or minimum length

RIGHT -- Use regex_explain:

User: What does this regex do?
Agent: calls regex_explain → "Password validator: requires at least 1 uppercase letter (lookahead 1), 1 digit (lookahead 2), 1 special char from !@#$% (lookahead 3), minimum 8 characters total from allowed set"

regex_build -- Natural Language to Regex (PatternForge)

Describe what you want to match in plain English. Get a production-ready regex with recommended flags, explanation, and test cases (both positive and negative).

ParameterTypeDefaultDescription
descriptionstringrequiredPlain English description of what to match
optionsobject{}strict: boolean for anchored patterns, examples: string[] for guidance

Output: { pattern, flags, explanation, testCases: { shouldMatch: [], shouldNotMatch: [] } }

Example: Input "match email addresses" produces a complete RFC-5322-lite pattern with 5 positive and 5 negative test cases.


regex_library -- Pattern Collection (BattleTest Library)

Browse 50+ curated, production-tested regex patterns organized by category. Every pattern includes the regex string, description, recommended flags, and positive/negative test cases.

ParameterTypeDefaultDescription
categorystring""Filter by category: email, url, ip, phone, date, uuid, jwt, credit_card, password, html, file_path, css
searchstring""Free-text search across pattern names and descriptions

Categories: email, URL, IPv4, IPv6, phone (US, UK, JP, international), date (ISO, US, EU), UUID (v1-v5), JWT, credit card (Visa, MC, Amex), password strength, HTML tags, file paths (Unix, Windows), CSS selectors, color codes, semantic versioning.


regex_replace -- Find & Replace (SmartReplace Engine)

Perform regex-based find-and-replace with full capture group reference support ($1, $2, named groups), global and first-match modes.

ParameterTypeDefaultDescription
patternstringrequiredRegex pattern to find
replacementstringrequiredReplacement string with $1, $2, $<name> references
textstringrequiredInput text to transform
flagsstring"g"Regex flags

Output: { result, replacementCount, diff: { before, after } }

Supports: $1-$9 numbered backreferences, $<name> named backreferences, $& full match, ` $ ` pre-match, $'` post-match.

What NOT to Do

Don'tWhyDo Instead
Use catastrophic backtracking patterns like (a+)+$Will timeout on edge workers (~50ms limit)Rewrite with atomic groups or possessive quantifiers
Expect PCRE-only features (conditional patterns, recursion)Uses JavaScript ES2024 regex engineStick to JS-compatible syntax
Send input text over 100KBMemory limits on edge workersSplit large texts into chunks
Rely on patterns for security validation aloneRegex is for format checking, not sanitizationCombine with server-side validation
Use regex_build for complex parsersNL-to-regex handles single patterns, not grammarsBuild complex patterns manually with regex_explain to verify

Security & Privacy

WhatStatus
Reads your input text and patternsYes -- for processing only
Stores your dataNo -- zero persistence, stateless edge processing
Sends data to third partiesNo -- processed entirely on Cloudflare Workers
Logs request contentNo -- only anonymous usage counters
Executes patterns server-sideYes -- sandboxed with 50ms timeout to prevent ReDoS
Requires authenticationFree tier: no. Pro: API key header only

Pricing

TierCalls/DayPriceWhat You Get
Free20$0All 5 regex tools, no signup
Pro1,000$9/moAll 9 OpenClaw servers (49 tools), priority routing
x402Pay-per-call$0.05 USDCNo account needed, crypto-native

Get Pro Key: https://buy.stripe.com/4gw5na5U19SP9TW288

The OpenClaw Intelligence Stack

ServerToolsBest For
JSON Toolkit6Format, validate, diff, query, transform JSON
Regex Engine5Test, extract, replace, explain regex patterns
Color Palette5Generate, convert, harmonize, accessibility-check colors
Timestamp Converter5Parse, format, diff, timezone-convert timestamps
Prompt Enhancer6Optimize, rewrite, score, A/B test AI prompts
Market Intelligence6AI market trends, GitHub stats, competitor analysis
Fortune & Tarot3Daily fortune, tarot readings, I Ching
Content Publisher8MoltBook posts, social content, newsletter
AgentForge Compare5Compare AI tools, frameworks, MCP servers

All 9 servers share one Pro key. $9/mo = 49 tools.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

79.3%
按下载量换算2,299

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills