chore(conductor): Mark track 'Saved Tool Presets' as complete

This commit is contained in:
2026-03-10 01:23:57 -04:00
parent 5f208684db
commit dcc13efaf7
24 changed files with 899 additions and 121 deletions

View File

@@ -0,0 +1,9 @@
prompt = """
In scripts/mma_exec.py:
1. In 'create_parser', add '--tool-preset' argument.
2. In 'execute_agent', add 'tool_preset: str | None = None' parameter.
3. Inside 'execute_agent', if 'tool_preset' is not None, set 'env["SLOP_TOOL_PRESET"] = tool_preset'.
4. In 'main', extract 'tool_preset' from 'args.tool_preset' or 'task_data.get("tool_preset")'.
5. Pass 'tool_preset' to the 'execute_agent' call.
Use 1-space indentation.
"""