Python SDK for AgentCube — write apps that talk to the cube firmware (draw, scenes, feed helpers, later OTA/version check).
Part of CubeFW.
Status: scaffold. Core client will grow from the prototype in agentcube-sim.
pip install agentcube
# or editable:
pip install -e .from agentcube import Cube, Color
cube = Cube("192.168.1.97") # or sim: 127.0.0.1:8765
cube.ping()
cube.show_message(["Hello", "AgentCube"], colors=[Color.CYAN, Color.WHITE])agentcube-python/
README.md
pyproject.toml
agentcube/ # package
examples/
tests/
- agentcube-sim — local device twin + early client prototype
- agentcube-firmware — firmware +
VERSION - agentcube-feed — server-side display feeds
MIT