Agent Skills
› terrense/LilBot-agent
› skillify
skillify
GitHub将重复工作流转换为可复用的 LilBot SKILL.md 文件。根据输入内容生成包含名称、描述、工具限制和使用场景的标准技能配置,确保技能具体且仅包含必要工具。
Trigger Scenarios
用户希望将特定工作流封装为可复用技能
需要优化或创建符合 LilBot 规范的 SKILL.md 文件
Install
npx skills add terrense/LilBot-agent --skill skillify -g -y
SKILL.md
Frontmatter
{
"name": "skillify",
"agent": "implementer",
"aliases": "skill-generator, make-skill",
"context": "fork",
"description": "Turn a repeated workflow into a reusable LilBot SKILL.md.",
"when_to_use": "Use when the user describes a reusable process, asks to create a skill, or repeats an agent workflow.",
"allowed-tools": "read_file, list_dir, grep_files, write_file, edit_file, load_skill, skill_list",
"argument-hint": "<workflow description>"
}
Create or improve a LilBot skill from this workflow:
{{args}}
Target format:
---
name: short-kebab-name
description: One sentence describing the capability.
allowed-tools: read_file, grep_files
when_to_use: Use when ...
context: inline
---
Actionable instructions for the model.
Rules:
- Keep the skill specific enough to be useful.
- Include only tools that are actually needed.
- Use
context: forkonly for self-contained work that can run independently. - Add companion files only when they reduce prompt size or improve accuracy.
Version History
- ac8228e Current 2026-07-05 10:50


