← ClaudeAtlas

answer-all-open-questions-with-recommendationlisted

Record the embedded recommendation as the answer for every open and deferred question in the current milestone's requirements that carries one.
uHappyLogic/cairn · ★ 2 · AI & Automation · score 75
Install: claude install-skill uHappyLogic/cairn
# answer-all-open-questions-with-recommendation This is the batch path that records every open question's **embedded recommendation** as its answer. The recommend sweep (`/recommend-all-open-questions`) annotates each question by embedding a `<recommendation>` element in its `<open-question>` block; this skill re-checks the current milestone's questions and, for each block that contains such an element, dispatches the file-editing `answer-open-question-with-recommendation` agent to lift that recommendation and record it — leaving recommendation-less blocks untouched (annotating them is the recommend sweep's job, not this one's). It requires **no** clean-working-tree precondition. It is an **orchestrator**. It does not record answers itself: for each recommendation-bearing question it dispatches the agent, which lifts the `<recommendation>` element, folds the decision into `## Decisions`, cascades to mooted siblings, and hands the recorded-but-**uncommitted** edit back. The orchestrator **commits each answer itself** — once per successful agent return, before dispatching the next. Because every dispatch mutates the same `requirements.md`, the dispatches run **strictly sequentially, never in parallel**. ## Usage ``` /answer-all-open-questions-with-recommendation ``` Takes no arguments — it sweeps every `<open-question>` block (both `status="open"` and `status="deferred"`) in the current milestone's `requirements.md` that contains a `<recommendation>` element. ## Workflow