← ClaudeAtlas

fetch-planlisted

Retrieve saved plan folders from `.ai/planning`, let the user choose one, then load its planning documents and summarise implementation status. Use when user asks to fetch, reopen, resume, continue, or inspect an existing plan.
kimgoetzke/coding-agent-configs · ★ 3 · AI & Automation · score 79
Install: claude install-skill kimgoetzke/coding-agent-configs
# Fetch a Saved Plan Use this skill to reopen an existing plan created with the `planning-mode`/`planning` skill's folder structure. ## Storage layout - Plans live under `{repo root}/.ai/planning/` - Each plan folder is named `{yyyy-mm-dd} {task name}` - A selected plan may contain: - `plan.md` - `progress.md` - `findings.md` - `questions.md` ## Phase 1: List plans only 1. Find `{repo root}/.ai/planning/` - If you don't find anything, try running `ls "{repo root}/.ai/planning/"` via Bash to list the plan folders since Glob fails to match directories on Windows 2. List plan folders only; do not read any files inside them yet 3. Sort folders newest first 4. Show the folder names exactly as stored, in a numbered list Example: 1. `2026-03-20 refactor auth flow` 2. `2026-03-18 add retry metrics` If no folders exist, tell the user no saved plans were found and suggest creating one with the `planning-mode` or `planning` skill. ## Phase 2: Ask the user to choose Prompt the user to reply with either: - the list number, or - the folder name Selection rules: - If the input is a number, resolve it against the numbered list - If the input is text, try exact folder-name match first - If no exact match exists, allow a single unambiguous case-insensitive partial match - If the input is invalid or ambiguous, explain why and ask again - Do not read any plan documents before a valid selection is resolved ## Phase 3: Load the selected plan After the user selects a plan, r