$ recombobulate _
~/recombobulate $ tip --list --tag="performance"

// 61 tips tagged "performance"

161
Ask Claude to Find and Fix the Performance Bottleneck in a Slow Endpoint

When a page takes five seconds to load or an API endpoint times out under load, tell Claude which route is slow and it traces the entire code path — controller, services, queries, loops — identifying N+1 queries, redundant computations, missing indexes, and cacheable operations, then fixes each bottleneck.

recombobulate @recombobulate · 1 month ago
116
Use /clear to Start Fresh When Your Session Context Gets Confused or Stale

When Claude starts referencing files you've since deleted, remembering old code you've already changed, or getting confused by contradictory instructions from a long session — type /clear to wipe the slate clean. Unlike /compact which preserves context, /clear gives you a true fresh start without restarting the CLI.

recombobulate @recombobulate · 1 month ago
64
Toggle /fast for Quicker Responses on Simple Tasks

Not every task needs deep reasoning. Type /fast to switch Claude Code into fast mode — same model, faster output — for quick edits, simple questions, and routine changes. Toggle it off when you need Claude to think harder on complex problems.

recombobulate @recombobulate · 1 month ago
112
Use /compact to Free Up Context Space When Your Session Gets Long

Long sessions eat through your context window as conversation history piles up. Type /compact to summarize the conversation so far and reclaim space — keeping Claude's understanding of what you're working on while freeing up room for more work.

recombobulate @recombobulate · 1 month ago
110
Use /cost to Track Token Usage and Spending During Your Session

Type /cost at any point to see how many tokens you've used in the current session, how much it's costing, and which operations are consuming the most context — so you can make informed decisions about when to /compact, /clear, or switch models.

recombobulate @recombobulate · 1 month ago
203
Launch Claude Code with a Specific Model Using the --model Flag

Pass --model when starting Claude Code to choose exactly which model you want — opus for complex architecture work, sonnet for everyday coding, haiku for quick lookups — without changing your default settings or switching after the session starts.

recombobulate @recombobulate · 1 month ago
85
Paste a Slow Query's EXPLAIN Output and Let Claude Optimize It

When a specific query is slow, run EXPLAIN on it and paste the execution plan into Claude — it reads the plan, spots full table scans, bad join orders, and missing indexes, then rewrites the query and suggests schema changes to make it fast.

recombobulate @recombobulate · 1 month ago
98
Toggle /fast Mode for Quicker Responses When Speed Beats Depth

Type /fast to switch Claude Code into faster output mode — same model, faster generation. Perfect for quick lookups, simple edits, and rapid-fire questions where you don't need Claude to think as deeply before responding.

recombobulate @recombobulate · 1 month ago
100
Use /clear to Wipe the Slate Clean Without Closing Your Session

When you've finished one task and want to start a completely different one, run /clear to reset the conversation — Claude forgets the previous context so stale decisions, old file reads, and irrelevant discussion don't pollute your next task.

recombobulate @recombobulate · 1 month ago
129
Use /compact to Reclaim Context Space During Long Sessions

When your Claude Code session gets long and responses slow down, run /compact to summarize the conversation history and free up context window space — keeping your session alive without losing important context.

recombobulate @recombobulate · 1 month ago
141
Ask Claude to Suggest Database Indexes Based on Your Query Patterns

Tell Claude to read your queries, ORM calls, and WHERE clauses, then suggest which database indexes to add — it identifies missing indexes that would speed up slow queries, flags redundant indexes wasting write performance, and generates the migration to add them.

recombobulate @recombobulate · 1 month ago
146
Ask Claude to Find Performance Bottlenecks by Reading Your Code Logic

Tell Claude to read your backend code and find performance problems — O(n²) loops hidden in simple-looking functions, N+1 database queries, redundant API calls, missing pagination, and expensive operations inside request handlers that should be queued.

recombobulate @recombobulate · 1 month ago