Custom Output Styles Collection for Claude Code

Custom Output Styles for Claude Code
A developer has published a collection of 13 custom output styles for Claude Code, an AI coding assistant. Output styles are a feature that lets you change how Claude Code talks and behaves by modifying its system prompt.
How to Use Output Styles
To use output styles in Claude Code:
- Set an output style through
/config > Output style - Copy a
.mdfile into~/.claude/output-styles/ - Select it from
/config
Available Styles
The collection includes 13 styles. Some highlights:
- Roast: Brutally honest code critique that drags your code, then helps you fix it
- Socratic: Guides you to the answer through questions instead of handing it to you
- Breaker: Adversarial tester that tries to break everything you build
- Ship It: Aggressively pragmatic, shortest path to working software
- Paranoid: Security-obsessed, treats every input as hostile
- TDD: Test-driven development, always writes tests first
Repository and Contributions
The repository is open source and contributions are welcome. The styles are available as .md files that can be dropped directly into the output-styles directory.
📖 Read the full source: r/ClaudeAI
👀 See Also

SkyClaw: Rust AI Agent Runtime for Cloud VPS with Telegram Control
SkyClaw is a 6.9 MB Rust-based AI agent runtime designed for cloud VPS deployment with Telegram as the sole interface. It executes shell commands, browses the web via headless Chrome, reads/writes files, and fetches URLs with multi-round tool chaining.

CLAUDE.md: Drop-in file reduces Claude output tokens by 63%
CLAUDE.md is a single file that cuts Claude output verbosity by approximately 63% without code changes. It targets sycophancy, verbosity, and formatting noise in Claude's responses.

Community patch adds RTL language support to Claude Desktop on Windows
A developer has created a patch that adds proper right-to-left language support to Claude Desktop on Windows, fixing broken rendering for Hebrew, Arabic, and other RTL languages. The patch injects RTL detection logic into the Electron app's renderer and includes backup/restore functionality.

Local-Cloud Hybrid AI Architecture: Practical Patterns Inspired by r/LocalLLaMA
The original post proposes a hybrid AI model where a local model handles routine tasks and defers to a cloud model for complex reasoning via a single API call, alongside a deterministic 'hypervisor' for guard rails.