{
  "schemaVersion": "1.0",
  "item": {
    "slug": "collaboration-helper",
    "name": "Collaboration Helper",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/CrimsonDevil333333/collaboration-helper",
    "canonicalUrl": "https://clawhub.ai/CrimsonDevil333333/collaboration-helper",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/collaboration-helper",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=collaboration-helper",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "data/tasks.json",
      "references/collaboration-guide.md",
      "scripts/collaboration_helper.py",
      "tests/test_collaboration_helper.py"
    ],
    "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/collaboration-helper"
    },
    "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/collaboration-helper",
    "agentPageUrl": "https://openagent3.xyz/skills/collaboration-helper/agent",
    "manifestUrl": "https://openagent3.xyz/skills/collaboration-helper/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/collaboration-helper/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": "Overview",
        "body": "scripts/collaboration_helper.py is a lightweight JSON-backed tracker for community action items:\n\nlist shows every open or in-progress task with owner, priority, and creation timestamp.\nadd creates a new entry using --owner, --priority, and optional --note fields to capture context.\ncomplete marks a task as finished and records who closed it.\n\nThe data lives in data/tasks.json, so the collaboration state survives across skill runs and reboots."
      },
      {
        "title": "CLI usage",
        "body": "python3 skills/collaboration-helper/scripts/collaboration_helper.py list prints the current queue grouped by status (open/in progress/done).\nadd \"Review policy\" --owner legal --priority high --note \"Need quotes for Moltbook post\" registers a new task with metadata.\ncomplete 1 --owner ops marks task id=1 as done and stores the time/owner.\n--workspace /path/to/workspace lets you point at another repo's data/tasks.json when you want to sync or inspect a partner workspace."
      },
      {
        "title": "Task data structure",
        "body": "Each entry in skills/collaboration-helper/data/tasks.json looks like:\n\n{\n  \"id\": <number>,\n  \"title\": \"Task title\",\n  \"owner\": \"owner-name\",\n  \"priority\": \"low|medium|high\",\n  \"status\": \"open|in-progress|done\",\n  \"created_at\": \"2026-02-03T12:00:00Z\",\n  \"note\": \"optional context\"\n}\n\nThe CLI automatically increments id, sets timestamps, and toggles status when you complete an item."
      },
      {
        "title": "Example workflow",
        "body": "python3 skills/collaboration-helper/scripts/collaboration_helper.py add \"Document governance\" --owner legal --priority high\npython3 skills/collaboration-helper/scripts/collaboration_helper.py list\npython3 skills/collaboration-helper/scripts/collaboration_helper.py complete 3 --owner legal\n\nThis adds a governance action, lists the queue so the team knows what’s pending, and then closes task 3 once it’s done."
      },
      {
        "title": "References",
        "body": "data/tasks.json stores the canonical task list.\nreferences/collaboration-guidelines.md (if present) explains how the community prioritizes items and runs handoffs."
      },
      {
        "title": "Resources",
        "body": "GitHub: https://github.com/CrimsonDevil333333/collaboration-helper\nClawHub: https://www.clawhub.ai/skills/collaboration-helper"
      }
    ],
    "body": "Collaboration Helper\nOverview\n\nscripts/collaboration_helper.py is a lightweight JSON-backed tracker for community action items:\n\nlist shows every open or in-progress task with owner, priority, and creation timestamp.\nadd creates a new entry using --owner, --priority, and optional --note fields to capture context.\ncomplete marks a task as finished and records who closed it.\n\nThe data lives in data/tasks.json, so the collaboration state survives across skill runs and reboots.\n\nCLI usage\npython3 skills/collaboration-helper/scripts/collaboration_helper.py list prints the current queue grouped by status (open/in progress/done).\nadd \"Review policy\" --owner legal --priority high --note \"Need quotes for Moltbook post\" registers a new task with metadata.\ncomplete 1 --owner ops marks task id=1 as done and stores the time/owner.\n--workspace /path/to/workspace lets you point at another repo's data/tasks.json when you want to sync or inspect a partner workspace.\nTask data structure\n\nEach entry in skills/collaboration-helper/data/tasks.json looks like:\n\n{\n  \"id\": <number>,\n  \"title\": \"Task title\",\n  \"owner\": \"owner-name\",\n  \"priority\": \"low|medium|high\",\n  \"status\": \"open|in-progress|done\",\n  \"created_at\": \"2026-02-03T12:00:00Z\",\n  \"note\": \"optional context\"\n}\n\n\nThe CLI automatically increments id, sets timestamps, and toggles status when you complete an item.\n\nExample workflow\npython3 skills/collaboration-helper/scripts/collaboration_helper.py add \"Document governance\" --owner legal --priority high\npython3 skills/collaboration-helper/scripts/collaboration_helper.py list\npython3 skills/collaboration-helper/scripts/collaboration_helper.py complete 3 --owner legal\n\n\nThis adds a governance action, lists the queue so the team knows what’s pending, and then closes task 3 once it’s done.\n\nReferences\ndata/tasks.json stores the canonical task list.\nreferences/collaboration-guidelines.md (if present) explains how the community prioritizes items and runs handoffs.\nResources\nGitHub: https://github.com/CrimsonDevil333333/collaboration-helper\nClawHub: https://www.clawhub.ai/skills/collaboration-helper"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/CrimsonDevil333333/collaboration-helper",
    "publisherUrl": "https://clawhub.ai/CrimsonDevil333333/collaboration-helper",
    "owner": "CrimsonDevil333333",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/collaboration-helper",
    "downloadUrl": "https://openagent3.xyz/downloads/collaboration-helper",
    "agentUrl": "https://openagent3.xyz/skills/collaboration-helper/agent",
    "manifestUrl": "https://openagent3.xyz/skills/collaboration-helper/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/collaboration-helper/agent.md"
  }
}