v0.20.0
Minor Changes
-
cb55e62:
releases admin source fetchnow accepts--wait [seconds], blocking until the managed-agent session reaches a terminal state. Without--waitthe command stays fire-and-forget. Default wait is 900s; pass an explicit value to shorten it (e.g.--wait 60).Exit codes:
0— session completed successfully1— our-side error (no tools called, parser failure, timeout)2— managed-agents/provider error (e.g.unknown_error,model_overloaded_error, retries exhausted) — the message is tagged(managed-agents · <type>)and includes retry count when the session ended inretries_exhausted130— session cancelled
Closes the silent-failure gap surfaced in registry #590 where backend incidents bubbled up as
exit 0even though no work happened. -
f0eab05:
releases admin overview-listlists organizations with their overview status. Pass--staleto filter to orgs whose overviews need regeneration:releases admin overview-list --stale releases admin overview-list --stale --stale-min-releases 3 --stale-grace-days 14 releases admin overview-list --stale --jsonAn org is considered stale when
recentReleaseCount > minReleasesAND the overview is either missing orlastActivity > overview.updatedAt + graceDays. Defaults:minReleases=5,graceDays=7.The
--jsonoutput carriesslug,name,recentReleaseCount,lastActivity,overviewUpdatedAt, andoverviewMissing— suitable for piping into the weekly regen routine (registry triggertrig_012B14fpLS1inAkEuJTZBbnd) which currently encodes this filter in its prompt.Closes registry #590 item 6.
Patch Changes
- ec6a649: Bump
@buildinternet/releases-api-typesto^0.2.0. The classification fields (errorSource,errorType,stopReason,retryCount) added by the registry to theSessionshape now come straight from the published types, so the CLI's localSessionWithClassificationextension is gone. No behavior change. - 41b7a95:
releases admin overview-writenow accepts--unescape-html, which runs a small pre-upload pass to decode&,<,>,", and'. Useful when the markdown was generated by a sub-agent that escaped entities reflexively.