基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/benjam3n/reasoningtool --skill sarus命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Route any input through a branching question tree to narrow down the optimal response strategy before writing. Two stages — PERCEIVE (classify input) then ACT (select response). Covers all prompt types.
Generate exhaustive guesses about user input using ALL search methods with coverage tracking. Guessing is SEARCH through possibility space. Tracks space created vs space covered to ensure comprehensive exploration.
Systematically evaluate and select from a set of guesses, options, or possibilities. Combines ARAW analysis with prioritization to determine which guesses are strong, weak, actionable, or eliminable.
| name | sarus |
| description | Repo-wide scan to find question patterns that commonly require interpretation before answering. |
| output | {"format":"prose"} |
Input: $ARGUMENTS
Repo-wide scan to find question patterns that commonly require interpretation before answering. This is the broad survey that identifies where to focus detailed rewrite work.
Search across all target files for these patterns:
| Pattern | Regex/Signal | Why Problematic |
|---|---|---|
| Parenthetical additions | (...) in questions | Bundles extra checks invisibly |
| If-yes/if-no branching | "if yes", "if no" | Hides conditional logic in text |
| Compound "or" questions | "X or Y?" | Unclear if asking for choice or checking either |
| Multi-sentence questions | Two+ sentences ending in ? | Usually bundled questions |
| Undefined term hotspots | Same noun used 5+ times without definition | Everyone reads it differently |
| "If applicable" | Phrases like "where relevant" | Who decides applicability? |
| Subjective adjectives | "appropriate", "adequate", "good" | No shared standard |
| Implicit quantifiers | "The requirements", "all steps" | Which ones specifically? |
For each finding:
FINDING:
File: [path]
Line: [number]
Pattern: [which pattern matched]
Text: [the problematic text]
Severity: [H/M/L — based on how central the file is]
Not all findings are equally important. Prioritize:
| Priority Tier | Criterion |
|---|---|
| P1 — Critical | Core gates (affect every project) |
| P2 — High | Procedures referenced by gates |
| P3 — Medium | Frequently used procedures |
| P4 — Low | Rarely used or peripheral procedures |
Aggregate findings to see which patterns are most prevalent:
| Pattern | Count | Files Affected | Priority Distribution |
|---|---|---|---|
| [pattern] | [N] | [N files] | P1: [N], P2: [N], P3: [N] |
This reveals systemic issues vs one-off problems.
Order fixes by impact:
REWRITE QUEUE:
| # | File | Line | Pattern | Priority | Estimated Fix |
|---|------|------|---------|----------|--------------|
| 1 | [path] | [line] | [pattern] | P1 | [brief fix description] |
| 2 | ... | | | | |
REPO UNCLARITY SCAN:
Files scanned: [N]
Lines scanned: [N]
Findings: [N total]
By pattern:
| Pattern | Count | Most Affected Files |
|---------|-------|-------------------|
| [pattern] | [N] | [top 3 files] |
By priority:
P1 (critical): [N]
P2 (high): [N]
P3 (medium): [N]
P4 (low): [N]
Systemic issues: [patterns appearing in 10+ files]
Top rewrite targets: [files with most P1/P2 findings]
Rewrite queue: [N items, starting with highest impact]