{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/aic-dashboard",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aic-dashboard",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "assets/index.html",
      "scripts/server.js"
    ],
    "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/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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/aic-dashboard",
    "agentPageUrl": "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"
  },
  "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": "AI Commander Dashboard",
        "body": "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.\n\nThis 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."
      },
      {
        "title": "Companion Skills",
        "body": "SkillWhat it doesemail-webhookReceives inbound emails and writes them to inbox.jsonlbrowser-authRuns a remote browser tunnel and writes session data to session.json\n\nThis dashboard reads both files and displays them in one place."
      },
      {
        "title": "What This Skill Does",
        "body": "Reads inbox.jsonl and displays the last 50 inbound emails\nReads session.json and shows whether an active browser session exists\nServes a token-gated web UI on a configurable local port\nRefreshes automatically every 5 seconds"
      },
      {
        "title": "Environment Variables",
        "body": "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)."
      },
      {
        "title": "Setup",
        "body": "Install dependencies:\nnpm install express@4.21.2\n\n\nStart (zero config needed):\nnode scripts/server.js\n\n\nRead the printed URL — it includes the auto-generated token:\n🏠 AI COMMANDER DASHBOARD READY\nAccess URL: http://YOUR_IP:19195/?token=a3f9c2...\n\nThat's it. No configuration required."
      },
      {
        "title": "Optional Environment Variables",
        "body": "Override defaults only if needed:\n\nVariableDefaultDescriptionDASHBOARD_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)"
      },
      {
        "title": "Security",
        "body": "A fresh random token is generated on every start if DASHBOARD_TOKEN is not set\nAll requests require the token (?token=, X-Dashboard-Token header, or Authorization: Bearer)\nThe UI stores the token in localStorage and removes it from the URL after load"
      }
    ],
    "body": "AI Commander Dashboard\n\nA 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.\n\nThis 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.\n\nCompanion Skills\nSkill\tWhat it does\nemail-webhook\tReceives inbound emails and writes them to inbox.jsonl\nbrowser-auth\tRuns a remote browser tunnel and writes session data to session.json\n\nThis dashboard reads both files and displays them in one place.\n\nWhat This Skill Does\nReads inbox.jsonl and displays the last 50 inbound emails\nReads session.json and shows whether an active browser session exists\nServes a token-gated web UI on a configurable local port\nRefreshes automatically every 5 seconds\nEnvironment Variables\nVariable\tRequired\tDefault\tDescription\nDASHBOARD_TOKEN\tYes\t—\tSecret token for accessing the dashboard.\nPORT\tNo\t19195\tPort for the web dashboard.\nDASHBOARD_HOST\tNo\t127.0.0.1\tIP to bind the dashboard to.\nINBOX_PATH\tNo\t./data/inbox.jsonl\tPath to inbound email data (from email-webhook).\nSESSION_PATH\tNo\t./data/session.json\tPath to session file (from browser-auth).\nSetup\nInstall dependencies:\nnpm install express@4.21.2\n\nStart (zero config needed):\nnode scripts/server.js\n\nRead the printed URL — it includes the auto-generated token:\n🏠 AI COMMANDER DASHBOARD READY\nAccess URL: http://YOUR_IP:19195/?token=a3f9c2...\n\n\nThat's it. No configuration required.\n\nOptional Environment Variables\n\nOverride defaults only if needed:\n\nVariable\tDefault\tDescription\nDASHBOARD_TOKEN\t(random)\tCustom token instead of auto-generated\nPORT\t19195\tServer port\nDASHBOARD_HOST\t0.0.0.0\tBind address\nINBOX_PATH\t./data/inbox.jsonl\tPath to email data (from email-webhook)\nSESSION_PATH\t./data/session.json\tPath to session file (from browser-auth)\nSecurity\nA fresh random token is generated on every start if DASHBOARD_TOKEN is not set\nAll requests require the token (?token=, X-Dashboard-Token header, or Authorization: Bearer)\nThe UI stores the token in localStorage and removes it from the URL after load"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/lksrz/aic-dashboard",
    "publisherUrl": "https://clawhub.ai/lksrz/aic-dashboard",
    "owner": "lksrz",
    "version": "1.8.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}