# Send Crypto Daily 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": "crypto-daily-dashboard",
    "name": "Crypto Daily Dashboard",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/dagangtj/crypto-daily-dashboard",
    "canonicalUrl": "https://clawhub.ai/dagangtj/crypto-daily-dashboard",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/crypto-daily-dashboard",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crypto-daily-dashboard",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "dashboard.js",
      "package.json"
    ],
    "downloadMode": "redirect",
    "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/crypto-daily-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/crypto-daily-dashboard",
    "downloadUrl": "https://openagent3.xyz/downloads/crypto-daily-dashboard",
    "agentUrl": "https://openagent3.xyz/skills/crypto-daily-dashboard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crypto-daily-dashboard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crypto-daily-dashboard/agent.md"
  }
}
```
## Documentation

### Crypto Daily Dashboard

A comprehensive cryptocurrency financial dashboard that displays:

📊 Binance account balances (spot, futures, total, unrealized PnL)
📈 Major crypto prices (BTC, ETH, SOL) with 24h change
🎭 Fear & Greed Index (market sentiment)
💸 Top funding rates (negative rates = earn by going long)
🏦 Economic tracking (balance, runway, income/expenses)

### Features

Beautiful terminal UI with box-drawing characters and emojis
Zero dependencies - uses only Node.js built-ins
Graceful fallbacks - works even without API keys (shows prices & sentiment)
Multi-source data - CoinGecko → Binance fallback for reliability
Configurable - all sensitive data via environment variables

### Installation

No installation needed - just configure and run!

### Required (for Binance balance)

export BINANCE_API_KEY="your_api_key"
export BINANCE_API_SECRET="your_api_secret"

### Optional

The dashboard works without API keys - it will show crypto prices and market sentiment using public APIs.

### Basic

node dashboard.js

### From OpenClaw

exec node ~/.openclaw/workspace/skills/crypto-daily-dashboard/dashboard.js

### As a cron job

Add to your OpenClaw cron:

openclaw cron add "0 9 * * *" "node ~/.openclaw/workspace/skills/crypto-daily-dashboard/dashboard.js" --label "daily-crypto-dashboard"

### Output Example

╔══════════════════════════════════════════════╗
║       💰 每日财务仪表盘 | 2026-02-26 09:00   ║
╚══════════════════════════════════════════════╝

📊 Binance 账户
────────────────────────────────────────
  现货: $1,234.56
  合约: $5,678.90
  总计: $6,913.46 USDT
  未实现盈亏: $123.45

📈 主要加密货币
────────────────────────────────────────
  bitcoin     $   65432.10  +2.3%
  ethereum    $    3456.78  -1.2%
  solana      $     123.45  +5.6%

🎭 市场情绪
────────────────────────────────────────
  😊 Greed: 67/100

💸 Funding Rate (负费率=做多赚钱)
────────────────────────────────────────
  BTC      -0.0123%  年化(3x): 13%
  ETH      -0.0089%  年化(3x): 9%

🏦 经济状态
────────────────────────────────────────
  🟢 状态: THRIVING
  💰 余额: $10,000.00
  📈 总收入: $15,000.00
  📉 总支出: $5,000.00
  ⏳ 跑道: 365 天

══════════════════════════════════════════════
💡 记住：不赚钱拔网线 | 安全第一 | 复利增长
══════════════════════════════════════════════

### Data Sources

Binance API - account balances and funding rates
CoinGecko API - crypto prices (free tier, no key needed)
Binance Public API - fallback for prices
Alternative.me API - Fear & Greed Index (free, no key needed)

### Security

No hardcoded credentials
API keys via environment variables only
Read-only API permissions recommended
No data sent to third parties

### "无法获取" (Cannot fetch)

Check your internet connection
Verify Binance API keys are set correctly
Ensure API keys have read permissions

### Rate limiting

The script uses multiple data sources with fallbacks. If one source is rate-limited, it automatically tries alternatives.

### License

MIT

### Author

Created for OpenClaw agent ecosystem
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dagangtj
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/crypto-daily-dashboard)
- [Send to Agent page](https://openagent3.xyz/skills/crypto-daily-dashboard/agent)
- [JSON manifest](https://openagent3.xyz/skills/crypto-daily-dashboard/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/crypto-daily-dashboard/agent.md)
- [Download page](https://openagent3.xyz/downloads/crypto-daily-dashboard)