# Send Beaconchain 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": "beaconchain",
    "name": "Beaconchain",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ThisIsJeron/beaconchain",
    "canonicalUrl": "https://clawhub.ai/ThisIsJeron/beaconchain",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/beaconchain",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=beaconchain",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-notes.md",
      "scripts/check_dashboard.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "beaconchain",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T10:55:37.521Z",
      "expiresAt": "2026-05-07T10:55:37.521Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=beaconchain",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=beaconchain",
        "contentDisposition": "attachment; filename=\"beaconchain-0.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "beaconchain"
      },
      "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/beaconchain"
    },
    "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/beaconchain",
    "downloadUrl": "https://openagent3.xyz/downloads/beaconchain",
    "agentUrl": "https://openagent3.xyz/skills/beaconchain/agent",
    "manifestUrl": "https://openagent3.xyz/skills/beaconchain/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/beaconchain/agent.md"
  }
}
```
## Documentation

### Beaconchain

Use this skill to reduce validator-check anxiety: do one concise daily health check, then only surface issues.

### Quick Start

Set credentials as env vars:

BEACONCHAIN_API_KEY
BEACONCHAIN_DASHBOARD_ID


Run:

python3 skills/beaconchain/scripts/check_dashboard.py --json

Interpret exit code:

0 = good
2 = bad (needs attention)
1 = error (auth/rate-limit/endpoint failure)

### Monitoring Workflow

Run scripts/check_dashboard.py once per day.
If status=good, respond with a short reassurance and avoid extra detail.
If status=bad, report:

BeaconScore (if available)
Which signal tripped (missed/penalty fallback)
Next action: inspect dashboard details and validator logs.


If status=error, report key checks:

API key validity
dashboard ID
plan/rate-limit permissions.

### Basic check

python3 skills/beaconchain/scripts/check_dashboard.py

### JSON output (for cron/parsing)

python3 skills/beaconchain/scripts/check_dashboard.py --json

### Custom threshold

python3 skills/beaconchain/scripts/check_dashboard.py --warn-threshold 75

### Notes

Script uses POST /api/v2/ethereum/validators/performance-aggregate with dashboard selector and reads data.beaconscore.total directly.
Default window is 24h; supported windows: 24h, 7d, 30d, 90d, all_time.
Keep responses intentionally terse when healthy to support low-anxiety operations.

### Security & Transparency

Runtime: python3 only, using Python standard library (argparse, json, urllib, datetime).
Credentials: reads BEACONCHAIN_API_KEY and BEACONCHAIN_DASHBOARD_ID (or equivalent CLI flags).
Network egress: only https://beaconcha.in/api/v2/ethereum/validators/performance-aggregate.
Local filesystem: no writes, no shell execution, no subprocess spawning.

### References

API overview: references/api-notes.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ThisIsJeron
- Version: 0.1.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-30T10:55:37.521Z
- Expires at: 2026-05-07T10:55:37.521Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/beaconchain)
- [Send to Agent page](https://openagent3.xyz/skills/beaconchain/agent)
- [JSON manifest](https://openagent3.xyz/skills/beaconchain/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/beaconchain/agent.md)
- [Download page](https://openagent3.xyz/downloads/beaconchain)