Overview
- Skill Key
- dalomeve/openclaw-growth-pack
- Author
- dalomeve
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/dalomeve/openclaw-growth-pack
- Latest Commit SHA
- 3d653b9b0dc377b656601c588334ef035b0c4312
name: openclaw growth pack description: Turn a fresh OpenClaw install into a reliable execution agent. Use when users report "asks step by step only", stalls mid task, token mismatch, or model routing/auth failures. Apply a production onboarding baseline: model routing, gateway token consistency, anti stall heartbeat, lightweight autonomy loop, and verification checklist.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Openclaw Growth Pack 技能。 若已安装,则直接安装 Openclaw Growth Pack 技能。
---
name: openclaw-growth-pack
description: Turn a fresh OpenClaw install into a reliable execution agent. Use when users report "asks step-by-step only", stalls mid-task, token mismatch, or model routing/auth failures. Apply a production onboarding baseline: model routing, gateway token consistency, anti-stall heartbeat, lightweight autonomy loop, and verification checklist.
---
# OpenClaw Growth Pack
Apply this skill to bootstrap a new OpenClaw instance into a stable, task-completing setup.
Use this workflow in order:
1. Align model routing and provider endpoint.
2. Align gateway token values across runtime surfaces.
3. Install anti-stall execution contract in `AGENTS.md` and `HEARTBEAT.md`.
4. Enable lightweight periodic self-check.
5. Run verification gates before calling setup complete.
Keep changes minimal, auditable, and reversible.
## 1) Model Routing Baseline
Use one source of truth in `~/.openclaw/openclaw.json`:
```json
{
"models": {
"mode": "merge",
"providers": {
"bailian": {
"baseUrl": "https://coding.dashscope.aliyuncs.com/v1",
"apiKey": "YOUR_CODING_PLAN_KEY"
}
}
},
"agents": {
"defaults": {
"model": {
"primary": "bailian/qwen3-coder-plus"
}
}
}
}
```
Rules:
- Do not keep `coding-intl.dashscope.aliyuncs.com` in active config.
- Do not duplicate provider definitions in multiple files unless strictly needed.
- If `~/.openclaw/agents/main/agent/models.json` exists, remove conflicting provider overrides.
## 2) Gateway Token Consistency
Keep all token surfaces aligned:
- `gateway.auth.token` in `openclaw.json`
- `gateway.remote.token` in `openclaw.json` (if present)
- Dashboard Control UI token (paste the same value)
PowerShell audit:
```powershell
$cfg = Get-Content "$HOME/.openclaw/openclaw.json" -Raw | ConvertFrom-Json
$auth = $cfg.gateway.auth.token
$remote = $cfg.gateway.remote.token
"auth.token = $auth"
"remote.token = $remote"
if ($remote -and $auth -ne $remo...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.