# Send AI Commander 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": "aic-dashboard",
    "name": "AI Commander Dashboard",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/lksrz/aic-dashboard",
    "canonicalUrl": "https://clawhub.ai/lksrz/aic-dashboard",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/aic-dashboard",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aic-dashboard",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "assets/index.html",
      "scripts/server.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "aic-dashboard",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-28T23:55:04.199Z",
      "expiresAt": "2026-05-05T23:55:04.199Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aic-dashboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aic-dashboard",
        "contentDisposition": "attachment; filename=\"aic-dashboard-1.8.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "aic-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/aic-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/aic-dashboard",
    "downloadUrl": "https://openagent3.xyz/downloads/aic-dashboard",
    "agentUrl": "https://openagent3.xyz/skills/aic-dashboard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/aic-dashboard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/aic-dashboard/agent.md"
  }
}
```
## Documentation

### AI Commander Dashboard

A companion dashboard for AI Commander agents. Displays inbound emails collected by the email-webhook skill and shows the status of browser sessions created by the browser-auth skill.

This skill is a read-only viewer — it does not capture credentials, control browsers, or send messages. It simply reads local data files and serves them via a token-protected web UI.

### Companion Skills

SkillWhat it doesemail-webhookReceives inbound emails and writes them to inbox.jsonlbrowser-authRuns a remote browser tunnel and writes session data to session.json

This dashboard reads both files and displays them in one place.

### What This Skill Does

Reads inbox.jsonl and displays the last 50 inbound emails
Reads session.json and shows whether an active browser session exists
Serves a token-gated web UI on a configurable local port
Refreshes automatically every 5 seconds

### Environment Variables

VariableRequiredDefaultDescriptionDASHBOARD_TOKENYes—Secret token for accessing the dashboard.PORTNo19195Port for the web dashboard.DASHBOARD_HOSTNo127.0.0.1IP to bind the dashboard to.INBOX_PATHNo./data/inbox.jsonlPath to inbound email data (from email-webhook).SESSION_PATHNo./data/session.jsonPath to session file (from browser-auth).

### Setup

Install dependencies:
npm install express@4.21.2


Start (zero config needed):
node scripts/server.js


Read the printed URL — it includes the auto-generated token:
🏠 AI COMMANDER DASHBOARD READY
Access URL: http://YOUR_IP:19195/?token=a3f9c2...

That's it. No configuration required.

### Optional Environment Variables

Override defaults only if needed:

VariableDefaultDescriptionDASHBOARD_TOKEN(random)Custom token instead of auto-generatedPORT19195Server portDASHBOARD_HOST0.0.0.0Bind addressINBOX_PATH./data/inbox.jsonlPath to email data (from email-webhook)SESSION_PATH./data/session.jsonPath to session file (from browser-auth)

### Security

A fresh random token is generated on every start if DASHBOARD_TOKEN is not set
All requests require the token (?token=, X-Dashboard-Token header, or Authorization: Bearer)
The UI stores the token in localStorage and removes it from the URL after load
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lksrz
- Version: 1.8.0
## 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-28T23:55:04.199Z
- Expires at: 2026-05-05T23:55:04.199Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/aic-dashboard)
- [Send to Agent page](https://openagent3.xyz/skills/aic-dashboard/agent)
- [JSON manifest](https://openagent3.xyz/skills/aic-dashboard/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/aic-dashboard/agent.md)
- [Download page](https://openagent3.xyz/downloads/aic-dashboard)