소스 정보
- 저장소
- benjam3n/reasoningtool
- 최근 소스 활동
- 2026년 3월 12일 17:48
- 감지된 SKILL.md 언어
- 영어
- 스타
- 9
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/benjam3n/reasoningtool --skill ov명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | ov |
| description | Alternative ordering strategies for procedure steps when the default doesn't fit. |
| output | {"format":"prose"} |
Input: $ARGUMENTS
Alternative ordering strategies for procedure steps. The base order_procedure uses a default prioritization. These variations offer different sequencing philosophies, each optimal for different contexts.
| Primary Concern | Strategy | Philosophy |
|---|---|---|
| Minimize risk | Risk-First | Do the scariest things first |
| Maximize learning | Learning-First | Do the most uncertain things first |
| Build momentum | Quick-Win-First | Do the easiest valuable things first |
| Meet deadline | Critical-Path | Do things on the longest dependency chain first |
| Reduce waste | Value-Stream | Do things in order of value delivery |
| Handle complexity | Outside-In | Start at interfaces, work toward core |
| Handle complexity | Inside-Out | Start at core, work toward interfaces |
| Maintain motivation | Alternating | Alternate hard and easy tasks |
| Satisfy stakeholders | Stakeholder-Priority | Do what the most important stakeholder needs first |
| Manage resources | Bottleneck-First | Start with whatever uses the scarcest resource |
| Maximize parallelism | Independence-First | Do independent tasks first to enable parallel work |
| Explore options | Breadth-First | Survey all options before going deep on any |
| Exploit known good | Depth-First | Go deep on most promising path first |
Risk-First Ordering:
Learning-First Ordering:
Quick-Win-First Ordering:
Critical-Path Ordering:
Value-Stream Ordering:
Outside-In Ordering:
Inside-Out Ordering:
After applying the strategy:
If unsure which strategy fits:
| Step | Risk-First | Learning-First | Quick-Win | Critical-Path |
|---|---|---|---|---|
| [step A] | 2nd | 1st | 3rd | 1st |
| [step B] | 1st | 3rd | 1st | 2nd |
| [step C] | 3rd | 2nd | 2nd | 3rd |
If multiple strategies agree on what comes first → high confidence. If they disagree → the primary concern should be the tiebreaker.
ORDERING STRATEGY:
Steps to order: [N]
Primary concern: [risk/learning/momentum/deadline/value/complexity/motivation]
Strategy selected: [which ordering]
Ordered sequence:
1. [step] — rationale: [why first]
2. [step] — rationale: [why second]
3. [step] — rationale: [why third]
...
Dependencies honored: [yes/no]
Parallelizable steps: [which can run concurrently]
First review point: [after which step]
Alternative orderings considered:
- [strategy]: Would put [step] first instead — better if [condition]