collaboration-helper
Installation
SKILL.md
Collaboration Helper
Overview
scripts/collaboration_helper.py is a lightweight JSON-backed tracker for community action items:
listshows every open or in-progress task with owner, priority, and creation timestamp.addcreates a new entry using--owner,--priority, and optional--notefields to capture context.completemarks 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 listprints 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 opsmarks taskid=1as done and stores the time/owner.--workspace /path/to/workspacelets you point at another repo'sdata/tasks.jsonwhen you want to sync or inspect a partner workspace.