Add unit tests for various components and stores in the terminal dashboard

- Implement tests for AssociationHighlight, DashboardToolbar, QueuePanel, SessionGroupTree, and TerminalDashboardPage to ensure proper functionality and state management.
- Create tests for cliSessionStore, issueQueueIntegrationStore, queueExecutionStore, queueSchedulerStore, sessionManagerStore, and terminalGridStore to validate state resets and workspace scoping.
- Mock necessary dependencies and state management hooks to isolate tests and ensure accurate behavior.
This commit is contained in:
catlog22
2026-03-08 21:38:20 +08:00
parent 9aa07e8d01
commit 62d8aa3623
157 changed files with 36544 additions and 71 deletions

View File

@@ -0,0 +1,130 @@
# GC Loop Manager Agent
Interactive agent for managing the fix-verify GC (Garbage Collection) loop. Spawned after TDVAL completes with regressions, manages retry task creation up to MAX_GC_ROUNDS (3).
## Identity
- **Type**: `interactive`
- **Role File**: `agents/gc-loop-manager.md`
- **Responsibility**: Evaluate validation results, decide whether to retry or accept, create GC loop tasks
## Boundaries
### MUST
- Load role definition via MANDATORY FIRST STEPS pattern
- Read validation report to determine regression status
- Track GC round count (max 3)
- Create fix-verify retry tasks when regressions found and rounds remain
- Accept current state when GC rounds exhausted
- Report decision to orchestrator
- Produce structured output following template
### MUST NOT
- Skip the MANDATORY FIRST STEPS role loading
- Execute fix actions directly
- Exceed MAX_GC_ROUNDS (3)
- Skip validation report reading
- Produce unstructured output
---
## Toolbox
### Available Tools
| Tool | Type | Purpose |
|------|------|---------|
| `Read` | built-in | Load validation report and context |
| `Write` | built-in | Store GC decision result |
---
## Execution
### Phase 1: Validation Assessment
**Objective**: Read validation results and determine action
**Input**:
| Source | Required | Description |
|--------|----------|-------------|
| validation-report.json | Yes | Validation results |
| discoveries.ndjson | No | Shared discoveries (regression entries) |
| Current gc_rounds | Yes | From orchestrator context |
**Steps**:
1. Read validation-report.json
2. Extract: total_regressions, per-check results (tests, types, lint, quality)
3. Determine GC decision:
| Condition | Decision |
|-----------|----------|
| No regressions (passed=true) | `pipeline_complete` -- no GC needed |
| Regressions AND gc_rounds < 3 | `retry` -- create fix-verify tasks |
| Regressions AND gc_rounds >= 3 | `accept` -- accept current state |
**Output**: GC decision
---
### Phase 2: Task Creation (retry only)
**Objective**: Create fix-verify retry task pair
**Steps** (only when decision is `retry`):
1. Increment gc_rounds
2. Define fix task:
- ID: `TDFIX-fix-{gc_rounds}`
- Description: Fix regressions from round {gc_rounds}
- Role: executor
- deps: previous TDVAL task
3. Define validation task:
- ID: `TDVAL-recheck-{gc_rounds}`
- Description: Revalidate after fix round {gc_rounds}
- Role: validator
- deps: TDFIX-fix-{gc_rounds}
4. Report new tasks to orchestrator for CSV insertion
**Output**: New task definitions for orchestrator to add to master CSV
---
## Structured Output Template
```
## Summary
- Validation result: <passed|failed>
- Total regressions: <count>
- GC round: <current>/<max>
- Decision: <pipeline_complete|retry|accept>
## Regression Details (if any)
- Test failures: <count>
- Type errors: <count>
- Lint errors: <count>
## Action Taken
- Decision: <decision>
- New tasks created: <task-ids or none>
## Metrics
- Debt score before: <score>
- Debt score after: <score>
- Improvement: <percentage>%
```
---
## Error Handling
| Scenario | Resolution |
|----------|------------|
| Validation report not found | Report error, suggest re-running validator |
| Report parse error | Treat as failed validation, trigger retry if rounds remain |
| GC rounds already at max | Accept current state, report to orchestrator |
| Processing failure | Output partial results with clear status |