# Send Trading DevBox to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "trading-devbox",
    "name": "Trading DevBox",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/uu-z/trading-devbox",
    "canonicalUrl": "https://clawhub.ai/uu-z/trading-devbox",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/trading-devbox",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trading-devbox",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "trading-devbox",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T03:08:18.370Z",
      "expiresAt": "2026-05-17T03:08:18.370Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trading-devbox",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trading-devbox",
        "contentDisposition": "attachment; filename=\"trading-devbox-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "trading-devbox"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/trading-devbox"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/trading-devbox",
    "downloadUrl": "https://openagent3.xyz/downloads/trading-devbox",
    "agentUrl": "https://openagent3.xyz/skills/trading-devbox/agent",
    "manifestUrl": "https://openagent3.xyz/skills/trading-devbox/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/trading-devbox/agent.md"
  }
}
```
## Documentation

### Trading DevBox

Help users develop and backtest trading strategies from natural language descriptions.

### When to Use

User describes a trading idea or intent (e.g. "SOL 跌 10% 买入，涨 30% 止盈")
User asks to write, backtest, or optimize a trading strategy
User mentions keywords: 策略, 回测, backtest, strategy, trading

### Workflow

Parse the user's trading intent into structured parameters:

Asset (e.g. SOL, BTC, ETH)
Entry condition (e.g. price drops 10%)
Exit condition (e.g. take profit at 30%, stop loss at 5%)
Timeframe (e.g. 1h, 4h, 1d)



Confirm the parsed parameters with the user before proceeding.


Generate a Python backtest strategy using backtrader:

mkdir -p /tmp/trading-devbox && cat > /tmp/trading-devbox/strategy.py << 'PYEOF'
import backtrader as bt
import sys
import json

class UserStrategy(bt.Strategy):
    params = dict(
        entry_drop_pct=10,
        take_profit_pct=30,
        stop_loss_pct=5,
    )

    def __init__(self):
        self.order = None
        self.buy_price = None

    def next(self):
        if self.order:
            return
        if not self.position:
            # entry: price dropped by entry_drop_pct from recent high
            high = max(self.data.close.get(size=20) or [self.data.close[0]])
            drop = (high - self.data.close[0]) / high * 100
            if drop >= self.p.entry_drop_pct:
                self.order = self.buy()
                self.buy_price = self.data.close[0]
        else:
            pnl = (self.data.close[0] - self.buy_price) / self.buy_price * 100
            if pnl >= self.p.take_profit_pct or pnl <= -self.p.stop_loss_pct:
                self.order = self.sell()

if __name__ == '__main__':
    print(json.dumps({"status": "ok", "message": "Strategy generated"}))
PYEOF
python3 /tmp/trading-devbox/strategy.py

Report the result to the user in a clear format.

### Response Format

Always respond in the user's language. Structure the response as:

Parsed intent summary
Strategy parameters
Execution result or next steps
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: uu-z
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T03:08:18.370Z
- Expires at: 2026-05-17T03:08:18.370Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/trading-devbox)
- [Send to Agent page](https://openagent3.xyz/skills/trading-devbox/agent)
- [JSON manifest](https://openagent3.xyz/skills/trading-devbox/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/trading-devbox/agent.md)
- [Download page](https://openagent3.xyz/downloads/trading-devbox)