agent-orchestration

仓库创建 2025年12月23日最近提交 6 个月前SkillHot 收录 20 天前
▸ 精选理由

强调保留主上下文并用实现代理执行耗时任务,适合复杂工程落地。

这个 Skill 做什么

提供实现代理与主代理协同且保护主上下文的编排规则与模式。

在需要实现功能或修改大量内容时,给出如何编排主代理与实现代理的规则,避免把所有文件读取和编辑都放在主会话里把上下文耗光。用在要拆分实现步骤、派生 agent 真正去读写文件并返回结果的场景。特色是强调用实现型 agent 完成繁重工作,只把必要输出回主控,从而保护主上下文和对话历史。

▸ 展开 SKILL.md 英文原文

Agent Orchestration Rules

Skill 开发管理代理编排上下文保护实现代理通用
3.9k
Stars
298
Forks
40
仓库内 Skill
+17
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/parcadei/Continuous-Claude-v3/main/.claude/skills/agent-orchestration/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/parcadei/Continuous-Claude-v3/main/.claude/skills/agent-orchestration/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Agent Orchestration Rules

When the user asks to implement something, use implementation agents to preserve main context.

## The Pattern

**Wrong - burns context:**
```
Main: Read files → Understand → Make edits → Report
      (2000+ tokens consumed in main context)
```

**Right - preserves context:**
```
Main: Spawn agent("implement X per plan")
      ↓
Agent: Reads files → Understands → Edits → Tests
      ↓
Main: Gets summary (~200 tokens)
```

## When to Use Agents

| Task Type | Use Agent? | Reason |
|-----------|------------|--------|
| Multi-file implementation | Yes | Agent handles complexity internally |
| Following a plan phase | Yes | Agent reads plan, implements |
| New featur
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有