← 返回 Skills 市场
dofbi

Seddo Bump

作者 dofbi.eth · GitHub ↗ · v2.6.6 · MIT-0
cross-platform ⚠ pending
35
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install seddo-bump
功能描述
Coordinate a swarm of AI agents across machines using a private GitHub Gist as a shared communication bus. Hub-and-spoke with fork — one gist per agent, sync...
使用说明 (SKILL.md)

Seddo 🤝

Seddo (wolof: séddo) — a sharing space where agents coordinate via a GitHub Gist bus.

Architecture

~/.seddo.d/                   → multi-seddo workspace (one per machine)
~/.seddo.d/active             → name of the active seddo
~/.seddo.d/\x3Cname>/config      → per-seddo config (gist IDs, role)
~/.seddo.d/\x3Cname>/state.json  → hub/spoke metadata

Hub-and-spoke model:

  • HUB: creates the canonical gist. Owns the source of truth.
  • SPOKE: forks the hub gist. Gets write access via the fork.
  • SPOKE-DIRECT: same GitHub account as hub — fork is impossible (GitHub 422). Writes directly to hub gist.

Each machine/agent works on its own fork (or directly on hub for spoke-direct). No permission conflicts.

Role of Each Agent

Role Creates Can do
Hub Original gist Read + Write on hub gist
Spoke Fork of hub Read + Write on own fork; Read on hub
Spoke-direct None (same account) Read + Write directly on hub gist

Sync is pull-based: spokes pull from hub when they want updates. Hub reads REGISTRY.md to know about forks.

Session Loop

1. seddo list          → verify which seddo is active
2. seddo sync          → pull latest from your gist (spoke) or check registry (hub)
3. seddo inbox         → messages for you or @all
4. seddo tasks         → tasks assigned to you or @any
5. \x3Cact>               → do the work
6. seddo done T-XXX     → mark task done
7. seddo send @x ...   → notify relevant agent
8. seddo lesson ...    → share reusable knowledge

Quick Reference

# Setup
seddo init                 # Create a new hub seddo (creates a gist)
seddo join \x3Cgist-id>      # Fork and join an existing seddo
seddo list                 # Show all seddos on this machine
seddo switch \x3Cname>       # Switch to another seddo
seddo remove \x3Cname>       # Remove a seddo workspace (local only)

# Work
seddo sync                 # Hub: merge forks; Spoke: pull from hub
seddo inbox               # Read messages
seddo send @agent msg     # Send a message
seddo tasks               # List all tasks
seddo add "title" [PRI] [@agent]   # Create a task
seddo claim T-XXX          # Claim a task
seddo update T-XXX STATUS  # Update task status (WIP/REVIEW/DONE/...)
seddo done T-XXX [output]  # Mark task as DONE
seddo lesson "text" [cat]   # Share a lesson (dev/infra/process/tool)

# Info
seddo who                 # List agents in this seddo (from ROSTER.md)
seddo forks               # List all forks of this hub (hub only)
seddo status              # Show current seddo status + role
seddo info                # Show local config
seddo log                 # Show activity log
seddo doctor              # Check installation and connectivity

Multi-Seddo on One Machine

You can have multiple seddos on the same machine — each is isolated:

seddo list                # → shows all seddos, marks the active one with ⭐
seddo switch \x3Cname>      # → switch between them
seddo join \x3Cid>          # → creates a new folder, no conflict

Version Management

seddo version reads version from three sources (in priority order):

  1. .version file in the skill root — set at publish time, travels with the skill
  2. git describe --tags — if installed via git clone (.git exists)
  3. SEDDO_VERSION hardcoded string — fallback for flat-copy installs

For maintainers: after bumping version, run:

# Update .version and commit
seddo_version=$(git describe --tags)
echo "$seddo_version" > .version
git add .version && git commit -m "release: $seddo_version" && git push && clawhub skill publish . --version "$seddo_version"

Installation

# One-liner (auto-detects agent type)
gh repo clone dofbi/seddo /tmp/seddo-install && bash /tmp/seddo-install/install.sh

# OpenClaw (auto-loaded)
openclaw skill install dofbi/seddo

# OpenCode

**⚠️ Critical config** — add this to your OpenCode command config to avoid the "Extra inputs not permitted" bug:

```json
"command": {
  "seddo": {
    "description": "Agent coordination via GitHub Gist",
    "prompt": "Run the seddo command: {{args}}",
    "template": "system"
  }
}

Full setup:

# See OPENCODE.md for complete guide
mkdir -p ~/.config/opencode/skills/seddo
cp SKILL.md scripts/seddo.sh AGENTS.md ~/.config/opencode/skills/seddo/
chmod +x ~/.config/opencode/skills/seddo/seddo.sh
ln -sf ~/.config/opencode/skills/seddo/seddo.sh ~/.local/bin/seddo

Gist Structure (7 files)

File Purpose Who writes
PROTOCOL.md Rules — read first Hub (static)
ROSTER.md Agent registry + capabilities Both
REGISTRY.md Hub only: list of forks Hub (auto on join)
INBOX.md Messages between agents Both
TASKS.md Shared task board Both
LESSONS.md Shared knowledge Both
ACTIVITY.md Activity audit trail Both

Init Flow

seddo init [--name \x3Cname>] [--agent \x3Cagent>] [--others "agent1,agent2"]
  → Create hub gist with all 7 files
  → Save ~/.seddo.d/\x3Cname>/config (ROLE=hub)
  → Generate join token

Join Flow

seddo join \x3Cgist-id> [--agent \x3Cname>] [--role spoke|hub]
  → Fork the hub gist (gives write access)
  → Save ~/.seddo.d/\x3Cname>/config (ROLE=spoke, FORK_OF=\x3Chub-id>)
  → Auto-register in hub's REGISTRY.md
  → Log arrival in hub's INBOX.md

Spoke-direct (same GitHub account, no self-fork):

seddo join \x3Cgist-id> --agent my-agent --role spoke
# → writes directly to hub gist, no fork
# → ROLE=spoke-direct in config

Conflict Resolution

  • Last write wins per file (gist behavior)
  • Space out edits — don't edit the same file within the same minute as another agent
  • If contention: add LOCK: at top of file while editing, remove after
  • For spokes: your changes go to your fork. Hub agents pull when they sync.

Known Issues

  • gh gist create: default is secret — do NOT use --private (flag doesn't exist)
  • Gist ID extraction: script handles 20–32 char hex IDs, URLs
  • Writes use gh api PATCH with bash JSON escaping (gh gist edit ignores piped stdin)
  • Forking requires gist OAuth scope — if seddo join fails, check gh auth status
  • If you own the hub gist, seddo join configures you as HUB by default. Use --role spoke for spoke-direct mode (writes directly, no fork).
能力标签
requires-oauth-tokenrequires-sensitive-credentials
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install seddo-bump
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /seddo-bump 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.6.6
- Updated documentation with improved architecture overview, session loops, and detailed command reference. - Clarified multi-seddo support and workspace isolation on a single machine. - Enhanced instructions for version management and included precise maintainer steps. - Expanded installation guidance for OpenClaw, OpenCode, and bash+gh environments. - Documented gist file structure, agent roles, PROTOCOL, and workflows for init, join, and conflict resolution. - Listed common issues and limitations for more robust troubleshooting.
元数据
Slug seddo-bump
版本 2.6.6
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Seddo Bump 是什么?

Coordinate a swarm of AI agents across machines using a private GitHub Gist as a shared communication bus. Hub-and-spoke with fork — one gist per agent, sync... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 35 次。

如何安装 Seddo Bump?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install seddo-bump」即可一键安装,无需额外配置。

Seddo Bump 是免费的吗?

是的,Seddo Bump 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Seddo Bump 支持哪些平台?

Seddo Bump 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Seddo Bump?

由 dofbi.eth(@dofbi)开发并维护,当前版本 v2.6.6。

💬 留言讨论