用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/benjam3n/reasoningtool --skill saadag命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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.
基于 SOC 职业分类
正在显示 SKILL.md
| name | saadag |
| description | Run the detector suite against a target artifact to find ambiguity, proxy substitution, bundled checks, and more. |
| output | {"format":"prose"} |
Input: $ARGUMENTS
Run the detector suite against a target artifact to find ambiguity, proxy substitution, bundled checks, undefined terms, false dichotomies, and hidden conditionals. This is the automated quality scan for procedure/gate text.
Scan for lines where reasonable people would disagree on meaning:
| Pattern | Example | Problem |
|---|---|---|
| Vague quantifiers | "Several", "many", "few" | Different people assign different numbers |
| Undefined adjectives | "Good", "adequate", "appropriate" | No shared standard |
| Pronoun ambiguity | "It should be validated" | What is "it"? |
| Scope ambiguity | "All requirements" | All of WHICH requirements? |
| Temporal ambiguity | "Before proceeding" | Before which step? |
For each found: record the line, the ambiguous element, and suggest a specific rewrite.
Scan for places where formatting or process is substituted for content:
| Proxy Pattern | Example | Real Check Needed |
|---|---|---|
| "Document exists" → treated as "content is correct" | "Is there a risk assessment?" | "Does the risk assessment identify the top 3 risks?" |
| "Was reviewed" → treated as "is good" | "Has the plan been reviewed?" | "Did the reviewer find issues? Were they addressed?" |
| "Checklist complete" → treated as "work is done" | "All items checked off" | "Does each checked item have evidence?" |
| "Template followed" → treated as "quality met" | "Used standard template" | "Does the filled template contain substantive content?" |
For each found: record the proxy and propose a content-based check.
Scan for questions/criteria that combine multiple independent checks:
Signal words: "and", "or", "as well as", semicolons, parenthetical additions
Before: "Is the goal clear, measurable, and achievable with current resources?" After:
Scan for recurring nouns/adjectives used as if their meaning is shared but never defined:
Scan for binary framings that may have more options:
| Pattern | Example | Question to Ask |
|---|---|---|
| "Is X or Y?" | "Is this a bug or a feature?" | Could it be both? Neither? Something else? |
| "Pass/fail" without gradient | "Does it meet the standard?" | What about partial? Near-miss? Conditional? |
| Yes/no on continuous dimension | "Is the plan complete?" | What % complete? What's missing? |
Scan for criteria that silently assume conditions:
| Pattern | Example | Hidden Condition |
|---|---|---|
| "if applicable" | "Address security concerns (if applicable)" | Who decides if applicable? |
| Unstated prerequisites | "Verify test results" | Assumes tests were run |
| Context-dependent | "Use appropriate method" | Depends on context not specified |
DETECTOR SUITE RESULTS:
Target: [what was scanned]
Lines scanned: [N]
| Detector | Findings | Severity | Top Priority Fix |
|----------|----------|----------|-----------------|
| Ambiguity | [N] | [H/M/L] | [worst case] |
| Proxy | [N] | [H/M/L] | [worst case] |
| Bundled | [N] | [H/M/L] | [worst case] |
| Undefined | [N] | [H/M/L] | [worst case] |
| False dichotomy | [N] | [H/M/L] | [worst case] |
| Hidden conditional | [N] | [H/M/L] | [worst case] |
Total findings: [N]
Rewrite queue: [ordered list of fixes by priority]