Base Trader

WarnAudited by ClawScan on May 10, 2026.

Overview

The skill is transparent about crypto trading, but it gives an agent autonomous authority to use a Bankr wallet for real trades without clear per-trade approval or declared credential boundaries.

Only install this if you intentionally want an agent to help trade real crypto. Use a separate wallet with a small balance, review the Bankr skill first, require manual confirmation for every buy/sell/order, avoid autonomous cron or heartbeat trading until you understand the controls, and keep the local trade logs private.

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.

What this means

An agent could place or close crypto positions and lose funds if its analysis, market data, or token selection is wrong.

Why it was flagged

The skill instructs the agent to invoke Bankr for real buy and sell orders as part of an autonomous workflow. The artifacts provide risk rules, but do not show a hard technical approval gate or rollback for each trade.

Skill content
Autonomous Trading Mode ... Execute trade ... `Buy $25 of TOKEN on Base` ... `Sell 25% of my TOKEN on Base`
Recommendation

Require explicit user confirmation before every trade or order, use hard wallet/spend limits outside the prompt, and default to read-only portfolio checks unless the user specifically approves execution.

What this means

Installing or invoking the skill may give the agent access to trade with wallet funds in a way that is under-declared by the metadata.

Why it was flagged

The skill relies on an existing Bankr wallet/config with authority to transact, but the registry metadata declares no primary credential and no required config paths.

Skill content
Bankr API configured at `~/.clawdbot/skills/bankr/config.json` ... ETH in your Bankr wallet for gas and trading
Recommendation

Use a separate low-balance trading wallet, verify the Bankr credential scope, and ensure metadata or setup documentation clearly declares all wallet/config requirements.

What this means

If connected to a scheduler or heartbeat, trading-related actions could continue outside a single user request.

Why it was flagged

The skill explicitly contemplates scheduled autonomous operation for monitoring and trading, but the artifacts do not define how users enable, disable, audit, or revoke those ongoing actions.

Skill content
When running autonomously (via cron or heartbeat): ... Morning Scan ... Midday Check ... Evening Review
Recommendation

Do not enable cron/heartbeat trading unless intentionally configured; review active Bankr automations regularly and keep a clear emergency stop procedure.

What this means

The safety of real trading also depends on the separate Bankr skill and its configuration.

Why it was flagged

The included script delegates important behavior to an external Bankr skill script that is not part of this artifact set. This is expected for a Bankr integration, but the actual trading implementation is outside this review.

Skill content
BANKR_SCRIPT="$HOME/clawd/skills/bankr/scripts/bankr.sh" ... "$BANKR_SCRIPT" "Show my complete portfolio on Base"
Recommendation

Review and trust the Bankr skill separately before using this trading skill with funded wallets.

What this means

The local files can reveal trading history if shared, synced, or reused in future agent context.

Why it was flagged

The skill keeps a persistent local trade journal containing financial activity, trade reasons, prices, and transaction IDs.

Skill content
TRADES_FILE="$(dirname "$0")/../data/trades.json" ... "amount_usd" ... "price" ... "reason" ... "tx"
Recommendation

Keep the data files private, redact them before sharing logs, and periodically review journal entries for accuracy.