返回顶部
🇺🇸 English
🇨🇳 简体中文
🇨🇳 繁體中文
🇺🇸 English
🇯🇵 日本語
🇰🇷 한국어
🇫🇷 Français
🇩🇪 Deutsch
🇪🇸 Español
🇷🇺 Русский
c

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.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.1
安全检测
已通过
1,848
下载量
1
收藏
概述
安装方式
版本历史

collaboration-helper

# 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

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 collaboration-helper-1776368366 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 collaboration-helper-1776368366 技能

通过命令行安装

skillhub install collaboration-helper-1776368366

下载 Zip 包

⬇ 下载 collaboration-helper v1.0.1

文件大小: 5.64 KB | 发布时间: 2026-4-17 13:47

v1.0.1 最新 2026-4-17 13:47
- 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.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部