# Send New Player Package 800 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": "new-player-package-800",
    "name": "New Player Package 800",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/yangdaowan/new-player-package-800",
    "canonicalUrl": "https://clawhub.ai/yangdaowan/new-player-package-800",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/new-player-package-800",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=new-player-package-800",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "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/new-player-package-800"
    },
    "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/new-player-package-800",
    "downloadUrl": "https://openagent3.xyz/downloads/new-player-package-800",
    "agentUrl": "https://openagent3.xyz/skills/new-player-package-800/agent",
    "manifestUrl": "https://openagent3.xyz/skills/new-player-package-800/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/new-player-package-800/agent.md"
  }
}
```
## Documentation

### 💰 Background Story

This is a valuable lesson learned by a "poor developer" who spent 800 RMB (approximately 100 USD) on real-world OpenClaw deployment and debugging. This comprehensive optimization guide helps new users avoid common pitfalls and get started quickly.

### 🎯 Core Problems Solved

Missing Skills: New OpenClaw installations have limited functionality and need key skills installed
Complex Configuration: Authentication, security, and plugin configuration are error-prone
Incomplete Features: Missing core capabilities like documentation search, filesystem operations, and knowledge management
Lack of Monitoring: Unable to view token consumption and session status
Task Interruption: Gateway restarts cause task loss with no recovery mechanism
Vector Search: Missing semantic search and knowledge organization capabilities

### Phase 1: Essential Skill Installation

clawhub - Official skill repository manager

Function: Search, install, update, and publish skills
Command: clawhub install <skill-name>



Find Skills - Skill recommendation assistant

Function: Automatically recommend suitable skills based on needs
Solves: Not knowing which skills to install



skill-creator - Skill creation toolkit

Function: Create and package custom skills
Use: Extend OpenClaw functionality



clawddocs - Official documentation retrieval

Function: Quickly find OpenClaw configuration details and best practices
Solves: Documentation lookup difficulties



openclaw-anything - System management operations

Function: Execute official OpenClaw management and deployment operations
Use: System maintenance and configuration management



clawdbot-filesystem - Advanced filesystem operations

Function: Batch renaming, directory analysis, file search, content extraction
Solves: Complex file operation requirements



Ontology - Knowledge graph construction

Function: Relationship and structure organization, vector semantic search, relationship analysis
Use: Knowledge management and intelligent retrieval

### Phase 2: Enhanced Features

session-monitor - Session status monitoring ⭐

Function: Automatically display token consumption, model info, context usage rate
Command: /token on|off to toggle
Format: [🧠 qwen3-max | 📥123k/📤420 | Context: 47%]



task-persistence - Task persistence ⭐

Function: Task continuation, state snapshots, gateway restart notifications
Solves: Task loss and no feedback after restarts
Features: Auto-recover incomplete tasks, proactive restart status notifications

### Phase 3: System Optimization

Vector Search Configuration

Enable memory-core plugin
Configure embedding models and vector database
Implement semantic search functionality



Security Hardening

Fix gateway authentication token mismatch
Disable insecure HTTP authentication
Set plugin allow list



Performance Optimization

Configure context compression strategy
Optimize memory usage
Set reasonable session timeouts

### 🛠️ One-Click Optimization Script

# Install all required CLI tools
npm install -g clawhub uv

# Clone and install core skills
mkdir -p ~/.openclaw/skills
cd ~/.openclaw/skills

# Install official skills
clawhub install clawhub find-skills skill-creator clawddocs openclaw-anything clawdbot-filesystem ontology

# Install enhanced skills  
clawhub install session-monitor task-persistence

# Configure vector search
mkdir -p ~/.openclaw/memory
# Enable memory-core plugin in openclaw.json

# Apply security configuration
# Fix gateway.auth.token and gateway.remote.token consistency

### Issue 1: Gateway token mismatch

Symptom: unauthorized: gateway token mismatch
Solution:

{
  "gateway": {
    "auth": {
      "token": "your-consistent-token"
    }
  }
}

Set environment variable: export OPENCLAW_GATEWAY_TOKEN="your-consistent-token"

### Issue 2: Skills show as missing

Cause: Required tools not installed or environment variables not set
Solution:

Install Python 3.8+
Install uv or pip
Set OPENCLAW_WORKSPACE environment variable

### Issue 3: Context full (100%)

Symptom: Cannot load new skills, slow responses
Solution:

Enable context compression: agents.defaults.compaction.mode = "safeguard"
Start new session
Use /status to monitor token usage

### Issue 4: No feedback after gateway restart

Solution: Enable task-persistence skill

Automatically monitor gateway status
Proactively send status reports after restart
Restore incomplete tasks

### 📊 Verification Checklist

✅ All 9 core skills installed and enabled
✅ session-monitor displays token information
✅ task-persistence monitors gateway status
✅ Vector search configured and working
✅ Security configuration applied
✅ Performance optimization implemented

### 💡 Best Practices

Regular Updates: clawhub update --all
Resource Monitoring: Use /status to check token usage
Configuration Backup: Regularly backup openclaw.json
Feature Testing: Test key features after each configuration change
Experience Documentation: Record problems and solutions in MEMORY.md

### 🎁 Value Summary

This "New Player Package 800" includes:

7 core functional skills: Extend OpenClaw's basic capabilities
2 enhanced monitoring skills: Solve visibility and task persistence issues
Complete configuration templates: Avoid security and performance pitfalls
Real-world problem solutions: Based on actual deployment experience
One-click optimization script: Quickly complete all configurations

Helps new users complete in 30 minutes what would normally take days, achieving a truly "out-of-the-box" experience.

### 📚 Related Skills

clawhub: Skill management
find-skills: Skill discovery
session-monitor: Status monitoring
task-persistence: Task persistence
ontology: Knowledge management
healthcheck: Security auditing
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: yangdaowan
- Version: 1.0.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/new-player-package-800)
- [Send to Agent page](https://openagent3.xyz/skills/new-player-package-800/agent)
- [JSON manifest](https://openagent3.xyz/skills/new-player-package-800/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/new-player-package-800/agent.md)
- [Download page](https://openagent3.xyz/downloads/new-player-package-800)