用 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]