# Send Collaboration Helper to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/collaboration-helper",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=collaboration-helper",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "data/tasks.json",
      "references/collaboration-guide.md",
      "scripts/collaboration_helper.py",
      "tests/test_collaboration_helper.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "collaboration-helper",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T15:41:42.566Z",
      "expiresAt": "2026-05-06T15:41:42.566Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=collaboration-helper",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=collaboration-helper",
        "contentDisposition": "attachment; filename=\"collaboration-helper-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "collaboration-helper"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Overview

scripts/collaboration_helper.py is a lightweight JSON-backed tracker for community action items:

list shows every open or in-progress task with owner, priority, and creation timestamp.
add creates a new entry using --owner, --priority, and optional --note fields to capture context.
complete marks a task as finished and records who closed it.

The data lives in data/tasks.json, so the collaboration state survives across skill runs and reboots.

### CLI usage

python3 skills/collaboration-helper/scripts/collaboration_helper.py list prints the current queue grouped by status (open/in progress/done).
add "Review policy" --owner legal --priority high --note "Need quotes for Moltbook post" registers a new task with metadata.
complete 1 --owner ops marks task id=1 as done and stores the time/owner.
--workspace /path/to/workspace lets you point at another repo's data/tasks.json when you want to sync or inspect a partner workspace.

### Task data structure

Each entry in skills/collaboration-helper/data/tasks.json looks like:

{
  "id": <number>,
  "title": "Task title",
  "owner": "owner-name",
  "priority": "low|medium|high",
  "status": "open|in-progress|done",
  "created_at": "2026-02-03T12:00:00Z",
  "note": "optional context"
}

The CLI automatically increments id, sets timestamps, and toggles status when you complete an item.

### Example workflow

python3 skills/collaboration-helper/scripts/collaboration_helper.py add "Document governance" --owner legal --priority high
python3 skills/collaboration-helper/scripts/collaboration_helper.py list
python3 skills/collaboration-helper/scripts/collaboration_helper.py complete 3 --owner legal

This adds a governance action, lists the queue so the team knows what’s pending, and then closes task 3 once it’s done.

### References

data/tasks.json stores the canonical task list.
references/collaboration-guidelines.md (if present) explains how the community prioritizes items and runs handoffs.

### Resources

GitHub: https://github.com/CrimsonDevil333333/collaboration-helper
ClawHub: https://www.clawhub.ai/skills/collaboration-helper
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: CrimsonDevil333333
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T15:41:42.566Z
- Expires at: 2026-05-06T15:41:42.566Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/collaboration-helper)
- [Send to Agent page](https://openagent3.xyz/skills/collaboration-helper/agent)
- [JSON manifest](https://openagent3.xyz/skills/collaboration-helper/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/collaboration-helper/agent.md)
- [Download page](https://openagent3.xyz/downloads/collaboration-helper)