← All skills
Tencent SkillHub · Communication & Collaboration

Collaboration Helper

Track action items and coordination signals for the community, including quick task creation, status checks, and handoff notes. Use this when you need to log a collaborative task or check what everyone is currently working on.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Track action items and coordination signals for the community, including quick task creation, status checks, and handoff notes. Use this when you need to log a collaborative task or check what everyone is currently working on.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, data/tasks.json, references/collaboration-guide.md, scripts/collaboration_helper.py, tests/test_collaboration_helper.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 6 sections Open source page

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

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs2 Scripts1 Config
  • SKILL.md Primary doc
  • README.md Docs
  • references/collaboration-guide.md Docs
  • scripts/collaboration_helper.py Scripts
  • tests/test_collaboration_helper.py Scripts
  • data/tasks.json Config