Collaborate: A Claude Code Skill for Structured, Asynchronous Document Writing with Multi-Agent Handoffs
A developer built collaborate, a Claude Code skill that solves the coordination problem when multiple people write a document in separate Claude conversations. Instead of playing “wait, what did you decide on that section?” via Google Docs, the tool enforces a turn‑based workflow: each time a contributor picks up the document, Claude briefs them in plain English — what changed, what the previous person attempted, and what specific input is needed next. When the contributor finishes, the skill snapshots the document, logs the reasoning behind each change, and notifies the next person via Signal or Slack.
Key Features from the Source
- Turn handoff with reasoning capture: Claude produces a plain‑English summary of decisions, attempted approaches, and unresolved questions before passing the document to the next contributor.
- Parallel section ownership: Multiple writers can work on different sections simultaneously without stepping on each other’s changes.
- Structured critique & challenger/defender mode: Support for decision documents where one Claude instance argues for a position and another critiques it.
- Round robin review: Automatically cycles through contributors for sequential feedback.
- Storage: Document snapshots are stored on iCloud or Google Drive.
- Notification via Signal or Slack: Each handoff triggers a message to the next person.
Installation
Install the skill inside a Claude Code session by telling Claude:
install this skill: https://github.com/googlarz/collaborate/raw/main/SKILL.md
The full repository with documentation is at github.com/googlarz/collaborate.
Who It’s For
Teams already using Claude for writing who need structured, asynchronous collaboration — especially useful for policy docs, design specs, or any document where understanding the why behind changes matters as much as the final text.
📖 Read the full source: r/ClaudeAI
👀 See Also

cq: A Local-First Knowledge Sharing System for AI Coding Agents
Mozilla.ai's cq is an open-source tool that lets AI coding agents share 'knowledge units' about common gotchas via a local SQLite store, with optional team sharing through a Docker API. It installs as a Claude Code plugin or OpenCode MCP server.

OpenGalatea MCP Server Connects Claude to Prusa 3D Printers
OpenGalatea is an open-source MCP server that enables Claude to control Prusa 3D printers via PrusaLink, allowing natural language commands to search Printables.com, slice models, and manage prints.

hipEngine: Fast Native Qwen 3.6 Inference for RDNA3 (Strix Halo, 7900 XTX)
hipEngine is a new open-source (AGPLv3) ROCm-native inference engine for Qwen 3.6 MoE on RDNA3 GPUs. Benchmarks show prefill up to 2718 tok/s on 7900 XTX, competitive with llama.cpp, and INT8 KV cache enabling full 256K context in under 24GB.

Rift: A Better Alternative to Git Worktrees with Instant Copy-on-Write Snapshots
Rift uses btrfs or APFS snapshots to create instant, space-efficient copies of Git repositories. Initialization, creation, and listing via CLI or JavaScript FFI.