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 +5 -2
- package/dist/cli.mjs +4222 -1300
- package/package.json +7 -7
- package/src/CurrentIssueSource.ts +4 -13
- package/src/Kvs.ts +2 -2
- package/src/Persistence.ts +1 -1
- package/src/Worktree.ts +2 -1
- package/src/commands/plan.ts +16 -4
- package/src/commands/sh.ts +1 -1
- package/src/shared/lalphDirectory.ts +1 -1
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.
|
|
74
|
-
|
|
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
|
|