Getting Started
๐ฆ Installation
pip install agent-skill-sdk
๐งฑ Folder Structure
agent_skill_sdk/
โโโ agent/
โโโ plugins/
โโโ skills/
โโโ cli/
โโโ config/
โโโ examples/
โโโ tests/
โโโ dashboard/
๐งช First Run
from agent_skill_sdk import Agent
from examples.fan_control import turn_on_fan
agent = Agent()
agent.register(turn_on_fan)
agent.trigger("on_temperature_high", {"temp": 36})