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.

7 stars

Best use case

collaboration-helper is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

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.

Teams using collaboration-helper should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/collaboration-helper/SKILL.md --create-dirs "https://raw.githubusercontent.com/Demerzels-lab/elsamultiskillagent/main/public/skills/crimsondevil333333/collaboration-helper/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/collaboration-helper/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How collaboration-helper Compares

Feature / Agentcollaboration-helperStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

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.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 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:

```json
{
  "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

```bash
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

Related Skills

oauth-helper

7
from Demerzels-lab/elsamultiskillagent

Automate OAuth login flows with user confirmation via Telegram. Supports 7 providers: Google, Apple, Microsoft, GitHub, Discord, WeChat, QQ. Features: - Auto-detect available OAuth options on login pages - Ask user to choose via Telegram when multiple options exist - Confirm before authorizing - Handle account selection and consent pages automatically

agents-skill-tdd-helper

7
from Demerzels-lab/elsamultiskillagent

Lightweight helper to enforce TDD-style loops for non-deterministic agents.

super-helper

7
from Demerzels-lab/elsamultiskillagent

A helpful utility skill for agents

config-helper

7
from Demerzels-lab/elsamultiskillagent

Parse and validate configuration files

api-helper

7
from Demerzels-lab/elsamultiskillagent

Helps configure API connections

semver-helper

7
from Demerzels-lab/elsamultiskillagent

Semantic Versioning 2.0.0 reference guide.

paylock

7
from Demerzels-lab/elsamultiskillagent

Non-custodial SOL escrow for AI agent deals.

agent-reputation

7
from Demerzels-lab/elsamultiskillagent

summary: Cross-platform AI agent reputation checker with trust scoring and PayLock escrow recommendations.

Telecom Agent Skill

7
from Demerzels-lab/elsamultiskillagent

Turn your AI Agent into a Telecom Operator. Bulk calling, ChatOps, and Field Monitoring.

OpenClaw-Finnhub

7
from Demerzels-lab/elsamultiskillagent

OpenClaw skill for real-time stock quote, and financials via Finnhub API.

```markdown

7
from Demerzels-lab/elsamultiskillagent

# OpenClaw-Last.fm

security-operator

7
from Demerzels-lab/elsamultiskillagent

Runtime security guardrails for OpenClaw agents.