{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-weave",
    "name": "Agent Weave",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/gl813788-byte/agent-weave",
    "canonicalUrl": "https://clawhub.ai/gl813788-byte/agent-weave",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-weave",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-weave",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "AGENT_SYSTEM.md",
      "CHANGELOG.md",
      "README.md",
      "RELEASE.md",
      "SKILL.md",
      "TEST_REPORT.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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/agent-weave"
    },
    "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/agent-weave",
    "agentPageUrl": "https://openagent3.xyz/skills/agent-weave/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-weave/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-weave/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Agent-Weave",
        "body": "Master-Worker Agent Cluster with parallel task execution and secure parent-child communication."
      },
      {
        "title": "When to Use This Skill",
        "body": "Use agent-weave when you need to:\n\nBuild distributed agent systems with parallel processing\nOrchestrate multiple agents working together\nImplement MapReduce-style workflows\nScale task execution across worker agents\nBuild master-worker architectures"
      },
      {
        "title": "Installation",
        "body": "npm install agent-weave"
      },
      {
        "title": "Basic Usage",
        "body": "const { Loom } = require('agent-weave');\n\n// Create cluster\nconst loom = new Loom();\nconst master = loom.createMaster('my-cluster');\n\n// Create workers\nconst workers = loom.spawnWorkers(master.id, 5, async (data) => {\n  // Process data\n  return { result: data * 2 };\n});\n\n// Execute tasks\nconst results = await master.dispatch([1, 2, 3, 4, 5]);\nconsole.log(results);"
      },
      {
        "title": "CLI Commands",
        "body": "# Create master\nweave loom create-master --name my-cluster\n\n# Spawn workers\nweave loom spawn --parent <master-id> --count 5\n\n# List agents\nweave loom list --tree"
      },
      {
        "title": "Features",
        "body": "Master-Worker Architecture: Orchestrate multiple worker agents\nParallel Execution: Distribute tasks across workers\nSecure Communication: Parent-child relationship enforcement\nMapReduce Support: Built-in map-reduce workflows\nAuto-scaling: Dynamic worker management\nEvent-driven: EventEmitter-based communication"
      },
      {
        "title": "Loom",
        "body": "Factory for creating and managing agents."
      },
      {
        "title": "Master",
        "body": "Manages a cluster of worker agents."
      },
      {
        "title": "Worker",
        "body": "Executes tasks assigned by the master."
      },
      {
        "title": "Thread",
        "body": "Secure communication layer between agents."
      },
      {
        "title": "Tapestry",
        "body": "Task orchestration engine for MapReduce workflows."
      },
      {
        "title": "License",
        "body": "MIT"
      }
    ],
    "body": "Agent-Weave\n\nMaster-Worker Agent Cluster with parallel task execution and secure parent-child communication.\n\nWhen to Use This Skill\n\nUse agent-weave when you need to:\n\nBuild distributed agent systems with parallel processing\nOrchestrate multiple agents working together\nImplement MapReduce-style workflows\nScale task execution across worker agents\nBuild master-worker architectures\nQuick Start\nInstallation\nnpm install agent-weave\n\nBasic Usage\nconst { Loom } = require('agent-weave');\n\n// Create cluster\nconst loom = new Loom();\nconst master = loom.createMaster('my-cluster');\n\n// Create workers\nconst workers = loom.spawnWorkers(master.id, 5, async (data) => {\n  // Process data\n  return { result: data * 2 };\n});\n\n// Execute tasks\nconst results = await master.dispatch([1, 2, 3, 4, 5]);\nconsole.log(results);\n\nCLI Commands\n# Create master\nweave loom create-master --name my-cluster\n\n# Spawn workers\nweave loom spawn --parent <master-id> --count 5\n\n# List agents\nweave loom list --tree\n\nFeatures\nMaster-Worker Architecture: Orchestrate multiple worker agents\nParallel Execution: Distribute tasks across workers\nSecure Communication: Parent-child relationship enforcement\nMapReduce Support: Built-in map-reduce workflows\nAuto-scaling: Dynamic worker management\nEvent-driven: EventEmitter-based communication\nAPI Reference\nLoom\n\nFactory for creating and managing agents.\n\nMaster\n\nManages a cluster of worker agents.\n\nWorker\n\nExecutes tasks assigned by the master.\n\nThread\n\nSecure communication layer between agents.\n\nTapestry\n\nTask orchestration engine for MapReduce workflows.\n\nLicense\n\nMIT"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/gl813788-byte/agent-weave",
    "publisherUrl": "https://clawhub.ai/gl813788-byte/agent-weave",
    "owner": "gl813788-byte",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-weave",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-weave",
    "agentUrl": "https://openagent3.xyz/skills/agent-weave/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-weave/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-weave/agent.md"
  }
}