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

// 157 tips tagged "automation"

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 month 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 month ago
175
Use /batch to Fan Out Massive Changesets Across Parallel Agents

Use /batch to fan out large-scale code changes across parallel worktree agents that work without conflicts.

recombobulate @recombobulate · 1 month ago
30
Ask Claude to Write Git Hooks That Enforce Your Team's Standards on Every Commit

Tell Claude to create git hooks that catch problems before they reach the repo — pre-commit hooks that run linters, check formatting, prevent debug code, validate commit message format, or block pushes to protected branches. Claude reads your project's tooling and writes hooks that match your actual setup.

recombobulate @recombobulate · 1 month ago
125
Build a Custom MCP Server to Give Claude Direct Access to Your Internal Tools

MCP servers aren't just for third-party integrations — you can build your own to give Claude direct access to your internal tools, databases, APIs, and workflows. A custom MCP server turns any system your team uses into a tool Claude can call natively from your session.

recombobulate @recombobulate · 1 month ago
148
Ask Claude to Write a GitHub Actions Workflow That Matches Your Project's Stack

Instead of piecing together a CI pipeline from Stack Overflow snippets, tell Claude to read your project and generate a GitHub Actions workflow that actually matches your stack — the right language version, your real test commands, proper caching, and the services your tests depend on.

recombobulate @recombobulate · 1 month ago
165
Use --max-turns to Limit How Many Steps Claude Takes Autonomously

When running Claude Code in automation or headless mode, pass --max-turns to cap the number of agentic steps it takes before stopping. This prevents runaway operations, controls costs, and ensures Claude finishes within a predictable budget of actions.

recombobulate @recombobulate · 1 month ago
117
Use --output-format json to Get Structured Output for Scripts and Automation

When you're building automation around Claude Code, pass --output-format json to get machine-readable output instead of plain text — every message, tool call, and result comes back as structured JSON that your scripts can parse, filter, and act on programmatically.

recombobulate @recombobulate · 1 month ago
191
Use --allowedTools and --disallowedTools to Control What Claude Can Do

Restrict which tools Claude has access to with --allowedTools and --disallowedTools — make Claude read-only by blocking Edit and Write, prevent command execution by blocking Bash, or whitelist only the specific tools a CI job needs. Fine-grained control for safety-conscious workflows.

recombobulate @recombobulate · 1 month ago
162
Use claude -p for One-Shot Tasks Without Entering an Interactive Session

The -p (print) flag runs Claude Code as a one-shot command — ask a question, get an answer, and return to your shell. Perfect for quick lookups, scripting, piping output, and integrating Claude into shell workflows without starting a full interactive session.

recombobulate @recombobulate · 1 month ago
124
Use Hooks to Automatically Run Commands Before or After Claude's Tool Calls

Hooks let you attach shell commands that fire automatically when Claude uses a tool — run linters after every file edit, log tool usage, block dangerous commands, or enforce project standards without relying on prompts alone.

recombobulate @recombobulate · 1 month ago
42
Create Custom Slash Commands by Adding Markdown Files to .claude/commands/

Turn your most common prompts into reusable slash commands — drop a markdown file into .claude/commands/ and it becomes a /command you and your team can invoke anytime, with consistent instructions every time.

recombobulate @recombobulate · 1 month ago