# Send PikaBoard 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. 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.
```
### 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/pikaboard",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pikaboard",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/setup.sh",
      "scripts/setup-agent-board.sh",
      "references/api.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pikaboard",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T03:12:24.898Z",
      "expiresAt": "2026-05-14T03:12:24.898Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pikaboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pikaboard",
        "contentDisposition": "attachment; filename=\"pikaboard-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pikaboard"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### PikaBoard

Agent-first task/kanban dashboard. PikaBoard is the source of truth for tasks.

### Quick Start

After install, start the server:

cd pikaboard/backend && npm start

Access dashboard at http://localhost:3001

### Configuration

Create backend/.env:

DATABASE_PATH=./pikaboard.db
PIKABOARD_TOKEN=your-secret-token
PORT=3001

Add to your TOOLS.md:

## PikaBoard
- **API:** http://localhost:3001/api/
- **Token:** your-secret-token

Agent runtime variables:

export PIKABOARD_API="http://localhost:3001/api"
export PIKABOARD_TOKEN="your-secret-token"
export AGENT_NAME="bulbi"

### Task Commands

Reference tasks by ID:

task 12 or #12 → view task
move #12 to done → status change
create task "Fix bug" → new task

### API Reference

See backend/API.md for full endpoint documentation (single canonical doc).

### Common Operations

List tasks:

curl -H "Authorization: Bearer $PIKABOARD_TOKEN" "$PIKABOARD_API/tasks"

Create task:

curl -X POST -H "Authorization: Bearer $PIKABOARD_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{"name":"Fix bug","status":"inbox","priority":"high","tags":["bug","backend"]}' \\
  "$PIKABOARD_API/tasks"

Update status:

curl -X PATCH -H "Authorization: Bearer $PIKABOARD_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{"status":"done"}' \\
  "$PIKABOARD_API/tasks/123"

### Enums

FieldValuesstatusinbox, up_next, in_progress, testing, in_review, done, rejectedprioritylow, medium, high, urgent

### Agent Onboarding (Simple Path)

Use the helper to map each agent to a board automatically:

cd pikaboard
MY_BOARD_ID="$(
  ./skills/pikaboard/scripts/setup-agent-board.sh | sed -n 's/^MY_BOARD_ID=//p' | tail -n1
)"
export MY_BOARD_ID

What it does:

Reads PIKABOARD_API, PIKABOARD_TOKEN, AGENT_NAME
Finds board by BOARD_NAME (default: AGENT_NAME)
Creates board if missing
Prints MY_BOARD_ID=<id>
Verifies GET /api/tasks?board_id=<id>&status=up_next

Optional:

export BOARD_NAME="Bulbi"
export BOARD_ENV_FILE="$HOME/.openclaw/agents/bulbi/.pikaboard.env"
./skills/pikaboard/scripts/setup-agent-board.sh

### Multi-Agent Setup

Each agent can have their own board. Use board_id parameter:

curl "$PIKABOARD_API/tasks?board_id=6" -H "Authorization: Bearer $PIKABOARD_TOKEN"

Board assignments:

Board 1: Pika (main)
Board 2: Tortoise (personal)
Board 3: Sala (work)
Board 4: Evoli (VirtualPyTest)
Board 5: Psykokwak (EZPlanning)
Board 6: Bulbi (PikaBoard)
Board 7: Mew (Ideas)

### Validation Checklist

Run after setup:

# 1) API reachable
curl -s http://localhost:3001/health

# 2) Auth works
curl -s -H "Authorization: Bearer $PIKABOARD_TOKEN" "$PIKABOARD_API/boards"

# 3) Board mapping works
echo "$MY_BOARD_ID"

# 4) Agent can read own queue
curl -s -H "Authorization: Bearer $PIKABOARD_TOKEN" \\
  "$PIKABOARD_API/tasks?board_id=$MY_BOARD_ID&status=up_next"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: angelstreet
- Version: 1.0.3
## 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-05-07T03:12:24.898Z
- Expires at: 2026-05-14T03:12:24.898Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pikaboard)
- [Send to Agent page](https://openagent3.xyz/skills/pikaboard/agent)
- [JSON manifest](https://openagent3.xyz/skills/pikaboard/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pikaboard/agent.md)
- [Download page](https://openagent3.xyz/downloads/pikaboard)