From viz
Collaborate with the user by opening a shared markdown file in their terminal editor. Triggers when asking the user to review/edit content, or when user requests collaborative editing. Detects completion signals in both English and Traditional Chinese.
How this skill is triggered — by the user, by Claude, or both
Slash command
/viz:collab-editThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill enables real-time collaboration by opening a markdown file in the user's terminal editor (neovim), then detecting completion and showing a diff of changes.
This skill enables real-time collaboration by opening a markdown file in the user's terminal editor (neovim), then detecting completion and showing a diff of changes.
When triggered (user asks to collaboratively edit, or you want the user to review/edit content):
/tmp/viz-collab.md using the Write tool/tmp/viz-collab-original.md using the Write tool (for diffing later)bash "${CLAUDE_PLUGIN_ROOT}/skills/collab-edit/lib/ghostty-split.sh" "nvim /tmp/viz-collab.md"
/tmp/viz-collab.md"Watch for these trigger phrases (case-insensitive, any language):
English triggers:
Traditional Chinese triggers:
When the user signals completion:
Read the edited file:
Read /tmp/viz-collab.md
Generate diff:
bash "${CLAUDE_PLUGIN_ROOT}/skills/collab-edit/lib/diff.sh" "/tmp/viz-collab-original.md" "/tmp/viz-collab.md"
Show the diff to the user with context about what changed
Incorporate changes into your understanding and conversation context
Ask for next action:
If continuing:
cp /tmp/viz-collab.md /tmp/viz-collab-original.md (via Bash tool)ghostty-split.sh fails: Inform user that Ghostty must be runningdiff.sh returns exit 1: This means no changes detected, inform the userdiff.sh fails: Check that both original and edited files existdelta if available, otherwise falls back to diff -u/tmp/viz-collab.md (consistent location)npx claudepluginhub musingfox/cc-plugins --plugin vizCreate, edit with comments/suggestions/rewrites, and share collaborative markdown documents via Proof web API or macOS local bridge.
Opens drafted content via stdin or existing files in VS Code for interactive user editing before proceeding. Blocks until tab closed; returns edited content or modifies in place.
Provides workflow guidance, annotation strategy, and tool usage patterns for the Tandem collaborative document editor via MCP.