lalph 0.1.7 → 0.1.8
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 +8 -6
- package/dist/cli.mjs +1769 -1550
- package/package.json +3 -3
- package/src/CliAgent.ts +28 -0
- package/src/IssueSource.ts +39 -0
- package/src/Linear.ts +2 -1
- package/src/Planner.ts +107 -0
- package/src/Prd.ts +109 -105
- package/src/PromptGen.ts +50 -15
- package/src/Runner.ts +37 -48
- package/src/Worktree.ts +12 -31
- package/src/cli.ts +63 -34
- package/src/domain/PrdIssue.ts +70 -0
package/README.md
CHANGED
|
@@ -2,12 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
A small CLI that connects to Linear, pulls the next set of unstarted issues into a local PRD file, and runs a selected CLI agent against them. It keeps the PRD and progress log in sync with Linear while you iterate.
|
|
4
4
|
|
|
5
|
-
## Setup
|
|
6
|
-
|
|
7
|
-
- Install dependencies: `pnpm install`
|
|
8
|
-
- Build the CLI: `pnpm build`
|
|
9
|
-
- Add `.lalph/` to `.gitignore` to keep local state private
|
|
10
|
-
|
|
11
5
|
## CLI usage
|
|
12
6
|
|
|
13
7
|
- Run the main loop: `npx -y lalph@latest`
|
|
@@ -17,3 +11,11 @@ A small CLI that connects to Linear, pulls the next set of unstarted issues into
|
|
|
17
11
|
- Select a CLI agent: `npx -y lalph@latest select-agent`
|
|
18
12
|
|
|
19
13
|
The first run opens a Linear OAuth flow and stores the token locally.
|
|
14
|
+
|
|
15
|
+
It is recommended to add `.lalph/` to your `.gitignore` to avoid committing your
|
|
16
|
+
credentials.
|
|
17
|
+
|
|
18
|
+
## Development
|
|
19
|
+
|
|
20
|
+
- Install dependencies: `pnpm install`
|
|
21
|
+
- Build the CLI: `pnpm build`
|