← 返回 Skills 市场
crimsondevil333333

Collaboration Helper

作者 CrimsonDevil333333 · GitHub ↗ · v1.0.1
cross-platform ✓ 安全检测通过
1918
总下载
1
收藏
6
当前安装
2
版本数
在 OpenClaw 中安装
/install 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.
使用说明 (SKILL.md)

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

Resources

安全使用建议
This skill appears to implement exactly what it claims: a simple JSON-backed task tracker. Before installing or granting it autonomous invocation: 1) Note the documentation mismatches (flag name and field names); confirm you (or the agent) will call the script with --data, not --workspace, and expect the 'created' field. 2) Treat the skill like any file-writing utility: avoid pointing --data at sensitive system paths because it will create/overwrite the target file. 3) Review the small Python script yourself (it's short and readable) or run it in a sandbox to verify behavior. 4) If provenance matters, check the GitHub link and author reputation (owner id is unknown). None of the code performs network I/O or reads environment secrets, so there is no immediate sign of exfiltration.
功能分析
Type: OpenClaw Skill Name: Developer: Version: Description: OpenClaw Agent Skill Suspicious High-Entropy/Eval files: 1 The skill provides a lightweight task tracker that stores data in a local JSON file. All file operations are confined to this specific JSON data file, and while the `--data` argument allows specifying an arbitrary path for this file, this is a plausible feature for managing tasks across different workspaces. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts in the `SKILL.md` or other documentation. The code and documentation are clearly aligned with the stated purpose and lack meaningful high-risk behaviors.
能力评估
Purpose & Capability
Name/description (collaboration task tracker) align with the included Python script and data file. There are no unrelated env vars, binaries, or external services required.
Instruction Scope
SKILL.md describes the expected CLI behavior but contains small inaccuracies: it mentions a --workspace flag while the script implements --data; the documented task field name is "created_at" but the code and sample use "created"; SKILL.md references a file name 'collaboration-guidelines.md' while the repository has 'collaboration-guide.md'. These are documentation mismatches (not evidence of malicious behavior) but could cause confusion at runtime.
Install Mechanism
No install spec; the skill is instruction-only plus small Python scripts included in the package. No network downloads or third-party installer steps are present.
Credentials
The skill requests no environment variables, credentials, or config paths. The code does not read secrets from the environment or attempt network access.
Persistence & Privilege
By default it writes to its own data/tasks.json within the skill folder, which is reasonable. The CLI accepts a --data path (documented as --workspace in SKILL.md), allowing the tool to read/write a tasks.json at any location the invoking agent/user points to — a functional convenience but one to be aware of because it can overwrite files if misused.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install collaboration-helper
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /collaboration-helper 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
- Expanded SKILL.md with detailed CLI usage instructions, including usage examples and new flags. - Added documentation about the task data structure and example workflow. - Clarified how task completion records the closing user and time. - Added reference to optional collaboration-guidelines documentation. - No functional code changes; documentation only.
v1.0.0
Initial release of Collaboration Helper. - Track action items and coordination signals for the community. - Quickly create new tasks with owner, priority, and context. - List current tasks with status, owner, priority, and timestamps. - Mark tasks as complete when finished. - Task data persists across multiple uses.
元数据
Slug collaboration-helper
版本 1.0.1
许可证
累计安装 7
当前安装数 6
历史版本数 2
常见问题

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。

💬 留言讨论