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


