Project not found.
Skill: Board Sync
Skill: Board Sync
Synchronize board state with plan phases and Forgejo issues. Reconciles drift between boards and reality.
When to Use
At session start, after merges, or whenever you suspect board drift. See
sop-board-workflow Sync Cadence section.Steps
- List active boards:
list_boards()— identify boards with items (skip empty boards like pal-e-world, private). - Sync each active board: For each board with items or active plans:
sync_board(board_slug="board-pal-e-platform") sync_board(board_slug="board-pal-e-docs") sync_board(board_slug="board-pal-e-agency") sync_board(board_slug="board-westside-basketball") # ... other boards as needed - Report results: For each board, report created/updated/skipped counts. Flag any unexpected results (e.g., items that should be done but aren't).
- Check for stuck items:
list_board_items(board_slug, column="in_progress")— flag items that have been in_progress since before the current session.
MCP Tools Used
mcp__pal-e-docs__list_boardsmcp__pal-e-docs__sync_boardmcp__pal-e-docs__list_board_items
Related
sop-board-workflow— the SOP this skill implementsskill-board-status— companion skill for status reporting