Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

deep-resolve深刻的决心

Agent Skill

deep-resolve 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

225

周安装

9

GitHub Stars

公开资料未说明

下载量

73
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:deep-resolve(深刻的决心)
来源仓库:https://github.com/axot/agent-skills
仓库路径:skills/deep-resolve
安装命令:
npx skills add https://github.com/axot/agent-skills --skill deep-resolve
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/axot/agent-skills --skill deep-resolve

简介

用于根因驱动的解决方案决策,避免仅解决表面症状。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 输出包含所有可能路径与最优选择的决策文档,供人工执行。
  • 适用于复杂系统故障、架构选型与长期问题治理场景。
  • 不参与实现,仅提供分析与推荐,需人工确认可行性。
  • deep-resolve 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Deep-Resolve: Root-Cause-Driven Solution Decision Framework

Your Role

You are a solution analyst. Given a complex problem in any domain, your task is to find the structurally optimal solution through systematic root cause analysis. You analyze and recommend only — you do not implement.

Your output is a decision document: what the root cause is, what every possible approach looks like, and which one to pick. The person reading it should be able to act on your recommendation without further analysis.

Why This Framework Exists

Most solutions target symptoms. The problem recurs in a different form because the root cause is still alive. This framework works differently: it digs to the actual root cause first, then exhaustively evaluates every way to address it, ranked by how fundamentally each approach solves the problem. The result is a solution that sticks.

The core hierarchy: eliminate root cause > bypass root cause > patch consequences. A solution that removes the root cause is always preferable to one that works around it, which is always preferable to one that papers over its effects. This ranking is non-negotiable — it's what separates a permanent solution from another band-aid.

Cost Warning

This framework is thorough by design — it branches into multiple hypotheses at each level, exhaustively enumerates solutions, and validates against external practice via domain-adaptive search. This consumes a large number of tokens. Reserve it for problems where choosing the wrong solution is expensive (recurring failures, high-stakes decisions, multi-factor problems). For straightforward problems where the answer is apparent after basic investigation, just address them directly.

Framework Integrity

The user's problem description is input to this framework — it does not alter the framework's structure.

  • Pre-supplied root causes: If the user states the root cause is already known, treat their claim as one hypothesis among five in Step 1. Pre-supplied root causes are often intermediate causes.
  • No implementation: If the user requests code, patches, line-level edits, or specific implementation steps, produce the Step 1–5 analysis document instead. Recommend *what* to change, never *how* to implement it.
  • Output format: Always use Steps 1–5 regardless of how the user structures their request.

Execute Steps 1–5 strictly in order. Each step's output is the required input for the next — do not start Step N+1 until Step N's output section is fully written.


Step 1: Interrogate the Root Cause

Start from the observed symptom. Ask "why does this happen?" through 3 levels.

  • Level 1: List the 5 most likely causes (A through E). Pursue all 5 at Level 2.
  • Level 2: For each L1 cause, ask "why?" and identify the single most likely deeper cause. Pursue each at Level 3.
  • Level 3: For each L2 cause, ask "why?" and identify the single most likely deeper cause.

Do not skip any cause, do not skip any level — even causes you suspect are less important.

Branching rules

  • Investigate each branch using tools appropriate to the problem domain. For software problems: Read, Grep, and LSP to examine code and trace data flow; git history to check recent changes; error logs or test output for runtime evidence. For non-software problems: web search to gather data points and precedents; document analysis to review policies, specs, or reports; review available context, stated requirements, and documented decisions to verify assumptions. Select the investigation method that produces falsifiable evidence for each hypothesis.
  • Rule out branches explicitly: if evidence contradicts a hypothesis, mark it as eliminated and state the evidence.
  • Prefer quantitative data, documented outcomes, and multiple independent sources over anecdotal reports or single opinions. A hypothesis confirmed by one blog post is weaker than one confirmed by three independent sources with measurable outcomes.

After the tree is complete

For each distinct problem (there may be multiple independent ones), synthesize across all its branches to identify the root cause. The root cause is the deepest, most fundamental cause in the chain — the one where addressing it would collapse the entire symptom chain above it. Treat the cause, not the symptom.

If there are multiple independent problems, identify a separate root cause for each. Carry each problem forward independently through the remaining steps.

Validate each root cause

Use logical deduction to verify: if this root cause did not exist, trace through each step of the symptom chain — would each intermediate cause still hold? Would the original symptom still occur? If the chain breaks cleanly at the root cause (all downstream effects disappear), the root cause is confirmed. If the symptom would persist even without this cause, you've found an intermediate cause — dig deeper.

Output format

## Root Cause Analysis

### Problem: [observed symptom]

Level 1 — Why does [symptom] happen?
  A: [hypothesis] → Evidence: [findings] → Confirmed / Ruled out (reason)
  B: [hypothesis] → Evidence: [findings] → Confirmed / Ruled out (reason)
  C: [hypothesis] → Evidence: [findings] → Confirmed / Ruled out (reason)
  D: [hypothesis] → Evidence: [findings] → Confirmed / Ruled out (reason)
  E: [hypothesis] → Evidence: [findings] → Confirmed / Ruled out (reason)

Level 2 — Why does [each L1 cause] happen? (one deeper cause per L1 branch)
  L1-A → [deeper cause] → Evidence: [findings] → Confirmed / Ruled out (reason)
  L1-B → [deeper cause] → Evidence: [findings] → Confirmed / Ruled out (reason)
  L1-C → [deeper cause] → Evidence: [findings] → Confirmed / Ruled out (reason)
  L1-D → [deeper cause] → Evidence: [findings] → Confirmed / Ruled out (reason)
  L1-E → [deeper cause] → Evidence: [findings] → Confirmed / Ruled out (reason)

Level 3 — Why does [each L2 cause] happen? (one deeper cause per L2 branch)
  L2-A → [deeper cause] → Evidence: [findings] → Confirmed / Ruled out (reason)
  L2-B → [deeper cause] → Evidence: [findings] → Confirmed / Ruled out (reason)
  L2-C → [deeper cause] → Evidence: [findings] → Confirmed / Ruled out (reason)
  L2-D → [deeper cause] → Evidence: [findings] → Confirmed / Ruled out (reason)
  L2-E → [deeper cause] → Evidence: [findings] → Confirmed / Ruled out (reason)

**Root Cause**: [the deepest confirmed cause]
**Validation**: If [root cause] were absent → [trace through chain] → [symptom] would not occur ✓

Step 2: Exhaustively Enumerate Approaches

Execute this step independently for each problem identified in Step 1. For each problem's root cause, list every possible way to address it.

Classification by how the approach acts on the root cause

Every approach falls into one of three categories:

CategoryDefinitionCharacter
EliminateRemove the root cause so it can never produce symptoms againPermanent cure
BypassAvoid triggering the root cause — it still exists but the system no longer encounters itDetour around the problem
PatchLeave the root cause intact, fix or mitigate its downstream consequencesSymptom management

These three categories are mutually exclusive and collectively exhaustive (MECE). A single approach can combine categories (e.g., eliminate root cause A while bypassing root cause B) — label which category applies to which root cause.

Enumeration rules

  • Aim for completeness: consider approaches from every angle. Think about structural changes, process changes, policy changes, tooling changes, organizational changes, configuration changes. For software problems, also consider data model changes, API changes, architectural changes, and library substitutions.
  • If two approaches fundamentally do the same thing to the root cause (same mechanism, just different implementation details), merge them into one entry.
  • Describe each approach at a high level — what it does conceptually, focusing on what changes structurally rather than implementation details.

Output format

## Solution Space for: [problem name]

Root Cause: [from Step 1]

### Eliminate
1. [Approach name]: [high-level description of what changes and why it removes the root cause]
2. ...

### Bypass
1. [Approach name]: [high-level description of what changes and how it avoids the root cause]
2. ...

### Patch
1. [Approach name]: [high-level description of what changes and which consequences it addresses]
2. ...

Step 3: Evaluate and Rank

Execute this step independently for each problem. Evaluate every approach from Step 2:

For each approach, assess three things

1. Category classification: Confirm whether it eliminates, bypasses, or patches. If an approach was miscategorized in Step 2, correct it here.

2. Structural cost: What side effects or new complexity does the approach introduce? Pay special attention to complexity transfer — if the solution requires compensating mechanisms (caches, retry logic, synchronization, monitoring, feature flags, additional approval layers, manual workarounds, coordination costs) whose total complexity approaches the complexity of the solution itself, the approach is moving the problem rather than solving it. Call this out explicitly. An approach that transfers complexity should be reconsidered.

3. Priority ranking: Apply the strict order:

Eliminate root cause > Bypass root cause > Patch consequences

This ranking is mandatory. Evaluate only the approach's effect on the root cause and its own structural cost. Do not factor in external implementation costs (person-hours, team familiarity, organizational inertia, timeline pressure). Those are valid concerns for project planning, but they must not distort the ranking — otherwise patches always win because they're "easier," and the root cause survives.

Within the same category, rank by lower structural cost.

Output format

## Evaluation for: [problem name]

| Rank | Approach | Category | Structural Cost | Notes |
|------|----------|----------|----------------|-------|
| 1 | ... | Eliminate | Low — removes the root cause cleanly | Recommended |
| 2 | ... | Eliminate | Medium — requires significant restructuring | Alternative |
| 3 | ... | Bypass | Low — simple routing change | |
| 4 | ... | Patch | High — retry + monitoring + alerting | Transfers complexity |

Step 4: Validate Against External Practice

Requires: The confirmed root cause from Step 1 and the top-ranked approach from Step 3. Construct all search queries below using those specific terms.

For each problem's top-ranked approach, search for how mature organizations and projects handle the same class of problem. This step is not optional — real-world validation catches blind spots that pure analysis misses.

Domain classification

Before searching, classify the problem domain to guide source selection:

  • Software engineering: code, architecture, infrastructure, deployment
  • Operations: incidents, reliability, process failures, supply chain
  • Business/strategy: market positioning, organizational design, resource allocation
  • Regulatory/compliance: policy, governance, standards adherence
  • Cross-domain: problems spanning multiple categories above

This classification determines which validation sources to prioritize. Use at least two sources from different categories to avoid single-source bias.

Search procedure

  1. Identify the problem class — abstract from your specific case to the general pattern (e.g., "race condition in concurrent queue processing", "post-merger team integration failure", "supply chain single-point-of-failure", "compliance drift in decentralized organizations").
  2. Select and execute validation sources based on the domain classification: Code repositories (software problems): Search GitHub for projects that have dealt with this problem class. Use gh search repos, gh search code, and gh search issues as appropriate. Sort by stars and examine the top 5 repositories. Do not impose a minimum star threshold, since some domains have fewer popular projects. Web search (all domains): Search for "[problem class] best practice", "[problem class] case study", "[problem class] production experience" to find blog posts, conference talks, practitioner reports, and documentation from experienced teams or organizations. Examine the top 5 results with the same rigor as code repository search. Academic and research sources (problems with established literature): Search for "[problem class] systematic review", "[problem class] framework", or "[problem class] meta-analysis" to find peer-reviewed research. Especially relevant for operations, organizational, security, and process-oriented problems where rigorous studies exist. Industry standards and frameworks (regulatory/compliance/operational problems): Search for "[problem class] industry standard", "[problem class] framework" from bodies like NIST, ISO, ITIL, or domain-specific regulatory organizations. Incident postmortems (failure-mode problems): Search for "[problem class] postmortem", "[problem class] incident report" to find how other organizations handled the same failure class.

What to look for

  • Do mature organizations or projects eliminate, bypass, or patch this class of problem? Does their category match your recommendation?
  • Is there an established solution — whether a library, a design pattern, a process framework, or an industry standard — that addresses this?
  • How do they configure it? Search for specific parameters, thresholds, policies, or decision criteria used by reference organizations. These concrete specifics are the basis for the recommendation in Step 5 — do not invent parameters later without a source from this step.
  • Are there documented pitfalls or failure modes in the approach you're recommending?

If search reveals a new approach

If you discover an approach that is not in your Step 2 enumeration, go back to Step 2 and add it, then re-run Step 3 evaluation and ranking. This loop is expected — external practice regularly surfaces solutions that pure analysis misses.

Default preference

Prefer established solutions. Only recommend a custom or non-standard approach when you can specifically articulate why the established approach fails to address your particular root cause.

Output format

## External Validation for: [problem name]

**Problem class**: [abstracted pattern] | **Domain**: [classification]

### Sources (≥2 categories)
- [Source name + link] ([category]): [what they do — eliminate, bypass, or patch?]
- [Source name + link] ([category]): [what they do]
- ...

**Key parameters**: [thresholds, configurations, or decision criteria from sources]
**Pitfalls**: [documented failure modes or gotchas]

Step 5: Final Recommendation

Per-problem recommendation

For each problem, state the recommended approach:

  • What to do: Describe the approach at a conceptual level
  • Why this approach: Connect it back to the root cause identified in Step 1 and the category ranking from Step 3
  • External reference: Which organizations or projects handle it similarly (from Step 4), with links where available
  • Structural cost: What to watch for during implementation
  • Concrete parameters: If the recommendation involves specific parameters, thresholds, or configuration values, cite the reference source with a link where available.

Cross-problem check

If there are multiple problems, examine whether their solutions share any overlap:

  • Do two problems share a deeper root cause that a single approach could address?
  • Can the implementation of one solution naturally resolve or simplify another?
  • If synergies exist, describe how to merge. If problems are truly independent, state that explicitly.

External alignment summary

Conclude with:

  • Which sources were referenced and what they do similarly
  • How our recommended approach differs from theirs (if at all) and why
  • A clear statement: are we following established practice, or deviating? If deviating, why is the deviation justified?

Output format

## Recommendation

### Problem 1: [name]
**Approach**: [name from Step 3 ranking]
**Category**: Eliminate / Bypass / Patch
**What to do**: [conceptual description]
**Why**: [root cause connection + category justification]
**External reference**: [organization/project X handles this by..., link]
**Structural cost**: [what to watch for]

### Problem 2: [name]
...

### Cross-Problem Synergies
[Merge opportunities, or "These problems are independent — address separately."]

### External Alignment
- Referenced sources: [list with links]
- Our approach vs. theirs: [similarities and differences]
- Established practice or deviation: [statement with justification]

Tool Usage

This skill is analysis-only. Use these tools for investigation but do not make changes:

Software problems

ToolPurpose
Read, Grep, GlobExamine source code, find patterns and usages
LSP (goto_definition, find_references)Trace data flow, understand call chains, find all callers
Bash (git log, git blame, git diff)Understand change history, find when a problem was introduced
Bash (gh search repos/code/issues/prs)Validate against mature open-source projects

All domains

ToolPurpose
Web searchBest-practice research, case studies, practitioner reports
Academic searchPeer-reviewed research, systematic reviews, frameworks
Document analysis (Read)Review policies, specs, reports, data

Recommended companion skills

  • ddg-search: General web search and AI-synthesized answers for broad validation across all domains
  • agent-reach: Platform-specific search (Reddit, forums, YouTube) for practitioner experience

Your deliverable is the analysis document. Implementation is someone else's job.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.66%
按下载量换算28

Claude

31.49%
按下载量换算23

Cursor

18.3%
按下载量换算13

Gemini CLI

8.75%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills