Commit Graph

1207 Commits

Author SHA1 Message Date
Ed_
992f48ab99 fix(gui): remove duplicate collapsing_header in cache/tool analytics panels 2026-03-07 11:04:42 -05:00
Ed_
e485bc102f chore(conductor/tracks.md): mark tool_usage_analytics complete 2026-03-07 10:59:01 -05:00
Ed_
1d87ad3566 feat(gui): add Tool Usage Analytics panel with stats tracking 2026-03-07 10:58:23 -05:00
Ed_
5075a82fe4 chore(conductor/tracks.md): mark cache_analytics complete 2026-03-07 10:47:29 -05:00
Ed_
73ec811193 conductor(plan): mark cache_analytics phases complete 2026-03-07 10:47:11 -05:00
Ed_
d823844417 feat(gui): add dedicated Cache Analytics panel with TTL countdown and clear button 2026-03-07 10:45:01 -05:00
Ed_
f6fefcb50f chore(conductor/tracks.md): mark mma_multiworker_viz complete 2026-03-07 10:36:29 -05:00
Ed_
935205b7bf conductor(plan): mark Phase 4 & 5 complete for mma_multiworker_viz 2026-03-07 10:36:15 -05:00
Ed_
87bfc69257 feat(mma): add stream pruning with MAX_STREAM_SIZE (10KB) 2026-03-07 10:35:35 -05:00
Ed_
d591b257d4 conductor(plan): mark Phase 3 complete for mma_multiworker_viz 2026-03-07 10:34:41 -05:00
Ed_
544a554100 feat(gui): add worker status indicators to tier stream panel 2026-03-07 10:34:27 -05:00
Ed_
3b16c4bce8 conductor(plan): mark Phase 1 & 2 complete for mma_multiworker_viz 2026-03-07 10:32:35 -05:00
Ed_
55e881fa52 feat(mma): add worker status tracking (_worker_status dict) 2026-03-07 10:32:12 -05:00
Ed_
bf8868191a remove perf dashboard not useful needs to be relevant to gui2 profiling. 2026-03-07 10:29:41 -05:00
Ed_
1466615b30 tiredv 2026-03-07 10:28:21 -05:00
Ed_
a5cddbf90d chore(conductor/tracks.md): mark cost_token_analytics complete 2026-03-07 01:51:26 -05:00
Ed_
552e76e98a feat(gui): add per-tier cost breakdown to token budget panel 2026-03-07 01:50:53 -05:00
Ed_
1a2268f9f5 chore(conductor/tracks.md): mark native_orchestrator as complete 2026-03-07 01:44:07 -05:00
Ed_
c05bb58d54 chore(TASKS): mark native_orchestrator_20260306 as complete 2026-03-07 01:42:44 -05:00
Ed_
0b7352043c revert(mma_exec): remove native_orchestrator integration - mma_exec is Meta-Tooling not Application 2026-03-07 01:42:25 -05:00
Ed_
c1110344d4 conductor(plan): Mark Task 4.1 skipped, Task 5.1 complete 2026-03-07 01:39:01 -05:00
Ed_
e05ad7f32d feat(mma_exec): integrate NativeOrchestrator for track metadata operations 2026-03-07 01:36:42 -05:00
Ed_
3f03663e2e test(orchestrator): add unit tests for native_orchestrator module 2026-03-07 01:36:01 -05:00
Ed_
b1da2ddf7b conductor(plan): Mark Phase 3 Task 3.1 complete 2026-03-07 01:33:50 -05:00
Ed_
78d496d33f conductor(plan): Mark Phase 1 & 2 tasks complete in native_orchestrator 2026-03-07 01:33:04 -05:00
Ed_
1323d10ea0 feat(orchestrator): add native_orchestrator.py with plan/metadata CRUD and NativeOrchestrator class 2026-03-07 01:32:09 -05:00
Ed_
0fae341d2f fix(ai_client): add patch_callback param to _send_gemini_cli signature 2026-03-07 01:28:07 -05:00
Ed_
fa29c53b1e fix(gui): patch modal ImGui API fixes - use vec4() for colors, proper button calls 2026-03-07 01:16:40 -05:00
Ed_
4f4f914c64 feat(tier4): Add 5-second delay before showing patch modal so user can see it 2026-03-07 00:58:32 -05:00
Ed_
f8e1a5b405 feat(tier4): Complete GUI integration for patch modal
- Add patch modal state to AppController instead of App
- Add show_patch_modal/hide_patch_modal action handlers
- Fix push_event to work with flat payload format
- Add patch fields to _gettable_fields
- Both GUI integration tests passing
2026-03-07 00:55:35 -05:00
Ed_
d520d5d6c2 fix: Add debug logging to patch endpoints 2026-03-07 00:45:07 -05:00
Ed_
14dab8e67f feat(tier4): Add patch modal GUI integration and API hooks 2026-03-07 00:37:44 -05:00
Ed_
90670b9671 feat(tier4): Integrate patch generation into GUI workflow
- Add patch_callback parameter throughout the tool execution chain
- Add _render_patch_modal() to gui_2.py with colored diff display
- Add patch modal state variables to App.__init__
- Add request_patch_from_tier4() to trigger patch generation
- Add run_tier4_patch_callback() to ai_client.py
- Update shell_runner to accept and execute patch_callback
- Diff colors: green for additions, red for deletions, cyan for headers
- 36 tests passing
2026-03-07 00:26:34 -05:00
Ed_
72a71706e3 conductor(plan): Mark Phase 5 complete - all phases done
Summary of implementation:
- Phase 1: Tier 4 patch generation (run_tier4_patch_generation)
- Phase 2: Diff parser and renderer (src/diff_viewer.py)
- Phase 3: Patch application with backup/rollback
- Phase 4: Patch modal manager for approval workflow
- Phase 5: 29 unit tests passing
2026-03-07 00:15:42 -05:00
Ed_
d58816620a feat(modal): Add patch approval modal manager
- Create src/patch_modal.py with PatchModalManager class
- Manage patch approval workflow: request, apply, reject
- Provide singleton access via get_patch_modal_manager()
- Add 8 unit tests for modal manager
2026-03-07 00:15:06 -05:00
Ed_
125cbc6dd0 feat(patch): Add patch application and backup functions
- Add create_backup() to backup files before patching
- Add apply_patch_to_file() to apply unified diff
- Add restore_from_backup() for rollback
- Add cleanup_backup() to remove backup files
- Add 15 unit tests for all patch operations
2026-03-07 00:14:23 -05:00
Ed_
99a5d7045f feat(diff): Add diff rendering helpers for GUI
- Add get_line_color() to classify diff lines
- Add render_diff_text_immediate() for immediate mode rendering
- Add tests for rendering functions
2026-03-07 00:13:10 -05:00
Ed_
130001c0ba feat(diff): Add diff parser for unified diff format
- Create src/diff_viewer.py with parse_diff function
- Parse unified diff into DiffFile and DiffHunk dataclasses
- Extract file paths, hunk headers, and line changes
- Add unit tests for diff parser
2026-03-07 00:12:06 -05:00
Ed_
da58f46e89 conductor(plan): Mark Phase 1 tasks complete 2026-03-07 00:11:17 -05:00
Ed_
c8e8cb3bf3 feat(tier4): Add patch generation for auto-patching
- Add TIER4_PATCH_PROMPT to mma_prompts.py with unified diff format
- Add run_tier4_patch_generation function to ai_client.py
- Import mma_prompts in ai_client.py
- Add unit tests for patch generation
2026-03-07 00:10:35 -05:00
Ed_
5277b11279 chore: update track references and config 2026-03-07 00:06:05 -05:00
Ed_
bc606a8a8d fix: Add minimax to tool call execution handler 2026-03-06 23:51:17 -05:00
Ed_
a47ea47839 temp: disable tools for minimax to debug API issues 2026-03-06 23:48:41 -05:00
Ed_
6cfe9697e0 fix: Use temperature=1.0 for MiniMax (required range is (0.0, 1.0]) 2026-03-06 23:46:17 -05:00
Ed_
ce53f69ae0 fix: Use correct MiniMax API endpoint (api.minimax.io not api.minimax.chat) 2026-03-06 23:43:41 -05:00
Ed_
af4b716a74 fix: Use absolute path for credentials.toml 2026-03-06 23:42:01 -05:00
Ed_
ae5e7dedae fix(deps): Add openai package for MiniMax provider support 2026-03-06 23:39:14 -05:00
Ed_
120a843f33 conductor(plan): Mark all minimax tasks complete with b79c1fc 2026-03-06 23:37:52 -05:00
Ed_
a07b7e4f34 conductor(plan): Mark minimax_provider_20260306 tasks complete 2026-03-06 23:37:37 -05:00
Ed_
b79c1fce3c feat(provider): Add MiniMax AI provider integration
- Add minimax to PROVIDERS lists in gui_2.py and app_controller.py
- Add minimax credentials template in ai_client.py
- Implement _list_minimax_models, _classify_minimax_error, _ensure_minimax_client
- Implement _send_minimax with streaming and reasoning support
- Add minimax to send(), list_models(), reset_session(), get_history_bleed_stats()
- Add unit tests in tests/test_minimax_provider.py
2026-03-06 23:36:30 -05:00