Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

recursive-decomposition递归分解

Agent Skill

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

总安装

2,179

周安装

89

GitHub Stars

30

下载量

698
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/massimodeluisa/recursive-decomposition-skill --skill recursive-decomposition

简介

recursive-decomposition 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景进行信息定位的研究与检索任务。
  • 通过关键词、任务场景或来源线索输入,获取相关结果列表。
  • 安装命令:npx skills add https://github.com/massimodeluisa/recursive-decomposition-skill --skill recursive-decomposition。
  • 建议确认权限范围和维护状态,注意是否触发联网或文件操作。

SKILL.md

Recursive Decomposition Guidelines

References

Consult these resources as needed:

  • ./references/rlm-strategies.md -- Detailed decomposition patterns from the RLM paper
  • ./references/cost-analysis.md -- When to apply recursive vs. direct approaches
  • ./references/codebase-analysis.md -- Full walkthrough of codebase-wide analysis
  • ./references/document-aggregation.md -- Multi-document information extraction

Core Principles

CRITICAL: Treat inputs as environmental variables, not immediate context.

Most tasks fail when context is overloaded. Instead of loading entire contexts into the processing window, treat inputs as environmental variables accessible through code execution. Decompose problems recursively, process segments independently, and aggregate results programmatically.

Progressive Disclosure: Load information only when necessary. Start high-level to map the territory, then dive deep into specific areas.

When Recursive Decomposition is Required

  • Tasks involving 10+ files
  • Input exceeding ~50k tokens where single-prompt context is insufficient
  • Multi-hop questions requiring evidence from multiple scattered sources
  • Codebase-wide pattern analysis or migration planning

When Direct Processing Works

  • Small contexts (<30k tokens)
  • Single file analysis
  • Linear complexity tasks with manageable inputs

Operational Rules

  • Always identify the search space size first.
  • Always use grep or glob before view_file on directories.
  • Always partition lists > 10 items into batches.
  • Never read more than 5 files into context without a specific plan.
  • Verify synthesized answers by spot-checking source material.
  • Mitigate "context rot" by verifying answers on smaller windows.
  • Treat yourself as an autonomous agent, not just a passive responder.

Large File Handling Protocols

CRITICAL: Do NOT read large files directly into context.

  1. Check Size First: Always run wc -l (lines) or ls -lh (size) before view_file.
  2. Hard Limits:

- Text/Code: > 2,000 lines or > 50KB -> MUST use view_file with start_line/end_line or head/tail. - PDFs: > 30MB or > 100 pages -> MUST be split or processed by metadata only.

  1. Strategy:

- For code: Read definitions first (grep -n "function"...) then read specific bodies. - For text: Read Table of Contents or Abstract first.

Tool Preferences

  • grep / glob not ls -R (unless mapping structure).
  • view_file with line ranges (offset/limit) not full file reads for huge files.
  • wc -l / ls -lh before reading unknown files.
  • run_command (grep) not read_file for searching.
  • task tool for sub-agents (recurse).

Empowering Agentic Behavior

To maximize effectiveness:

  • Self-Correction: Always verify your own work. If a result seems empty or wrong, debug the approach (e.g., check grep arguments) before giving up.
  • Aggressive Context Management: Regularly clear irrelevant history. Don't let the context window rot with dead ends.
  • Plan First: For any task > 3 steps, write a mini-plan.
  • Safe YOLO Mode: When appropriate (e.g., read-only searches), proceed with confidence without asking for permission on every single step, but stop for critical actions.

Cost-Performance Tradeoffs

  • Smaller contexts: Direct processing may be more efficient.
  • Larger contexts: Recursive decomposition becomes necessary.
  • Threshold: Consider decomposition when inputs exceed ~30k tokens or span 10+ files.

Balance thoroughness against computational cost. For time-sensitive tasks, apply aggressive filtering. For comprehensive analysis, prefer exhaustive decomposition.

Anti-Patterns to Avoid

  • Excessive sub-calling: Avoid redundant queries over the same content.
  • Premature decomposition: Simple tasks don't need recursive strategies.
  • Lost context: Ensure sub-agents have sufficient context for their sub-tasks.
  • Unverified synthesis: Always spot-check aggregated results.

Scalability (Chunking & filtering)

1. Filter Before Deep Analysis

Narrow the search space before detailed processing:

# Instead of reading all files into context:
1. Use Grep/Glob to identify candidate files by pattern
2. Filter candidates using domain-specific keywords
3. Only deeply analyze the filtered subset

Apply model priors about domain terminology to construct effective filters. For code tasks, filter by function names, imports, or error patterns before full file analysis.

2. Strategic Chunking

Partition inputs for parallel or sequential sub-processing:

  • Uniform chunking: Split by line count, character count, or natural boundaries (paragraphs, functions, files).
  • Semantic chunking: Partition by logical units (classes, sections, topics).
  • Keyword-based partitioning: Group by shared characteristics.

Process each chunk independently, then synthesize results.

3. Incremental Output Construction

For generating long outputs:

1. Break output into logical sections
2. Generate each section independently
3. Store intermediate results (in memory or files)
4. Stitch sections together with coherence checks

Agent Behavior

Recursive Sub-Queries

Invoke sub-agents (via Task tool) for independent segments:

For large analysis:
1. Partition the problem into independent sub-problems
2. Launch parallel agents for each partition
3. Collect and synthesize sub-agent results
4. Verify synthesized answer if needed

Answer Verification

Mitigate context degradation by verifying answers on smaller windows:

1. Generate candidate answer from full analysis
2. Extract minimal evidence needed for verification
3. Re-verify answer against focused evidence subset
4. Resolve discrepancies through targeted re-analysis

Implementation Patterns

Pattern A: Codebase Analysis

Task: "Find all error handling patterns in the codebase"

Approach:

  1. Glob for relevant file types (*.ts, *.py, etc.)
  2. Grep for error-related keywords (catch, except, Error, throw)
  3. Partition matching files into batches of 5-10
  4. Launch parallel Explore agents per batch
  5. Aggregate findings into categorized summary

Pattern B: Multi-Document QA

Task: "What features are mentioned across all PRD documents?"

Approach:

  1. Glob for document files (*.md, *.txt in /docs)
  2. For each document: extract feature mentions via sub-agent
  3. Aggregate extracted features
  4. Deduplicate and categorize
  5. Verify completeness by spot-checking

Pattern C: Information Aggregation

Task: "Summarize all TODO comments in the project"

Approach:

  1. Grep for TODO/FIXME/HACK patterns
  2. Group by file or module
  3. Process each group to extract context and priority
  4. Synthesize into prioritized action list

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Gemini CLI

33.17%
按下载量换算232

Antigravity

22.92%
按下载量换算160

Claude Code

17.82%
按下载量换算124

OpenCode

12.53%
按下载量换算87

Cursor

7.71%
按下载量换算54

github-copilot

4.04%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills