# Send LLM Supervisor 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": "llm-supervisor",
    "name": "LLM Supervisor",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/dhardie/llm-supervisor",
    "canonicalUrl": "https://clawhub.ai/dhardie/llm-supervisor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/llm-supervisor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=llm-supervisor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "commands/llm.ts",
      "dist/commands/llm.js",
      "dist/hooks/beforeTaskExecute.js",
      "dist/hooks/onAgentStart.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "llm-supervisor",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T03:30:37.172Z",
      "expiresAt": "2026-05-09T03:30:37.172Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=llm-supervisor",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=llm-supervisor",
        "contentDisposition": "attachment; filename=\"llm-supervisor-0.3.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "llm-supervisor"
      },
      "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/llm-supervisor"
    },
    "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/llm-supervisor",
    "downloadUrl": "https://openagent3.xyz/downloads/llm-supervisor",
    "agentUrl": "https://openagent3.xyz/skills/llm-supervisor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/llm-supervisor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/llm-supervisor/agent.md"
  }
}
```
## Documentation

### LLM Supervisor 🔮

Handles rate limits and model fallbacks gracefully.

### On Rate Limit / Overload Errors

When I encounter rate limits or overload errors from cloud providers (Anthropic, OpenAI):

Tell the user immediately — Don't silently fail or retry endlessly
Offer local fallback — Ask if they want to switch to Ollama
Wait for confirmation — Never auto-switch for code generation tasks

### Confirmation Required

Before using local models for code generation, ask:

"Cloud is rate-limited. Switch to local Ollama (qwen2.5:7b)? Reply 'yes' to confirm."

For simple queries (chat, summaries), can switch without confirmation if user previously approved.

### /llm status

Report current state:

Which provider is active (cloud/local)
Ollama availability and models
Recent rate limit events

### /llm switch local

Manually switch to Ollama for the session.

### /llm switch cloud

Switch back to cloud provider.

### Using Ollama

# Check available models
ollama list

# Run a query
ollama run qwen2.5:7b "your prompt here"

# For longer prompts, use stdin
echo "your prompt" | ollama run qwen2.5:7b

### Installed Models

Check with ollama list. Configured default: qwen2.5:7b

### State Tracking

Track in memory during session:

currentProvider: "cloud" | "local"
lastRateLimitAt: timestamp or null
localConfirmedForCode: boolean

Reset to cloud at session start.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dhardie
- Version: 0.3.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-02T03:30:37.172Z
- Expires at: 2026-05-09T03:30:37.172Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/llm-supervisor)
- [Send to Agent page](https://openagent3.xyz/skills/llm-supervisor/agent)
- [JSON manifest](https://openagent3.xyz/skills/llm-supervisor/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/llm-supervisor/agent.md)
- [Download page](https://openagent3.xyz/downloads/llm-supervisor)