← Back to Skills Marketplace
contrario

Apex Crypto Intelligence

by Hlias Staurou · GitHub ↗ · v0.2.1 · MIT-0
cross-platform ⚠ suspicious
917
Downloads
4
Stars
0
Active Installs
6
Versions
Install in OpenClaw
/install apex-crypto-intelligence
Description
AI-powered multi-exchange crypto market analysis, arbitrage detection, and hedge fund-quality trading reports using live data from major exchanges.
README (SKILL.md)

APEX Crypto Intelligence — Multi-Exchange Trading Analysis Skill

Institutional-grade crypto market analysis across 5 exchanges with AI-powered Hyper-Council verdicts and hedge fund-quality PDF reports.

Source Code: github.com/contrario/aetherlang Homepage: neurodoc.app Author: NeuroAether ([email protected]) License: MIT Version: 0.2.0

Summary

APEX Crypto Intelligence is a multi-exchange cryptocurrency analysis tool that fetches live market data from CoinGecko, Binance, Bybit, KuCoin, MEXC, and Gate.io, performs cross-exchange arbitrage detection, and provides AI-powered institutional trading analysis through a Hyper-Council of 5 specialized agents.


Privacy & Data Handling

⚠️ BYOK (Bring Your Own Keys): Exchange API keys are used locally to fetch data from exchanges. Keys are never transmitted to NeuroAether.

⚠️ External API Notice: Only market data (prices, volumes) and query text are sent to api.neurodoc.app for AI analysis.

Auditable Code: The payload sent to api.neurodoc.app contains only aggregated market prices and query text. Exchange API keys are excluded from all requests.

  • What is sent: Aggregated market prices and natural language queries only
  • What is NOT sent: Exchange API keys, credentials, personal data, wallet addresses
  • Data retention: Queries are processed in real-time and not stored
  • Hosting: Hetzner EU servers (GDPR compliant)

CRITICAL: Users should configure exchange API keys with READ-ONLY permissions. Never enable withdrawal or trading permissions.


Architecture

User's Machine (local)              NeuroAether API
┌──────────────────────┐            ┌─────────────────┐
│                      │            │                  │
│  Exchange API Keys   │            │  api.neurodoc.app│
│  (never leave here)  │            │                  │
│         │            │            │  Receives ONLY:  │
│         ▼            │            │  - prices        │
│  Fetch from          │  prices +  │  - volumes       │
│  Binance/Bybit/etc   │──query──▶ │  - query text    │
│  (locally)           │            │                  │
│         │            │            │  Returns:        │
│         ▼            │  ◀──────── │  - AI analysis   │
│  Aggregate prices    │  analysis  │  - verdicts      │
│  (no keys in payload)│            │  - PDF data      │
│                      │            │                  │
└──────────────────────┘            └─────────────────┘

Overview

Key Features

  1. Cross-Exchange Scanner — Live bid/ask from Binance, Bybit, KuCoin, MEXC, Gate.io
  2. Arbitrage Detection — Automatic spread analysis across all 5 exchanges
  3. APEX Hyper-Council Analysis — 5 AI agents (Macro CIO, Quant Research, Risk Officer Damocles, Execution Architect, Regime Classifier)
  4. Trading Blueprint PDF — Hedge fund-grade reports with SWOT, Radar charts, PnL projections, Implementation Roadmap
  5. Multi-coin Support — BTC, ETH, SOL, XRP, DOGE, ADA, DOT, AVAX, MATIC, BNB, LTC, LINK, TRX, SHIB, SUI, APT, TON, NEAR, UNI, PEPE

Configuration (BYOK)

Users provide their own API keys via environment variables. All keys are optional — the skill works with CoinGecko free data by default, and each exchange is additive.

Required Environment Variables

None required. The skill works without any keys using CoinGecko free tier.

Optional Environment Variables

Variable Exchange Purpose
BINANCE_API_KEY Binance Market data (read-only)
BINANCE_API_SECRET Binance API authentication
BYBIT_API_KEY Bybit Market data (read-only)
BYBIT_API_SECRET Bybit API authentication
KUCOIN_API_KEY KuCoin Market data (read-only)
KUCOIN_API_SECRET KuCoin API authentication
MEXC_API_KEY MEXC Market data (read-only)
MEXC_API_SECRET MEXC API authentication
GATEIO_API_KEY Gate.io Market data (read-only)
GATEIO_API_SECRET Gate.io API authentication

API Endpoints

1. Live Market Data + Cross-Exchange Scanner

POST https://api.neurodoc.app/aetherlang/execute
Content-Type: application/json
{
  "code": "flow CryptoScan {\
  using target \"neuroaether\" version \">=0.3\";\
  input text query;\
  node Scanner: crypto exchanges=\"all\", language=\"en\";\
  output text result from Scanner;\
}",
  "query": "BTC ETH SOL"
}

2. APEX Hyper-Council Analysis

{
  "code": "flow ApexAnalysis {\
  using target \"neuroaether\" version \">=0.3\";\
  input text query;\
  node Apex: crypto mode=\"analysis\", language=\"en\";\
  output text result from Apex;\
}",
  "query": "Full APEX analysis for BTC ETH SOL"
}

3. Trading Blueprint PDF

{
  "code": "flow Blueprint {\
  using target \"neuroaether\" version \">=0.3\";\
  input text query;\
  node Report: crypto mode=\"blueprint\", language=\"en\";\
  output text result from Report;\
}",
  "query": "Generate trading blueprint for BTC"
}

Supported Exchanges

Exchange Data Available Auth Required
CoinGecko Price, MCap, Volume, ATH No (free tier)
Binance Bid/Ask, Spread, Volume Optional
Bybit Bid/Ask, Spread, Volume Optional
KuCoin Bid/Ask, Spread Optional
MEXC Bid/Ask, Spread, Volume Optional
Gate.io Bid/Ask, Spread, Volume Optional

Hyper-Council Agents

Agent Role Weight Range Can Veto
MACRO Global Macro CIO -100 to +100 No
QUANT Head of Quant Research -100 to +100 No
STATS Chief Statistician -100 to +100 No
RISK (Damocles) Chief Risk Officer -100 to +100 Yes
EXECUTION Execution Architect 0 (INFO) No

Security Architecture

Data handling: Only aggregated market prices and query text are sent to api.neurodoc.app. Exchange API keys never leave the local environment.

  • BYOK: User keys stay local, never transmitted to NeuroAether
  • Read-only: Skill only reads market data, never executes trades
  • No storage: API keys used per-request, never persisted
  • Input validation: All queries sanitized, max 5000 chars
  • Rate limiting: 100 req/hour free tier

What This Skill Does NOT Do

  • ❌ Execute trades or place orders
  • ❌ Transfer funds or make withdrawals
  • ❌ Store or log API keys
  • ❌ Provide financial advice (analysis only)

Languages

  • English (default)
  • Greek (Ελληνικά) — add language="el"

Technology

  • Backend: FastAPI + Python 3.12 (source)
  • AI Models: GPT-4o via OpenAI
  • Data Sources: CoinGecko, Binance, Bybit, KuCoin, MEXC, Gate.io
  • PDF Engine: WeasyPrint + Matplotlib
  • Hosting: Hetzner EU (GDPR compliant)

Disclaimer

⚠️ This skill provides AI-generated market analysis for educational and informational purposes only. It is NOT financial advice. Cryptocurrency trading involves significant risk. Always conduct your own research and consult a qualified financial advisor before making investment decisions.


Built by NeuroAether — Institutional Intelligence for Everyone 🧠📊

Usage Guidance
This skill appears coherent and auditable, but take these precautions before installing or running it with real keys: - Keep exchange API keys strictly read-only (no trading/withdrawal permissions) as recommended. - Review and run the included client.py locally (e.g., python client.py or a dry-run) to inspect the exact outbound payload; verify keys do not appear in logs, error messages, or the built payload. - If you will send any market data to api.neurodoc.app, review that service's privacy policy and trustworthiness; the code sends aggregated prices and query text to that external API. - Install dependencies (httpx) in a isolated environment (venv) and inspect network calls (e.g., with a proxy or network monitor) during initial runs. - If you need a higher assurance level, obtain the referenced GitHub source and compare versions or run the client in an isolated sandbox before using production keys. Confidence is medium because the provided client.py appears to exclude keys from the payload, but full runtime safety depends on how you run it (error handling/logging) and the external API's handling of data.
Capability Analysis
Type: OpenClaw Skill Name: apex-crypto-intelligence Version: 0.2.1 The skill bundle requests and processes sensitive API keys and secrets for five major cryptocurrency exchanges (Binance, Bybit, KuCoin, MEXC, and Gate.io) via environment variables. While the provided 'client.py' demonstrates a defensive implementation that uses these keys only for direct, local communication with exchange APIs and includes a verification script to audit for credential leakage, the handling of multiple financial secrets in an agent-accessible environment is a high-risk capability. Per the analysis criteria, the presence of these risky capabilities, although plausibly necessary for the stated purpose of multi-exchange analysis, warrants a suspicious classification.
Capability Assessment
Purpose & Capability
Name/description (multi-exchange market analysis, arbitrage detection, reports) match the code and SKILL.md. Optional environment variables are exchange API keys that are reasonable for this purpose. No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md and client.py instruct the agent to read optional exchange keys from environment variables, fetch market data from exchanges (and CoinGecko), build an aggregated payload, and send only prices/volumes and query text to https://api.neurodoc.app/aetherlang/execute. The code contains a build_api_request function that explicitly omits keys from the payload. Note: the consumer should still verify runtime behavior (e.g., error logging, stack traces, retries) won't inadvertently surface keys — the provided client.py makes that auditable.
Install Mechanism
No install spec (instruction-only skill plus an included Python client). This minimizes automatic installation risk. The SKILL.md lists a python dependency (httpx) but there is no automatic installer; user must provide Python and deps themselves, which is proportionate.
Credentials
No required env vars; optional env vars are standard exchange API key/secret pairs and match the declared names in SKILL.md and client.py. Requiring read-only keys for better data is proportional to the stated function. No other unrelated secrets are requested.
Persistence & Privilege
always is false, no OS restrictions, and the skill does not request system-wide config changes or credentials of other skills. Autonomous model invocation is allowed (platform default) but not combined with excessive privileges here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install apex-crypto-intelligence
  3. After installation, invoke the skill by name or use /apex-crypto-intelligence
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.2.1
v0.2.1: Fixed env var naming, added MEXC/GATEIO, removed unverifiable refs
v0.2.0
v0.2.0: Added YAML frontmatter, declared optional exchange API keys, httpx dependency, key_safety note
v0.1.3
- Updated `client.py` (details not shown). - Version bumped to 0.1.3.
v0.1.2
- Added core client script (`client.py`) for running and inspecting API requests. - Users can now review the exact payload being sent to the API using the included script, supporting transparency and auditability.
v0.1.1
- Updated homepage and source code links for clarity and specificity. - Added explicit version and concise summary sections. - Improved privacy section: clarified that API keys remain local, referenced specific auditable code (`client.py`), and explained exactly what data is sent to the NeuroAether API. - Added a new architecture diagram showing how sensitive data is handled. - Streamlined and clarified tables for supported exchanges, environment variables, and hyper-council agents. - Enhanced security architecture section with clear auditability instructions. - Updated disclaimer and technology details for improved transparency.
v0.1.0
APEX Crypto Intelligence 0.1.0 — Initial Release - Real-time cross-exchange crypto scanner with arbitrage detection on Binance, Bybit, KuCoin, MEXC, Gate.io. - Institutional analysis via a "Hyper-Council" of 5 specialized AI agents for market regime, strategy, and risk. - Generates hedge fund-quality PDF trading blueprints with SWOT, quantitative projections, and strategy roadmaps. - Full BYOK (Bring Your Own Keys) read-only integration for personal API key security; no keys stored or transmitted. - English and Greek language analysis output; CoinGecko free data fallback if no exchange APIs provided. - GDPR-compliant data handling, no personal or credential data collected or stored.
Metadata
Slug apex-crypto-intelligence
Version 0.2.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 6
Frequently Asked Questions

What is Apex Crypto Intelligence?

AI-powered multi-exchange crypto market analysis, arbitrage detection, and hedge fund-quality trading reports using live data from major exchanges. It is an AI Agent Skill for Claude Code / OpenClaw, with 917 downloads so far.

How do I install Apex Crypto Intelligence?

Run "/install apex-crypto-intelligence" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Apex Crypto Intelligence free?

Yes, Apex Crypto Intelligence is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Apex Crypto Intelligence support?

Apex Crypto Intelligence is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Apex Crypto Intelligence?

It is built and maintained by Hlias Staurou (@contrario); the current version is v0.2.1.

💬 Comments