agentsclimarketplace

Skill

Skill Seeed-Solution/reterminal_skill/skill

AI agent skill for Seeed reTerminal E Series, SenseCraft HMI playlists, ePaper dashboards, and IoT display automation.

Install
npx -y skills add Seeed-Solution/reterminal_skill --skill skill

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when creating, uploading, sending, deleting, or managing SenseCraft HMI playlists and pages through the HMI API.

SKILL.md

3.1 KB, as published. Nobody here has run it

reTerminal

Use this skill when the user asks to create, upload, send, delete, or manage HMI playlists/pages with the SenseCraft HMI API.

Requirements

The agent environment must provide:

  • HMI_API_BASE: SenseCraft HMI API base URL, for example https://sensecraft-hmi-api.seeed.cc
  • HMI_API_KEY: user API key sent as the api-key request header

Optional device defaults:

  • HMI_DEVICE_MAC: default target device MAC address
  • HMI_DEVICE_ID: default target device ID, resolved through GET /api/v2/user/device/list
  • HMI_DEVICE_NAME: default exact device name, resolved through GET /api/v2/user/device/list

Do not request, create, persist, or echo API keys during install or routine use. API key management uses JWT-only endpoints and is outside this skill.

Script

Use the bundled deterministic helper:

node scripts/reterminal-skill.mjs <command> [options]

Commands:

  • list-devices
  • create-playlist --name NAME [--mac-address MAC]
  • upload-image-base64 --image-base64 BASE64 [--filename NAME] [--mac-address MAC]
  • upload-file --file PATH [--filename NAME] [--mac-address MAC]
  • create-image-page --name NAME --image-url URL [--mac-address MAC]
  • upsert-pages --playlist-id ID --page-id ID [--sort N]
  • send-playlist --playlist-id ID [--mac-address MAC | --device-id ID | --device-name NAME]
  • set-refresh-interval (--seconds N | --minutes N) [--mac-address MAC | --device-id ID | --device-name NAME]
  • delete-playlist --playlist-id ID [--mac-address MAC | --device-id ID | --device-name NAME]
  • delete-page --page-id ID [--mac-address MAC | --device-id ID | --device-name NAME]
  • create-upload-send --name NAME (--image-base64 BASE64 | --file PATH) [--page-name NAME] [--mac-address MAC | --device-id ID | --device-name NAME]

For commands that need a target device, prefer this order:

  1. Use explicit --mac-address.
  2. Otherwise use HMI_DEVICE_MAC.
  3. Otherwise resolve --device-id, --device-name, HMI_DEVICE_ID, or HMI_DEVICE_NAME through list-devices.
  4. If no selector is provided and exactly one device is returned, use that device.
  5. If multiple devices are returned, stop and ask the user to choose a device ID or exact device name. Do not choose by fuzzy matching.

All commands print JSON. For failed downlink during create-upload-send, preserve the returned playlist_id and page_id from the JSON error so the user can retry or clean up.

For a 1-minute refresh interval, call set-refresh-interval --minutes 1; the script sends refresh_interval: 60 because the current local API stores and downlinks the value in seconds.

Safety

Deletion commands require explicit numeric IDs. Never delete playlists or pages by fuzzy name matching.

If the API returns code=9003, report that the API key is missing, invalid, revoked, or expired. If it returns code=401, report that authentication failed or the endpoint did not accept API-key fallback.

See references/api.md for endpoint details.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.