# Send Dashboard to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dashboard",
    "name": "Dashboard",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/ivangdavila/dashboard",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/dashboard",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/dashboard",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dashboard",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "design.md",
      "sources.md",
      "widgets.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "dashboard",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T07:28:02.500Z",
      "expiresAt": "2026-05-06T07:28:02.500Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dashboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dashboard",
        "contentDisposition": "attachment; filename=\"dashboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "dashboard"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/dashboard"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dashboard",
    "downloadUrl": "https://openagent3.xyz/downloads/dashboard",
    "agentUrl": "https://openagent3.xyz/skills/dashboard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dashboard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dashboard/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T07:28:02.500Z
- Expires at: 2026-05-06T07:28:02.500Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/dashboard)
- [Send to Agent page](https://openagent3.xyz/skills/dashboard/agent)
- [JSON manifest](https://openagent3.xyz/skills/dashboard/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/dashboard/agent.md)
- [Download page](https://openagent3.xyz/downloads/dashboard)