Install
$ agentstack add skill-kaibuildsai-agent-skills-walkie-openclaw-adapter ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Run Walkie + OpenClaw in 托管模式(v2): stable, observable, and low-noise.
Core rules (must follow)
- Single reader: only one process may run
walkie read --wait. - Single sender path: all outbound messages must go through adapter path (no manual direct send in production mode).
- Audit is source of truth: group sync reads audit stream (
recv/send/error) with cursor dedupe. - Structured protocol first: prefer JSON task/result envelopes over free text.
Setup
npm install -g walkie-sh
walkie --version
cp skills/walkie-openclaw-adapter/references/config.example.json skills/walkie-openclaw-adapter/references/config.json
Init confirmation (required)
Before first run, explicitly confirm with user:
- Which Walkie channel to use (
channel) - Which chat/group should receive callback sync (platform + chat id)
Do not assume callback destination. Bind it only after user confirms.
Edit config.json:
channelautoReply/autoExecuteautoReplyMode(ack-taskif needed)policy.levels(L1/L2/L3)policy.stopConditions(maxRounds / maxTaskMinutes / maxConsecutiveErrors)syncHookCmd+syncGroupId
Self-check (required after install)
After editing config.json, run the self-check script to verify all requirements:
node skills/walkie-openclaw-adapter/scripts/self-check.js
Acceptance criteria:
- Exit 0: All checks passed ✅ → Ready for production
- Exit 1: Warnings only ⚠️ → OK to proceed, but review warnings
- Exit 2: Critical failures ❌ → Must fix before production
Critical checks:
- Config valid + channel set
- Audit log writable
- Single reader enforcement (no duplicate processes)
- System service supervision (systemd/launchd) configured
- Walkie CLI available
If any critical check fails, do not run adapter in production mode. Fix issues first or inform user of risks.
Run (dev)
node skills/walkie-openclaw-adapter/scripts/adapter.js skills/walkie-openclaw-adapter/references/config.json
Run (recommended prod)
- Linux: use
systemdto supervise adapter - macOS: use
launchdto supervise adapter - Keep
cron/timerforaudit-forwarder.pyonly (sync/announce), not as primary process supervision
Install systemd service (Linux)
# Copy and edit service file
cp skills/walkie-openclaw-adapter/references/walkie-adapter.service.example ~/.config/systemd/user/walkie-adapter.service
# Edit and adjust paths:
# - WorkingDirectory: your workspace path
# - ExecStart: path to node + adapter.js path
# - Environment: PATH to your node (e.g., ~/.nvm/versions/node/v22.22.0/bin)
# Enable and start
systemctl --user daemon-reload
systemctl --user enable walkie-adapter
systemctl --user start walkie-adapter
# Check status
systemctl --user status walkie-adapter
Why systemd matters:
- Auto-restart on crash (your previous issue)
- Survives reboot
- Proper logging via journalctl
Group sync format (fixed)
Use concise 3-line updates:
[walkie][task_id] 收到: ...[walkie][task_id] 动作: ...[walkie][task_id] 结果: OK/ERR/WAIT ...
Protocol (minimum fields)
{"type":"task","task_id":"t-001","intent":"summarize_links","args":{},"trace_id":"tr-001","ts":"..."}
{"type":"result","task_id":"t-001","ok":true,"output":{},"trace_id":"tr-001","ts":"..."}
Decision policy
- L1/L2 auto-execute: routine chat, retrieval, summarize, translation, progress updates.
- L3 human approval: irreversible/delete/publish/payment/sensitive data externalization.
Anti-loop safety
- event dedupe key
- task TTL/max rounds
- ignore self-origin loops
- legal state transitions only
- cooldown/rate limit
- circuit breaker after repeated failures
Privacy and repo hygiene
Never commit runtime files:
references/config.jsonreferences/state.jsonreferences/audit.logreferences/audit.cursor
Troubleshooting
- Missing messages -> check for extra readers first.
- Sync delay -> check forwarder schedule and cursor state.
- Adapter exits -> check supervisor logs (systemd/launchd) + audit error lines.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: kaibuildsai
- Source: kaibuildsai/agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.