Portainer
Analysis
This appears to be a real Portainer/Docker management skill, but it grants broad infrastructure control through a powerful API key and raw Docker proxy.
Findings (4)
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.
url = f"{PORTAINER_API_URL}/endpoints/{environment_id}/docker{path}" ... elif method.upper() == "DELETE": response = requests.delete(url, headers=headers, json=payload, timeout=10, verify=False)The skill proxies caller-supplied Docker API paths and permits mutating methods including POST and DELETE through Portainer, with no artifact-level allowlist or confirmation gate.
openclaw skill install https://github.com/Leventsoft/portainer-skill-openclaw ... RUN pip3 install requests --break-system-packages
The setup guidance is user-directed, but it relies on a GitHub source and recommends a global Python package install that bypasses normal system-package protections.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
headers = {"X-API-Key": token, "Content-Type": "application/json"} ... requests.get(f"{PORTAINER_API_URL}/endpoints", headers=headers, timeout=10, verify=False)The script sends a powerful Portainer API key on requests while disabling TLS certificate verification; similar verify=False usage appears across the API operations.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
`inspect_stack(stack_id)` | Returns full JSON details for a specific stack (services, env vars, etc).
Stack details and environment variables may include secrets or internal configuration that would be returned into the agent/chat context.
