{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/dashboard",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dashboard",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "design.md",
      "sources.md",
      "widgets.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/dashboard",
    "agentPageUrl": "https://openagent3.xyz/skills/dashboard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dashboard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dashboard/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Data Storage",
        "body": "~/dashboard/\n├── registry.json           # Dashboard index\n├── {name}/\n│   ├── config.json         # Layout, widgets\n│   ├── data.json           # Current data\n│   └── index.html          # Dashboard page\n\nCreate on first use: mkdir -p ~/dashboard"
      },
      {
        "title": "Scope",
        "body": "This skill:\n\n✅ Generates static HTML dashboards\n✅ Creates fetch scripts user can run\n✅ Stores dashboards in ~/dashboard/\n\nUser-driven model:\n\nUser specifies data sources\nUser provides API credentials via environment\nUser runs fetch scripts (cron or manual)\nSkill generates HTML and fetch scripts\n\nThis skill does NOT:\n\n❌ Access credentials without user providing them\n❌ Run automated fetches (user's cron runs scripts)\n❌ Scrape services without user consent"
      },
      {
        "title": "Quick Reference",
        "body": "TopicFileData source patternssources.mdVisual design rulesdesign.mdWidget templateswidgets.md"
      },
      {
        "title": "1. User Provides Data",
        "body": "When creating a dashboard:\n\nUser: \"Dashboard for my Stripe revenue\"\nAgent: \"I'll create a fetch script. Set STRIPE_API_KEY \n        in your environment, then run the script.\"\n→ Generates: ~/dashboard/stripe/fetch.sh\n→ User adds to cron: */15 * * * * ~/dashboard/stripe/fetch.sh"
      },
      {
        "title": "2. Architecture",
        "body": "[User's Cron] → [fetch.sh] → [data.json] → [index.html]\n                    ↓\n              Uses $API_KEY from env\n\nAgent generates scripts. User runs them."
      },
      {
        "title": "3. Fetch Script Template",
        "body": "#!/bin/bash\n# Requires: STRIPE_API_KEY in environment\ncurl -s -u \"$STRIPE_API_KEY:\" \\\n  https://api.stripe.com/v1/balance \\\n  | jq '.' > ~/dashboard/stripe/data.json"
      },
      {
        "title": "4. Visual QA (Before Delivery)",
        "body": "Open in browser, take screenshot\nCheck: no overlap, readable fonts (≥14px), good contrast\nIf issues → fix → repeat\nOnly deliver after visual validation"
      },
      {
        "title": "5. Design Defaults",
        "body": "ElementValueBackground#0f172a (dark) / #f8fafc (light)Text#e2e8f0 (dark) / #1e293b (light)Spacing16px, 24px, 32pxCorners8pxKPI48-72px number, 14px label"
      },
      {
        "title": "6. Security",
        "body": "Credentials via env vars, never in files\nDashboards on 127.0.0.1 by default\nNo PII in displayed data\nUser adds auth if exposing to network"
      }
    ],
    "body": "Data Storage\n~/dashboard/\n├── registry.json           # Dashboard index\n├── {name}/\n│   ├── config.json         # Layout, widgets\n│   ├── data.json           # Current data\n│   └── index.html          # Dashboard page\n\n\nCreate on first use: mkdir -p ~/dashboard\n\nScope\n\nThis skill:\n\n✅ Generates static HTML dashboards\n✅ Creates fetch scripts user can run\n✅ Stores dashboards in ~/dashboard/\n\nUser-driven model:\n\nUser specifies data sources\nUser provides API credentials via environment\nUser runs fetch scripts (cron or manual)\nSkill generates HTML and fetch scripts\n\nThis skill does NOT:\n\n❌ Access credentials without user providing them\n❌ Run automated fetches (user's cron runs scripts)\n❌ Scrape services without user consent\nQuick Reference\nTopic\tFile\nData source patterns\tsources.md\nVisual design rules\tdesign.md\nWidget templates\twidgets.md\nCore Rules\n1. User Provides Data\n\nWhen creating a dashboard:\n\nUser: \"Dashboard for my Stripe revenue\"\nAgent: \"I'll create a fetch script. Set STRIPE_API_KEY \n        in your environment, then run the script.\"\n→ Generates: ~/dashboard/stripe/fetch.sh\n→ User adds to cron: */15 * * * * ~/dashboard/stripe/fetch.sh\n\n2. Architecture\n[User's Cron] → [fetch.sh] → [data.json] → [index.html]\n                    ↓\n              Uses $API_KEY from env\n\n\nAgent generates scripts. User runs them.\n\n3. Fetch Script Template\n#!/bin/bash\n# Requires: STRIPE_API_KEY in environment\ncurl -s -u \"$STRIPE_API_KEY:\" \\\n  https://api.stripe.com/v1/balance \\\n  | jq '.' > ~/dashboard/stripe/data.json\n\n4. Visual QA (Before Delivery)\nOpen in browser, take screenshot\nCheck: no overlap, readable fonts (≥14px), good contrast\nIf issues → fix → repeat\nOnly deliver after visual validation\n5. Design Defaults\nElement\tValue\nBackground\t#0f172a (dark) / #f8fafc (light)\nText\t#e2e8f0 (dark) / #1e293b (light)\nSpacing\t16px, 24px, 32px\nCorners\t8px\nKPI\t48-72px number, 14px label\n6. Security\nCredentials via env vars, never in files\nDashboards on 127.0.0.1 by default\nNo PII in displayed data\nUser adds auth if exposing to network"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/dashboard",
    "publisherUrl": "https://clawhub.ai/ivangdavila/dashboard",
    "owner": "ivangdavila",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}