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


