mimo-api-fix

PassAudited by ClawScan on May 14, 2026.

Overview

This skill is a coherent diagnostic helper for mimo API failures, but it uses your local OpenClaw API key and can make a persistent model-configuration change if you run the repair command.

Before installing or running this skill, confirm your OpenClaw custom provider baseUrl is correct, expect it to make test API calls with your configured API key, and back up ~/.openclaw/openclaw.json before using the repair snippet that changes toolCall.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Running the diagnostics will use your configured provider API key and may consume quota or expose requests to the provider configured in OpenClaw.

Why it was flagged

The script reads the custom provider API key from the local OpenClaw configuration and uses it to call the configured provider endpoint. This is expected for diagnosing API failures, but it is sensitive credential use.

Skill content
API_KEY=$(python3 -c "import json; d=json.load(open('$CONFIG')); print(d['models']['providers']['custom']['apiKey'])") ... -H "Authorization: Bearer $API_KEY"
Recommendation

Only run it if the configured base URL is the provider you intend to test, and avoid sharing terminal output or logs if they may contain account or request details.

What this means

If you run the repair command, future OpenClaw requests for the affected mimo model may be allowed to use tools.

Why it was flagged

The repair instructions can modify the persistent OpenClaw configuration to enable tool calling for mimo models. This is aligned with the skill's purpose, but it changes agent/model behavior.

Skill content
m['toolCall'] = True
json.dump(d, open(f,'w'), indent=2, ensure_ascii=False)
Recommendation

Review and back up ~/.openclaw/openclaw.json before applying the repair, and confirm enabling tool calls is what you want for the target model.