Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

reduce-delegate-framework减少委托框架

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

61

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:reduce-delegate-framework(减少委托框架)
来源仓库:https://github.com/melodic-software/claude-code-plugins
仓库路径:skills/reduce-delegate-framework
安装命令:
npx skills add https://github.com/melodic-software/claude-code-plugins --skill reduce-delegate-framework
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill reduce-delegate-framework

简介

用于在特定上下文中查找和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适用于需要根据关键词或任务目标定位内容的场景。
  • 建议结合原始 README 了解具体功能边界。
  • 使用前请确认是否会触发外部网络或命令执行。
  • reduce-delegate-framework 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Reduce & Delegate Framework Skill

Apply the R&D framework to optimize prompts, workflows, and context management.

Purpose

There are only two ways to manage context: Reduce and Delegate. This skill helps you systematically apply both strategies to any context optimization challenge.

When to Use

  • Context window approaching limits
  • Agent performance degrading over conversation
  • Prompts growing unwieldy
  • Workflows consuming too many tokens
  • Need to scale agent work

The R&D Analysis Process

Step 1: Identify the Context Problem

Categorize the issue:

Problem TypeIndicatorPrimary Strategy
Context RotOld info guiding decisionsReduce (fresh instance)
Context PollutionUnfocused, tangentialReduce (remove irrelevant)
Toxic ContextContradictory behaviorReduce (clear conflicts)
Context OverflowApproaching limitsDelegate (offload work)

Step 2: Apply Reduce Strategies

For each context element, ask:

  1. Is this necessary for the current task?
  2. Can this be loaded on-demand instead?
  3. Is this information stale or outdated?
  4. Does this contradict other context?

Reduction techniques:

TechniqueApplication
Fresh instanceNew task type, reset history
Output stylesControl verbosity, reduce tokens
Focused readsSpecific files vs directories
Priming commandsReplace static memory
MCP cleanupRemove unused servers

Step 3: Apply Delegate Strategies

For complex or parallel work, ask:

  1. Does this subtask need different context?
  2. Can this run independently?
  3. Would a specialized agent perform better?
  4. Is there parallel work opportunity?

Delegation techniques:

TechniqueApplication
Sub-agentsFocused tasks with isolated context
Background agentsParallel work, async execution
Agent expertsDomain-specific knowledge
Spec filesHandoff between agents

Optimization Workflow

1. Measure current context state
   - Use /context command
   - Check token consumption

2. Analyze composition
   - What's consuming most tokens?
   - What's unnecessary?

3. Apply Reduce
   - Remove unnecessary context
   - Start fresh if needed
   - Control output verbosity

4. Apply Delegate
   - Offload subtasks
   - Use specialized agents
   - Enable parallel work

5. Verify improvement
   - Measure new state
   - Compare performance

Common Optimization Patterns

Pattern: Bloated Memory File

Before:

# CLAUDE.md (5KB+)
Contains: everything about the project

After (Reduce):

# CLAUDE.md (1KB)
Contains: only universals

# .claude/commands/prime.md
Contains: task-specific context loading

Pattern: Long Conversation

Problem: Multi-turn conversation with context rot

Solution (Reduce):

  1. Start fresh instance
  2. Use priming command to load current state
  3. Continue with clean context

Pattern: Complex Research Task

Before:

Primary agent does research -> context polluted
Primary agent implements -> struggles with focus

After (Delegate):

Primary agent delegates research -> sub-agent
Sub-agent returns summary -> primary continues
Primary agent implements -> clean context

Pattern: Parallel Independent Tasks

Before:

Task A -> Task B -> Task C (sequential, context accumulates)

After (Delegate):

Task A (agent 1) \
Task B (agent 2)  -> Aggregate results
Task C (agent 3) /

Output Format

When optimizing, report:

{
  "analysis": {
    "current_state": "Context at 80% capacity",
    "primary_issue": "Long conversation with accumulated history",
    "secondary_issues": ["Verbose tool outputs", "Unused MCP servers"]
  },
  "reduce_recommendations": [
    {
      "action": "Start fresh instance",
      "impact": "Reset accumulated history",
      "effort": "Low"
    },
    {
      "action": "Apply concise output style",
      "impact": "50% reduction in output tokens",
      "effort": "Low"
    }
  ],
  "delegate_recommendations": [
    {
      "action": "Create research sub-agent",
      "impact": "Isolate research context",
      "effort": "Medium"
    }
  ],
  "expected_improvement": "40-60% context reduction"
}

Decision Matrix

When to Reduce vs Delegate:

SituationReduceDelegate
Stale contextX
Irrelevant contextX
Conflicting contextX
Complex subtaskX
Parallel workX
Domain expertise neededX
Context overflowXX

Key Quote

"There are only two ways to manage your context window: Reduce and Delegate. Every technique fits into one or both of these buckets."

Cross-References

  • @rd-framework.md - Framework reference
  • @context-audit skill - Audit before optimizing
  • @context-layers.md - Understanding what to optimize
  • @context-rot-vs-pollution.md - Diagnosing the problem

Version History

  • v1.0.0 (2025-12-26): Initial release

Last Updated

Date: 2025-12-26 Model: claude-opus-4-5-20251101

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.53%
按下载量换算28

Claude

28.03%
按下载量换算20

Cursor

18.86%
按下载量换算13

Gemini CLI

8.66%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills