9ddbcd2fd6
feat(gui): Remove Context Presets tab from Project Settings
...
Context Presets tab removed from Project Settings panel.
The _render_context_presets_panel method call is removed from the tab bar.
Context presets functionality will be re-introduced in Discussion Hub -> Context Composition tab.
2026-03-22 12:59:10 -04:00
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
f6fe3baaf4
fix(gui): Skip empty strings in selectable to prevent ImGui ID assertion
...
Empty strings in bias_profiles.keys() and personas.keys() caused
imgui.selectable() to fail with 'Cannot have an empty ID at root of
window' assertion error. Added guards to skip empty names.
2026-03-22 11:16:52 -04:00
d89f971270
checkpoint
2026-03-21 16:59:36 -04:00
8ee8862ae8
checkpoint: track complete
2026-03-18 18:39:54 -04:00
bc00fe1197
fix(gui): Move thinking trace rendering BEFORE response - now hidden by default
2026-03-13 23:15:20 -04:00
9515dee44d
feat(gui): Extract and display thinking traces from AI responses
2026-03-13 23:09:29 -04:00
89c9f62f0c
use maple mono.
2026-03-13 13:49:27 -04:00
ca01397885
checkpoint: fixing ux with window frame bar
2026-03-13 13:13:35 -04:00
123bcdcb58
config
2026-03-12 20:58:36 -04:00
63015e9523
set theme back to nord dark
2026-03-12 20:28:19 -04:00
36b3c33dcc
update settings
2026-03-12 20:27:08 -04:00
8bc6eae101
wip: fixing more path resolution in tests
2026-03-12 19:28:21 -04:00
1f8bb58219
more adjustments
2026-03-12 19:08:51 -04:00
4ba1bd9eba
conductor(checkpoint): Phase 1: Configuration & Data Modeling complete
2026-03-12 15:35:51 -04:00
4dee0e6f69
checkpoint: I have to fix try/finally spam by this ai
2026-03-11 21:43:19 -04:00
03d81f61be
chore(conductor): Add new track 'UI/UX Improvements - Presets and AI Settings'
2026-03-11 19:06:26 -04:00
847096d192
checkpoint done with ux refinement for the night
2026-03-11 00:32:35 -04:00
ca8e33837b
refactor(gui): streamline preset manager and improve tool bias ui
2026-03-10 22:29:43 -04:00
8c5b5d3a9a
fix(conductor): Apply review suggestions for track 'opencode_config_overhaul_20260310'
2026-03-10 21:07:50 -04:00
02abfc410a
fix(opencode): Remove step limits, disable auto-compaction, raise temperatures, expand MMA tier commands
...
- Remove steps limits from all 6 agent files
- Disable auto-compaction (auto: false, prune: false)
- Raise temperatures (tier1: 0.5, tier2: 0.4, tier3: 0.3, tier4: 0.2, general: 0.3, explore: 0.2)
- Add Context Management sections to tier1/tier2
- Add Pre-Delegation Checkpoint to tier2
- Expand all 4 MMA tier commands with full protocol documentation
2026-03-10 13:00:44 -04:00
7ae99f2bc3
feat(personas): Add persona_id support to Ticket/WorkerContext and ConductorEngine
2026-03-10 11:09:11 -04:00
dcc13efaf7
chore(conductor): Mark track 'Saved Tool Presets' as complete
2026-03-10 01:23:57 -04:00
f83909372d
new csharp support track
2026-03-10 00:24:03 -04:00
3e531980d4
feat(mma): Consolidate Agent Streams into MMA Dashboard with popout options
2026-03-09 23:39:02 -04:00
322f42db74
style(ops): Refine Usage Analytics layout with section titles and separators
2026-03-09 23:34:08 -04:00
8a83d22967
feat(ops): Consolidate usage analytics into Operations Hub with popout option
2026-03-09 23:25:06 -04:00
66844e8368
feat(mma): Implement Pop Out Task DAG option in MMA Dashboard
2026-03-09 23:16:02 -04:00
178a694e2a
fix(conductor): Resolve FileExistsError and harden Preset Manager modal
2026-03-09 22:59:22 -04:00
95381c258c
chore(conductor): Mark track 'Saved System Prompt Presets' as complete
2026-03-09 22:35:52 -04:00
80eaf740da
spicyv
2026-03-09 00:27:43 -04:00
5446a2407c
feat(ui): Improve text rendering clarity with 3x font oversampling
2026-03-09 00:13:57 -04:00
28cc901c0a
chore(conductor): Add new track 'Saved System Prompt Presets'
2026-03-08 12:35:13 -04:00
7bdba1c9b9
adjustments + new tracks + tasks.md reduction of usage
2026-03-08 03:31:15 -04:00
7ea833e2d3
feat(gui): Implement on-demand definition lookup with clickable navigation and collapsing
2026-03-07 15:20:39 -05:00
f392aa3ef5
conductor(checkpoint): Checkpoint end of Phase 1 - Symbol Parsing
2026-03-07 14:59:35 -05:00
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
5277b11279
chore: update track references and config
2026-03-07 00:06:05 -05:00
ae5e7dedae
fix(deps): Add openai package for MiniMax provider support
2026-03-06 23:39:14 -05:00
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
f65e9b40b2
WIP: Regression hell
2026-03-06 21:22:21 -05:00
528f0a04c3
fk
2026-03-06 20:34:12 -05:00
13453a0a14
still fixing regressions
2026-03-06 20:27:03 -05:00
4c92817928
fixing regresssions
2026-03-06 20:12:35 -05:00
0e9f84f026
fixing
2026-03-06 19:54:52 -05:00
7da2946eff
feat(mma): Implement worker pool and configurable concurrency for DAG engine and mark track 'True Parallel Worker Execution' as complete
2026-03-06 16:55:45 -05:00
f580165c5b
feat(conductor): Implement configurable paths and mark track 'Conductor Path Configuration' as complete
2026-03-06 16:43:11 -05:00
0de50e216b
commit
2026-03-06 14:04:50 -05:00
684a6d1d3b
feat(ai_client): isolation of current_tier using threading.local() for parallel agent safety
2026-03-06 12:59:18 -05:00
a16ed4b1ae
sigh
2026-03-06 12:05:24 -05:00