# Send StartClaw-Optimizer 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "startclaw-optimizer",
    "name": "StartClaw-Optimizer",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/idanmann10/startclaw-optimizer",
    "canonicalUrl": "https://clawhub.ai/idanmann10/startclaw-optimizer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/startclaw-optimizer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=startclaw-optimizer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "context-compaction.js",
      "README.md",
      "components/browser-governor.js",
      "components/scheduler.js",
      "components/router.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "startclaw-optimizer",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T21:33:34.852Z",
      "expiresAt": "2026-05-10T21:33:34.852Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=startclaw-optimizer",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=startclaw-optimizer",
        "contentDisposition": "attachment; filename=\"startclaw-optimizer-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "startclaw-optimizer"
      },
      "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/startclaw-optimizer"
    },
    "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/startclaw-optimizer",
    "downloadUrl": "https://openagent3.xyz/downloads/startclaw-optimizer",
    "agentUrl": "https://openagent3.xyz/skills/startclaw-optimizer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/startclaw-optimizer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/startclaw-optimizer/agent.md"
  }
}
```
## Documentation

### Overview

The OpenClaw Optimizer is a comprehensive performance and cost optimization skill designed to enhance the efficiency of Clawdbot's subagent workflows.

### 1. Task Router

Intelligent model selection based on task complexity
Automatic routing between Haiku, Sonnet, and Opus models
Cost prediction and optimization

### 2. Scheduler

Robust task execution with retry mechanism
Configurable preflight and postflight hooks
Timeout and exponential backoff handling

### 3. Browser Governor

Browser tab serialization
Concurrent tab management
Circuit breaker for preventing runaway processes

### 4. Context Compaction

Automatic token tracking
Summarization at 50,000 token threshold
Preserves critical context

### 5. Real-time Dashboard

Monitor daily budget
Track task execution
Visualize model distribution
Circuit breaker status

### Expected Savings

Before Optimization: $90/day
After Optimization: $3-5/day
Savings: 95%

### Installation

npm install @startclaw/openclaw-optimizer

### Usage

const { TaskRouter, OptimizerScheduler, BrowserGovernor } = require('@startclaw/openclaw-optimizer');

const router = new TaskRouter();
const scheduler = new OptimizerScheduler();
const browserGovernor = new BrowserGovernor();

// Automatic model and cost optimization
const modelSelection = router.selectModel(taskDescription);
await scheduler.execute(task, modelSelection);

### Monitoring

# Real-time dashboard
python3 scripts/dashboard.py watch

### License

StartClaw Internal Use License
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: idanmann10
- Version: 1.0.2
## 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-03T21:33:34.852Z
- Expires at: 2026-05-10T21:33:34.852Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/startclaw-optimizer)
- [Send to Agent page](https://openagent3.xyz/skills/startclaw-optimizer/agent)
- [JSON manifest](https://openagent3.xyz/skills/startclaw-optimizer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/startclaw-optimizer/agent.md)
- [Download page](https://openagent3.xyz/downloads/startclaw-optimizer)