Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
["how do I install and configure OpenClaw","show me OpenClaw skills and automation examples","help me set up OpenClaw with custom models","how to use OpenClaw for file management and knowledge base","OpenClaw integration with Feishu Slack or WeChat","troubleshoot OpenClaw gateway or API connection issues","OpenClaw Task Flow and webhooks configuration","create OpenClaw workflows for productivity automation"]
Complete Chinese tutorial for OpenClaw - an AI-powered work assistant. Covers installation, configuration, Skills ecosystem, automation workflows, API integration, and practical use cases for solo entrepreneurs and teams.
What is OpenClaw?
OpenClaw is an AI assistant framework that runs locally or in cloud, providing:
File management, knowledge base, and scheduling automation
Method 1: One-Click Deployment (Recommended for Beginners)
Feishu Miaoda (Free, 1M tokens/day):
# Visit https://awesome.tryopenclaw.asia/
# Click "Feishu Miaoda" deployment
# Complete in 1 minute, no server needed
Baota Panel (Free plugin, visual management):
# Install Baota Panel first# Add "OpenClaw" plugin from marketplace# One-click install and configure
Method 2: Standard Installation
# Install via npm (Node 22.16+ required)
npm install -g openclaw
# Or via yarn
yarn global add openclaw
# Initialize and onboard
openclaw onboard
# Start gateway
openclaw gateway start
Method 3: Docker
# Pull latest image
docker pull openclaw/openclaw:latest
# Run with environment variables
docker run -d \
-e OPENCLAW_TZ=Asia/Shanghai \
-e OPENCLAW_API_KEY=$OPENCLAW_API_KEY \
-p 3000:3000 \
-v ~/.openclaw:/root/.openclaw \
openclaw/openclaw:latest
# Check status
docker ps
Configuration
Model Authentication (2026.4+ Standard)
# Login to model providers (replaces old local-* skills)
openclaw models auth login --provider anthropic
openclaw models auth login --provider openai
openclaw models auth login --provider gemini
# List authenticated providers
openclaw models auth list
# Set default model
openclaw config set model.default "claude-3-5-sonnet-20241022"# Enable fast mode (cheaper, faster for OpenAI/Anthropic)# User says: /fast
Gateway Authentication (Required since v2026.3.7)
# Set authentication mode (token or password)
openclaw config set gateway.auth.mode token
openclaw config set gateway.auth.token "${OPENCLAW_GATEWAY_TOKEN}"# Restart gateway
openclaw gateway restart
Tools Profile (Fix "AI can't do anything" issue)
# Set to 'full' for complete toolset including command execution
openclaw config set tools.profile full
# Profile options:# - messaging: only chat and session management# - default: standard tools (no command exec)# - coding: programming tools# - full: complete toolset (RECOMMENDED)# - all: everything enabled
openclaw gateway restart
Active Memory and Memory Wiki (2026.4+ Mainline)
# Enable Active Memory (retrieves context before replies)
openclaw config set memory.active.enabled true# Enable Dreaming (background memory consolidation)
openclaw config set memory.dreaming.enabled true# Enable Memory Wiki (structured knowledge claims)
openclaw config set memory.wiki.enabled true# Configure memory retention
openclaw config set memory.retention.days 90
Key Commands
Core CLI
# Check version
openclaw --version
# Show current config
openclaw config list
# Set config value
openclaw config set <key> <value>
# Gateway control
openclaw gateway start
openclaw gateway stop
openclaw gateway restart
openclaw gateway status
# Model inference (unified interface)
openclaw infer text "Explain quantum computing"
openclaw infer image "A red panda in space" --model dall-e-3
openclaw infer video "Ocean waves" --provider runway
openclaw infer audio "Calm piano music" --provider suno
openclaw infer tts "Hello world" --voice nova
openclaw infer web "https://example.com"
openclaw infer embedding "Document text to embed"# Skills management (DEPRECATED in 2026.4+, use models auth instead)# clawhub search <query># clawhub info <skill-name># clawhub install <skill-name>
# User uploads document
openclaw knowledge add ./research-paper.pdf \
--tags "AI,research" \
--auto-extract-claims
# OpenClaw automatically:# 1. Extracts text content# 2. Creates Memory Wiki claims with evidence# 3. Indexes for Active Memory retrieval# 4. Checks for contradictions with existing claims# Query across knowledge base and memory
openclaw infer text "What are the latest findings on transformer models?" \
--use-active-memory \
--use-memory-wiki
Troubleshooting
Gateway Won't Start (2026.3.7+)
Symptom: Error: gateway.auth.mode must be set
Fix:
openclaw config set gateway.auth.mode token
openclaw config set gateway.auth.token "$(openssl rand -hex 32)"
openclaw gateway restart
AI Only Chats, Can't Execute Commands (2026.3.2+)
Symptom: OpenClaw responds to questions but won't manage files or run commands
Fix:
# Check current profile
openclaw config get tools.profile
# Set to 'full' for complete toolset
openclaw config set tools.profile full
openclaw gateway restart
Model Authentication Errors
Symptom: Model provider not authenticated
Fix:
# Re-authenticate (2026.4+ method)
openclaw models auth login --provider openai
openclaw models auth login --provider anthropic
# Verify
openclaw models auth list
# Set default
openclaw config set model.default "claude-3-5-sonnet-20241022"
High API Costs
Solutions:
# 1. Enable fast mode for OpenAI/Anthropic (cheaper)
openclaw config set model.fast_mode true# 2. Use local models with Ollama
openclaw models auth login --provider ollama
openclaw config set model.default "llama3:70b"# 3. Set token limits
openclaw config set model.max_tokens 4000
# 4. Use Chinese domestic models (95% cost savings)
openclaw models auth login --provider deepseek
openclaw config set model.default "deepseek-chat"
Active Memory Not Working
Symptom: AI doesn't recall previous context
Fix:
# Enable Active Memory
openclaw config set memory.active.enabled true
openclaw config set memory.dreaming.enabled true# Force memory refresh
openclaw memory rebuild
# Check memory stats
openclaw memory stats
# Restart gateway
openclaw gateway restart
Important: This tutorial tracks v2026.4.14 stable. Some legacy content (old skill names, deprecated commands) remains for reference. Always verify against current openclaw --version and official docs.