← All skills
Tencent SkillHub · Data Analysis

Dashboard

Build custom dashboards from any data source with local hosting and visual QA loops.

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

Build custom dashboards from any data source with local hosting and visual QA loops.

⬇ 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, design.md, sources.md, widgets.md

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 9 sections Open source page

Data Storage

~/dashboard/ ├── registry.json # Dashboard index ├── {name}/ │ ├── config.json # Layout, widgets │ ├── data.json # Current data │ └── index.html # Dashboard page Create on first use: mkdir -p ~/dashboard

Scope

This skill: ✅ Generates static HTML dashboards ✅ Creates fetch scripts user can run ✅ Stores dashboards in ~/dashboard/ User-driven model: User specifies data sources User provides API credentials via environment User runs fetch scripts (cron or manual) Skill generates HTML and fetch scripts This skill does NOT: ❌ Access credentials without user providing them ❌ Run automated fetches (user's cron runs scripts) ❌ Scrape services without user consent

Quick Reference

TopicFileData source patternssources.mdVisual design rulesdesign.mdWidget templateswidgets.md

1. User Provides Data

When creating a dashboard: User: "Dashboard for my Stripe revenue" Agent: "I'll create a fetch script. Set STRIPE_API_KEY in your environment, then run the script." → Generates: ~/dashboard/stripe/fetch.sh → User adds to cron: */15 * * * * ~/dashboard/stripe/fetch.sh

2. Architecture

[User's Cron] → [fetch.sh] → [data.json] → [index.html] ↓ Uses $API_KEY from env Agent generates scripts. User runs them.

3. Fetch Script Template

#!/bin/bash # Requires: STRIPE_API_KEY in environment curl -s -u "$STRIPE_API_KEY:" \ https://api.stripe.com/v1/balance \ | jq '.' > ~/dashboard/stripe/data.json

4. Visual QA (Before Delivery)

Open in browser, take screenshot Check: no overlap, readable fonts (≥14px), good contrast If issues → fix → repeat Only deliver after visual validation

5. Design Defaults

ElementValueBackground#0f172a (dark) / #f8fafc (light)Text#e2e8f0 (dark) / #1e293b (light)Spacing16px, 24px, 32pxCorners8pxKPI48-72px number, 14px label

6. Security

Credentials via env vars, never in files Dashboards on 127.0.0.1 by default No PII in displayed data User adds auth if exposing to network

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs
  • SKILL.md Primary doc
  • design.md Docs
  • sources.md Docs
  • widgets.md Docs