Agent Skills
› terrense/LilBot-agent
› skill-creator
skill-creator
GitHub用于创建或优化 LilBot 技能,指导如何定义可复用的 Agent 行为抽象。涵盖技能设计原则、触发场景、工作流及验证规范,确保技能作为轻量级资产而非执行逻辑存在。
Trigger Scenarios
需要创建新的 Agent 技能
需要改进现有的 Agent 技能
判断是否应将某功能抽象为 Skill
Install
npx skills add terrense/LilBot-agent --skill skill-creator -g -y
SKILL.md
Frontmatter
{
"mode": "inline",
"name": "skill-creator",
"description": "Create or improve LilBot skills and decide when a skill is the right abstraction."
}
Skill Creator
Use this skill when adding reusable agent behavior.
Skill design rules:
- A skill is guidance plus lightweight assets, not executable business logic.
- Use a tool when structured execution is required.
- Use MCP when an external service has multiple tools/resources.
- Keep frontmatter complete: name, description, and mode.
- Include trigger guidance, workflow, verification, and failure handling.
User task: {{args}}
Version History
- ac8228e Current 2026-07-05 10:50


