{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-hq",
    "name": "Agent HQ",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/thibautrey/agent-hq",
    "canonicalUrl": "https://clawhub.ai/thibautrey/agent-hq",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-hq",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-hq",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.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/agent-hq"
    },
    "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/agent-hq",
    "agentPageUrl": "https://openagent3.xyz/skills/agent-hq/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-hq/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-hq/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": "Summary",
        "body": "Backend + frontend: Express API with SQLite board + Vite/React UI served from frontend-react/dist.\nAutomation pieces: Jarvis summary (scripts/jarvis-connector.js), Telegram notifier (scripts/notify-jarvis-telegram.js + cron), plus a high-priority watcher inside backend/server.js.\nData: data/board.json seeds missions/agents/cards; the board persists in data/mission.db.\nNotifications: config/telegram.json (or AGENT_HQ_TELEGRAM_* env vars) lets you send alerts to Telegram."
      },
      {
        "title": "Setup steps",
        "body": "Clone the repo and install deps:\ngit clone https://github.com/thibautrey/agent-hq.git\ncd agent-hq\nnpm install\nnpm --prefix frontend-react install\n\n\nEdit config/telegram.json with your botToken/chatId (or set AGENT_HQ_TELEGRAM_TOKEN/AGENT_HQ_TELEGRAM_CHAT_ID). Keep this file secret.\nBuild the UI and start the server:\nnpm --prefix frontend-react run build\nnpm run start:agent-hq\n\nThe UI is served on / and the API lives under /api (default port 4000).\nConfigure cron jobs (Heartbeats + Telegram):\n\nJarvis summary: node scripts/jarvis-connector.js or scripts/notify-jarvis-telegram.js --force as needed.\nTelegram notifier cron (see run-telegram-notifier.sh).\n\n\nUse the UI to create cards or POST /api/cards//api/cards/quick to keep Jarvis busy."
      },
      {
        "title": "Runtime commands",
        "body": "View board: curl http://localhost:4000/api/board\nTrigger Telegram alert: curl -X POST http://localhost:4000/api/notify-telegram\nQuick card: curl -X POST http://localhost:4000/api/cards/quick -H \"Content-Type: application/json\" -d '{\"text\":\"Design review needed\"}'\nJarvis summary: node scripts/jarvis-connector.js"
      },
      {
        "title": "Tips",
        "body": "Drop cards directly into data/board.json before first run for a seeded mission.\nhigh_priority_jobs table in SQLite prevents duplicate Telegram alerts.\nAGENT_HQ_API_TOKEN protects mutating endpoints for scripted integrations."
      },
      {
        "title": "Release notes",
        "body": "2026-02-09 – Mission-control stack created, README translated to English, changelog added, and the Clawdhub installer skill agent-hq@1.0.0 published (now mirrored with this manifest).\n\nEnjoy running your own Mission Control."
      }
    ],
    "body": "Agent HQ Installation\nSummary\nBackend + frontend: Express API with SQLite board + Vite/React UI served from frontend-react/dist.\nAutomation pieces: Jarvis summary (scripts/jarvis-connector.js), Telegram notifier (scripts/notify-jarvis-telegram.js + cron), plus a high-priority watcher inside backend/server.js.\nData: data/board.json seeds missions/agents/cards; the board persists in data/mission.db.\nNotifications: config/telegram.json (or AGENT_HQ_TELEGRAM_* env vars) lets you send alerts to Telegram.\nSetup steps\nClone the repo and install deps:\ngit clone https://github.com/thibautrey/agent-hq.git\ncd agent-hq\nnpm install\nnpm --prefix frontend-react install\n\nEdit config/telegram.json with your botToken/chatId (or set AGENT_HQ_TELEGRAM_TOKEN/AGENT_HQ_TELEGRAM_CHAT_ID). Keep this file secret.\nBuild the UI and start the server:\nnpm --prefix frontend-react run build\nnpm run start:agent-hq\n\nThe UI is served on / and the API lives under /api (default port 4000).\nConfigure cron jobs (Heartbeats + Telegram):\nJarvis summary: node scripts/jarvis-connector.js or scripts/notify-jarvis-telegram.js --force as needed.\nTelegram notifier cron (see run-telegram-notifier.sh).\nUse the UI to create cards or POST /api/cards//api/cards/quick to keep Jarvis busy.\nRuntime commands\nView board: curl http://localhost:4000/api/board\nTrigger Telegram alert: curl -X POST http://localhost:4000/api/notify-telegram\nQuick card: curl -X POST http://localhost:4000/api/cards/quick -H \"Content-Type: application/json\" -d '{\"text\":\"Design review needed\"}'\nJarvis summary: node scripts/jarvis-connector.js\nTips\nDrop cards directly into data/board.json before first run for a seeded mission.\nhigh_priority_jobs table in SQLite prevents duplicate Telegram alerts.\nAGENT_HQ_API_TOKEN protects mutating endpoints for scripted integrations.\nRelease notes\n2026-02-09 – Mission-control stack created, README translated to English, changelog added, and the Clawdhub installer skill agent-hq@1.0.0 published (now mirrored with this manifest).\n\nEnjoy running your own Mission Control."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/thibautrey/agent-hq",
    "publisherUrl": "https://clawhub.ai/thibautrey/agent-hq",
    "owner": "thibautrey",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-hq",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-hq",
    "agentUrl": "https://openagent3.xyz/skills/agent-hq/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-hq/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-hq/agent.md"
  }
}