Oc
Analysis
This troubleshooting skill is coherent, but it can run automatic fixes that change your system and OpenClaw setup, and it includes diagnostics that can expose API keys or tokens.
Findings (5)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
"command": "lsof -ti :{port} | xargs kill -9" ... "command": "systemctl start docker" ... "command": "npm install -g openclaw"The fix recipe catalog includes shell commands that can force-kill processes, start Docker, and install software globally. These are related to fixing OpenClaw, but they are high-impact actions.
"kind": "shell", "command": "pip install click rich requests beautifulsoup4"
The skill declares a shell-based dependency install using unpinned Python packages. Installing dependencies is expected for this Python tool, but unpinned packages can change over time.
| **Safe** | No risk, fully reversible | No | Yes | ... python3 scripts/error-fixer.py --fix-all-safe
The documentation describes safe fixes as having no risk and needing no confirmation, while the broader artifacts include automatic repair workflows that change configuration, tokens, packages, and services.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
env | grep -i api_key ... openclaw status --show-tokens ... openclaw status --show-gateway-token
The authentication troubleshooting guide instructs users to display API-key and token-related values. This is relevant to diagnosis, but secrets could be exposed in terminal output, chat history, or logs.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
"executions": [], "success_rates": {}The package includes a persistent fix-history data file. Storing repair history is useful for diagnostics, but such history can contain sensitive paths, error details, or operational context once populated.
