Strategy Deployer
/install axodus-strategy-deployer
SKILL: strategy-deployer
Purpose
Deploy trading strategies safely using an explicit lifecycle: validate → risk-check → paper deploy → monitor → (guarded) live promote → scale/stop.
When to Use
- A strategy is ready after backtesting.
- Moving from research to paper trading.
- Promoting a paper-tested strategy to live trading (guarded).
Inputs
strategy_spec(required, object|string): rules, signals, markets, timeframes.mode(optional, enum:paper|live, default:paper)risk_limits(required, object): max risk per trade, max drawdown, exposure caps.validation_artifacts(optional, object): backtest report, paper performance stats.approval(optional, string): explicit user/Morpheus approval reference forlive.
Steps
- Verify prerequisites:
- strategy has a written hypothesis and defined invalidation conditions
- backtest/paper artifacts exist (as applicable)
- Run risk checks:
- enforce risk per trade
- enforce exposure caps
- enforce max drawdown thresholds
- ensure kill-switch is configured
- Deploy to paper (default):
- start with small allocation
- emit logs for every signal and order
- Monitor and record:
- trades
- slippage
- drawdown
- regime notes
- Promote to live only if:
- explicit
mode=live - explicit approval is present
- preflight checks pass
- explicit
- Define rollback/stop rules and execute them on trigger.
Validation
- Paper mode produces complete logs and trade history entries.
- Live mode is blocked unless approval + flags are present.
- Risk constraints are enforced before every order.
- Stop conditions are tested (kill-switch works).
Output
deployment: "paper|live"
strategy: "\x3Cname/id>"
markets: ["..."]
risk_limits: { "...": "..." }
status: "deployed|blocked|stopped"
audit_events: ["signal_detected", "risk_check_passed", "order_submitted", "order_filled", "trade_recorded"]
Safety Rules
- Never bypass risk checks to “capture opportunityâ€.
- Never deploy live without explicit approval and a paper validation phase.
- Never imply profit certainty; report performance as historical/conditional.
Example
Paper deploy:
strategy_spec: “Mean reversion in range regime, 5m timeframe.â€mode:paper- Output: deployment report + monitoring checklist + stop triggers.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install axodus-strategy-deployer - After installation, invoke the skill by name or use
/axodus-strategy-deployer - Provide required inputs per the skill's parameter spec and get structured output
What is Strategy Deployer?
Deploy trading strategies with risk gating, monitoring, and guarded live promotion. It is an AI Agent Skill for Claude Code / OpenClaw, with 54 downloads so far.
How do I install Strategy Deployer?
Run "/install axodus-strategy-deployer" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Strategy Deployer free?
Yes, Strategy Deployer is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Strategy Deployer support?
Strategy Deployer is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Strategy Deployer?
It is built and maintained by Mauricio Z. (@mzfshark); the current version is v1.0.0.