🦀 ClawHub
Strategy Deployer
by @mzfshark
Deploy trading strategies with risk gating, monitoring, and guarded live promotion.
TERMINAL
clawhub install axodus-strategy-deployer📖 About This Skill
name: strategy-deployer description: Deploy trading strategies with risk gating, monitoring, and guarded live promotion. metadata: author: RedHat Dev version: 1.0.0 owner: RedHat Dev Agent category: trading
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
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 for live.Steps
1. Verify prerequisites: - strategy has a written hypothesis and defined invalidation conditions - backtest/paper artifacts exist (as applicable) 2. Run risk checks: - enforce risk per trade - enforce exposure caps - enforce max drawdown thresholds - ensure kill-switch is configured 3. Deploy to paper (default): - start with small allocation - emit logs for every signal and order 4. Monitor and record: - trades - slippage - drawdown - regime notes 5. Promote to live only if: - explicitmode=live
- explicit approval is present
- preflight checks pass
6. Define rollback/stop rules and execute them on trigger.Validation
Output
deployment: "paper|live"
strategy: ""
markets: ["..."]
risk_limits: { "...": "..." }
status: "deployed|blocked|stopped"
audit_events: ["signal_detected", "risk_check_passed", "order_submitted", "order_filled", "trade_recorded"]
Safety Rules
Example
Paper deploy:strategy_spec: “Mean reversion in range regime, 5m timeframe.â€mode: paper⚡ When to Use
💡 Examples
Paper deploy:
strategy_spec: “Mean reversion in range regime, 5m timeframe.â€mode: paper