Agent Skills
› Fullive-AI/Anima
› light
light
GitHub用于Anima智能灯光设备的决策技能,涵盖昼夜节律亮度、色温启发式规则及平滑过渡。指导模型选择开关灯、调节亮度或色温等动作,并基于时间OfDay信号优化照明偏好。
Trigger Scenarios
用户请求调整灯光设置
需要根据时间自动优化环境光
需要生成单个灯光设备控制指令
Install
npx skills add Fullive-AI/Anima --skill light -g -y
SKILL.md
Frontmatter
{
"name": "light",
"metadata": {
"version": "0.1.0",
"device_types": [
"light",
"ceiling_light",
"desk_lamp",
"led_strip"
]
},
"description": "Use when reasoning about smart lights in Anima. Covers circadian brightness and color-temperature heuristics, smooth transitions, and choosing `set_brightness`, `set_color_temp`, `turn_on`, or `turn_off`."
}
Light
Use this skill for device-level lighting decisions and preference learning.
Load These Resources
references/knowledge.mdfor circadian lighting rules and energy heuristics.references/decide.mdwhen generating a single-device action.references/learn.mdwhen summarizing long-term lighting preferences.scripts/actions.pyfor the structured action helpers exposed to the runtime.
Working Rules
- Prefer smooth transitions over abrupt jumps.
- Treat time of day as a primary signal for brightness and color temperature.
- If current lighting is already reasonable, return
none.
Version History
- 15e7c43 Current 2026-07-05 18:36


