Files
manual_slop/gencpp_manual_slop_template.toml
T
ed 45a3664f85 refactor: remove dead main_context field from Project Settings
The main_context field in Project Settings was stored but never used.
Nothing reads it to inject into AI context. System Prompt in AI Settings
already serves this purpose.

Removed:
- app_controller.py: ui_project_main_context state variable and all refs
- gui_2.py: Main Context File UI section from Projects panel
- project_manager.py: main_context from default_project()
- project.toml, manual_slop.toml, gencpp_manual_slop_template.toml: main_context entries
2026-05-10 16:23:21 -04:00

44 lines
708 B
TOML

# manual_slop.toml - GenCpp Project Configuration
[project]
name = "gencpp"
git_dir = ".git"
word_wrap = true
[paths]
logs_dir = ".manual_slop/logs"
scripts_dir = ".manual_slop/scripts"
[files]
base_dir = "."
paths = []
[screenshots]
base_dir = ".manual_slop/screenshots"
paths = []
[output]
output_dir = ".manual_slop/md_gen"
[conductor]
dir = ".manual_slop/conductor"
[agent]
roles = ["User", "AI", "Vendor API", "System", "Reasoning", "Context"]
[agent.tools]
read_file = true
list_directory = true
search_files = true
grep_search = true
run_shell_command = true
# ... other tools ...
[discussion]
active = "main"
auto_add = true
[discussion.discussions.main]
history = []
context_snapshot = []