mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
[sweep] strip Fxxx audit-ID tokens + trim bloated comments/docstrings + add behavior-change docs
Post-audit sweep over the 135 audit-fix commits since19a474d3: 1. Stripped every # Fxxx: audit-ID token from comments AND every Fxxx token from docstring openings across 211 blocks / ~626 lines. The CEO flagged these twice: audit-issue IDs in code confuse future devs/agents. The descriptive text is preserved; only the Fxxx token is removed (and bloated narrative blocks trimmed to 1-3 lines keeping the one non-obvious invariant). 2. Trimmed bloated comments/docstrings to the concise standard (1-3 lines). 3. Added missing behavior-change docs for the audit-fix batch: prompts/roles (documenter, pr_reviewer, qa), user-facing docs (api auth, websockets, agent-gateway, megatask, merge-model, task-lifecycle, grok, resilience, conventions, panel, security, troubleshooting), and the RAG corpus (cell-pm, main-pm, pr-reviewer, qa roles; conventions; messaging-tools; escalation; megatask; task-claiming workflows). Comment/docstring/prose ONLY — zero code-line edits (verified: the diff contains no def/class/return/if/for/await/assignment/call lines). Gates green: ruff format + ruff check clean, mypy clean on roboco/. The only pytest failures are the pre-existing sync_branch tracing-decision gap (B1,250be5c2) — not sweep-caused and tracked separately.
This commit is contained in:
@@ -570,13 +570,11 @@ class TestCEONotificationThreshold:
|
||||
|
||||
|
||||
class TestOrphanProviderFallback:
|
||||
"""F045: an activate() failure in the in-verb ``i_am_blocked(rate_limited)``
|
||||
path leaves agents parked in ``_waiting_records`` but the provider never
|
||||
makes it into the tracker — so the tracker-driven loop never probes it and
|
||||
the parked agents strand in WAITING_LONG forever. The sweep must scan the
|
||||
in-memory records for any ``rate_limit_lifted`` provider the tracker-listed
|
||||
set did NOT cover and probe it via the time-expiry fallback so
|
||||
``_on_probe_success`` can resume them.
|
||||
"""An activate() failure in the ``i_am_blocked(rate_limited)`` path parks
|
||||
agents in ``_waiting_records`` without entering the tracker, so the
|
||||
tracker-driven loop never probes them. The sweep must scan the in-memory
|
||||
records for any ``rate_limit_lifted`` provider the tracker missed and probe
|
||||
it via the time-expiry fallback so ``_on_probe_success`` can resume them.
|
||||
"""
|
||||
|
||||
async def test_orphan_parked_agent_resumed_when_tracker_lacks_provider(
|
||||
|
||||
Reference in New Issue
Block a user