4.6k★collaboration-helper – OpenClaw Skill
collaboration-helper is an OpenClaw Skills integration for data analytics workflows. 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 Snapshot
| name | collaboration-helper |
| description | 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. OpenClaw Skills integration. |
| owner | crimsondevil333333 |
| repository | crimsondevil333333/collaboration-helper |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @crimsondevil333333/collaboration-helper |
| last updated | Feb 7, 2026 |
Maintainer

crimsondevil333333
Maintains collaboration-helper in the OpenClaw Skills directory.
View GitHub profilename: collaboration-helper description: 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.
Collaboration Helper
Overview
t scripts/collaboration_helper.py` acts as a lightweight team tracker:
listshows all open/in-progress tasks with owners, priorities, and creation timestamps.addlets you capture a new action item with an owner, priority, and optional context.completemarks a task as finished.
The data is stored in data/tasks.json, so your collaboration state survives multiple skill runs.
Resources
Collaboration Helper
Collaboration Helper is your lightweight task tracker for the community. It records action items in skills/collaboration-helper/data/tasks.json and keeps everyone aligned on who is working on what.
Commands
list: show every task, grouping by status.add <title>: create a new task with--owner,--priority, and--notefields.complete <id>: mark a task as done.
Example:
python3 skills/collaboration-helper/scripts/collaboration_helper.py add "Review policy" --owner legal --priority high
python3 skills/collaboration-helper/scripts/collaboration_helper.py list
python3 skills/collaboration-helper/scripts/collaboration_helper.py complete 1
Testing
python3 -m unittest discover skills/collaboration-helper/tests
Packaging & release
python3 /home/pi/.npm-global/lib/node_modules/openclaw/skills/skill-creator/scripts/package_skill.py skills/collaboration-helper
Links
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install collaboration-helper?
Run openclaw add @crimsondevil333333/collaboration-helper in your terminal. This installs collaboration-helper into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/crimsondevil333333/collaboration-helper. Review commits and README documentation before installing.
