CleverAgents Build Agent
a0664ad662
Build: enforce pagination with agents
CI / status-check (push) Blocked by required conditions
CI / push-validation (push) Successful in 17s
CI / helm (push) Successful in 31s
CI / quality (push) Successful in 43s
CI / typecheck (push) Successful in 55s
CI / lint (push) Successful in 3m20s
CI / build (push) Successful in 3m23s
CI / security (push) Successful in 4m5s
CI / integration_tests (push) Successful in 4m14s
CI / e2e_tests (push) Successful in 7m21s
CI / unit_tests (push) Successful in 8m22s
CI / docker (push) Successful in 10s
CI / coverage (push) Failing after 21m53s
2026-04-13 20:47:32 -04:00
CleverAgents Build Agent
ad069c2012
Build: Fixed forgejo tool permissions in the agents and fixed the label manager so it reliably works with org level labels
CI / push-validation (push) Successful in 20s
CI / helm (push) Successful in 22s
CI / build (push) Successful in 3m18s
CI / lint (push) Successful in 3m21s
CI / quality (push) Successful in 3m40s
CI / typecheck (push) Successful in 3m59s
CI / security (push) Successful in 4m5s
CI / e2e_tests (push) Successful in 6m10s
CI / integration_tests (push) Successful in 6m12s
CI / unit_tests (push) Successful in 7m31s
CI / docker (push) Successful in 1m32s
CI / coverage (push) Successful in 13m52s
CI / status-check (push) Successful in 1s
2026-04-13 19:45:22 -04:00
clever-agent
5a9aaa79ed
Build: Reinforced label enforcement, and ensure implementation workers dont continue work on a mergable PR.
CI / lint (push) Successful in 39s
CI / quality (push) Successful in 41s
CI / typecheck (push) Successful in 52s
CI / build (push) Successful in 36s
CI / helm (push) Successful in 27s
CI / push-validation (push) Successful in 18s
CI / security (push) Successful in 4m5s
CI / e2e_tests (push) Successful in 3m43s
CI / integration_tests (push) Successful in 4m2s
CI / unit_tests (push) Successful in 5m37s
CI / docker (push) Successful in 22s
CI / coverage (push) Successful in 11m0s
CI / status-check (push) Successful in 1s
CI / benchmark-publish (push) Has been cancelled
CI / benchmark-regression (push) Has been cancelled
2026-04-13 13:54:43 -04:00
clever-agent
8692bb46e5
build: Refactored agent definitions to be simpler and less contention
CI / benchmark-publish (push) Waiting to run
CI / push-validation (push) Successful in 18s
CI / helm (push) Successful in 25s
CI / lint (push) Successful in 28s
CI / quality (push) Successful in 55s
CI / e2e_tests (push) Successful in 3m4s
CI / build (push) Successful in 3m20s
CI / typecheck (push) Successful in 3m59s
CI / security (push) Successful in 4m5s
CI / benchmark-regression (push) Waiting to run
CI / unit_tests (push) Successful in 7m44s
CI / docker (push) Successful in 1m19s
CI / integration_tests (push) Successful in 9m56s
CI / coverage (push) Successful in 11m47s
CI / status-check (push) Successful in 1s
2026-04-12 19:24:50 -04:00
clever-agent
cd49434c0d
fix(agents): centralize interval calculation in ATM, eliminate duplication
...
Per Subagent Specialization Principle: removed 17 duplicated rolling
average calculation blocks from all supervisors. The ATM now handles
interval calculation internally via --sleep-interval-default parameter.
- automation-tracking-manager.md: added sleep_interval_default to CREATE_TRACKING_ISSUE,
added CYCLE_ANNOUNCEMENT_REVIEW operation (#11 )
- All 17 supervisor agents: replaced 7-line interval calc with --sleep-interval-default param
- shared/tracking_discovery_guide.md: updated to reference ATM-handled interval
2026-04-10 16:15:44 -04:00
clever-agent
e3a9114ae3
fix(agents): add Estimated Cycle Interval to all tracking body templates
...
Added the **Estimated Cycle Interval** field to the actual tracking body
template strings in all 14 agents that had inline body strings without it.
Fixed 2 non-standard body formats (project-owner had [HEALTH] header,
bug-hunt had no header). All 18 status-creating agents now produce tracking
issues with the standardized header including the interval field.
2026-04-10 16:15:44 -04:00
clever-agent
0a74cb6a70
fix(agents): reorder tracking operations to READ-before-CREATE in all 17 agents
...
All 17 supervisor/orchestrator agents had CREATE_TRACKING_ISSUE before
READ_TRACKING_STATE in their tracking operations reference. This wrong
ordering causes agents to destroy state before recovering it. Fixed all
to: READ (recover state) -> calculate rolling interval -> CREATE (new issue).
Each agent now includes:
- Startup recovery with READ_TRACKING_STATE as step 1
- Rolling average interval calculation with agent-specific defaults
- Note that tracking body MUST include Estimated Cycle Interval field
2026-04-10 16:15:44 -04:00
clever-agent
c92b108cb0
fix(agents): add announcement review/consumption protocol to supervisors
...
- automation-tracking-manager.md: strengthened close-ALL-then-create invariant
- backlog-grooming-pool-supervisor.md: added READ_ANNOUNCEMENTS + REVIEW_OWN
- pr-review-pool-supervisor.md: added READ_ANNOUNCEMENTS + REVIEW_OWN
- agent-evolution-pool-supervisor.md: added READ_ANNOUNCEMENTS + REVIEW_OWN
- shared/tracking_discovery_guide.md: added mandatory review + consumption protocols
2026-04-10 16:15:43 -04:00
clever-agent
e43ca83984
fix(agents): update remaining stale agent name references
...
- product-builder.md: implementation-orchestrator -> implementation-pool-supervisor
- async-agent-manager.md: updated entire valid_agents list (15+ stale names)
- async-agent-monitor.md: implementation-orchestrator -> implementation-pool-supervisor
- shared/logging.md: pr-self-reviewer -> pr-reviewer
- agent-evolution-pool-supervisor.md: continuous-pr-reviewer -> pr-review-pool-supervisor
- shared/tracking_discovery_guide.md: implementation-orchestrator -> implementation-pool-supervisor
2026-04-10 16:15:43 -04:00
clever-agent
0a49cd6478
refactor(agents): reorganize PR agents and rename supervisors to *-pool-supervisor pattern
...
- Rename all 16 supervisors to follow *-pool-supervisor pattern for consistency
- Rename PR agents for clarity:
- pr-api-creator → pr-creator
- pr-checker → pr-ci-test-fixer
- pr-status-checker → pr-status-analyzer
- pr-self-reviewer → pr-reviewer
- pr-fix-orchestrator → pr-fix-pool-supervisor
- Add new PR management agents:
- pr-editor: Safe PR editing with description preservation
- pr-manager: Unified PR interface (mode: all)
- pr-merge-pool-supervisor: Automated PR merging supervisor
- Update all agent references throughout codebase
- Ensure CONTRIBUTING.md compliance for all PR operations
2026-04-09 21:39:32 -04:00