NOFX AI Trading

WarnAudited by ClawScan on May 10, 2026.

Overview

This skill is for real crypto trading and can use trading keys or logged-in browser sessions to activate bots, so it needs careful review before use.

Install only if you intentionally want an agent to help manage a crypto-trading platform. Use test accounts or sub-accounts, disable withdrawals, limit API permissions, require explicit confirmation before live trading actions, and review the remote install script before running it.

Findings (6)

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

A user could unintentionally authorize a live trading strategy or bot action from a casual request, risking financial loss.

Why it was flagged

The skill tells the agent to turn a natural-language strategy into an activated trading strategy, which can cause real financial trades if connected to an exchange.

Skill content
When user describes a strategy in natural language: ... Create new strategy and fill in fields ... Save and activate
Recommendation

Require explicit user confirmation before saving, activating, starting, stopping, or changing any trader or strategy; prefer backtesting or dry-run mode first.

What this means

If these keys are misused or over-scoped, automated actions could trade on the user's exchange accounts.

Why it was flagged

The exchange setup asks for API credentials with trading permissions, which are high-impact account privileges and can place orders with user funds.

Skill content
Enable permissions: - ✅ Read - ✅ Spot & Margin Trading - ✅ Futures Trading
Recommendation

Use testnet or isolated sub-accounts, disable withdrawals, enable IP whitelisting, set strict limits, and only grant the minimum permissions needed.

What this means

The agent may act with the same authority as the logged-in user on the trading dashboard.

Why it was flagged

The agent is expected to use a logged-in browser profile, giving it the user's active NOFX web session for account and trader operations.

Skill content
Browser profile `clawd` should be logged into nofxai.com
- Use `browser` tool with `profile: "clawd"`
Recommendation

Use a dedicated low-privilege browser profile and require confirmation before any account-changing action.

What this means

Installing or updating this way runs whatever code is currently served from that repository.

Why it was flagged

The deployment guide recommends executing an unpinned remote script from the current GitHub main branch; this is user-directed setup, but it has supply-chain risk.

Skill content
curl -fsSL https://raw.githubusercontent.com/NoFxAiOS/nofx/main/install.sh | bash
Recommendation

Review the script before running it, prefer pinned releases or checksums, and avoid installing it on systems that hold unrelated sensitive data.

What this means

Reports may continue running and sending notifications after initial setup until the schedule is removed.

Why it was flagged

The skill documents a recurring scheduled agent task that generates and sends market reports every 30 minutes.

Skill content
"schedule": {"kind": "cron", "expr": "*/30 * * * *"}, ... "kind": "agentTurn", ... "deliver": true, "channel": "telegram"
Recommendation

Only enable scheduled reports intentionally, verify the recipient, and know how to disable the cron job.

What this means

Account performance or trading information could be exposed to third-party chat systems or webhook endpoints configured by the user.

Why it was flagged

The notification guide supports sending trading and P&L information to external messaging or webhook services.

Skill content
Supported Notification Channels ... Telegram ... Discord ... Slack ... Custom ... P&L Report Template ... Equity: ${equity}\nP&L: ${pnl}
Recommendation

Send reports only to trusted private channels, protect webhook URLs and bot tokens, and avoid including sensitive account details unless necessary.