Compare commits

...

2 Commits

Author SHA1 Message Date
CleverAgents Bot 590d26624d chore(agents): fix bug-hunt-pool-supervisor tracking prefix AUTO-BUG-POOL to AUTO-BUG-SUP 2026-04-26 22:07:38 +00:00
HAL9000 4babeac8dd chore(agents): fix bug-hunt-pool-supervisor tracking prefix AUTO-BUG-POOL to AUTO-BUG-SUP (complete fix)
CI / push-validation (pull_request) Successful in 23s
CI / helm (pull_request) Successful in 31s
CI / build (pull_request) Successful in 3m49s
CI / lint (pull_request) Successful in 3m56s
CI / quality (pull_request) Successful in 4m25s
CI / security (pull_request) Successful in 4m51s
CI / typecheck (pull_request) Successful in 4m54s
CI / integration_tests (pull_request) Successful in 6m50s
CI / e2e_tests (pull_request) Successful in 8m2s
CI / unit_tests (pull_request) Successful in 8m53s
CI / docker (pull_request) Successful in 2m24s
CI / coverage (pull_request) Successful in 14m19s
CI / status-check (pull_request) Successful in 3s
CI / benchmark-publish (pull_request) Has been skipped
CI / benchmark-regression (pull_request) Failing after 1h11m5s
2026-04-22 10:19:21 +00:00
7 changed files with 17 additions and 17 deletions
@@ -34,9 +34,9 @@ Insert this section after the "Pool Supervisor Mode" header:
**Updated**: This agent creates individual tracking issues instead of posting comments to a session state issue.
### Tracking Issue Format
- **Pool Status Updates**: `[AUTO-BUG-POOL] Bug Detection Pool Status (Cycle N)`
- **Analysis Reports**: `[AUTO-BUG-POOL] Bug Analysis Report (Cycle N)`
- **Announcements**: `[AUTO-BUG-POOL] Announce: <message summary>`
- **Pool Status Updates**: `[AUTO-BUG-SUP] Bug Detection Pool Status (Cycle N)`
- **Analysis Reports**: `[AUTO-BUG-SUP] Bug Analysis Report (Cycle N)`
- **Announcements**: `[AUTO-BUG-SUP] Announce: <message summary>`
- **Labels**: "Automation Tracking" + any relevant priority labels
### Cleanup Protocol
@@ -50,7 +50,7 @@ Insert this section after the "Pool Supervisor Mode" header:
function cleanup_previous_bug_hunter_tracking() {
local previous_issue=$(curl -s "https://git.cleverthis.com/api/v1/repos/$owner/$repo/issues?state=open&type=issues&labels=Automation+Tracking" \
-H "Authorization: token $FORGEJO_PAT" | \
jq -r '.[] | select(.title | contains("[AUTO-BUG-POOL] Bug Detection Pool Status")) | .number' | head -1)
jq -r '.[] | select(.title | contains("[AUTO-BUG-SUP] Bug Detection Pool Status")) | .number' | head -1)
if [[ -n "$previous_issue" && "$previous_issue" != "null" ]]; then
echo "Cleaning up previous bug hunter tracking issue #$previous_issue"
@@ -75,7 +75,7 @@ function cleanup_previous_bug_hunter_tracking() {
# Create bug detection pool tracking issue
function create_bug_hunter_tracking_issue() {
local cycle="$1"
local title="[AUTO-BUG-POOL] Bug Detection Pool Status (Cycle $cycle)"
local title="[AUTO-BUG-SUP] Bug Detection Pool Status (Cycle $cycle)"
local body="$2"
local response=$(curl -s -X POST "https://git.cleverthis.com/api/v1/repos/$owner/$repo/issues" \
@@ -110,7 +110,7 @@ function create_bug_hunter_announcement_issue() {
# Use automation-tracking-manager for consistent announcement handling
local result=$(task automation-tracking-manager "CREATE_ANNOUNCEMENT_ISSUE" \
--agent-prefix "AUTO-BUG-POOL" \
--agent-prefix "AUTO-BUG-SUP" \
--message "$message" \
--priority "$priority" \
--body "$body" \
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -15,7 +15,7 @@ agents = {
"create_func": "create_guard_tracking_issue",
},
"bug-hunter.md": {
"prefix": "AUTO-BUG-POOL",
"prefix": "AUTO-BUG-SUP",
"tracking_type": "Bug Detection Report",
"cleanup_func": "cleanup_previous_bug_hunter_tracking",
"create_func": "create_bug_hunter_tracking_issue",
+1 -1
View File
@@ -6,7 +6,7 @@
declare -A agents=(
["architect.md"]="AUTO-ARCH|Architecture Review"
["architecture-guard.md"]="AUTO-GUARD|Code Analysis Report"
["bug-hunter.md"]="AUTO-BUG-POOL|Bug Detection Report"
["bug-hunter.md"]="AUTO-BUG-SUP|Bug Detection Report"
["docs-writer.md"]="AUTO-DOCS|Documentation Report"
["epic-planner.md"]="AUTO-EPIC|Epic Planning Update"
["human-liaison.md"]="AUTO-LIAISON|Human Activity Report"
+1 -1
View File
@@ -185,7 +185,7 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
choices rather than mandatory.
- **Automation Tracking Agent Prefix Registry**: Expanded from 5 agents to 18 agents.
New prefixes include `AUTO-DOCS`, `AUTO-REV-POOL`, `AUTO-UAT-POOL`, `AUTO-BUG-POOL`,
New prefixes include `AUTO-DOCS`, `AUTO-REV-POOL`, `AUTO-UAT-POOL`, `AUTO-BUG-SUP`,
`AUTO-INF-POOL`, `AUTO-ARCH`, `AUTO-EPIC`, `AUTO-EVLV`, `AUTO-GUARD`, `AUTO-SPEC`,
`AUTO-TIME`, `AUTO-PROJ-OWN`, and `AUTO-PROD-BLDR`.
@@ -665,7 +665,7 @@ The Automation Tracking Manager provides eleven operations:
| `AUTO-IMP-POOL` | Implementation Pool Supervisor |
| `AUTO-REV-POOL` | PR Review Pool Supervisor |
| `AUTO-UAT-POOL` | UAT Test Pool Supervisor |
| `AUTO-BUG-POOL` | Bug Hunt Pool Supervisor |
| `AUTO-BUG-SUP` | Bug Hunt Pool Supervisor |
| `AUTO-INF-POOL` | Test Infrastructure Pool Supervisor |
| `AUTO-ARCH` | Architecture Supervisor |
| `AUTO-EPIC` | Epic Planning Supervisor |
@@ -693,7 +693,7 @@ The following table maps between the two schemes for agents where they differ:
| Implementation Pool | `AUTO-IMP-SUP` | `AUTO-IMP-POOL` |
| PR Review Pool | `AUTO-REV-SUP` | `AUTO-REV-POOL` |
| UAT Test Pool | `AUTO-UAT-SUP` | `AUTO-UAT-POOL` |
| Bug Hunt Pool | `AUTO-BUG-SUP` | `AUTO-BUG-POOL` |
| Bug Hunt Pool | `AUTO-BUG-SUP` | `AUTO-BUG-SUP` |
| Test Infrastructure Pool | `AUTO-INF-SUP` | `AUTO-INF-POOL` |
| Human Liaison | `AUTO-HUMAN` | `AUTO-LIAISON` |
| Grooming | `AUTO-GROOM` | `AUTO-GROOMER` |
@@ -1869,7 +1869,7 @@ Only critical bugs get assigned to the active milestone. Non-critical issues go
| **Mode** | `subagent` |
| **Model** | `google/gemini-2.5-pro` |
| **Temperature** | 0.1 |
| **Tracking Prefix** | `AUTO-BUG-POOL` |
| **Tracking Prefix** | `AUTO-BUG-SUP` |
| **Worker Count** | N/4 (quarter allocation) |
#### 8.6.1 Purpose
@@ -3164,7 +3164,7 @@ Defines how ALL agents discover, interact with, and coordinate through the autom
### 13.9 Bug Hunter Tracking Update (`shared/bug_hunter_tracking_update.md`)
Defines the migration guide for converting the Bug Hunt supervisor from the old session state system to the new individual tracking issue system. Documents the tracking issue format `[AUTO-BUG-POOL] Bug Detection Pool Status (Cycle N)`, the cleanup protocol (one issue per cycle, preserve announcements), and worker coordination via announcement issues.
Defines the migration guide for converting the Bug Hunt supervisor from the old session state system to the new individual tracking issue system. Documents the tracking issue format `[AUTO-BUG-SUP] Bug Detection Pool Status (Cycle N)`, the cleanup protocol (one issue per cycle, preserve announcements), and worker coordination via announcement issues.
---
@@ -6767,7 +6767,7 @@ The system uses five distinct redundancy patterns:
| 4 | pr-merge-pool-supervisor | subagent | claude-sonnet-4-6 | AUTO-MERGE | Singleton Supervisor |
| 5 | pr-fix-pool-supervisor | *(removed — absorbed into implementation-pool-supervisor)* | -- | -- | -- |
| 6 | uat-test-pool-supervisor | subagent | claude-sonnet-4-6 | AUTO-UAT-POOL | Pool Supervisor |
| 7 | bug-hunt-pool-supervisor | subagent | gemini-2.5-pro | AUTO-BUG-POOL | Pool Supervisor |
| 7 | bug-hunt-pool-supervisor | subagent | gemini-2.5-pro | AUTO-BUG-SUP | Pool Supervisor |
| 8 | test-infra-pool-supervisor | subagent | gemini-2.5-pro | AUTO-INF-POOL | Pool Supervisor |
| 9 | architecture-pool-supervisor | subagent | claude-sonnet-4-6 | AUTO-ARCH | Singleton Supervisor |
| 10 | epic-planning-pool-supervisor | subagent | claude-sonnet-4-6 | AUTO-EPIC | Singleton Supervisor |
+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 Detection Pool Status (Cycle 60)` |
| 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
```