SKILLEMALL.ai

FD nofx

NOFX AI Trading OS integration - crypto market data, AI trading signals, strategy management, trader control, and automated reporting. Use when working with NOFX platform (nofxai.com, nofxos.ai) for crypto trading, market analysis, AI500/AI300 signals, fund flow tracking, OI monitoring, strategy creation, trader management, backtesting, or AI debate arena.

Not recommendedlow grade F
ClawHub Agent Skills author: tinkle-community v1.1.0 16 files · 2 scripts body ≈ 1 668 tokens Open the sourceclawhub.ai analyzed 2 d ago

As a process D 41/100 · Unfinished process — weak spots: result and completion, when it triggers, inputs and preconditions

IntegrationInfrastructureData and analyticstype and topics are labelled automatically from the skill text
JSON
Technical rating
F
38/100
safety, quality, tests
Safety 60%
7
Quality 40%
85
Run on models
none yet
Process rating
D
41/100
Unfinished process
Result and completion w 14
0
Inputs and preconditions w 11
0
Failures and branches w 10
0
the three weakest of ten parameters · all ten

What is at stake

Medium-severity findings: the skill is probably honest, but read what alarmed the scanner.

Dangerous commands medium severity

Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.

If you install

The skill contains commands that delete files, rewrite disks or execute code fetched from the network. The agent may run them without asking if it believes the instructions require it.

For the author

Replace destructive commands with safe equivalents that ask for confirmation, scope them to one folder, and stop piping curl into a shell: pin a version and a checksum.

Exfiltration medium severity

Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.

If you install

The instructions or scripts send data out: environment variables, keys, file contents, chat history. You may never notice, because the agent performs the upload as "part of the task".

For the author

If the upload is not needed for the task, remove it: catalogs flag such skills and delist them. If it is needed, name the destination explicitly, say what leaves the machine, and give the user a switch.

How to improve

    For the model run — optional
    • Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
    • A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.

    Guard findings · 33

    ✓ No critical or high findings

    Medium and low: 33
    • medium Dangerous commands cmd-pipe-to-shell-known-host references/deployment.md:8
      Pipe-to-shell installer from a well-known host (still executes remote code)
      curl -fsSL https://raw.githubusercontent.com/NoFxAiOS/nofx/main/install.sh | bash
    • medium Dangerous commands cmd-pipe-to-shell-known-host references/deployment.md:95
      Pipe-to-shell installer from a well-known host (still executes remote code)
      curl -fsSL https://raw.githubusercontent.com/NoFxAiOS/nofx/main/install.sh | bash
    • medium Dangerous commands cmd-pipe-to-shell-known-host references/deployment.md:112
      Pipe-to-shell installer from a well-known host (still executes remote code)
      curl -fsSL https://raw.githubusercontent.com/NoFxAiOS/nofx/main/install.sh | bash
    • medium Dangerous commands cmd-pipe-to-shell-known-host references/faq.md:28
      Pipe-to-shell installer from a well-known host (still executes remote code)
      curl -fsSL https://raw.githubusercontent.com/NoFxAiOS/nofx/main/install.sh | bash
    • medium Exfiltration net-credential-use references/multi-account.md:88
      Credential used in a network call (verify the destination is the intended service)
      curl -H "Authorization: Bearer $KEY_A" ...
    • medium Exfiltration net-credential-use references/multi-account.md:91
      Credential used in a network call (verify the destination is the intended service)
      curl -H "Authorization: Bearer $KEY_B" ...
    • medium Exfiltration net-credential-use references/webhooks.md:35
      Credential used in a network call (verify the destination is the intended service)
      curl -s -X POST "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage" \
    • medium Exfiltration exfil-webhook-url references/webhooks.md:51
      Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)
      DISCORD_WEBHOOK="https://discord.com/api/webhooks/xxx/yyy"
      quoted
    • medium Exfiltration exfil-webhook-url references/webhooks.md:75
      Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)
      SLACK_WEBHOOK="https://hooks.slack.com/services/xxx/yyy/zzz"
      quoted
    • medium Exfiltration net-credential-use references/webhooks.md:109
      Credential used in a network call (verify the destination is the intended service)
      curl -s "https://api.telegram.org/bot$BOT_TOKEN/sendMessage" \
    • medium Exfiltration net-credential-use scripts/nofx-api.sh:31
      Credential used in a network call (verify the destination is the intended service)
      curl -s "$BASE_URL/api/ai500/list?auth=$API_KEY"
    • medium Exfiltration net-credential-use scripts/nofx-api.sh:34
      Credential used in a network call (verify the destination is the intended service)
      curl -s "$BASE_URL/api/ai500/stats?auth=$API_KEY"
    • medium Exfiltration net-credential-use scripts/nofx-api.sh:38
      Credential used in a network call (verify the destination is the intended service)
      curl -s "$BASE_URL/api/ai500/$symbol?auth=$API_KEY"
    • medium Exfiltration net-credential-use scripts/nofx-api.sh:42
      Credential used in a network call (verify the destination is the intended service)
      curl -s "$BASE_URL/api/ai300/list?auth=$API_KEY&limit=$limit"
    • medium Exfiltration net-credential-use scripts/nofx-api.sh:45
      Credential used in a network call (verify the destination is the intended service)
      curl -s "$BASE_URL/api/ai300/stats?auth=$API_KEY"
    • low Exfiltration exfil-webhook-url references/webhooks.md:35
      Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)
      curl -s -X POST "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage" \
      placeholder
    • low Exfiltration exfil-secret-in-url references/webhooks.md:107
      Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
      if [ $(curl -s "https://nofxos.ai/api/coin/BTC?auth=$KEY" | jq '.data.price') -gt 70000 ]; then
      vendor-hostquoted
    • low Exfiltration net-credential-use references/webhooks.md:107
      Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
      if [ $(curl -s "https://nofxos.ai/api/coin/BTC?auth=$KEY" | jq '.data.price') -gt 70000 ]; then
      vendor-host
    • low Exfiltration exfil-webhook-url references/webhooks.md:109
      Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)
      curl -s "https://api.telegram.org/bot$BOT_TOKEN/sendMessage" \
      placeholder
    • low Exfiltration exfil-secret-in-url references/webhooks.md:119
      Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
      NEW_COINS=$(curl -s "https://nofxos.ai/api/ai500/list?auth=$KEY" | \
      vendor-hostquoted
    • low Exfiltration net-credential-use references/webhooks.md:119
      Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
      NEW_COINS=$(curl -s "https://nofxos.ai/api/ai500/list?auth=$KEY" | \
      vendor-host
    • low Exfiltration exfil-secret-in-url references/webhooks.md:133
      Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
      BIG_FLOWS=$(curl -s "https://nofxos.ai/api/netflow/top-ranking?auth=$KEY&limit=5&duration=1h&type=…" | \
      vendor-hostquoted
    • low Exfiltration net-credential-use references/webhooks.md:133
      Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
      BIG_FLOWS=$(curl -s "https://nofxos.ai/api/netflow/top-ranking?auth=$KEY&limit=5&duration=1h&type=…" | \
      vendor-host
    • low Exfiltration exfil-secret-in-url SKILL.md:58
      Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
      curl "https://nofxos.ai/api/ai500/list?auth=$KEY"
      vendor-hostquoted
    • low Exfiltration net-credential-use SKILL.md:58
      Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
      curl "https://nofxos.ai/api/ai500/list?auth=$KEY"
      vendor-host
    • low Exfiltration exfil-secret-in-url SKILL.md:61
      Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
      curl "https://nofxos.ai/api/ai300/list?auth=$KEY&limit=10"
      vendor-hostquoted
    • low Exfiltration net-credential-use SKILL.md:61
      Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
      curl "https://nofxos.ai/api/ai300/list?auth=$KEY&limit=10"
      vendor-host
    • low Exfiltration exfil-secret-in-url SKILL.md:64
      Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
      curl "https://nofxos.ai/api/ai500/{symbol}?auth=$KEY"
      vendor-hostquoted
    • low Exfiltration net-credential-use SKILL.md:64
      Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
      curl "https://nofxos.ai/api/ai500/{symbol}?auth=$KEY"
      vendor-host
    • low Exfiltration exfil-secret-in-url SKILL.md:71
      Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
      curl "https://nofxos.ai/api/netflow/top-ranking?auth=$KEY&limit=10&duration=1h&type=…"
      vendor-hostquoted
    • low Exfiltration net-credential-use SKILL.md:71
      Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
      curl "https://nofxos.ai/api/netflow/top-ranking?auth=$KEY&limit=10&duration=1h&type=…"
      vendor-host
    • low Exfiltration exfil-secret-in-url SKILL.md:74
      Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
      curl "https://nofxos.ai/api/netflow/low-ranking?auth=$KEY&limit=10&duration=1h&type=…"
      vendor-hostquoted
    • low Exfiltration net-credential-use SKILL.md:74
      Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
      curl "https://nofxos.ai/api/netflow/low-ranking?auth=$KEY&limit=10&duration=1h&type=…"
      vendor-host

    Files scanned: 16. Evidence is masked. Grey chips explain why severity was lowered.

    Against the Agent Skills spec

    ✓ No remarks against the Agent Skills spec

    Process rating: all ten parameters 41/100

    • 0Result and completion. Does not say what the result is
    • 0Inputs and preconditions. Does not say what the process needs to start
    • 0Failures and branches. Linear process with no failure handling
    • 0Progress reporting. Says nothing while it works
    • 20When it triggers. No condition that starts the skill
    • 30Running it twice. 12 mutating operations with no state check
    • 60Tools and files. Uses tools (web) that frontmatter does not declare
    • 85Steps. 52 steps, 1 vague phrases
    • 100Consistency. Name and required fields are in place
    • 100Execution cost. Instruction body is 1668 tokens
    • low 14 top-level sections: this looks like several domains in one skill

    Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.

    Quality signals

    • +5Description has no quoted example phrases that should trigger the skill
    • +4Description does not say when NOT to use the skill (false activations)
    • +3Output format is not stated: the model decides each time
    • -32 of 2 scripts are never mentioned in SKILL.md
    • +1No license
    • +2Single-language instructions
    • +3Description length 358: enough signal without eating the budget
    • +4Structure: 32 headings
    • +3Step-by-step instructions: 52 items
    • +4Has examples (9 code blocks)
    • +4Reference files are cited in the instructions (8 of 10)

    Quality base 70; lint remarks subtract, signals add up to 100. Result: 85.

    External checks

    ClawHub: suspicious
    This is a coherent NOFX crypto-trading skill, but it asks agents to handle live trading, credentials, deployment scripts, and scheduled reports with safeguards that are too light for the financial impact.
    LLM: suspicious (high) · VirusTotal: suspicious · 28 May 2026