{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pikaboard",
    "name": "PikaBoard",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/angelstreet/pikaboard",
    "canonicalUrl": "https://clawhub.ai/angelstreet/pikaboard",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pikaboard",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pikaboard",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/setup.sh",
      "scripts/setup-agent-board.sh",
      "references/api.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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/pikaboard"
    },
    "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/pikaboard",
    "agentPageUrl": "https://openagent3.xyz/skills/pikaboard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pikaboard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pikaboard/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "PikaBoard",
        "body": "Agent-first task/kanban dashboard. PikaBoard is the source of truth for tasks."
      },
      {
        "title": "Quick Start",
        "body": "After install, start the server:\n\ncd pikaboard/backend && npm start\n\nAccess dashboard at http://localhost:3001"
      },
      {
        "title": "Configuration",
        "body": "Create backend/.env:\n\nDATABASE_PATH=./pikaboard.db\nPIKABOARD_TOKEN=your-secret-token\nPORT=3001\n\nAdd to your TOOLS.md:\n\n## PikaBoard\n- **API:** http://localhost:3001/api/\n- **Token:** your-secret-token\n\nAgent runtime variables:\n\nexport PIKABOARD_API=\"http://localhost:3001/api\"\nexport PIKABOARD_TOKEN=\"your-secret-token\"\nexport AGENT_NAME=\"bulbi\""
      },
      {
        "title": "Task Commands",
        "body": "Reference tasks by ID:\n\ntask 12 or #12 → view task\nmove #12 to done → status change\ncreate task \"Fix bug\" → new task"
      },
      {
        "title": "API Reference",
        "body": "See backend/API.md for full endpoint documentation (single canonical doc)."
      },
      {
        "title": "Common Operations",
        "body": "List tasks:\n\ncurl -H \"Authorization: Bearer $PIKABOARD_TOKEN\" \"$PIKABOARD_API/tasks\"\n\nCreate task:\n\ncurl -X POST -H \"Authorization: Bearer $PIKABOARD_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"Fix bug\",\"status\":\"inbox\",\"priority\":\"high\",\"tags\":[\"bug\",\"backend\"]}' \\\n  \"$PIKABOARD_API/tasks\"\n\nUpdate status:\n\ncurl -X PATCH -H \"Authorization: Bearer $PIKABOARD_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"status\":\"done\"}' \\\n  \"$PIKABOARD_API/tasks/123\""
      },
      {
        "title": "Enums",
        "body": "FieldValuesstatusinbox, up_next, in_progress, testing, in_review, done, rejectedprioritylow, medium, high, urgent"
      },
      {
        "title": "Agent Onboarding (Simple Path)",
        "body": "Use the helper to map each agent to a board automatically:\n\ncd pikaboard\nMY_BOARD_ID=\"$(\n  ./skills/pikaboard/scripts/setup-agent-board.sh | sed -n 's/^MY_BOARD_ID=//p' | tail -n1\n)\"\nexport MY_BOARD_ID\n\nWhat it does:\n\nReads PIKABOARD_API, PIKABOARD_TOKEN, AGENT_NAME\nFinds board by BOARD_NAME (default: AGENT_NAME)\nCreates board if missing\nPrints MY_BOARD_ID=<id>\nVerifies GET /api/tasks?board_id=<id>&status=up_next\n\nOptional:\n\nexport BOARD_NAME=\"Bulbi\"\nexport BOARD_ENV_FILE=\"$HOME/.openclaw/agents/bulbi/.pikaboard.env\"\n./skills/pikaboard/scripts/setup-agent-board.sh"
      },
      {
        "title": "Multi-Agent Setup",
        "body": "Each agent can have their own board. Use board_id parameter:\n\ncurl \"$PIKABOARD_API/tasks?board_id=6\" -H \"Authorization: Bearer $PIKABOARD_TOKEN\"\n\nBoard assignments:\n\nBoard 1: Pika (main)\nBoard 2: Tortoise (personal)\nBoard 3: Sala (work)\nBoard 4: Evoli (VirtualPyTest)\nBoard 5: Psykokwak (EZPlanning)\nBoard 6: Bulbi (PikaBoard)\nBoard 7: Mew (Ideas)"
      },
      {
        "title": "Validation Checklist",
        "body": "Run after setup:\n\n# 1) API reachable\ncurl -s http://localhost:3001/health\n\n# 2) Auth works\ncurl -s -H \"Authorization: Bearer $PIKABOARD_TOKEN\" \"$PIKABOARD_API/boards\"\n\n# 3) Board mapping works\necho \"$MY_BOARD_ID\"\n\n# 4) Agent can read own queue\ncurl -s -H \"Authorization: Bearer $PIKABOARD_TOKEN\" \\\n  \"$PIKABOARD_API/tasks?board_id=$MY_BOARD_ID&status=up_next\""
      }
    ],
    "body": "PikaBoard\n\nAgent-first task/kanban dashboard. PikaBoard is the source of truth for tasks.\n\nQuick Start\n\nAfter install, start the server:\n\ncd pikaboard/backend && npm start\n\n\nAccess dashboard at http://localhost:3001\n\nConfiguration\n\nCreate backend/.env:\n\nDATABASE_PATH=./pikaboard.db\nPIKABOARD_TOKEN=your-secret-token\nPORT=3001\n\n\nAdd to your TOOLS.md:\n\n## PikaBoard\n- **API:** http://localhost:3001/api/\n- **Token:** your-secret-token\n\n\nAgent runtime variables:\n\nexport PIKABOARD_API=\"http://localhost:3001/api\"\nexport PIKABOARD_TOKEN=\"your-secret-token\"\nexport AGENT_NAME=\"bulbi\"\n\nTask Commands\n\nReference tasks by ID:\n\ntask 12 or #12 → view task\nmove #12 to done → status change\ncreate task \"Fix bug\" → new task\nAPI Reference\n\nSee backend/API.md for full endpoint documentation (single canonical doc).\n\nCommon Operations\n\nList tasks:\n\ncurl -H \"Authorization: Bearer $PIKABOARD_TOKEN\" \"$PIKABOARD_API/tasks\"\n\n\nCreate task:\n\ncurl -X POST -H \"Authorization: Bearer $PIKABOARD_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"Fix bug\",\"status\":\"inbox\",\"priority\":\"high\",\"tags\":[\"bug\",\"backend\"]}' \\\n  \"$PIKABOARD_API/tasks\"\n\n\nUpdate status:\n\ncurl -X PATCH -H \"Authorization: Bearer $PIKABOARD_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"status\":\"done\"}' \\\n  \"$PIKABOARD_API/tasks/123\"\n\nEnums\nField\tValues\nstatus\tinbox, up_next, in_progress, testing, in_review, done, rejected\npriority\tlow, medium, high, urgent\nAgent Onboarding (Simple Path)\n\nUse the helper to map each agent to a board automatically:\n\ncd pikaboard\nMY_BOARD_ID=\"$(\n  ./skills/pikaboard/scripts/setup-agent-board.sh | sed -n 's/^MY_BOARD_ID=//p' | tail -n1\n)\"\nexport MY_BOARD_ID\n\n\nWhat it does:\n\nReads PIKABOARD_API, PIKABOARD_TOKEN, AGENT_NAME\nFinds board by BOARD_NAME (default: AGENT_NAME)\nCreates board if missing\nPrints MY_BOARD_ID=<id>\nVerifies GET /api/tasks?board_id=<id>&status=up_next\n\nOptional:\n\nexport BOARD_NAME=\"Bulbi\"\nexport BOARD_ENV_FILE=\"$HOME/.openclaw/agents/bulbi/.pikaboard.env\"\n./skills/pikaboard/scripts/setup-agent-board.sh\n\nMulti-Agent Setup\n\nEach agent can have their own board. Use board_id parameter:\n\ncurl \"$PIKABOARD_API/tasks?board_id=6\" -H \"Authorization: Bearer $PIKABOARD_TOKEN\"\n\n\nBoard assignments:\n\nBoard 1: Pika (main)\nBoard 2: Tortoise (personal)\nBoard 3: Sala (work)\nBoard 4: Evoli (VirtualPyTest)\nBoard 5: Psykokwak (EZPlanning)\nBoard 6: Bulbi (PikaBoard)\nBoard 7: Mew (Ideas)\nValidation Checklist\n\nRun after setup:\n\n# 1) API reachable\ncurl -s http://localhost:3001/health\n\n# 2) Auth works\ncurl -s -H \"Authorization: Bearer $PIKABOARD_TOKEN\" \"$PIKABOARD_API/boards\"\n\n# 3) Board mapping works\necho \"$MY_BOARD_ID\"\n\n# 4) Agent can read own queue\ncurl -s -H \"Authorization: Bearer $PIKABOARD_TOKEN\" \\\n  \"$PIKABOARD_API/tasks?board_id=$MY_BOARD_ID&status=up_next\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/angelstreet/pikaboard",
    "publisherUrl": "https://clawhub.ai/angelstreet/pikaboard",
    "owner": "angelstreet",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pikaboard",
    "downloadUrl": "https://openagent3.xyz/downloads/pikaboard",
    "agentUrl": "https://openagent3.xyz/skills/pikaboard/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pikaboard/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pikaboard/agent.md"
  }
}