一键导入
your-skill-name
Use when reasoning about your custom device type in Anima. Replace this text with when the skill should trigger and what actions it can produce.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when reasoning about your custom device type in Anima. Replace this text with when the skill should trigger and what actions it can produce.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Automatically activates the connected humidifier and sets its target humidity to 50% when indoor humidity drops below 40% RH
Use when the user asks Anima to create, generate, scaffold, or customize a new skill package from a natural-language requirement.
Turn off the connected air purifier immediately after the user leaves home
A recurring automated skill that triggers a wake-up alarm via connected smart speaker at 8 AM local time on workdays and skips alarms on holidays
Use when reasoning about air conditioners in Anima. Covers comfort temperature ranges, energy heuristics, humidity interaction, and choosing `set_temperature`, `set_mode`, `turn_on`, or `turn_off`.
Provides reasoning and control capabilities for air purifier devices within the Anima platform.
| name | your-skill-name |
| description | Use when reasoning about your custom device type in Anima. Replace this text with when the skill should trigger and what actions it can produce. |
| metadata | {"device_types":["your_device_type"],"version":"0.1.0"} |
This folder is a starter template for a user-authored Anima skill.
Before you use it:
_template/ to skills/custom/<your-skill-name>/name: to a real skill nameyour_device_type with the device type your adapter emitsreferences/knowledge.md for domain rules, comfort ranges, and device interactions.references/decide.md when generating a single-device action.references/learn.md when updating the learned profile from usage history.scripts/actions.py for the runtime action helpers exposed to Anima.scripts/actions.py that the target adapter can execute.your-skill-name with a lowercase stable id such as fan or plant_watering.metadata.device_types:
Must match the device.type values your adapter produces.references/knowledge.md:
Add real target ranges, risk conditions, and interactions.references/decide.md:
Keep the output schema strict. Do not let the model invent actions.references/learn.md:
Keep the output structured. Avoid free-form essays.scripts/actions.py:
Only keep helpers that are valid for your device.none