chore(agents): fix bug-hunt-pool-supervisor tracking prefix AUTO-BUG-POOL to AUTO-BUG-SUP (complete fix)
CI / benchmark-publish (pull_request) Has been skipped
CI / push-validation (pull_request) Successful in 39s
CI / helm (pull_request) Successful in 50s
CI / lint (pull_request) Successful in 1m25s
CI / build (pull_request) Successful in 1m23s
CI / benchmark-regression (pull_request) Failing after 1m36s
CI / quality (pull_request) Successful in 1m37s
CI / typecheck (pull_request) Successful in 2m20s
CI / security (pull_request) Successful in 2m20s
CI / integration_tests (pull_request) Successful in 4m11s
CI / e2e_tests (pull_request) Failing after 5m37s
CI / unit_tests (pull_request) Successful in 5m40s
CI / docker (pull_request) Successful in 1m33s
CI / coverage (pull_request) Successful in 11m4s
CI / status-check (pull_request) Failing after 3s

The PR branch head was identical to master (zero changed files), indicating
the actual fix commits were accidentally lost during a force-push/rebase.
This commit restores the core changes:

- Updated docs/development/automation-tracking.md line 64: replaced stale
  AUTO-BUG-POOL tracking prefix with correct AUTO-BUG-SUP used by bug-hunt-pool-supervisor
- Updated docs/development/automation-tracking.md line 397: fixed label filter
  from [AUTO-BUG-POOL] to [AUTO-BUG-SUP] for bug hunt supervisor agent tracking
- Changed "Bug Detection Pool Status" → "Bug Hunt Status" (consistent naming)
- Added changelog entry documenting the prefix alignment fix

Closes #7875
This commit is contained in:
2026-05-08 16:28:13 +00:00
parent 6fc294b24b
commit fdd1a9e209
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -7,6 +7,8 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
### Changed
- Fixed stale `AUTO-BUG-POOL` tracking prefix references in automation-tracking.md documentation, replaced with correct `AUTO-BUG-SUP` prefix used by the bug-hunt-pool-supervisor agent (#7875).
- **`agents session list` now displays full 26-character session ULIDs** (#10970): The Rich table
and Summary panel ("Most Recent" / "Oldest") previously showed only the first 8 characters of
each session ULID. This made the output unusable for copy-paste into `session tell`,
+2 -2
View File
@@ -61,7 +61,7 @@ All prefixes are registered in the `automation-tracking-manager` subagent, which
| uat-test-pool-supervisor | `AUTO-UAT-POOL` | `[AUTO-UAT-POOL] UAT Status (Cycle 6)` |
| project-owner-pool-supervisor | `AUTO-PROJ-OWN` | `[AUTO-PROJ-OWN] Project Status (Cycle 11)` |
| agent-evolution-pool-supervisor | `AUTO-EVLV` | `[AUTO-EVLV] Agent Evolution Report (Cycle 10)` |
| bug-hunt-pool-supervisor | `AUTO-BUG-POOL` | `[AUTO-BUG-POOL] Bug Detection Pool Status (Cycle 60)` |
| bug-hunt-pool-supervisor | `AUTO-BUG-SUP` | `[AUTO-BUG-SUP] Bug Hunt Status (Cycle 25)` |
| spec-update-pool-supervisor | `AUTO-SPEC` | `[AUTO-SPEC] Specification Update Report (Cycle 1)` |
| test-infra-pool-supervisor | `AUTO-INF-POOL` | `[AUTO-INF-POOL] Infrastructure Analysis Report (Cycle 2)` |
| epic-planner | `AUTO-EPIC` | `[AUTO-EPIC] Epic Planning Update (Cycle 9)` |
@@ -394,7 +394,7 @@ label:"Automation Tracking" [AUTO-UAT-POOL] in:title
label:"Automation Tracking" [AUTO-PROJ-OWN] in:title
label:"Automation Tracking" [AUTO-EVLV] in:title
label:"Automation Tracking" [AUTO-EPIC] in:title
label:"Automation Tracking" [AUTO-BUG-POOL] in:title
label:"Automation Tracking" [AUTO-BUG-SUP] in:title
label:"Automation Tracking" [AUTO-SPEC] in:title
label:"Automation Tracking" [AUTO-INF-POOL] in:title
```