Recipes¶
A ready-made justfile template is included at create-kew/templates/justfile-recipes.just. The setup wizard (npx create-kew) offers to copy it.
Example justfile snippets for common workflows:
# Dispatch: pick next ready issue
dispatch:
kew run
# Dispatch: continuous loop until queue empty
dispatch-loop:
kew run --loop
# Dispatch: parallel loop with 3 workers
dispatch-parallel:
kew run --loop --workers 3
# Dispatch: queue status
dispatch-status:
kew status
# Review: preview PR comments without dispatching
review-dry pr:
kew review {{pr}} --dry-run
# Review: dispatch agent to address PR comments
review pr:
kew review {{pr}}
Linear webhooks + dev tunnel¶
Receive Linear events locally during development. See the full recipe in Linear webhooks — dev-tunnel recipe.