Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
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.
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.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
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.
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.
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.
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.
data/tasks.json stores the canonical task list. references/collaboration-guidelines.md (if present) explains how the community prioritizes items and runs handoffs.
GitHub: https://github.com/CrimsonDevil333333/collaboration-helper ClawHub: https://www.clawhub.ai/skills/collaboration-helper
Messaging, meetings, inboxes, CRM, and teammate communication surfaces.
Largest current source with strong distribution and engagement signals.