用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/benjam3n/reasoningtool --skill saaiasa命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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.
基于 SOC 职业分类
| name | saaiasa |
| description | Classify utterances in a gate/procedure/document so the system doesn't answer the wrong thing. |
| output | {"format":"prose"} |
Input: $ARGUMENTS
Classify utterances in a gate/procedure/document so the system doesn't answer the wrong thing (question vs command vs judgment vs guess). Many problems in procedure execution come from treating one speech act type as another.
From the target artifact (gate, procedure, document):
For each extracted line, assign a speech act type:
| Type | Definition | Example | Correct Response |
|---|---|---|---|
| Question | Seeks information | "What are the risks?" | Answer with information |
| Command | Directs action | "List all dependencies" | Execute the action |
| Request | Asks for action (politely) | "Could you check..." | Execute or negotiate |
| Constraint | Sets boundaries | "Must not exceed budget" | Honor as a limit |
| Judgment | Evaluates quality | "This is adequate" | Accept or challenge with evidence |
| Prediction | Forecasts outcome | "This will succeed" | Verify or challenge |
| Hypothesis | Proposes testable claim | "If X then Y" | Design test |
| Goal | States desired outcome | "We want to increase..." | Plan toward it |
| Story | Narrates events | "Last time, we..." | Extract lessons |
Flag lines where the surface form doesn't match the function:
| Surface Form | Actual Function | Problem | Fix |
|---|---|---|---|
| Question ("Is this good?") | Judgment (seeking validation) | Will get answer instead of evaluation | Rewrite as explicit judgment request |
| Command ("Determine if...") | Question (seeking information) | Will get action instead of answer | Rewrite as question |
| Judgment ("This works") | Hypothesis (untested) | Will be treated as settled | Rewrite as hypothesis to test |
| Question ("Don't you think...") | Command (seeking agreement) | Leading question | Rewrite as open question or explicit command |
Identify lines that contain multiple speech acts disguised as one:
Before: "Is the goal clear and are the steps complete and has the timeline been validated?" After:
Each should be answered independently.
For each problematic utterance:
REWRITE:
Original: [the line as written]
Type detected: [what it looks like]
Type intended: [what it's trying to do]
Problem: [why the mismatch causes issues]
Rewrite: [clearer version]
INTENT + SPEECH ACTS AUDIT:
Target: [what was analyzed]
Lines analyzed: [N]
Type distribution:
| Type | Count | Issues |
|------|-------|--------|
| Question | [N] | [N with mismatches] |
| Command | [N] | [N with mismatches] |
| Judgment | [N] | [N with mismatches] |
| [etc] | | |
Mismatches found: [N]
Bundled utterances: [N] → split into [N] individual lines
Rewrites proposed: [N]
Top priority rewrites: [which are most impactful]