tradr
Analysis
This skill is review-worthy because it can automatically buy and sell real on-chain assets through Bankr and installs a persistent exit manager daemon.
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.
env["BANKR_ALLOW_TRADE"] = "1" # Bypass trade guard for mechanical pipeline
env["BANKR_ALLOW_SELL"] = "1"The daemon explicitly sets environment variables to bypass Bankr trade/sell guards before invoking the Bankr trading script, which creates high-impact automated transaction authority.
ExecStart=$(command -v python3) $EXIT_SCRIPT Restart=on-failure ... systemctl enable "$SERVICE_NAME"
The setup script installs and enables a persistent systemd service for the exit manager, which is designed to keep running and restart after failures.
# Routes: buy → DM only, sell → DM + broadcast
...
buy)
send_dm "$TEXT"
send_broadcast "$TEXT"The comment says buy notifications are DM-only, but the actual code broadcasts buy notifications as well.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Bankr skill installed (`~/.openclaw/skills/bankr/`) with a valid API key ... A funded wallet
The skill depends on delegated Bankr credentials and funded wallets to execute trades, even though the registry metadata lists no primary credential.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
GET /api/positions ... GET /api/trades ... GET /api/tradr-config ... You can serve these from any HTTP server
The dashboard expects HTTP endpoints that expose positions, trade logs, and config data, but the artifact does not include authentication or hosting guidance.
