Send a new CC version through the cron. Flip LLM extraction to transient fail and watch where it lands — in Before it vanishes into a silent black hole; in After the retry + fallback escape hatch catches it.
version
LLM extraction (step 2)
OAUTH token
pipeline run
the fix — diff
.github/workflows/claude-release-watch.yml
# Step 2 — LLM extraction
- run: node scripts/cc-triage.mjs
+ run: node scripts/cc-triage.mjs --retry-failed
# OR a weekly scheduled retry pass
# Step 4 — fallback manual-triage issue
- if: steps.triage.outcome == 'skipped'
+ if: steps.triage.outcome == 'skipped' ||
+ steps.triage.outputs.parse_failed == 'true'
scripts/cc-triage.mjs
// emit a signal Step 4 can gate on
+ const stuck = gaps.filter(e => e.parse_failed);
+ if (stuck.length) setOutput('parse_failed','true');