feat(bias): implement data models and storage for tool weighting and bias profiles

This commit is contained in:
2026-03-10 09:27:12 -04:00
parent ee19cc1d2a
commit 77a0b385d5
6 changed files with 264 additions and 154 deletions

View File

@@ -23,3 +23,15 @@ categories.Python = [
{ name = "py_check_syntax", approval = "auto" },
{ name = "py_get_hierarchy", approval = "auto" }
]
[bias_profiles.Balanced]
tool_weights = {}
category_multipliers = {}
[bias_profiles.Execution-Focused]
tool_weights = { run_powershell = 5 }
category_multipliers = { Runtime = 1.5, Surgical = 1.2 }
[bias_profiles.Discovery-Heavy]
tool_weights = { web_search = 4, search_files = 4 }
category_multipliers = { Web = 1.5, Analysis = 1.3 }