Komodo
Analysis
This skill is coherent for Komodo infrastructure management, but it can use API credentials to perform high-impact deployment, restart, build, procedure, and stack actions that should be reviewed before installation.
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.
python scripts/komodo.py deploy <name> ... start <name> ... stop <name> ... restart <name> ... deploy-stack <name> ... create-stack <name> <server> <compose.yml> [env_file] ... delete-stack <name> ... run-build <name> ... run-procedure <name>
These documented commands can mutate running infrastructure, stacks, builds, and procedures. The artifacts do not add clear approval, scope, rollback, or production-safety constraints around these high-impact actions.
For operations not covered by the CLI, use curl: ... curl -X POST "$KOMODO_ADDRESS/execute/Deploy" ... Full API docs: https://komo.do/docs
The instructions provide a raw direct-API path for execute operations beyond the helper CLI. This is useful for the purpose, but it widens the action surface without documented guardrails.
Source: unknown; Homepage: none
The artifact provides no source repository or homepage provenance. The included code is visible and no external install step is shown, so this is a provenance note rather than evidence of hidden behavior.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Set environment variables: - `KOMODO_ADDRESS` ... - `KOMODO_API_KEY` ... - `KOMODO_API_SECRET` ...
The skill requires Komodo API credentials, while the supplied registry metadata declares no required environment variables and no primary credential. Those credentials are used for infrastructure-changing API calls.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
def cmd_logs(name: str, lines: int = 100): ... result = read("GetLog", {"deployment": name, "tail": lines}) ... print(result["log"])The helper can retrieve and print deployment logs into the agent context. This is expected for infrastructure troubleshooting, but logs may contain secrets or untrusted application text.
