Files
optimclaw/tests/fixtures/llm_traces/coverage/shell_echo.json
T
OutBack Dingo 6d9dbbb3b9 fork: rename IronClaw → OptimClaw
Full rename of all identifiers, filenames, and references:
  ironclaw → optimclaw
  IronClaw → OptimClaw
  IRONCLAW → OPTIMCLAW
  ironclaw_common → optimclaw_common
  ironclaw_safety → optimclaw_safety

Upstream: nearai/ironclaw
2026-03-29 06:27:52 +07:00

36 lines
808 B
JSON

{
"model_name": "test-shell",
"expects": {
"tools_used": ["shell"],
"all_tools_succeeded": true,
"min_responses": 1
},
"steps": [
{
"request_hint": { "last_user_message_contains": "shell" },
"response": {
"type": "tool_calls",
"tool_calls": [
{
"id": "call_shell_echo",
"name": "shell",
"arguments": {
"command": "echo 'hello from optimclaw shell test'"
}
}
],
"input_tokens": 60,
"output_tokens": 20
}
},
{
"response": {
"type": "text",
"content": "The shell command executed successfully and printed: hello from optimclaw shell test",
"input_tokens": 100,
"output_tokens": 20
}
}
]
}