Skill v1.0.1
currentLLM-judged scan90/100+1 new
version: "1.0.1" name: progress-log description: Use to propagate DAE state — turning handoff summaries into visible progress. Triggers — "/engineer.progress-log", "sync progress", "update the tracker", "reconcile the tracker", "refresh feature status".
progress-log
The propagation engine of DAE visibility. Skills emit handoff summaries; progress-log turns them into the two visible state layers — progress.md (the per-feature glanceable file) and the external tracker.
When the foundations say "the agentic summary contract handles propagation," this skill is that propagation. checkpoint: null.
When to use
- Auto — invoked after a handoff-emitting skill changes a DAE-managed field (status change, checkpoint completion). Scope = the triggering feature.
- Manual —
/engineer.progress-log <slug>re-syncs one feature;--projectreconciles all.
Not for: changing artifacts (feature-edit); validating consistency (consistency-check); a session wrap-up (session-summary).
Workflow
- Resolve + scope — resolve the methodology root + manifest via
${CLAUDE_PLUGIN_ROOT}/scripts/dae_resolve.py(seereferences/resolving.md); the manifest carries the tracker config. Scope = one feature (auto /<slug>) or all (--project). - Read new handoffs —
handoffs/*.mdnot yet reflected inprogress.md(compare timestamps against the last-synced marker). - Update `progress.md` — per handoff: update the Checkpoints table row (if
checkpoint:set), append to Verification reports (if a verification skill), append to the Handoff log, recompute the CURRENT header — the fixed, parseable first line ofprogress.md:> ▶ CP<N> <Stage> — <m>/<n> criteria met | NEXT: <action> | BLOCKED: <none|reason>. Derive<m>/<n>from the latest handoff'sexit_criteriablock for the current checkpoint,NEXTfrom itsrecommended_next, andBLOCKEDfrom any unmet criterion that needs a human (elsenone). If the handoff carries acloud_session_urland its PR isn't merged yet, setNEXT: review cloud PR <url>and record the session/PR link in the Handoff log — this is the signalnextreads to surface the feature as DISPATCHED. - Recompute tracked state — derive the
TrackedFeaturerecord from local truth (feature.md+progress.md). - Sync the tracker — driver
upsert(TrackedFeature)perreferences/tracker.md: local-wins on DAE-managed fields, tracker-managed fields (comments, labels) preserved.local= no-op (the feature files are the tracker). Write the result toprogress.md's "Tracker sync" line. - (`--project` only) Drift report — driver
reconcile()perreferences/tracker.md; surface anything unexpected (orphan tracker entry, untracked local feature).
Handoff exemption
progress-log does NOT emit a handoff summary — it is the single exception to the agentic summary contract. It is the mechanism that processes handoffs; emitting one would trigger another progress-log run, looping. Its record of work is the progress.md "Tracker sync" line. (Documented in the Foundation Design.)
Logging a fix closure
When the fix skill reaches its Close step, append the rendered closure entry to each feature_refs[*]/progress.md of the fix artifact.
Use ${CLAUDE_PLUGIN_ROOT}/scripts/dae_fix.py helper render_fix_closure_entry(rec, followups_summary) to build the entry. Append it to each affected feature's progress.md under a new H2 section (the helper produces a complete H2 + bullets block).
Fix closures use the same propagation contract as feature handoffs: visible at the feature level so contributors browsing that feature see the bug history without having to discover .engineer/fixes/.
ATDD team teardown
When progress-log observes a feature advancing to status: done (CP8 complete or PR merged), check whether an atdd-<slug> team exists. If it does, propose teardown per the atdd:atdd-team lifecycle — auto-dispatch at autonomy high/medium, surface and wait at low. nexthq saw a team idle for 5 days after its feature shipped because nothing claimed responsibility for cleanup.
References
- Foundation Design —
progress.mdschema, agentic summary contract + this exemption (Section 5) references/tracker.md— the tracker drivers,TrackedFeature, local-wins reconciliation- Tracker Integration — sync triggers, the column schema