lalph 0.1.9 → 0.1.10
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 +25 -8
- package/dist/cli.mjs +11878 -4420
- package/package.json +6 -3
- package/src/Github/TokenManager.ts +186 -0
- package/src/Github.ts +423 -0
- package/src/IssueSource.ts +32 -5
- package/src/IssueSources.ts +76 -0
- package/src/Linear/TokenManager.ts +7 -4
- package/src/Linear.ts +299 -61
- package/src/Planner.ts +44 -61
- package/src/Prd.ts +92 -138
- package/src/PromptGen.ts +69 -45
- package/src/Runner.ts +50 -11
- package/src/Settings.ts +0 -4
- package/src/Worktree.ts +0 -6
- package/src/cli.ts +62 -40
- package/src/domain/CliAgent.ts +24 -6
- package/src/domain/PrdIssue.ts +17 -6
package/README.md
CHANGED
|
@@ -1,16 +1,33 @@
|
|
|
1
1
|
# lalph
|
|
2
2
|
|
|
3
|
-
A
|
|
3
|
+
A LLM agent orchestrator driven by your chosen source of issues.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- Integrate with various issue sources (GitHub Issues, Linear, etc.)
|
|
8
|
+
- Plan mode to generate issues from high-level goals
|
|
9
|
+
- Uses git worktrees to allow for multiple concurrent iterations
|
|
10
|
+
- Creates pull requests for each task, with optional auto-merge for vibe coding
|
|
11
|
+
- Support issue dependencies to ensure correct task order
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install -g lalph
|
|
17
|
+
```
|
|
6
18
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
19
|
+
or run with npx:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx -y lalph@latest
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## CLI usage
|
|
12
26
|
|
|
13
|
-
|
|
27
|
+
- Run the main loop: `lalph`
|
|
28
|
+
- Run multiple iterations with concurrency: `lalph --iterations 4 --concurrency 2`
|
|
29
|
+
- Start plan mode: `lalph plan`
|
|
30
|
+
- Choose your issue source: `lalph source`
|
|
14
31
|
|
|
15
32
|
It is recommended to add `.lalph/` to your `.gitignore` to avoid committing your
|
|
16
33
|
credentials.
|