← Back to Skills Marketplace
mzfshark

Strategy Deployer

by Mauricio Z. · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
54
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install axodus-strategy-deployer
Description
Deploy trading strategies with risk gating, monitoring, and guarded live promotion.
README (SKILL.md)

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 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:
    • explicit mode=live
    • explicit approval is present
    • preflight checks pass
  6. 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.
Usage Guidance
This instruction-only skill appears to implement a reasonable, safety-minded trading deployment workflow. Before installing: (1) verify the skill's provenance given inconsistent metadata (registry owner vs _meta.json/author); (2) test thoroughly in an isolated/simulated environment (paper mode) to confirm the agent's actual connectors and order-handling behave as intended; (3) ensure broker/API credentials are supplied and stored securely by your agent platform (the skill itself doesn't declare or manage credentials); (4) enforce a policy that prevents any autonomous live promotion without explicit human approval and audited approval artifacts; and (5) consider requesting the author to clarify triggers in skill.yml (it contains 'System.Object[]') and to align metadata to remove ambiguity. If you cannot confirm provenance or control how credentials and approvals are enforced, treat the skill as higher risk and do not allow live promotions.
Capability Analysis
Type: OpenClaw Skill Name: axodus-strategy-deployer Version: 1.0.0 The skill bundle consists entirely of documentation and configuration files (SKILL.md, skill.yml, strategy-deployer.md) defining a high-level workflow for trading strategy deployment. The instructions emphasize safety, risk gating, and mandatory approval for live trading, with no executable code, network requests, or data exfiltration logic present.
Capability Assessment
Purpose & Capability
The name, description, and runtime instructions consistently describe a strategy deployment lifecycle (validate → risk-check → paper → monitor → guarded live promote). However, metadata shows inconsistent provenance: registry ownerId (kn74114...) differs from _meta.json ownerId (redhat-agent-001) and SKILL.md author (RedHat Dev). That mismatch doesn't prove maliciousness but is a provenance red flag to verify.
Instruction Scope
SKILL.md stays within the declared purpose: it specifies inputs, explicit risk checks, monitoring, and approval gating for live promotion. It does not instruct the agent to read arbitrary system files, exfiltrate data, or call unexpected endpoints. The content is high-level (no exchange API calls), so the actual side effects depend on how the agent implements deployments.
Install Mechanism
Instruction-only skill with no install spec and no code files; nothing is written to disk or fetched during install. This is the lowest-risk install model.
Credentials
The skill requests no environment variables or credentials, which matches the fact it provides only high-level instructions. However, real paper/live deployments will require broker/exchange credentials and API keys; those are not declared here. Before using the skill in a real environment, confirm how the agent will obtain and protect necessary secrets and ensure the skill cannot be induced to promote live trading without explicit human-controlled credentials and approval.
Persistence & Privilege
always is false and the skill does not request persistent system-wide settings or modify other skills. Autonomous invocation is allowed by platform default; on its own that is not a disqualifier, but you should ensure policies prevent automated live promotions without human approval.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install axodus-strategy-deployer
  3. After installation, invoke the skill by name or use /axodus-strategy-deployer
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of strategy-deployer skill. - Enables safe deployment of trading strategies with risk gating and explicit lifecycle. - Supports paper and guarded live modes, requiring explicit approval for live deployment. - Enforces strict risk controls, validation, and monitoring at each stage. - Outputs detailed deployment status, audit events, and risk compliance. - Includes safety rules to prevent risky or unauthorized live trading.
Metadata
Slug axodus-strategy-deployer
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

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.

💬 Comments