ワンクリックで
bip-board
Manage GitHub project boards. Add, move, and remove issues; boards auto-resolve from repo→channel mappings in sources.yml.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Manage GitHub project boards. Add, move, and remove issues; boards auto-resolve from repo→channel mappings in sources.yml.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Check remote server CPU, memory, and GPU availability via SSH
Cold-start into a worktree/clone from a fresh conversation — read the PR, issue, and any status files, figure out where things stand, then STOP and ask the user what to do next. Use for a fresh conversation dropped into a bip-spawn or bip-epic-spawn worktree/clone that already has history (a PR, an in-progress phase, or a stalled worker).
Quick poll of tracked EPICs and code repos for new manuscript-relevant results
Persist manuscript session state before context reset
Cold-start for a manuscript session — the paper is the source of truth and shared context; discuss results, orchestrate research through issues/PRs, and update the paper as threads complete
Spawn a Claude session in a clone for an EPIC issue
| name | bip-board |
| description | Manage GitHub project boards. Add, move, and remove issues; boards auto-resolve from repo→channel mappings in sources.yml. |
Manage GitHub project boards. Boards are resolved automatically from repo → channel → board mappings in sources.yml.
bip board list # List ALL boards by status
bip board list matsengrp/30 # List specific board
bip board add dasm2-experiments#207 # Add issue (board auto-resolved)
bip board add netam#171 --status "Next" # Add with initial status
bip board move dasm2-experiments#207 --status done # Move item
bip board remove netam#171 # Remove from board
The board is automatically resolved via channel mappings:
code/writing array in sources.ymlboards mappingExample sources.yml:
{
"boards": {
"dasm2": "matsengrp/30",
"loris": "matsengrp/29"
},
"code": [
{"repo": "matsengrp/dasm2-experiments", "channel": "dasm2"},
{"repo": "matsengrp/loris-experiments", "channel": "loris"}
]
}
Show board items grouped by status. Shows ALL boards by default.
bip board list # All boards
bip board list matsengrp/30 # Specific board
bip board list --status "In Progress" # Filter by status
bip board list --json # JSON output
Add an issue or PR to a board.
bip board add dasm2-experiments#207 # Auto-resolve board from channel
bip board add repo#123 --to matsengrp/30 # Explicit board
bip board add repo#123 --status "Next" # Set initial status
Move an item to a different status.
bip board move dasm2-experiments#207 --status done
bip board move repo#123 --status "In Progress" --to matsengrp/30
Remove an issue/PR from a board.
bip board remove dasm2-experiments#207
bip board remove repo#123 --to matsengrp/30 # Explicit board
Refresh cached board metadata (status options, field IDs).
bip board refresh-cache
bip board refresh-cache --board matsengrp/30