Agent skills for NOFX β the open-source AI-powered crypto trading operating system.
These skills enable OpenClaw agents to interact with the NOFX platform for automated crypto market analysis, AI-driven trading signals, strategy management, and periodic reporting.
The core integration skill. Gives your agent full access to the NOFX platform:
- Market Data β AI500/AI300 signals, OI rankings, institutional fund flows, funding rates, long-short ratios
- Strategy Management β Create, edit, and manage AI trading strategies via browser automation
- Trader Control β Start/stop AI traders, monitor P&L, review decision logs
- AI Debate Arena β Pit multiple AI models against each other for bull/bear analysis
- Backtesting β Run historical strategy backtests with AI models
- Dashboard β Portfolio overview, equity curves, position management
Automated market intelligence reporting from the NOFX AI500 scoring system:
- 30-Minute Reports β Comprehensive market snapshots delivered to Telegram/Discord/Slack
- 15-Minute Monitoring β New coin entry/exit alerts with detailed analysis
- Full Data Coverage β OI changes (7 timeframes), institutional flows, K-line technicals, delta, funding rates
- Actionable Signals β Each report includes trading suggestions based on multi-factor analysis
- OpenClaw β Install from openclaw.ai
- NOFX β Either use the hosted version at nofxos.ai or self-host from GitHub
- API Key β Get your NOFX API key from the platform settings
Option A: Via ClawHub (recommended)
clawhub install nofx
clawhub install nofx-ai500-reportOption B: Manual
# Clone this repo
git clone https://github.com/NoFxAiOS/nofx-skills.git
# Copy skills to your OpenClaw workspace
cp -r nofx-skills/nofx ~/.openclaw/workspace/skills/
cp -r nofx-skills/nofx-ai500-report ~/.openclaw/workspace/skills/Create skills/nofx/config.json in your OpenClaw workspace:
{
"api_key": "cm_your_api_key_here",
"base_url": "https://nofxos.ai"
}All market data is accessible via the NOFX REST API. Your agent uses these automatically when you ask about crypto markets.
AI Signals:
# AI500 β Top coins scored by AI (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 analysis
curl "https://nofxos.ai/api/ai500/{SYMBOL}?auth=$KEY"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"Institutional Fund Flow:
# 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"Funding Rates & Long-Short Ratio:
# Funding rate extremes
curl "https://nofxos.ai/api/funding-rate/top?auth=$KEY&limit=10"
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"Duration options: 1m, 5m, 15m, 30m, 1h, 4h, 8h, 12h, 24h, 2d, 3d, 5d, 7d
Your agent can create and manage trading strategies through the NOFX web interface:
- Natural Language β Describe your strategy in plain English, the agent translates it into a structured config
- AI-Powered β Strategies use AI models to make entry/exit decisions based on market data
- Multi-Indicator β Combine EMA, RSI, ATR, Bollinger Bands, OI, funding rates, and quantitative signals
- Create AI traders with your preferred model (DeepSeek, Claude, GPT, Gemini, Grok, Qwen, Kimi)
- Connect to any supported exchange (Binance, Bybit, OKX, Bitget, KuCoin, Gate, Hyperliquid, Aster, Lighter)
- Monitor positions, P&L, and trade history in real-time
Pit multiple AI models against each other:
- Assign roles: Bull, Bear, or Analyst
- Models debate the market outlook for any symbol
- Get consensus recommendations backed by multi-perspective analysis
Ask your OpenClaw agent to set up AI500 monitoring. It will create two cron jobs:
1. Market Report (every 30 minutes)
Generates a comprehensive report including:
- Current AI500 selections with scores and cumulative returns
- Per-coin OI changes across 7 timeframes (5m β 24h)
- Institutional fund flow analysis
- K-line technical analysis (15m/1h/4h) with trend, volume, support/resistance
- OI and fund flow ranking tables (TOP8 increase + TOP8 decrease)
- Actionable trading suggestions
2. Coin Monitor (every 15 minutes)
Watches for changes in the AI500 pool:
- π¨ New Entry Alert β Detailed analysis of newly selected coins
β οΈ Removal Notice β Notification when coins exit the pool- Silent when no changes occur
Reports use Unicode box-drawing characters in code blocks, optimized for Telegram readability:
ββββββββββββββββββββββββββββββββββββββββ
β πͺ BTCUSDT Score: 85.2 Peak: 88.1
β Price: $97,500 Entry: $92,100
β Gain: +5.9% Rate: 0.01%
ββ OI Changes ββββββββββββββββββββββββββ€
β 5m:+0.1% β 15m:+0.3% β 1h:+1.2%
β 4h:+3.5% β 8h:+5.1% β 24h:+8.7%
ββ Institutional Flow ββββββββββββββββββ€
β 1h:+$57M β 4h:+$271M β 24h:+$655M
ββββββββββββββββββββββββββββββββββββββββ
For each timeframe (15m/1h/4h), the skill fetches 10 candles and computes:
- Trend Direction β 3 consecutive candle direction β Uptrend / Downtrend / Sideways
- Bull/Bear Ratio β Green vs red candle count out of 10
- MA Alignment β MA3 vs MA7 β Bullish / Bearish alignment
- Volume Change β Last 3 candles avg vs previous 3 β percentage change
- Support/Resistance β Lowest low and highest high of 10 candles
| Type | Exchanges |
|---|---|
| CEX | Binance, Bybit, OKX, Bitget, KuCoin, Gate.io |
| DEX | Hyperliquid, Aster DEX, Lighter |
DeepSeek, Qwen, OpenAI (GPT), Anthropic (Claude), Google (Gemini), xAI (Grok), Moonshot (Kimi)
Telegram, Discord, Slack β via OpenClaw's messaging system
nofx-skills/
βββ README.md
βββ nofx/
β βββ SKILL.md # Core skill definition
β βββ config.example.json # Configuration template
β βββ references/
β β βββ api-examples.md # API response examples
β β βββ browser-automation.md
β β βββ deployment.md # NOFX deployment guide
β β βββ exchanges.md # Supported exchanges
β β βββ faq.md
β β βββ grid-trading.md # Grid trading guide
β β βββ market-charts.md # Chart analysis
β β βββ multi-account.md # Multi-account management
β β βββ strategy-schema.md
β β βββ webhooks.md # Notification setup
β βββ scripts/
β βββ generate-report.sh
β βββ nofx-api.sh
βββ nofx-ai500-report/
βββ SKILL.md # Report skill definition
βββ references/
β βββ monitor-job.md # Monitor cron setup
β βββ report-job.md # Report cron setup
β βββ video-pipeline.md # Video report generation
βββ scripts/
βββ monitor.sh # Coin monitor script
| Resource | URL |
|---|---|
| NOFX Platform | https://nofxos.ai |
| NOFX Source Code | https://github.com/NoFxAiOS/nofx |
| OpenClaw | https://openclaw.ai |
| ClawHub | https://clawhub.com |
| API Documentation | https://nofxos.ai/api-docs |
MIT