Skip to content
GGreybook
NewSign in
  • Home
  • Problems
  • Recipes
  • Configs
  • Compare
  • Discuss
  • Agents
  • Tools
  • Updates
  • Leaders
  • Bookmarks
Ask AI
Assistant
  • About
  • Guidelines
  • Changelog
  • API
  • Home
  • Problems
  • Recipes
  • Agents
  • Saved

Recipes10 total

Workflows that other people have actually run, with the commands, the failure modes, and the number of confirmed successes.

ActiveNewestMost read
All agentsClaude CodeCodexCursorGemini CLIOpenCode

Use Claude to review Codex output, step by step

Codex is fast and overshoots; Claude is a pedantic reviewer. Chaining them is the exact workflow that saves me hours: Codex writes on a branch, Claude reviews the diff against a fixed checklist, and nothing merges until the checklist passes.

Recipe
Claude Code2.4.1
4
2h ago
MK
RecipeClaude Code2.4.142h ago

Safe parallel agents with Git worktrees

Run three or four agents against the same repo without them stomping each other's changes. One worktree per agent, one branch per worktree, and a cleanup routine that keeps the repo sane.

Recipe
All Agents
6
7h ago
AR
Recipe67h ago

Scope Claude Code to one package in a monorepo

In a 400k-line workspace, an unscoped agent burns half its context discovering packages it will never touch — then edits one it shouldn't. Run the agent from the package directory, deny writes outside it, and hand it the workspace-level commands it still needs.

Recipe
Claude Code2.4.1
4
11h ago
TO
RecipeClaude Code2.4.1

Budget tokens on long sessions without losing context

Long sessions die one of two deaths: the bill or the compaction. This is the freelancer's version of token discipline — measure per task, keep the context lean on purpose, and checkpoint state to files so a fresh session costs you minutes, not the afternoon.

Recipe
Claude Code2.4.1
3
16h ago
MS
RecipeClaude Code2.4.1

Prevent coding agents from reading production secrets

Agents read everything they can reach, including the .env you forgot about. Layered defense: get secrets out of the tree, deny-list what must stay, and plant a canary so you find out when the layers fail.

Recipe
All Agents
4
20h ago
GN
Recipe420h ago

Wire Claude Code into the Xcode build-and-test loop

Claude Code can't see Xcode's build errors unless you hand them over. XcodeBuild MCP plus a formatter that strips the noise gives the agent a real edit-build-test loop for SwiftUI work — the difference between guessing and iterating.

Recipe
Claude Code2.4.0
4
1d ago
YT
RecipeClaude Code2.4.0

A lockfile policy that stops agent churn

Agents love 'fixing' installs by regenerating the lockfile, and every regeneration is a 3,000-line diff nobody reviews. Pin the package manager, pin exact versions, and make CI reject any lockfile the humans didn't ask for.

Recipe
All Agents
3
2d ago
MM
Recipe32d ago

Agent-safe database migrations with a shadow database

Never let an agent's migration touch a database you care about on the first run. A disposable shadow database catches destructive DDL, broken backfills, and the classic 'rename via drop-and-create' before they reach even your dev data.

Recipe
All Agents
4
3d ago
NH
Recipe43d ago

A CI gate that actually catches agent-written regressions

Green checks mean nothing if the agent weakened the tests to get them. This gate compares test counts and coverage against the base branch, flags deleted assertions, and refuses to merge on silence-by-subtraction.

Recipe
All Agents
2
5d ago
AO
Recipe25d ago

Keep MCP servers alive with health checks and auto-restart

MCP servers die quietly mid-session and the agent just... stops using the tool. Run long-lived servers under a supervisor (launchd or systemd), health-check them on a timer, and log restarts so you can see which server is flaky.

Recipe
All Agents
2
1w ago
RP
Recipe21w ago
4
11h ago
3
16h ago
4
1d ago