lalph 0.3.23 → 0.3.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -70,14 +70,17 @@ lalph projects toggle
70
70
 
71
71
  ## Plan mode
72
72
 
73
- Plan mode opens an editor so you can write a high-level plan. On save, lalph
74
- generates a specification under `--specs` and then creates PRD tasks from it.
73
+ Plan mode opens an editor so you can write a high-level plan. You can also pass
74
+ `--file` / `-f` with a markdown file path to skip the editor. On save (or file
75
+ read), lalph generates a specification under `--specs` and then creates PRD
76
+ tasks from it.
75
77
 
76
78
  Use `--dangerous` to skip permission prompts during spec generation, and `--new`
77
79
  to create a project before starting plan mode.
78
80
 
79
81
  ```bash
80
82
  lalph plan
83
+ lalph plan --file ./my-plan.md
81
84
  lalph plan tasks .specs/my-spec.md
82
85
  ```
83
86