Overview
- Skill Key
- angelstreet/pikaboard
- Author
- angelstreet
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/angelstreet/pikaboard
- Latest Commit SHA
- f76b205f3ba6bbb5320ab20744ec0e40e6313da2
Interact with PikaBoard task management API. Use when creating, updating, listing, or managing tasks. Agent-first kanban for AI teams. Triggers on: tasks, kanban, board, todo, backlog, sprint.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 pikaboard 技能。 若已安装,则直接安装 pikaboard 技能。
# PikaBoard
Agent-first task/kanban dashboard. **PikaBoard is the source of truth for tasks.**
## Quick Start
After install, start the server:
```bash
cd pikaboard/backend && npm start
```
Access dashboard at `http://localhost:3001`
## Configuration
Create `backend/.env`:
```env
DATABASE_PATH=./pikaboard.db
PIKABOARD_TOKEN=your-secret-token
PORT=3001
```
Add to your TOOLS.md:
```markdown
## PikaBoard
- **API:** http://localhost:3001/api/
- **Token:** your-secret-token
```
Agent runtime variables:
```bash
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:**
```bash
curl -H "Authorization: Bearer $PIKABOARD_TOKEN" "$PIKABOARD_API/tasks"
```
**Create task:**
```bash
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:**
```bash
curl -X PATCH -H "Authorization: Bearer $PIKABOARD_TOKEN" \
-H "Content-Type: application/json" \
-d '{"status":"done"}' \
"$PIKABOARD_API/tasks/123"
```
## Enums
| Field | Values |
|-------|--------|
| status | `inbox`, `up_next`, `in_progress`, `testing`, `in_review`, `done`, `rejected` |
| priority | `low`, `medium`, `high`, `urgent` |
## Agent Onboarding (Simple Path)
Use the helper to map each agent to a board automatically:
```bash
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_NAM...
# PikaBoard Skill
This folder contains the ClawHub/OpenClaw skill package for PikaBoard.
## File Naming
- Use `SKILL.md` for the actual skill definition and metadata (canonical for ClawHub/OpenClaw).
- Use `README.md` for human-facing setup and usage docs.
- Do not use `prompt.md` or `clawhub.md` unless your tooling explicitly requires them.
## Quick Setup
1. Install skill from ClawHub: `angelstreet/pikaboard`
2. Start backend:
```bash
cd pikaboard/backend && npm start
```
3. Set env vars:
```bash
export PIKABOARD_API="http://localhost:3001/api"
export PIKABOARD_TOKEN="<token-from-pikaboard/backend/.env>"
export AGENT_NAME="<your-agent-name>"
```
4. Auto-configure board:
```bash
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
```
5. Validate:
```bash
curl -s http://localhost:3001/health
curl -s -H "Authorization: Bearer $PIKABOARD_TOKEN" "$PIKABOARD_API/boards"
curl -s -H "Authorization: Bearer $PIKABOARD_TOKEN" "$PIKABOARD_API/tasks?board_id=$MY_BOARD_ID&status=up_next"
```
## Ready-To-Send Agent Prompt
```text
Install and use `angelstreet/pikaboard` from ClawHub, end-to-end.
1) Install the skill (from ClawHub) and clone/build PikaBoard from GitHub.
2) Start backend:
cd pikaboard/backend && npm start
3) Read token from backend env (`PIKABOARD_TOKEN` in `pikaboard/backend/.env`).
4) Set runtime env:
export PIKABOARD_API="http://localhost:3001/api"
export PIKABOARD_TOKEN="<token>"
export AGENT_NAME="<your-agent-name>"
5) Auto-configure board:
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
6) Verify:
curl -s http://localhost:3001/health
curl -s -H "Authorization: Bearer $PIKABOARD_TOKEN" "$PIKABOARD_API/boards"
curl -s -H "Authorization: Bearer $PIKABOARD_TOKEN" "$PIKABOARD_API/tasks?board_id=$MY_BOARD_ID&status=up_next"
Operate on...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
edholofy
University for AI agents. 92 courses, 4400+ scenarios, any model via OpenRouter. Auto-training loops generate per-model SKILL.md documents. Works with Claude Code, OpenClaw, Cursor, Windsurf. No fine-tuning required.
lethehades
macOS WPS Office workflow helper skill for safer document preparation, conversion, export, and compatibility guidance
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carev01
Full-text search across structured Markdown documentation archives using SQLite FTS5. Use when you need to search large collections of Markdown articles that are separated by "---" delimiters and contain source URLs (marked with "*Source:" pattern). Provides fast BM25-ranked search with automatic source URL extraction for citations. Ideal for research, documentation lookups, and knowledge base exploration. Requires indexing documentation first with `docs.py index`.
caqlayan
Tweet Processor Skill