← 返回
效率工具 中文

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.
跟踪社区的行动项与协调信号,支持快速创建任务、状态查询及交接备注。适用于记录协作任务或查询团队当前工作进展。
crimsondevil333333
效率工具 clawhub v1.0.1 1 版本 100000 Key: 无需
★ 1
Stars
📥 2,265
下载
💾 42
安装
1
版本
#latest

概述

Collaboration Helper

Overview

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.

CLI usage

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

Task data structure

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.

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.json stores the canonical task list.
  • references/collaboration-guidelines.md (if present) explains how the community prioritizes items and runs handoffs.

Resources

  • GitHub: https://github.com/CrimsonDevil333333/collaboration-helper
  • ClawHub: https://www.clawhub.ai/skills/collaboration-helper

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-03-28 17:01 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Devlog Skill

crimsondevil333333
OpenClaw代理的标准化日志技能,使用dev-log-cli跟踪进度、任务和项目状态。
★ 2 📥 2,588
productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 440 📥 147,926
productivity

Nano Pdf

steipete
使用nano-pdf CLI通过自然语言指令编辑PDF
★ 275 📥 114,912