Agent Skills
› terrense/LilBot-agent
› delegate
delegate
GitHub用于将大型任务拆分为探索、规划、实现和验证等子阶段,通过并行或分阶段调用子代理来协同完成复杂工作。
Trigger Scenarios
任务规模较大需拆分
需要并行处理多个子任务
Install
npx skills add terrense/LilBot-agent --skill delegate -g -y
SKILL.md
Frontmatter
{
"mode": "inline",
"name": "delegate",
"description": "Use subagents to split exploration, implementation, review, and verification work."
}
Delegate
Use this skill when the task is large enough to benefit from parallel or staged work.
Recommended pattern:
- Open
exploreagents for independent evidence gathering. - Open
planwhen the implementation path is unclear. - Open
implementeronly after the desired change is specific. - Open
revieworverifierto check the result. - Merge child results by citing evidence, changes, risks, and blockers.
User task: {{args}}
Version History
- ac8228e Current 2026-07-05 10:50


