用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vimalinx/bio-agent --skill test-pcre命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | test-pcre |
| description | Use when testing or benchmarking PCRE2 regular expressions with the local `test_pcre` / `pcre2test` executable. |
| disable-model-invocation | true |
| user-invocable | true |
PCRE2 test harness installed here as test_pcre. It is the standard pcre2test-style CLI for trying patterns against subjects, checking compile-time options, and timing compilation or matching.
test_pcre [options] [input [output]]/home/vimalinx/miniforge3/envs/bio/bin/test_pcrepcre2test-t, -tm, -T, or -TM-d, -i, or other pcre2test modifiers# Show usage
test_pcre -help
# Show version
test_pcre -version
# Minimal pattern/subject test via stdin
printf '/abc/\nabc\n\n' | test_pcre
test_pcre -help or test_pcre -C to confirm available PCRE2 features.test_pcre, not the skill folder name.test_pcre with an underscore, not test-pcre.test_pcre -help works and prints standard pcre2test usage; -version reports PCRE2 version 10.44 2024-06-07.printf '/abc/\nabc\n\n' | test_pcre produced a successful match with capture line 0: abc.-v|--version is documented by the tool, so GNU-style --version should be treated as valid for the real executable even though the old skill text assumed otherwise.