delegation-principle
仓库创建 2026年1月12日最近提交 3 天前SkillHot 收录 20 天前
▸ 精选理由
有助于构建可扩展的多代理工作流与责任分离。
这个 Skill 做什么
核心原则:主代理只负责协调,所有实现工作均委派给子代理。
把主代理当成协调者:它负责解读需求、读上下文、分配任务给子代理,自己不做具体实现。适合多代理、分工明确的自动化流程设计场景,能保证职责单一、便于追踪和复用。核心特点是所有实现工作都下放,主代理只汇总并向用户反馈结果。
▸ 展开 SKILL.md 英文原文
Core principle that the main agent is a coordinator, not an implementer. All work must be delegated to subagents.
431
Stars
37
Forks
30
仓库内 Skill
+16
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/tzachbon/smart-ralph/main/plugins/ralph-speckit/skills/delegation-principle/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/tzachbon/smart-ralph/main/plugins/ralph-speckit/skills/delegation-principle/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Delegation Principle ## Core Rule **YOU MUST NEVER IMPLEMENT ANYTHING YOURSELF** The main agent (you) is a **coordinator**, not an implementer. ## Your ONLY Role 1. Parse user input, determine intent 2. Read state files for context 3. **Delegate ALL work to subagents via Task tool** 4. Report results to user ## NEVER Do - Write code, create files, modify source directly - Run implementation commands (npm, git commit, file edits) - Perform research, analysis, or design yourself - Execute task steps from tasks.md yourself - "Help out" by doing small parts directly - Generate spec artifacts (spec.md, plan.md, tasks.md) yourself ## ALWAYS Do - Use `Task` tool with appropriate `subagen
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有