conductor(archive): move 39 completed tracks (2026-05 to 2026-06) to archive/

This commit is contained in:
ed
2026-06-03 00:09:52 -04:00
parent 0ffeccc7d3
commit 594f14f943
160 changed files with 94 additions and 21 deletions
@@ -0,0 +1,4 @@
# Track: Granular AST Control
- [Specification](./spec.md)
- [Plan](./plan.md)
@@ -0,0 +1,5 @@
{
"id": "granular_ast_control_20260510",
"title": "Granular AST Control (Signatures vs. Definitions)",
"status": "planned"
}
@@ -0,0 +1,9 @@
# Implementation Plan: Granular AST Control
## Phase 1: Models & UI State
- [x] Update `FileItem` model in `src/models.py` to support the new AST states.
- [x] Update `src/gui_2.py` Context Panel to render toggle buttons/dropdowns for the new states.
## Phase 2: Aggregation Logic
- [x] Modify `src/aggregate.py` to intercept files with these states and call the appropriate `tree-sitter` MCP tools.
- [x] Ensure caching works for the new AST extraction states.
@@ -0,0 +1,9 @@
# Specification: Granular AST Control (Signatures vs. Definitions)
## Overview
Introduce 'AST Signatures' and 'AST Definitions' states in the Context Panel for C/C++ files to allow granular control over context exposure without blowing up token limits.
## Acceptance Criteria
- [ ] Context panel file items support two new states: `AST Signatures` and `AST Definitions`.
- [ ] `aggregate.py` respects these states by invoking the `ts_c_get_skeleton` / `ts_cpp_get_skeleton` tools accordingly.
- [ ] Visual indicators in the UI clearly show the current aggregation state of each file.