基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/benjam3n/reasoningtool --skill so命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | so |
| description | Standardized output format for GOSM projects. |
| output | {"format":"prose"} |
Input: $ARGUMENTS
Standardized output format for GOSM projects. Problem: Current outputs are markdown files — good for reading, hard to analyze. Solution: Structured format that enables cross-project synthesis.
Like ARAW uses databases for synthesis, GOSM needs structured project records.
What kind of output is being produced?
| Output Type | Key Fields | Example |
|---|---|---|
| Analysis | claim, evidence, confidence, caveats | ARAW result |
| Decision | options, criteria, scores, selection | DCP result |
| Plan | goals, steps, dependencies, timeline | Project plan |
| Diagnosis | symptoms, causes, evidence, fix | RCA result |
| Evaluation | subject, dimensions, scores, verdict | Evaluation result |
| Review | findings, severity, recommendations | Audit result |
Every output includes these sections:
HEADER:
type: [analysis|decision|plan|diagnosis|evaluation|review]
skill: [which procedure produced this]
input: [what was analyzed]
date: [when]
confidence: [overall confidence: high|medium|low]
SUMMARY:
one_line: [single sentence result]
verdict: [the bottom line]
key_finding: [most important thing discovered]
BODY:
[type-specific fields — see Step 3]
METADATA:
assumptions: [what was assumed]
limitations: [what this analysis can't address]
follow_ups: [what should be investigated next]
related: [links to related analyses]
Analysis body:
claims:
- claim: [statement]
evidence_for: [supporting evidence]
evidence_against: [contradicting evidence]
confidence: [H/M/L]
status: [supported|refuted|uncertain]
Decision body:
options:
- name: [option]
pros: [advantages]
cons: [disadvantages]
score: [weighted score]
selected: [chosen option]
rationale: [why this one]
Plan body:
goal: [what we're trying to achieve]
steps:
- step: [description]
depends_on: [prerequisites]
output: [what this step produces]
risk: [what could go wrong]
Diagnosis body:
symptoms: [what was observed]
hypotheses:
- cause: [possible cause]
evidence: [supporting/contradicting]
probability: [H/M/L]
root_cause: [most likely cause]
fix: [recommended action]
Evaluation body:
subject: [what was evaluated]
dimensions:
- dimension: [evaluation criterion]
score: [rating]
evidence: [basis for score]
overall: [aggregate assessment]
Review body:
findings:
- finding: [what was found]
severity: [critical|major|minor|info]
recommendation: [what to do]
status: [new|known|resolved]
Structured outputs enable:
If applying to existing output:
Format the input according to the appropriate structured output template. If the input is a request to format something, apply the template. If it's a question about the format, explain the relevant section.