install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ak-khalis/aida" ~/.claude/skills/openclaw-skills-aida && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/ak-khalis/aida" ~/.openclaw/skills/openclaw-skills-aida && rm -rf "$T"
manifest:
skills/ak-khalis/aida/SKILL.mdsource content
AIDA Skill for OpenClaw
Skill Name
aida
Description
Conversational interface for AIDA (AI-driven smart building automation platform).
Supported Intents
- aida.status → Get live building status
- aida.control → Control devices (lights, shades, HVAC)
- aida.optimize → Optimize building objectives
- aida.diagnostics → Run preventive diagnostics
Example Utterances
- "AIDA, what's the building status?"
- "Optimize for energy savings."
- "Turn off lights on floor 3."
- "Run diagnostics on this zone."
AIDA Objectives Mapping
- Comfort Optimization
- Energy Optimization
- Preventive Maintenance
API Expectations
The skill expects AIDA to expose REST endpoints:
- GET /status
- POST /control
- POST /optimize
- GET /diagnostics
All calls are authenticated via bearer token.