UCG Resolve
Overview
/ucg-resolve is where an operator answers what a stopped run is waiting on. It
reconstructs the pending decisions from artifacts alone, walks them in one guided
pass, writes the answers down, applies what an answer resolves, and then hands control
back to the resume the module already has.
The loop only counts as closed if an answer given here is not asked for again. So a
decision resolved at this surface is consumed by the next preflight's semantic
intervention scan and does not re-fire — that consumption lives in
{ucg-root}/references/preflight.md, step 3, and it is the half that makes this skill
more than a note-taker.
Conventions
- This skill ships no
scripts/orcustomize.tomlof its own: the scripts,customize.toml, andreferences/all live in the parentultracode-goalmodule.{ucg-root}names that module directory —{project-root}/_bmad/ucg/ultracode-goalin an installed project, or{project-root}/skills/ultracode-goalin a source checkout of the module itself. Resolve it once (first of those two that exists) and qualify every script path with it, so{ucg-root}/scripts/…and{ucg-root}/customize.tomlresolve from any cwd. It is deliberately not{skill-root}: this is a top-level skill, so{skill-root}would resolve to this skill's own directory, which holds none of those files. {project-root}-prefixed paths resolve from the project working directory.{workflow.implementation_artifacts}and{workflow.deferred_work_path}resolve from the parent module'scustomize.tomlworkflow block (the same scalars the autonomous run reads and writes).- The decision log is canonical memory: record each answer and the disposition applied to
it as you go. It lives in the run's own folder,
{project-root}/_bmad-output/ultracode-goal/<run folder>/.decision-log.md— the module's default runs root, which nocustomize.tomlscalar carries. Write to the folder whose Epic the enumerated artifacts belong to; ask the operator when more than one could be it, and when none exists append nothing rather than create a stray log.
On Activation
/ucg-resolve normally runs cold — the operator arrives at a run that stopped, in a
session that never saw it start. That is the whole point of this surface, so resolve the
scalars before reading any artifact. Run python3 {project-root}/_bmad/scripts/resolve_customization.py --skill {ucg-root} --key workflow
(on failure, merge {ucg-root}/customize.toml →
{project-root}/_bmad/custom/ultracode-goal.toml →
{project-root}/_bmad/custom/ultracode-goal.user.toml, scalars override / arrays append).
That block also carries the module's three universal defaults, and this entry point takes
one of them: load {workflow.persistent_facts} — read-only context, and a cold session
is the one that most needs it. Do not execute {workflow.activation_steps_prepend} or
{workflow.activation_steps_append}: those are operator-configured actions belonging to the
autonomous run, and a standalone decide-surface stays side-effect-free apart from the answers
it is here to record. ucg-formalize and ucg-status state the same split, so the three
sub-skills agree on what the shared override file reaches.
If a scalar cannot be resolved, do not pass an unresolved {…} token to a path: say
which scalar failed and stop. A decision surface rooted at a path nobody resolved would
enumerate some other run's pending work, or none at all, while looking exactly like a
real answer.
1. Enumerate the pending decisions
This surface applies answers and clears artifacts, so it is for a run that has stopped.
An operator who only wants to know what is pending gets that from the read-only
/ucg-status; begin this pass only when they are here to decide.
Three sources, all on disk. Read these and nothing else — the run's transcript is gone, and anything not written down is not a pending decision this surface can honor.
- The typed escalation sidecars —
{workflow.implementation_artifacts}/escalation-<story_id>.json, one per escalating story, each a single object with the four string fieldssource,kind,decision_needed, andevidence. A sidecar left pending by an earlier run is genuinely still pending: the arming step deliberately does not purgeescalation-*.json, so a decision an operator chose to leave open survives to this pass. - The preflight RED sidecar —
{workflow.implementation_artifacts}/.preflight-reds.json, shape{"reds": [...]}. One file holds every still-pending preflight RED. There is no second RED sidecar and no per-story one: a per-story or per-run RED file would carry an id that changed between scans, and an id that changes cannot carry an answer forward. - The deferred-work ledger —
{workflow.deferred_work_path}, restricted to itsdecision:rows. Those are the rows whosesourcecolumn readsdecision(as opposed togateorcode-review) and whosestatusis stillopen; a row already markedresolvedis not a pending decision. The ledger is a markdown table per Epic: read every table, not just the first (earlier runs' parked work sits under the earlier headings), locate columns by header name rather than by position, and let a malformed or bullet-list ledger yield no rows here rather than a crash — the same three properties the in-repo reader has ({ucg-root}/scripts/status_render.py,ledger_rows()).
Every pending item is keyed by a stable id.
For a preflight RED, read the id off the sidecar entry — never re-derive it. Each
entry in .preflight-reds.json carries its own minted id, written there by the preflight
that found it ({ucg-root}/references/preflight.md, step 3). The id is a pure function of
the decision — its kind, the bare artifact path, and a digest of the wording — so a RED a
later scan restates unchanged inherits its existing id, and the value on the entry is
the same one the next preflight derives for that finding; a reworded decision derives a new
id and is asked again. Re-deriving your own by hand would be guesswork against a recipe run
by a different session: the moment your version and the derived one diverge, the close you
record names an id no scan ever produces, the RED stands, and the run blocks forever on a
question the operator already answered.
For a typed escalation sidecar, ask the id layer for the id — that file is hard-capped at four fields and cannot carry one, so its id is derived rather than read:
uv run {ucg-root}/scripts/red_ids.py --mint-one <kind> <artifact path> <decision_needed>
It prints the id and touches nothing. A ledger decision: row is keyed by the same
call — kind decision, the ledger path, and the row's reason — because the row's own
id column is unique only within its Epic heading, so d1 under one Epic and d1 under
another would key to a single entry in a project-wide .decisions.json and one answer
would silently suppress a decision the operator was never shown.
Never derive an id by hand at any of these surfaces. The id is the join key between this session and a preflight that ran days ago or will run days from now, and a value two model invocations have to agree on by hand is a value they will eventually disagree on. One implementation mints it; every surface reads it.
Every minted form keeps line numbers excluded: the scan reports source as
<artifact path:line>, and the id layer strips that :line suffix before deriving
anything, so an id is never minted from the raw source value. Why the recipe is shaped
that way — including the digest that keeps two findings of the same kind in one artifact
apart — lives in {ucg-root}/references/preflight.md, step 3, and in
{ucg-root}/scripts/red_ids.py.
2. Walk them in one guided pass
Present the enumerated decisions once, in one ordered pass, and take an answer for
each. For every item show its kind, the artifact it came from, and the exact decision
needed — the same three facts the artifact already carries, so the operator is reading the
run's own record rather than a summary of it.
Do not re-open an item whose .decisions.json entry carries an action of close.
Re-asking a question the operator already resolved is the exact failure this surface
exists to remove.
An entry recorded with action defer is the opposite case: it is a parked question, not
an answered one. Present it again, and replace its entry in place when the operator decides
it. Suppressing a deferred item would deadlock the run outright — defer clears nothing,
so the next preflight still blocks on that RED ({ucg-root}/references/preflight.md,
step 3, drops only the ids whose action is close), while this surface, the only one that
can answer it, would never ask again. The scan blocks forever on a question the operator is
no longer offered.
3. Record the answer, then apply its disposition
Every answer lands in {workflow.implementation_artifacts}/.decisions.json:
{"decisions": [{"id": "<the pending item's stable id>",
"answer": "<what the operator decided, one line>",
"action": "close|defer"}]}
Write the file read-modify-write, keyed by id. Read any existing .decisions.json
first, merge this pass's answers into its decisions[] — a new answer for an id already
present replaces that entry, every other entry is preserved untouched — and write the whole
array back. The fence above is the shape of the document, not a licence to emit only this
pass's answers: a plain overwrite would discard every answer recorded by an earlier pass,
including the close entries preflight reads to keep resolved REDs suppressed. Those
decisions would silently return as pending and re-block a run the operator already
unblocked.
If an existing .decisions.json is unreadable, unparseable, or parsed but missing a
list-valued decisions, stop — do not overwrite it. Say which file failed and why. This
is the fail-closed twin of the rule preflight already applies to the same file (an
unparseable suppression file suppresses nothing): here the file is the operator's
accumulated answers, so writing over one we could not read would destroy the record rather
than merely ignore it.
Name the way out in the same breath, because this stop otherwise blocks the only surface
that can unblock the run: the operator repairs the file, or moves it aside (to
.decisions.json.corrupt-<timestamp>, say), and a fresh pass then starts a new record.
Say plainly that moving it aside discards every answer it held, so the REDs those close
entries were suppressing come back as pending and block again. This surface never repairs,
moves, or deletes the file itself — recovering a corrupt record is a judgment call about
which answers are still trustworthy, and that belongs to the person who gave them.
The two dispositions are genuinely different things, not two names for one:
close— the decision is made. Apply it immediately, record the entry, and clear the artifact that carried it. For a preflight RED, record the entry and then re-apply the override through the id layer withuv run {ucg-root}/scripts/red_ids.py --from-sidecar --impl-artifacts {workflow.implementation_artifacts}, which removes it and records the closed id in the sidecar'sresolvedaudit list. For the other two sources, delete the answered typed escalation sidecar, or mark the ledger row resolved. Clearing the RED sidecar is entry-level removal, never deleting the file — it holds the REDs nobody has answered yet, and deleting it would discard every one of them. Let the script do that removal rather than editing the file by hand: it is the component that owns these ids, and a second writer hand-editing the registry is how the id an answer is keyed to goes missing. Leave the raw.escalation-<story_id>.mdmarkdown residual alone: it is the only evidence that the escalation happened at all, and the session that wrote it is gone. Closing abudget-overrunescalation also resets that story's turn counter — delete{workflow.implementation_artifacts}/.budget-<story_id>.json, or set itsturnsto0. The Stop hook's counter is persistent and monotonic ({ucg-root}/scripts/hooks/budget_stop.pyincrements it every Stop event and escalates once it reaches the ceiling), and no ordinary resume clears it — the Stage 2 arming purge ({ucg-root}/references/preflight.md, step 5) deliberately skips it on re-entry so a story cannot evade its ceiling by stopping and resuming. Leave it standing here and the resumed story escalates again on its first Stop event, before it has done a single turn of the work the operator just authorized, and the close would apply in name only. Answering a budget overrun by re-scoping, splitting, or handing off the story is the operator granting it a fresh budget, so the counter that recorded the exhausted one has no claim on the resumed run.defer— the decision is not made yet. Record the entry without clearing anything. The artifact stays exactly where it is, the item stays pending, and the next preflight still blocks on it.
Record each answer and its disposition in .decision-log.md as you apply it.
4. Hand control back to the existing resume
/ucg-resolve defines no resume of its own. Close the pass by stating what closed, what is
still pending, and that anything still pending re-blocks at the next preflight. Hand back
only when the pass closed at least one item, or when the operator asks for the resume: a
pass that deferred everything hands into a run blocked on the identical items, and an empty
enumeration means the run stopped for a non-decision reason — say so, point at the read-only
/ucg-status, and hand nothing back.
Otherwise hand back to the resume the module already has, which routes by the last stage the blocked run reached, not by story. Which branch applies is not a detail this surface may skip, because the two arrive from different places:
- Blocked at Stage 1 or Stage 2 — epic unresolved, or a preflight RED, which is the arrival this skill's own trigger advertises. Re-run from that stage, so the hard preflight gate is never skipped and the answered RED is consumed by the scan that applies the override. Such a run blocked before any story, so it carries no gate verdicts and there is no story to re-enter at.
- The log carries gate verdicts — re-enter Execute at the first story whose last verdict is not advance; advanced stories are not re-run. Within that branch there is no other re-entry point: it is not the first story of the Epic, and not the story the answered decision happened to name, either of which would re-run stories that already advanced, which is precisely what the shipped resume rule exists to prevent.
Either branch re-asserts — never rebuilds — the Epic branch, both hooks, the
allowlist, the .mem-state.json recall latch, and the in-flight story's baseline marker.
The latch belongs on that list here more than anywhere: this skill is reached from a
blocked run, whose Stage 6 already deleted it. The baseline marker splits on whether
.baseline-<story_id> exists: mid-story it is re-read, never regenerated — the story
may already carry commits, and a regenerated baseline silently re-anchors its evidence
range to a mid-story HEAD — while at a story boundary there is none to re-read and one is
written fresh at HEAD, which is the half the Execute reference owns.
What this section pins is the routing branch and the re-assert set, nothing further. The
rule itself already lives in {ucg-root}/references/execute.md's resume paragraph and in
the parent skill's Resume paragraph, which are loaded at hand-back time and carry the
current script call and both halves of that split. Where those two and this one ever
disagree, they are the owners and this is the stale copy.
Scope
This is a decide-surface, not a runner. It launches nothing itself: it reads artifacts,
records answers, applies what a close resolves, and hands off. Like the read-only status
view, it targets the sequential spine, which is the only execution path.