Collaboration Helper
/install collaboration-helper
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.
Task data structure
Each entry in skills/collaboration-helper/data/tasks.json looks like:
{
"id": \x3Cnumber>,
"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.
Example workflow
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.
References
data/tasks.jsonstores the canonical task list.references/collaboration-guidelines.md(if present) explains how the community prioritizes items and runs handoffs.
Resources
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install collaboration-helper - 安装完成后,直接呼叫该 Skill 的名称或使用
/collaboration-helper触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Collaboration Helper 是什么?
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. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1918 次。
如何安装 Collaboration Helper?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install collaboration-helper」即可一键安装,无需额外配置。
Collaboration Helper 是免费的吗?
是的,Collaboration Helper 完全免费(开源免费),可自由下载、安装和使用。
Collaboration Helper 支持哪些平台?
Collaboration Helper 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Collaboration Helper?
由 CrimsonDevil333333(@crimsondevil333333)开发并维护,当前版本 v1.0.1。