Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/benjam3n/reasoningtool --skill so명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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.