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

Caliber: Local CLI tool generates AI coding assistant configs from your repo
Caliber is a local-first CLI tool that scans repositories in languages like TypeScript, Python, Go, and Rust, then generates prompt and configuration files for AI coding assistants including Claude Code, Cursor, and Codex. It runs entirely on your machine with your own keys, has 13k npm installs, and is open source under MIT license.

AI Agent Embedded in Shell: Terminal Buffer & Overlay Extension
Open-source shell with embedded AI agent that reads terminal output and types commands via a floating overlay. Supports local and cloud models.

apple-music-play OpenClaw skill published on ClawHub for Apple Music search and playback
The apple-music-play skill published on ClawHub enables searching Apple Music's online catalog and playing tracks directly in the macOS Music app, without requiring songs to be in your local library.

Custom Status Line for Claude Code Shows Context Usage, Cost, and Git Branch
A Reddit user created a bash script that leverages Claude Code's statusLine setting to display real-time information including context window usage, session cost, active model, and current git branch. The script requires jq and is available on GitHub.