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

// 134 tips tagged "workflows"

0
Run Claude Code in GitHub Actions to Automatically Review Every Pull Request

Set up Claude Code as an automated reviewer in your CI pipeline — on every pull request, it reads the diff, checks for bugs, security issues, missing tests, and convention violations, then posts its findings as a PR comment. Your human reviewers get a head start because the obvious issues are already flagged before they look.

recombobulate @recombobulate · 1 day ago
0
Ask Claude to Build a Deployment Checklist from Your Actual Infrastructure

Before deploying, tell Claude to read your project — migrations, environment variables, queue workers, scheduled tasks, caching, third-party integrations — and generate a deployment checklist that's specific to your app. Not a generic "did you run migrations?" list, but one that knows YOUR infrastructure and catches the things YOUR deploy can break.

recombobulate @recombobulate · 1 day ago
0
Ask Claude to Generate a README from Your Actual Codebase — Not a Template

Instead of writing a README from memory or copying a template, tell Claude to read your project and generate one that's actually accurate — real setup instructions from your config, real architecture from your directory structure, real API examples from your routes, and real prerequisites from your dependency files.

recombobulate @recombobulate · 1 day ago
0
Pipe a Spec or Requirements Doc into Claude with stdin So It Builds Exactly What Was Designed

When you have a written specification — a PRD, a requirements doc, a technical design, or even detailed meeting notes — pipe it directly into Claude Code as context. Claude reads the full document, understands every requirement, and implements the feature exactly as specified instead of you re-explaining it piece by piece.

recombobulate @recombobulate · 1 day ago
1
Talk Through a Problem with Claude Before Writing Any Code — Pair Programming Style

Before jumping to implementation, describe the problem conversationally and let Claude be your thinking partner. It asks clarifying questions, surfaces tradeoffs you haven't considered, suggests approaches, and pokes holes in your plan — so by the time you say "ok, build it," both of you know exactly what to build and why.

recombobulate @recombobulate · 1 day ago
0
Ask Claude to Set Up Monitoring Alerts Based on What Your Code Actually Does

Claude can read your application code — the jobs, queues, API endpoints, scheduled tasks, and critical business logic — and generate monitoring rules that alert on the things that actually matter: failed payments, queue backlogs, stale cron jobs, error rate spikes, and slow endpoints, all tailored to your real system.

recombobulate @recombobulate · 1 day ago
0
Ask Claude to Add "Why" Comments to Complex Code That Future Developers Will Thank You For

Good comments explain why, not what. Tell Claude to read your complex code and add inline comments that explain the reasoning behind non-obvious decisions — why this algorithm was chosen, why this edge case exists, why the order matters — so the next developer (or future you) understands the intent without reverse-engineering the logic.

recombobulate @recombobulate · 1 day ago
0
Ask Claude to Write Tests for Existing Code That Has No Test Coverage

Got a module with zero tests? Point Claude at the code and it reads the implementation, identifies every behavior — the happy path, edge cases, error conditions, and boundary values — then writes a comprehensive test suite that documents what the code actually does and catches regressions if anything changes.

recombobulate @recombobulate · 1 day ago
0
Tell Claude to Stash Your Work Before Trying a Risky Approach So You Can Revert Safely

Before asking Claude to try a big experimental change — a different architecture, an alternative algorithm, or a risky refactor — tell it to stash or branch first. If the experiment fails, you restore the stash and you're back where you started. Zero risk, maximum experimentation.

recombobulate @recombobulate · 1 day ago
136
Point at an Existing Feature and Say "Build Another One Like This" for Instant Scaffolding

When you need a new feature that follows the same structure as one you already built — a new CRUD, a new API resource, a new admin panel section — point Claude at the existing one and say "build another like this for Products." Claude reads every file involved and replicates the full pattern with correct names, relationships, and wiring.

recombobulate @recombobulate · 1 day ago
45
Paste Data in Any Format and Ask Claude to Convert It to the Format You Need

When you need data in a different format — JSON to YAML, CSV to SQL INSERTs, XML to a PHP array, a log file to a structured table, or a database dump to markdown — paste it into Claude and tell it what format you want. Claude handles the conversion instantly, including edge cases like escaping, quoting, and nested structures.

recombobulate @recombobulate · 1 day ago
116
Show Claude the Expected Output and Let It Write the Code That Produces It

Instead of describing what code should do, show Claude what it should produce — paste the expected JSON response, HTML output, CLI table, or email template and Claude works backwards to write the code that generates it. The output IS the spec, and there's no room for misinterpretation.

recombobulate @recombobulate · 1 day ago