From ead055a73a9b0774328ff22bfb4e67768c426f9e Mon Sep 17 00:00:00 2001 From: Steve Cliff Date: Tue, 24 Feb 2026 15:12:47 +0000 Subject: [PATCH] feat(kanban): remove Backlog and Planning lists from board initialization - Removed "Backlog" list creation (position 65536) from board setup - Removed "Planning" list creation (position 196608) from board setup - Retained core workflow lists: To Do, In Progress, Review, Done --- .windsurf/skills/kanban/SKILL.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/.windsurf/skills/kanban/SKILL.md b/.windsurf/skills/kanban/SKILL.md index 6bde882..2d8e8e0 100644 --- a/.windsurf/skills/kanban/SKILL.md +++ b/.windsurf/skills/kanban/SKILL.md @@ -198,9 +198,7 @@ if [ -z "$BOARD_ID" ]; then fi # Create required lists (skip if exists) -pcli list create --board $BOARD_ID --name "Backlog" --position 65536 2>/dev/null || true pcli list create --board $BOARD_ID --name "To Do" --position 131072 2>/dev/null || true -pcli list create --board $BOARD_ID --name "Planning" --position 196608 2>/dev/null || true pcli list create --board $BOARD_ID --name "In Progress" --position 262144 2>/dev/null || true pcli list create --board $BOARD_ID --name "Review" --position 327680 2>/dev/null || true pcli list create --board $BOARD_ID --name "Done" --position 393216 2>/dev/null || true