← Back to Skills Marketplace
crimsondevil333333

Collaboration Helper

by CrimsonDevil333333 · GitHub ↗ · v1.0.1
cross-platform ✓ Security Clean
1918
Downloads
1
Stars
6
Active Installs
2
Versions
Install in OpenClaw
/install 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.
README (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

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install collaboration-helper
  3. After installation, invoke the skill by name or use /collaboration-helper
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug collaboration-helper
Version 1.0.1
License
All-time Installs 7
Active Installs 6
Total Versions 2
Frequently Asked Questions

What is 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. It is an AI Agent Skill for Claude Code / OpenClaw, with 1918 downloads so far.

How do I install Collaboration Helper?

Run "/install collaboration-helper" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Collaboration Helper free?

Yes, Collaboration Helper is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Collaboration Helper support?

Collaboration Helper is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Collaboration Helper?

It is built and maintained by CrimsonDevil333333 (@crimsondevil333333); the current version is v1.0.1.

💬 Comments