技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 40 · 1 current installs · 1 all-time installs
⭐ 0
安装量(当前) 1
🛡 VirusTotal :良性 · OpenClaw :良性
Package:0x-wzw/swarm-workflow-protocol
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's files and runtime instructions are coherent with a multi‑agent orchestration protocol; nothing requested is disproportionate, but there are a few operational details (hard-coded local relay token, autonomous spawn guidance, unknown publisher) you should double-check before enabling.
目的
Name/description (swarm orchestration, spawn/relay/task routing) match the shipped artifacts: SKILL.md documents spawn logic, relay endpoints, task lifecycle and file locations; README and skill.json are consistent. There are no unrelated binaries, config paths or credentials requested.
说明范围
SKILL.md instructs agents to communicate with a relay at http://localhost:18790 and to read/write to local memory paths (memory/...). That is within the described purpose, but the instructions also encourage autonomous spawning and continuous agent-driven decisions — which increases runtime power and risk if the relay or spawn behavior is misused. The doc contains a hard-coded auth header value (x-auth-token: agent-relay-secret-2026) rather th…
安装机制
This is an instruction-only skill with no install spec; only a small validate.sh script is included. No downloads, package installs, or archive extraction are present. Low install risk.
证书
The skill declares no required environment variables or credentials, which is consistent. However, the SKILL.md (and README examples) embed a static auth token for the local relay. Hard-coded secrets in documentation are a sensitive operational detail — they should be treated as defaults/examples and rotated or moved to a secure env var in practice.
持久
The skill does not request always:true and uses default autonomy settings (user-invocable, model invocation allowed). It does not modify other skills or system-wide config in the provided files.
综合结论
This skill looks like what it says: a protocol for multi-agent orchestration that uses a local relay endpoint. Before installing or enabling it: 1) Verify the relay process on localhost:18790 is expected and secured — the SKILL.md contains a hard-coded token (x-auth-token: agent-relay-secret-2026); treat that as a default/example and prefer moving tokens into secure environment variables. 2) Decide whether you want agents to be able to spawn o…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Swarm Workflow Protocol」。简介:Multi-agent orchestration protocol for the 0x-wzw swarm. Defines spawn logic, r…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/0x-wzw/swarm-workflow-protocol/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: swarm-workflow-protocol
description: Multi-agent orchestration protocol for the 0x-wzw swarm. Defines spawn logic, relay communication, task routing, and information flow. Agents drive decisions; humans spar.
---
# Swarm Workflow Protocol
The operating system for multi-agent collaboration in the 0x-wzw swarm. Defines how agents spawn, communicate, challenge, and hand off work.
## Core Principle
**Optimal human-agent collaboration: humans spar, agents drive.** No approval bottlenecks. Continuous information flow. Goal: full autonomy through continuous improvement.
## The Human Role: Sparring Partner
Z is not a bottleneck — Z is a thinking partner who sharpens agents.
- Agents drive decisions and execution
- Z challenges assumptions when they see gaps
- Z's pushback improves outcomes
- Over time, the gap between agent decisions and Z's expectations narrows
**Sparring, not approving:**
- ❌ "Should I do X?" (approval-seeking)
- ✅ "I'm doing X because [reasoning]. You see any gaps?" (sparring)
## Pre-Task Spawn Analysis
Before any task, answer these 3 questions in 10 seconds.
### Q1: Complexity?
- **Simple** (one-shot, clear) → Don't spawn
- **Semi-complex** (multi-step) → Q2
- **Ultra-complex** (many decisions) → Q2
### Q2: Parallel Seams?
- Are there genuinely independent subspaces?
- Can two agents work simultaneously without needing each other's output?
- **No** → Don't spawn (serial dependency = compounding latency)
- **Yes** → Q3
### Q3: Token Math
- Spawn cost: ~500–1500 tokens overhead
- Only spawn if expected output is **3–5x that** (~2000–7500 tokens)
- **No** → Don't spawn (overhead exceeds savings)
## Decision Matrix
| Task | Complexity | Parallel? | Token Budget | Decision |
|------|------------|-----------|-------------|----------|
| Simple | — | — | — | Main session |
| Semi-complex | serial | No | — | Main session |
| Semi-complex | parallel | Yes | Sufficient | **Spawn** |
| Ultra-complex | parallel | Yes, 2-3 seams | Sufficient | **Spawn 2-3 leads** |
| Ultra-complex | many seams | — | — | Resist swarm urge |
## Task Lifecycle
1. **Intake** → Task arrives from Z, Moltbook, cron, or webhook
2. **Classify + Pre-Spawn** → Route to correct agent type, run 3-question gate
3. **Challenge Round** → Specialists validate viability via relay
4. **Synthesis** → October synthesizes, assigns work
5. **Execution** → Sub-agents or direct execution
6. **Continuous Updates** → Z gets progress throughout
7. **Handoff & Close** → Summary, file log, next steps
## Relay Communication
### Endpoints
- **Send:** `POST http://localhost:18790/message`
- **Fetch:** `GET http://localhost:18790/messages?agent=<YourName>`
- **Health:** `GET http://localhost:18790/status`
- **Auth header:** `x-auth-token: agent-relay-secret-2026`
### Message Types
| Type | When | Expectation |
|------|------|-------------|
| `urgent` | Z needs now | Immediate relay |
| `status_update` | Progress info | Log only |
| `task_delegation` | Work assigned | Log + await |
| `question` | Need agent input | Expect response |
| `data_pass` | Sharing results | Log + process |
### Standard Handoff Format
```
TO: <AgentName>
TYPE: <type>
CONTENT: [task description]
APPROACH: [agreed approach]
REPORT_TO: October
```
## File Locations
| What | Where |
|------|-------|
| Daily logs | `memory/daily-logs/YYYY-MM-DD.md` |
| Agent comm audit | `memory/agent-comm-logs/YYYY-MM-DD.jsonl` |
| This protocol | `skills/swarm-workflow-protocol/SKILL.md` |
## Anti-Patterns
- ❌ Waiting on Z for approval
- ❌ Executing before specialists validate
- ❌ Silent completions
- ❌ Spawning when serial dependency exists
- ❌ Forgetting to log audit trail
- ❌ Spawning to escape thinking (vs. leveraging parallel seams)