# Send Openclaw Whisperer 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": "openclaw-whisperer",
    "name": "Openclaw Whisperer",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/PhenixStar/openclaw-whisperer",
    "canonicalUrl": "https://clawhub.ai/PhenixStar/openclaw-whisperer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-whisperer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-whisperer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SECURITY.md",
      "SKILL.md",
      "data/complementary-skills.json",
      "data/error-patterns.json",
      "data/fix-execution-history.json",
      "data/fix-recipes.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openclaw-whisperer"
    },
    "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/openclaw-whisperer",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-whisperer",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-whisperer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-whisperer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-whisperer/agent.md"
  }
}
```
## Documentation

### OpenClaw Whisperer

Ultimate diagnostic, error-fixing, and skill recommendation tool for OpenClaw.

### What's New in v1.1.0

Complementary Skills - Discover skills that work together (10 skill relationships)
Diagnostic Hooks - GitHub/Slack/Discord integration for error notifications (9 hook configs)
Recovery Tracking - Track fix execution history and success rates
Smart Scoring - Enhanced recommendations with complementary skill bonus scoring
Rich Display - Improved CLI panels and formatting for suggestions

### When to Use

Activate when user wants to:

Diagnose OpenClaw errors or issues
Auto-fix common problems
Find and recommend ClawHub skills with complementary suggestions
Run extended health checks
Setup OpenClaw for first time
Update documentation and caches
Track fix execution history

### Error Fixer

Diagnose and auto-fix OpenClaw errors with diagnostic hooks and recovery tracking.

# Diagnose by error code (triggers diagnostic hooks if configured)
python3 {baseDir}/scripts/error-fixer.py --error 401

# Analyze log file with recovery suggestions
python3 {baseDir}/scripts/error-fixer.py --input /path/to/log

# Auto-fix safe issues (tracks execution history)
python3 {baseDir}/scripts/error-fixer.py --error EADDRINUSE --auto-fix

# List errors by category with fix history
python3 {baseDir}/scripts/error-fixer.py --category authentication

# View fix execution history
python3 {baseDir}/scripts/error-fixer.py --show-history

# Test notification hooks (GitHub/Slack/Discord)
python3 {baseDir}/scripts/error-fixer.py --test-hooks

### Skill Recommender

Smart ClawHub skill recommendations with complementary skill detection.

# Recommend for channel (includes complementary skills)
python3 {baseDir}/scripts/skill-recommender.py --channel whatsapp --top 5

# Recommend by use case with bonus scoring
python3 {baseDir}/scripts/skill-recommender.py --use-case "image generation"

# Auto-detect from config (enriched with complementary metadata)
python3 {baseDir}/scripts/skill-recommender.py --auto-detect

# Check for updates
python3 {baseDir}/scripts/skill-recommender.py --check-updates

# View complementary skills for installed skill
python3 {baseDir}/scripts/skill-recommender.py --complementary-for image-generator-pro

### Enhanced Doctor

Extended diagnostic checks.

# Full diagnostics
python3 {baseDir}/scripts/enhanced-doctor.py

# Deep scan with log analysis
python3 {baseDir}/scripts/enhanced-doctor.py --deep

# JSON output
python3 {baseDir}/scripts/enhanced-doctor.py --json

### Self-Updater

Keep references and caches current.

# Check what's outdated
python3 {baseDir}/scripts/self-updater.py --check

# Update everything
python3 {baseDir}/scripts/self-updater.py --update

# Update only skill cache
python3 {baseDir}/scripts/self-updater.py --update --skills-only

### Setup Wizard

Interactive first-time setup.

# Interactive setup
python3 {baseDir}/scripts/setup-wizard.py

# Check prerequisites only
python3 {baseDir}/scripts/setup-wizard.py --check-only

### Reference Files

Error Catalog - Master error index
Auto-Fix Capabilities - Safe vs manual fixes
Diagnostic Commands - CLI quick reference
Troubleshooting Workflow - Decision tree
Authentication Errors - Auth issues
Rate Limiting Errors - Quota management
Gateway Errors - Network issues
Channel Errors - Channel-specific
Sandbox Errors - Docker issues
Configuration Errors - Config problems
Installation Errors - Setup issues
ClawHub Integration - Skill management

### Data Files (v1.1.0)

complementary-skills.json - 10 skill relationships
integration-hooks.json - 9 notification hook configs
fix-execution-history.json - Fix tracking metadata

### Templates

Error Report - Diagnostic output format
Recommendation Report - Skill suggestions format
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: PhenixStar
- Version: 1.2.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-whisperer)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-whisperer/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-whisperer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-whisperer/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-whisperer)