← All skills
Tencent SkillHub · Communication & Collaboration

dakboard

Manage DAKboard screens, devices, and push custom display data.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage DAKboard screens, devices, and push custom display data.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/dakboard.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

DAKboard Skill

This skill provides a command-line interface to interact with the DAKboard API. It allows for comprehensive management of devices and screens, and enables pushing custom data for dynamic displays.

Setup

Before using this skill, you must set your DAKboard API key as an environment variable. export DAKBOARD_API_KEY="your_api_key_here" The primary tool for this skill is the Python script located at scripts/dakboard.py.

1. List Devices

Retrieves a list of all DAKboard devices (e.g., Raspberry Pis) linked to your account. This is useful for finding the device_id needed for other commands. Usage: python3 scripts/dakboard.py devices

2. List Screens

Retrieves a list of all available screen layouts (e.g., "Big Monthly", "Two Column"). This is used to find the screen_id needed to change a device's display. Usage: python3 scripts/dakboard.py screens

3. Update Device Screen

Changes the screen layout currently being displayed on a specific device. Usage: # Usage: update-device <device_id> <screen_id> python3 scripts/dakboard.py update-device "dev_0c3e1405a961" "scr_709367acf3d4"

4. Push Metric

Pushes a single, named data point to a "DAKboard Metrics" block. This is ideal for displaying real-time data like sensor readings or statistics. Usage: # Usage: metric <key> <value> python3 scripts/dakboard.py metric "indoor_temp" "72.5"

5. Push Fetch Data

Pushes a complete JSON object to a "Fetch" block on a screen. This is for displaying more complex, structured data. Usage: # Usage: fetch '<json_string>' python3 scripts/dakboard.py fetch '{"tasks": ["Buy milk", "Walk the dog"], "priority": "high"}'

External Endpoints

URLData SentPurposehttps://dakboard.com/api/API Key, Device IDs, Screen IDs, Metrics DataUsed to interact with the DAKboard API to list and update devices, and push metrics/fetch data to custom blocks.

Data Handling

Only data provided as arguments to the skill commands (such as messages or metrics to be displayed on the DAKboard) and your DAKBOARD_API_KEY are sent to dakboard.com. No local files are read or written.

Model Invocation Note

This skill is designed to be autonomously invoked by the OpenClaw agent when requested by the user. You can opt-out of autonomous invocation by disabling this skill.

Trust Statement

By using this skill, data sent is limited to the arguments provided and sent directly to dakboard.com. Only install this skill if you trust DAKboard with the information you choose to display.

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/dakboard.py Scripts