Agent Skills
› Fullive-AI/Anima
› skill_creator
skill_creator
GitHub用于将用户的自然语言需求转化为位于 skills/custom/ 目录下的自定义技能包。通过先分析工作流、触发条件和约束,再按规范生成 SKILL.md 等文件,确保技能清晰且一致。
Trigger Scenarios
用户要求创建新技能
用户要求生成自定义技能包
用户要求脚手架化技能
Install
npx skills add Fullive-AI/Anima --skill skill_creator -g -y
SKILL.md
Frontmatter
{
"name": "skill_creator",
"metadata": {
"version": "0.1.0",
"device_types": [
"skill_creator"
]
},
"description": "Use when the user asks Anima to create, generate, scaffold, or customize a new skill package from a natural-language requirement."
}
Skill Creator
Use this skill for turning a user request into a new custom skill package under skills/custom/.
Work analysis-first: extract the repeatable workflow, trigger, inputs, constraints, and success criteria before generating any files.
Load These Resources
references/knowledge.mdfor packaging rules and generation constraints.references/chat.mdwhen deciding whether to create a new skill from user chat.scripts/actions.pyfor the runtime file-generation workflow.
Working Rules
- Generate skills only inside
skills/custom/. - Preserve the same package shape as built-in skills:
SKILL.md,references/, and optionalscripts/. - Prefer clear, conservative skills over overly broad generic automations.
- If the request is ambiguous, ask for clarification instead of generating a vague skill.
- Keep the generated skill aligned across all files: the trigger, supported actions, no-op boundary, and learned preferences must describe the same workflow.
Version History
- 15e7c43 Current 2026-07-05 18:36


