feat(ui): Add UI toggles for available tools per-project

This commit is contained in:
2026-02-23 11:24:44 -05:00
parent 9c5fcab9e8
commit 1677d25298
3 changed files with 51 additions and 0 deletions

View File

@@ -100,6 +100,17 @@ def default_project(name: str = "unnamed") -> dict:
"output": {"output_dir": "./md_gen"},
"files": {"base_dir": ".", "paths": []},
"screenshots": {"base_dir": ".", "paths": []},
"agent": {
"tools": {
"run_powershell": True,
"read_file": True,
"list_directory": True,
"search_files": True,
"get_file_summary": True,
"web_search": True,
"fetch_url": True
}
},
"discussion": {
"roles": ["User", "AI", "Vendor API", "System"],
"active": "main",