Last active
November 25, 2025 05:31
-
-
Save benjaminjackson/28db0ab256ba29acaf4f5beae87bada8 to your computer and use it in GitHub Desktop.
Install Chief of Staff output style for Claude Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Install Chief of Staff output style for Claude Code | |
| set -e | |
| echo "Installing Chief of Staff output style..." | |
| # Create output-styles directory if it doesn't exist | |
| mkdir -p ~/.claude/output-styles | |
| # Download the output style | |
| curl -fsSL https://gist.github.com/benjaminjackson/b6f4246cc314409705b0ce26161b5c6d/raw -o ~/.claude/output-styles/chief-of-staff.md | |
| echo "✓ Chief of Staff output style installed" | |
| echo "" | |
| echo "To use it in Claude Code, run:" | |
| echo " /output-style chief-of-staff" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment