Skip to content

Instantly share code, notes, and snippets.

@benjaminjackson
Last active November 25, 2025 05:31
Show Gist options
  • Select an option

  • Save benjaminjackson/28db0ab256ba29acaf4f5beae87bada8 to your computer and use it in GitHub Desktop.

Select an option

Save benjaminjackson/28db0ab256ba29acaf4f5beae87bada8 to your computer and use it in GitHub Desktop.
Install Chief of Staff output style for Claude Code
#!/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