Openclaw
/install dradis-tactical-command
Skill: DRADIS Tactical Command (v1.3.0)
Full-featured autonomous supervisor for the DRADIS high-frequency prediction market execution engine.
About DRADIS
DRADIS is an open-source, low-latency Rust-based trading engine for Polymarket.
It features a Viper strategy engine, real-time equity curve, dynamic config hot-reloading, and a built-in LLM advisor.
Project repository: https://github.com/mbordash/DRADIS
Publisher Note (Addressing ClawScan Findings)
ClawScan has flagged two medium-risk items (as expected for any live-trading integration):
- Ability to PATCH live strategy parameters
- Forwarding of a sensitive
DRADIS_API_KEY
These are intentional and documented. The skill never applies config changes without explicit human confirmation. I strongly recommend using a dedicated, least-privilege API key and only running this skill against your own trusted DRADIS instance.
Authentication
DRADIS supports optional API key authentication via the X-API-Key header.
- Set
DRADIS_API_KEYin your OpenClaw configuration. - The skill automatically adds the header to every request.
- Local use works without a key; remote/production use strongly recommends it.
Safety & Usage Guidelines (Critical)
This skill controls a live trading system with real money at risk.
The agent must follow these guardrails at all times:
patch_dynamic_configchanges live strategy parameters without restarting the engine.
Never apply any configuration change without first explicitly confirming the exact update with the human user and receiving clear approval.- Only call tools when the user’s request directly relates to monitoring or configuration.
- If the engine returns 401 Unauthorized, tell the user to configure the
DRADIS_API_KEY.
Example Natural Language Commands
- “What’s the current status of DRADIS?”
- “Show me open positions and session P&L”
- “What markets is each strategy currently trading?”
- “List the last 10 trades”
- “What does the LLM advisor recommend right now?”
- “Show me the current config”
- “Can you increase the adverse block threshold? Show me the current config first and confirm before patching.”
Configuration
DRADIS_API_URL: Base URL for the engine API (Default:http://localhost:9000/api)DRADIS_API_KEY: API key for authentication (optional locally, recommended for remote/production)
Tools
1. check_engine_status
- Method:
GET - Endpoint:
{{DRADIS_API_URL}}/health - Headers:
X-API-Key: {{DRADIS_API_KEY}} - Response Format: Text or JSON
2. get_current_config
- Method:
GET - Endpoint:
{{DRADIS_API_URL}}/config - Headers:
X-API-Key: {{DRADIS_API_KEY}} - Response Format: JSON object of all configurable fields
3. patch_dynamic_config
- Method:
PATCH - Endpoint:
{{DRADIS_API_URL}}/config - Headers:
X-API-Key: {{DRADIS_API_KEY}} - Payload Type:
application/json - Parameters:
updatesobject (e.g.{"gboost_obi_adverse_block": -0.15, "enable_basis": false}) - Safety Note: Requires explicit user confirmation before executing.
4. check_session_pnl
- Method:
GET - Endpoint:
{{DRADIS_API_URL}}/pnl/history - Headers:
X-API-Key: {{DRADIS_API_KEY}} - Response Format: JSON array of equity snapshots
5. get_recent_trades
- Method:
GET - Endpoint:
{{DRADIS_API_URL}}/trades - Headers:
X-API-Key: {{DRADIS_API_KEY}} - Query Param:
limit(optional, default 100)
6. get_open_positions
- Method:
GET - Endpoint:
{{DRADIS_API_URL}}/positions - Headers:
X-API-Key: {{DRADIS_API_KEY}} - Response Format: JSON array of open position records
7. get_strategy_status
- Method:
GET - Endpoint:
{{DRADIS_API_URL}}/status - Headers:
X-API-Key: {{DRADIS_API_KEY}} - Response Format: JSON object of strategy → market mapping
8. get_llm_recommendations
- Method:
GET - Endpoint:
{{DRADIS_API_URL}}/llm/recommendations - Headers:
X-API-Key: {{DRADIS_API_KEY}} - Query Param:
limit(optional, default 10)
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install dradis-tactical-command - 安装完成后,直接呼叫该 Skill 的名称或使用
/dradis-tactical-command触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Openclaw 是什么?
Real-time supervisor and control interface for the DRADIS Polymarket high-frequency trading engine. Full support for DRADIS_API_KEY authentication. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 133 次。
如何安装 Openclaw?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install dradis-tactical-command」即可一键安装,无需额外配置。
Openclaw 是免费的吗?
是的,Openclaw 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Openclaw 支持哪些平台?
Openclaw 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Openclaw?
由 Michael Bordash(@mbordash)开发并维护,当前版本 v1.3.0。