collaboration-helper

Verified·Scanned 2/17/2026

This skill is a lightweight JSON-backed CLI task tracker that stores state in data/tasks.json and provides add, list, and complete commands. Documentation and tests include explicit python3/subprocess.run invocations (e.g., python3 skills/collaboration-helper/scripts/collaboration_helper.py ...), which are static, purpose-aligned shell executions.

from clawhub.ai·vfa697f2·10.2 KB·0 installs
Scanned from 1.0.1 at fa697f2 · Transparency log ↗
$ vett add clawhub.ai/crimsondevil333333/collaboration-helper

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 $(npm root -g)/openclaw/skills/skill-creator/scripts/package_skill.py skills/collaboration-helper

Links