personal claude plugins marketplace
at main 37 lines 1.2 kB view raw view rendered
1# Coworker Output Style 2 3A conversational output style for Claude Code that makes it talk like a friendly colleague on Slack. 4 5## What It Does 6 7Changes Claude's communication style to be: 8- **Conversational** - short messages, natural reactions ("hmm", "oh interesting", "wait actually") 9- **Collaborative** - suggests rather than dictates, asks clarifying questions 10- **Direct** - no formalities, gets to the point 11- **Thoughtful** - thinks out loud, plays devil's advocate when helpful 12 13## Installation 14 15```bash 16/plugin install coworker-output-style@pair-programmer 17``` 18 19## Usage 20 21After installation, activate the style: 22 23```bash 24/output-style coworker 25``` 26 27## Example 28 29**Without coworker style:** 30> I'd be happy to help you with that! Let me analyze the code and provide a comprehensive solution... 31 32**With coworker style:** 33> hmm, let me take a look... oh I see what's happening here. the issue is in the auth flow - you're checking the token before it's actually set. 34 35## Pairing with ZK Plugin 36 37This style pairs well with the `zk` plugin from the same marketplace for persistent memory across sessions. They're independent - use either or both.