# Send NOFX AI Trading to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "nofx",
    "name": "NOFX AI Trading",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/tinkle-community/nofx",
    "canonicalUrl": "https://clawhub.ai/tinkle-community/nofx",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/nofx",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nofx",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "config.example.json",
      "references/api-examples.md",
      "references/browser-automation.md",
      "references/deployment.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/nofx"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/nofx",
    "downloadUrl": "https://openagent3.xyz/downloads/nofx",
    "agentUrl": "https://openagent3.xyz/skills/nofx/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nofx/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nofx/agent.md"
  }
}
```
## Documentation

### NOFX AI Trading Skill

Integrate with NOFX - the open-source AI-powered crypto trading operating system.

### Quick Reference

ResourceURLWeb Dashboardhttps://nofxai.comData APIhttps://nofxos.aiAPI Docshttps://nofxos.ai/api-docsGitHubhttps://github.com/NoFxAiOS/nofx

### Deployment

For installation and deployment instructions, see references/deployment.md:

One-click install (Linux/macOS/Docker)
Windows installation (Docker Desktop / WSL2)
Railway cloud deployment
Manual installation for developers
Server deployment with HTTPS

### Supported Exchanges

For exchange registration links (with fee discounts) and API setup, see references/exchanges.md:

CEX: Binance, Bybit, OKX, Bitget, KuCoin, Gate.io
DEX: Hyperliquid, Aster DEX, Lighter

AI Models: DeepSeek, Qwen, OpenAI, Claude, Gemini, Grok, Kimi

### Configuration

Store credentials in workspace skills/nofx/config.json:

{
  "api_key": "cm_xxxxxx",
  "web_email": "user@example.com",
  "browser_profile": "clawd"
}

### 1. Market Data (API)

Base URL: https://nofxos.ai
Auth: ?auth=API_KEY or Authorization: Bearer API_KEY

### AI Signals

# AI500 - High potential coins (score > 70)
curl "https://nofxos.ai/api/ai500/list?auth=$KEY"

# AI300 - Quantitative flow signals (S/A/B levels)
curl "https://nofxos.ai/api/ai300/list?auth=$KEY&limit=10"

# Single coin AI analysis
curl "https://nofxos.ai/api/ai500/{symbol}?auth=$KEY"

### Fund Flow

# Institution inflow ranking
curl "https://nofxos.ai/api/netflow/top-ranking?auth=$KEY&limit=10&duration=1h&type=institution"

# Outflow ranking
curl "https://nofxos.ai/api/netflow/low-ranking?auth=$KEY&limit=10&duration=1h&type=institution"

### Open Interest

# OI increase ranking
curl "https://nofxos.ai/api/oi/top-ranking?auth=$KEY&limit=10&duration=1h"

# OI decrease ranking
curl "https://nofxos.ai/api/oi/low-ranking?auth=$KEY&limit=10&duration=1h"

# OI market cap ranking
curl "https://nofxos.ai/api/oi-cap/ranking?auth=$KEY&limit=10"

### Price & Rates

# Price ranking (gainers/losers)
curl "https://nofxos.ai/api/price/ranking?auth=$KEY&duration=1h"

# Funding rate top (crowded longs)
curl "https://nofxos.ai/api/funding-rate/top?auth=$KEY&limit=10"

# Funding rate low (crowded shorts)
curl "https://nofxos.ai/api/funding-rate/low?auth=$KEY&limit=10"

# Long-short ratio anomalies
curl "https://nofxos.ai/api/long-short/list?auth=$KEY&limit=10"

### Single Coin Data

# Comprehensive coin data
curl "https://nofxos.ai/api/coin/{symbol}?auth=$KEY&include=all"

# Order book heatmap
curl "https://nofxos.ai/api/heatmap/future/{symbol}?auth=$KEY"

Duration options: 1m, 5m, 15m, 30m, 1h, 4h, 8h, 12h, 24h, 2d, 3d, 5d, 7d

### 2. Strategy Management (Browser)

Use browser automation on https://nofxai.com/strategy

### Strategy Structure

{
  "strategy_type": "ai_trading",
  "language": "en",
  "coin_source": {
    "source_type": "ai500|static|oi_top|oi_low|mixed",
    "static_coins": ["BTC", "ETH"],
    "use_ai500": true,
    "ai500_limit": 10
  },
  "indicators": {
    "enable_ema": true,
    "enable_rsi": true,
    "enable_atr": true,
    "enable_boll": true,
    "enable_oi": true,
    "enable_funding_rate": true,
    "enable_quant_data": true,
    "nofxos_api_key": "cm_xxx"
  },
  "risk_control": {
    "max_position_pct": 10,
    "stop_loss_pct": 3,
    "take_profit_pct": 5
  },
  "prompt_sections": {
    "role_definition": "...",
    "entry_standards": "...",
    "decision_process": "..."
  }
}

### Natural Language Strategy Creation

When user describes a strategy in natural language:

Parse requirements (coins, indicators, entry/exit rules, risk)
Generate StrategyConfig JSON
Navigate to Strategy Studio
Create new strategy and fill in fields
Save and activate

### 3. Trader Management (Browser)

Use browser automation on https://nofxai.com/traders

### Actions

List: Navigate to /traders, parse trader list
Create: Click "Create Trader", select model/exchange/strategy
Start/Stop: Click Start/Stop button on trader card
View: Click "View" for details and logs

### Trader Config

Model: claude|deepseek|gpt|gemini|grok|kimi|qwen
Exchange: binance|bybit|okx|bitget|kucoin|gate|hyperliquid|aster|lighter
Strategy: Select from strategy list

### 4. Dashboard (Browser)

Navigate to https://nofxai.com/dashboard

### Available Data

Account equity and balance
Total P/L (absolute and percentage)
Current positions
Equity curve chart
Trade history
AI decision logs

### 5. Arena - AI Debate (Browser)

Navigate to https://nofxai.com/debate

### Create Debate

Click "New Debate"
Select symbol
Select AI models and roles:

Bull: Finds long opportunities
Bear: Finds short opportunities
Analyst: Neutral analysis


Run debate rounds
Get consensus recommendation

### 6. Backtest (Browser)

Navigate to https://nofxai.com/backtest

### Run Backtest

Select AI model
Select strategy (optional)
Enter symbols (comma-separated)
Set time range
Run and analyze results

### Cron Job for Market Reports

{
  "name": "NOFX Market Report",
  "schedule": {"kind": "cron", "expr": "*/30 * * * *"},
  "sessionTarget": "isolated",
  "payload": {
    "kind": "agentTurn",
    "message": "Fetch NOFX data and generate market report...",
    "deliver": true,
    "channel": "telegram",
    "to": "USER_ID"
  }
}

### Report Contents

🤖 AI500 signals (coin + score + gain)
💰 Institution flow TOP10
🚀 Price gainers TOP10
📈 OI increase TOP10
📉 OI decrease TOP10
⚠️ Drop alerts

### Daily Market Check

Fetch AI500/AI300 signals
Check institution fund flow
Monitor OI changes
Identify opportunities

### Strategy Development

Analyze market data
Define entry/exit rules
Create strategy in Studio
Backtest with historical data
Create trader and start

### Risk Monitoring

Check dashboard P/L
Review positions
Monitor drawdown
Adjust or stop traders if needed

### API Response Examples

See references/api-examples.md for detailed response structures.

### Additional References

ReferenceDescriptionreferences/grid-trading.mdGrid trading detailed guide with examplesreferences/market-charts.mdMarket page and chart analysisreferences/multi-account.mdMulti-account managementreferences/webhooks.mdTelegram/Discord/Slack notificationsreferences/faq.mdFrequently asked questions
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tinkle-community
- Version: 1.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/nofx)
- [Send to Agent page](https://openagent3.xyz/skills/nofx/agent)
- [JSON manifest](https://openagent3.xyz/skills/nofx/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/nofx/agent.md)
- [Download page](https://openagent3.xyz/downloads/nofx)