Refactor(skills): rename prompt modules to skills and update documentation

This commit is contained in:
0xallam
2026-01-06 17:50:15 -08:00
parent f48def1f9e
commit 7af1180a30
43 changed files with 235 additions and 238 deletions

View File

@@ -8,13 +8,13 @@ class StrixAgent(BaseAgent):
max_iterations = 300
def __init__(self, config: dict[str, Any]):
default_modules = []
default_skills = []
state = config.get("state")
if state is None or (hasattr(state, "parent_id") and state.parent_id is None):
default_modules = ["root_agent"]
default_skills = ["root_agent"]
self.default_llm_config = LLMConfig(prompt_modules=default_modules)
self.default_llm_config = LLMConfig(skills=default_skills)
super().__init__(config)