Usage
mini plan [options]
--apply Save steps non-interactively from stdin (one per line `title :: detail`, detail optional, no Claude; for /mini:plan)
Description
The terminal command. Breaks the current phase down into a handful of concrete, verifiable steps. Run on its own it opens an interactive Claude Code session that proposes the steps; with --apply it saves steps read from stdin — one per line in the form `title :: detail` (the detail and the ` :: ` separator are optional), without invoking Claude.
Examples
# Interactive: let mini propose the steps
mini plan
# Save steps directly from stdin, without Claude
printf '%s\n' "Add the form :: with validation" "Wire up the controller" | mini plan --apply