ed
d4b4312dd2
chore: remove debug logging and fix closure bug in test hooks
2026-05-07 15:02:00 -04:00
ed
40f0c04a91
chore(conductor): Mark track 'Fix Concurrent MMA Live GUI Tests' as complete
...
Fixes UI flickering between tracks in app_controller.py and an indentation bug in multi_agent_conductor.py that caused workers to crash silently.
2026-05-07 13:30:42 -04:00
ed
b0a837d235
fix(mma): Add explicit reload logic when _cb_load_track fails in _cb_start_track
...
The test clicks btn_mma_start_track twice with different track_ids.
When _cb_load_track fails for track_a, self.active_track remains None or wrong.
Then track_b loads but we can't distinguish if a later call is for track_a retry
or track_b (which already has an engine). This adds an explicit reload path
when loaded track doesn't match requested track.
2026-05-07 08:41:08 -04:00
ed
f3585cb5a1
fix(mma): Use track.id instead of self.active_track.id in _start_track_logic
...
active_track was None when _start_track_logic was called from _cb_accept_tracks
because active_track is only set when loading a track via _cb_load_track.
_start_track_logic creates a new track locally and should use that track's id.
2026-05-07 08:28:20 -04:00
ed
cab733abc6
debug: Add logging to _cb_start_track
2026-05-07 08:19:05 -04:00
ed
6f2a2c2eea
fix(gui): Initialize active_tickets in AppController.init_state
...
The AppController.__getattr__ delegation was returning controller.active_tickets
but init_state() never initialized self.active_tickets, causing an
AttributeError when gui_2.py tried to access self.active_tickets before
controller state was fully loaded.
Fixes live_gui fixture crash in test_mma_concurrent_tracks_stress_sim.py
2026-05-07 08:05:58 -04:00
ed
ac0b564c02
fix(mma): Change self.engine to self.engines dict for concurrent track support
...
- self.engine was a single ConductorEngine reference that got overwritten
when multiple tracks ran concurrently, orphaning the first track's engine
- Now uses self.engines: Dict[str, ConductorEngine] keyed by track.id
- Updated _spawn_worker, kill_worker, pause_mma, resume_mma, approve_ticket,
_load_active_tickets, and _update_ticket_depends_on to use engines.get(track_id)
Fixes concurrent MMA track execution bug where only one worker ever appeared.
2026-05-07 07:54:39 -04:00
ed
c36e691b8d
fix(api): Include tracks list in get_mma_status response
2026-05-06 21:19:55 -04:00
ed
2b5185a78f
perf(entropy): Fix nested imports in hot paths
...
Hoisted imports from inside frequently-called functions to module level:
app_controller.py:
- Added traceback and inspect at module level
- Removed 3 nested traceback imports from exception handlers
gui_2.py:
- Added traceback at module level
- Removed nested traceback import from _gui_func exception handler
- Kept uvicorn lazy-loaded (only for --headless mode)
multi_agent_conductor.py:
- Removed unused 'import sys' from run()
- Removed redundant nested imports (already at module level)
Also adds audit scripts and entropy findings documentation.
2026-05-06 20:18:30 -04:00
ed
54afbb9365
chore(entropy): Phase 5 start - fix duplicate line bug and document findings
...
- Fix duplicate line bug in rag_emb_provider.setter (app_controller.py)
- Add entropy_findings.md documenting audit results
- Update plan.md with Phase 5 tasks and findings
- Note: Property getter/setter 'duplicates' are false positives - proper Python patterns
2026-05-06 19:59:06 -04:00
ed
2b66f3569b
feat(beads): integrate Beads Mode backend, MCP tools, and GUI support
2026-05-06 13:48:47 -04:00
ed
ecc5a66027
feat(workspace): implement contextual auto-switch layout based on MMA active tier
2026-05-05 21:57:08 -04:00
ed
ded9f38a00
feat(workspace): implement layout menu and save profile modal
2026-05-05 21:25:53 -04:00
ed
eab1945035
feat(workspace): implement layout capture/restore and controller integration
2026-05-05 21:09:51 -04:00
ed
0a5b90e772
conductor(checkpoint): Checkpoint end of Phase 3 - Discussion & Context Structure Mutation
2026-05-05 12:17:53 -04:00
ed
7bed4a8f97
conductor(checkpoint): Final checkpoint for RAG Support track - Phase 4 complete
2026-05-04 22:36:31 -04:00
ed
095368bca2
feat(rag): implement incremental and parallel indexing performance optimizations
2026-05-04 21:47:54 -04:00
ed
a3d7376535
feat(rag): final refinements for Phase 4 support and UI visualization
2026-05-04 21:41:10 -04:00
ed
8b85c7a100
feat(rag): wire RAG settings to Hook API and add simulation tests
2026-05-04 18:37:59 -04:00
ed
8b487536c5
feat(rag): Implement auto-indexing and status indicators
2026-05-04 11:34:01 -04:00
ed
fe0069c046
feat(rag): Implement indexing and retrieval logic with AppController integration
2026-05-04 06:53:32 -04:00
ed
e80cd6bd3f
feat(rag): Implement RAG engine, configuration schema, and vector store integration
2026-05-04 05:38:23 -04:00
ed
6bf6c79db4
feat(ui): Expose cache status and controls in UI
2026-05-04 05:18:04 -04:00
ed
36645f7f3e
feat(aggregation): Implement tier-level aggregation strategy tied to Personas
2026-05-04 05:10:59 -04:00
ed
2441ea64a3
conductor(checkpoint): Checkpoint end of Phase 4
2026-05-02 19:00:28 -04:00
ed
4f1bcea381
feat(ai): Implement configurable base system prompt and expose in UI
2026-05-02 14:49:47 -04:00
ed
7fdf6c9782
feat(mma): Enable manual ticket approval via Hook API for Step Mode
2026-05-02 13:48:14 -04:00
ed
ef737459ec
fix(gui): Resolve AppController state regressions
2026-05-02 12:46:05 -04:00
ed
bf148ff6a2
conductor(checkpoint): Checkpoint end of Phase 2
2026-05-02 12:07:38 -04:00
ed
2ed9867e39
feat(gui): Rename Context Hub to Project Settings
...
- gui_2.py: Window title changed to 'Project Settings'
- app_controller.py: show_windows key updated
- Updated tests to reference new name
2026-03-22 12:57:49 -04:00
ed
f5d4913da2
feat(gui): Remove ui_summary_only global toggle
...
The ui_summary_only global aggregation toggle was redundant with per-file flags
(auto_aggregate, force_full). Removed:
- Checkbox from Projects panel (gui_2.py)
- State variable and project load/save (app_controller.py)
Per-file flags remain the intended mechanism for controlling aggregation.
Tests added to verify removal and per-file flag functionality.
2026-03-22 12:54:32 -04:00
ed
f770a4e093
fix(gui): Implement correct UX for discussion takes tabs and combo box
2026-03-21 10:55:29 -04:00
ed
510527c400
feat(backend): Implement multi-take sequence differencing and text formatting utility
2026-03-19 19:53:09 -04:00
ed
e48835f7ff
feat(gui): Add branch discussion action to history entries
2026-03-19 19:44:30 -04:00
ed
84b6266610
feat(gui): Implement Session Hub and context injection visibility
2026-03-18 09:04:07 -04:00
ed
b4396697dd
finished a track
2026-03-17 23:26:01 -04:00
ed
5285bc68f9
fix(gui): fix missing token stats and improve standalone monologue rendering
2026-03-15 15:57:08 -04:00
ed
1a305ee614
fix(gui): push AI monologue/text chunks to discussion history immediately per round instead of accumulating
2026-03-14 09:35:41 -04:00
ed
81ded98198
fix(gui): do not auto-add tool calls/results to discussion history if ui_auto_add_history is false
2026-03-14 09:26:54 -04:00
ed
3d0c40de45
fix(gui): parse thinking traces out of response text before rendering in history and comms panels
2026-03-14 09:19:47 -04:00
ed
b677228a96
get prior session history properly working.
2026-03-12 21:38:19 -04:00
ed
c8eb340afe
fixes
2026-03-12 20:58:28 -04:00
ed
414379da4f
more fixes
2026-03-12 20:54:47 -04:00
ed
5a8a91ecf7
more fixes
2026-03-12 19:51:04 -04:00
ed
8bc6eae101
wip: fixing more path resolution in tests
2026-03-12 19:28:21 -04:00
ed
1f8bb58219
more adjustments
2026-03-12 19:08:51 -04:00
ed
19e7c94c2e
fixes
2026-03-12 18:47:17 -04:00
ed
d237d3b94d
feat(gui): Add Path Configuration panel to Context Hub
2026-03-12 16:44:22 -04:00
ed
3999e9c86d
feat(conductor): Use project-specific conductor directory in project_manager and app_controller
2026-03-12 16:38:01 -04:00
ed
3b2588ad61
feat(gui): Integrate External MCPs into Operations Hub with status indicators
2026-03-12 15:54:52 -04:00