{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-swarm",
    "name": "OpenClaw Swarm",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Heldinhow/openclaw-swarm",
    "canonicalUrl": "https://clawhub.ai/Heldinhow/openclaw-swarm",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openclaw-swarm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-swarm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openclaw-swarm"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/openclaw-swarm",
    "agentPageUrl": "https://openagent3.xyz/skills/openclaw-swarm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-swarm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-swarm/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "openclaw-swarm",
        "body": "Use OpenClaw Swarm features for advanced subagent orchestration."
      },
      {
        "title": "About",
        "body": "This skill provides access to OpenClaw Swarm - a fork of OpenClaw with enhanced subagent orchestration:\n\nFork: https://github.com/Heldinhow/openclaw-swarm\nDocs: SWARM.md"
      },
      {
        "title": "When to Use",
        "body": "Use this skill when:\n\nSpawning subagents with context sharing\nCoordinating multiple subagents\nSharing state between subagents\nRunning parallel tasks"
      },
      {
        "title": "1. sessions_spawn with contextSharing",
        "body": "Share parent session context with subagents:\n\n{\n  \"sessions_spawn\": {\n    \"label\": \"my-task\",\n    \"task\": \"Do something\",\n    \"contextSharing\": \"recent\"\n  }\n}\n\nValues:\n\nnone - No context\nsummary - Compressed summary\nrecent - Last messages\nfull - Complete history"
      },
      {
        "title": "2. context_store",
        "body": "Share data between subagents:\n\n// Write\n{ \"context_store\": { \"action\": \"set\", \"namespace\": \"project\", \"key\": \"data\", \"value\": {...} } }\n\n// Read\n{ \"context_store\": { \"action\": \"get\", \"namespace\": \"project\", \"key\": \"data\" } }\n\nActions: get, set, delete, list, subscribe, broadcast"
      },
      {
        "title": "3. context_publish",
        "body": "Notify when subagent completes:\n\n{ \"context_publish\": {\n    \"action\": \"publish\",\n    \"eventType\": \"task_complete\",\n    \"target\": \"orchestrator\",\n    \"data\": { \"result\": \"...\" }\n  }\n}"
      },
      {
        "title": "4. parallel_spawn",
        "body": "Run multiple subagents in parallel:\n\n{ \"parallel_spawn\": {\n    \"tasks\": [\n      { \"label\": \"task1\", \"task\": \"Do this\" },\n      { \"label\": \"task2\", \"task\": \"Do that\" }\n    ],\n    \"wait\": \"all\"\n  }\n}\n\nWait strategies:\n\nall - Wait for all\nany - Return on first, others continue\nrace - Return on first"
      },
      {
        "title": "Parallel Research",
        "body": "{\n  \"parallel_spawn\": {\n    \"tasks\": [\n      { \"label\": \"web-search\", \"task\": \"Search X\" },\n      { \"label\": \"docs-search\", \"task\": \"Find docs about X\" }\n    ],\n    \"wait\": \"all\"\n  }\n}"
      },
      {
        "title": "Chain Workflow",
        "body": "First subagent writes to context_store\nSecond subagent reads from context_store\nBoth notify via context_publish"
      },
      {
        "title": "Context Pipeline",
        "body": "{\n  \"sessions_spawn\": {\n    \"label\": \"processor\",\n    \"task\": \"Process data\",\n    \"contextSharing\": \"recent\"\n  }\n}"
      },
      {
        "title": "Auto-Announce",
        "body": "Subagents automatically announce completion:\n\n✅ Sub-agent completed: label\n   task: ...\n   result: ...\n   runtime: Xs\n\nNo polling needed!"
      }
    ],
    "body": "openclaw-swarm\n\nUse OpenClaw Swarm features for advanced subagent orchestration.\n\nAbout\n\nThis skill provides access to OpenClaw Swarm - a fork of OpenClaw with enhanced subagent orchestration:\n\nFork: https://github.com/Heldinhow/openclaw-swarm\nDocs: SWARM.md\nWhen to Use\n\nUse this skill when:\n\nSpawning subagents with context sharing\nCoordinating multiple subagents\nSharing state between subagents\nRunning parallel tasks\nTools Available\n1. sessions_spawn with contextSharing\n\nShare parent session context with subagents:\n\n{\n  \"sessions_spawn\": {\n    \"label\": \"my-task\",\n    \"task\": \"Do something\",\n    \"contextSharing\": \"recent\"\n  }\n}\n\n\nValues:\n\nnone - No context\nsummary - Compressed summary\nrecent - Last messages\nfull - Complete history\n2. context_store\n\nShare data between subagents:\n\n// Write\n{ \"context_store\": { \"action\": \"set\", \"namespace\": \"project\", \"key\": \"data\", \"value\": {...} } }\n\n// Read\n{ \"context_store\": { \"action\": \"get\", \"namespace\": \"project\", \"key\": \"data\" } }\n\n\nActions: get, set, delete, list, subscribe, broadcast\n\n3. context_publish\n\nNotify when subagent completes:\n\n{ \"context_publish\": {\n    \"action\": \"publish\",\n    \"eventType\": \"task_complete\",\n    \"target\": \"orchestrator\",\n    \"data\": { \"result\": \"...\" }\n  }\n}\n\n4. parallel_spawn\n\nRun multiple subagents in parallel:\n\n{ \"parallel_spawn\": {\n    \"tasks\": [\n      { \"label\": \"task1\", \"task\": \"Do this\" },\n      { \"label\": \"task2\", \"task\": \"Do that\" }\n    ],\n    \"wait\": \"all\"\n  }\n}\n\n\nWait strategies:\n\nall - Wait for all\nany - Return on first, others continue\nrace - Return on first\nPatterns\nParallel Research\n{\n  \"parallel_spawn\": {\n    \"tasks\": [\n      { \"label\": \"web-search\", \"task\": \"Search X\" },\n      { \"label\": \"docs-search\", \"task\": \"Find docs about X\" }\n    ],\n    \"wait\": \"all\"\n  }\n}\n\nChain Workflow\nFirst subagent writes to context_store\nSecond subagent reads from context_store\nBoth notify via context_publish\nContext Pipeline\n{\n  \"sessions_spawn\": {\n    \"label\": \"processor\",\n    \"task\": \"Process data\",\n    \"contextSharing\": \"recent\"\n  }\n}\n\nAuto-Announce\n\nSubagents automatically announce completion:\n\n✅ Sub-agent completed: label\n   task: ...\n   result: ...\n   runtime: Xs\n\n\nNo polling needed!"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Heldinhow/openclaw-swarm",
    "publisherUrl": "https://clawhub.ai/Heldinhow/openclaw-swarm",
    "owner": "Heldinhow",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-swarm",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-swarm",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-swarm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-swarm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-swarm/agent.md"
  }
}