بنقرة واحدة
terminal-optimization
// Terminal setup for Claude Code. Use for Ghostty config, statusline customization, voice dictation, tmux worktrees.
// Terminal setup for Claude Code. Use for Ghostty config, statusline customization, voice dictation, tmux worktrees.
Setup guide for essential MCP servers. Use when configuring MCP servers or when user asks about search, SQLite, or MCP management.
Query Claude Code session analytics from ccrecall database. Use when user asks about token usage, session history, or wants to analyze their Claude Code usage patterns.
High-leverage prompts that challenge Claude's defaults. Use for "grill me", "prove it works", "scrap this", "what would 10x engineer do", "find ways this fails".
Maintain CLAUDE.md files effectively. Use when adding lessons learned, updating conventions, or restructuring project instructions.
Multi-agent orchestration patterns for Claude Code team mode. Use when coordinating teammates, decomposing complex tasks, or managing shared task lists.
Enhanced Research-Plan-Implement workflow with structured phase gates. Use when tackling complex tasks that benefit from a phased approach with user checkpoints.
| name | terminal-optimization |
| description | Terminal setup for Claude Code. Use for Ghostty config, statusline customization, voice dictation, tmux worktrees. |
Configure terminal environment for effective Claude Code usage.
Ghostty works well with Claude Code. Key settings:
# ~/.config/ghostty/config
font-family = JetBrains Mono
font-size = 14
window-padding-x = 10
window-padding-y = 10
cursor-style = bar
shell-integration = detect
See ghostty-config.md for full config.
Display context usage and git info in shell prompt. Useful for:
See statusline-setup.md for starship/oh-my-zsh configs.
macOS: Press fn key twice to toggle dictation. Tips:
See voice-dictation.md for detailed tips.
Name terminal tabs by project/task:
# Set tab title (most terminals)
echo -ne "\033]0;my-project\007"
# Or use terminal-specific shortcuts
# Ghostty: Cmd+Shift+I
# iTerm2: Cmd+I
Use tmux sessions per git worktree:
# Create session for worktree
tmux new-session -s feature-branch -c ~/repos/project-feature
# Attach to existing
tmux attach -t feature-branch
Each worktree gets isolated Claude Code context.