Languages: English | 简体中文 | 日本語
A skill for AI agents to interact with Dot. devices through the OpenAPI.
📚 Official Documentation: https://dot.mindreset.tech/docs/service/open/skill
Dot Skill allows you to:
- Control device content: Display text, images, Canvas API layouts, and other content on your Dot. devices
- Design Canvas layouts: Build
windowDatacards, dashboards, list views, conditions, and formatting with a dedicated Canvas designer skill - Name API content: Set a task alias for text, image, and Canvas API items so they are easy to identify
- Query device status: Get real-time information about device battery, WiFi signal, and current display
- Manage devices: List your devices, get device IDs, and switch between content
The repository now splits responsibilities into:
dot-device-openapi: device interaction, API calls, and helper scriptsdot-canvas-designer: Canvas APIwindowDatadesign and layout guidancedot-openapi: compatibility router for older installs
- A Dot. account with at least one device
- An API key from the Dot. App
python3installed locally (for using the helper scripts)
Add this repository as a Codex marketplace:
codex plugin marketplace add git@github.com:MindReset/dot_skill.gitThen install the plugin:
codex plugin add dot-skill@mindreset-dot-skillStart a new Codex thread after installation so Codex can load the plugin's skills.
Import the OpenAPI schema:
https://raw.githubusercontent.com/MindReset/dot_skill/master/openapi/dot-openapi.yaml
Configure Bearer authentication with a Dot. API key:
Authorization: Bearer dot_app_<your_api_key>Public GPTs or agents that call Dot. APIs should include the Dot. privacy policy and terms:
- Privacy Policy: https://dot.mindreset.tech/docs/privacy
- Terms of Service: https://dot.mindreset.tech/docs/terms
npx skills add https://github.com/MindReset/dot_skill.gitInstall only the device interaction skill:
npx skills add https://github.com/MindReset/dot_skill.git --skill dot-device-openapiInstall only the Canvas designer skill:
npx skills add https://github.com/MindReset/dot_skill.git --skill dot-canvas-designermkdir -p ~/.agents/skills
ln -sfn /path/to/dot_skill/skills/dot-device-openapi ~/.agents/skills/dot-device-openapi
ln -sfn /path/to/dot_skill/skills/dot-canvas-designer ~/.agents/skills/dot-canvas-designerRestart your agent after installation.
- Get your API key: Follow the official documentation
- Get your device ID: Follow the official documentation
- Start using the API: See Device API Reference for endpoints and Canvas windowData Reference for Canvas layout design
| Platform | Status | Integration path |
|---|---|---|
| Codex | Supported | Repository marketplace at .agents/plugins/marketplace.json |
| OpenAI GPT Actions | Supported via schema | Import openapi/dot-openapi.yaml and configure Bearer auth |
| Claude / MCP clients | Planned | Use the OpenAPI schema today; a remote MCP server can be added later |
| Cursor and skill-compatible agents | Supported as skill docs | Install skills/dot-device-openapi and/or skills/dot-canvas-designer, or read this repository as context |
| MCP Registry | Planned | Publish server metadata after a Dot MCP server exists |
| Endpoint | Method | Description |
|---|---|---|
/api/authV2/open/devices |
GET | List all your devices |
/api/authV2/open/timezones |
GET | List supported timezones |
/api/authV2/open/device/:deviceId/status |
GET | Get device status |
/api/authV2/open/device/:deviceId/settings |
GET | Get device settings |
/api/authV2/open/device/:deviceId/settings |
POST | Update device settings |
/api/authV2/open/device/:deviceId/next |
POST | Switch to next content |
/api/authV2/open/device/:deviceId/text |
POST | Display text content |
/api/authV2/open/device/:deviceId/image |
POST | Display image content |
/api/authV2/open/device/:deviceId/canvas |
POST | Display canvas content |
/api/authV2/open/device/:deviceId/:taskType/list |
GET | List device tasks |
The skills/dot-device-openapi/scripts/ directory contains Python helper scripts:
send_text.py: Send text to a devicesend_image.py: Send an image to a devicesend_canvas.py: Send a Canvas API JSON layout to a deviceget_device_status.py: Get current device statusget_device_settings.py: Get device settingsupdate_device_settings.py: Update device settingslist_devices.py: List all your deviceslist_tasks.py: List device loop or fixed tasksswitch_next.py: Switch to the next content
Text, image, and Canvas helper scripts support --task-alias to set the human-readable task name shown in the device task list.
- Device API Reference - Device interaction and endpoint documentation
- Canvas windowData Reference - Canvas layout design rules
- Canvas Examples - Example Canvas payloads
- Authentication - How to authenticate requests
- OpenAPI Schema - Importable schema for Actions and OpenAPI-compatible tools
- Security Policy - Credential handling and vulnerability reporting
- Official Dot. Security Policy - Responsible disclosure process
- Support - Issue reporting guidance
- Changelog - Release notes
This repository is the public, user-facing skill package for Dot. device control and Canvas design. When Dot Web changes API behavior, keep these surfaces aligned:
openapi/dot-openapi.yamlfor OpenAPI-compatible agents and GPT Actionsskills/dot-device-openapifor device interaction scripts and endpoint guidanceskills/dot-canvas-designerfor Canvas API payload design rulesplugins/dot-skillfor Codex plugin packaging- Dot Web public docs under
dot_web_docs
Internal-only Studio V2 implementation, MongoDB migration, and render-debugging workflows belong in dot_internal_skill, not this public package.
MIT License - see LICENSE for details.