skills$openclaw/collaboration-helper
crimsondevil3333334.6k

by crimsondevil333333

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.

4.6k stars5.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namecollaboration-helper
descriptionTrack 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.
ownercrimsondevil333333
repositorycrimsondevil333333/collaboration-helper
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @crimsondevil333333/collaboration-helper
last updatedFeb 7, 2026

Maintainer

crimsondevil333333

crimsondevil333333

Maintains collaboration-helper in the OpenClaw Skills directory.

View GitHub profile
File Explorer
11 files
.
data
tasks.json
223 B
references
collaboration-guide.md
528 B
scripts
collaboration_helper.py
4.2 KB
tests
test_collaboration_helper.py
1.8 KB
_meta.json
304 B
README.md
1.1 KB
SKILL.md
862 B
SKILL.md

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.

Collaboration Helper

Overview

t scripts/collaboration_helper.py` acts as a lightweight team tracker:

  • list shows all open/in-progress tasks with owners, priorities, and creation timestamps.
  • add lets you capture a new action item with an owner, priority, and optional context.
  • complete marks a task as finished.

The data is stored in data/tasks.json, so your collaboration state survives multiple skill runs.

Resources

README.md

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 --note fields.
  • 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

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.