Agent Skills
› terrense/LilBot-agent
› batch
batch
GitHub将大型请求拆解为可追踪的较小任务批次,制定执行计划、识别依赖与并行项,设定验证关卡及风险预警,适用于复杂任务的分解与协调。
触发场景
需要处理大规模或复杂请求时
需要将任务拆分为多个子步骤进行并行或串行处理时
安装
npx skills add terrense/LilBot-agent --skill batch -g -y
SKILL.md
Frontmatter
{
"name": "batch",
"context": "inline",
"description": "Break a large request into a tracked batch of smaller tasks.",
"when_to_use": "Use for multi-part work, migrations, audits, large refactors, or anything that needs parallel exploration.",
"allowed-tools": "update_plan, checklist_write, checklist_update, checklist_add, task_create, task_list, agent_open, agent_eval, agent_close"
}
Convert the request into a managed batch:
{{args}}
Create a short execution plan, group related work, identify dependencies, and decide what can run in parallel. Use subagents for independent investigation or verification. Keep each task small enough to review and test.
Output:
PLAN: ordered batch list. PARALLEL: items safe to run concurrently. GATES: validation required before proceeding. RISKS: the main ways the batch can go wrong.
版本历史
- ac8228e 当前 2026-07-05 10:49


