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.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install collaboration-helper或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install collaboration-helper⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/collaboration-helper/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- 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. ---
scripts/collaboration_helper.py is a lightweight JSON-backed tracker for community action items:
list shows every open or in-progress task with owner, priority, and creation timestamp.add creates a new entry using --owner, --priority, and optional --note fields to capture context.complete marks 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.
python3 skills/collaboration-helper/scripts/collaboration_helper.py list prints 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 ops marks task id=1 as done and stores the time/owner.--workspace /path/to/workspace lets you point at another repo's data/tasks.json when you want to sync or inspect a partner workspace.Each entry in skills/collaboration-helper/data/tasks.json looks like:
{
"id": <number>,
"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.
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.
data/tasks.json stores the canonical task list.references/collaboration-guidelines.md (if present) explains how the community prioritizes items and runs handoffs.安装 Collaboration Helper 后,可以对 AI 说这些话来触发它
Help me get started with Collaboration Helper
Explains what Collaboration Helper does, walks through the setup, and runs a quick demo based on your current project
Use Collaboration Helper to track action items and coordination signals for the community, incl...
Invokes Collaboration Helper with the right parameters and returns the result directly in the conversation
What can I do with Collaboration Helper in my documents & notes workflow?
Lists the top use cases for Collaboration Helper, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/collaboration-helper/ 目录(个人级,所有项目可用),或 .claude/skills/collaboration-helper/(项目级)。重启 AI 客户端后,用 /collaboration-helper 主动调用,或让 AI 根据上下文自动发现并使用。
Collaboration Helper 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
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.
Collaboration Helper 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using Collaboration Helper
Identifies repetitive steps in your workflow and sets up Collaboration Helper to handle them automatically