lalph 0.1.8 → 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 CHANGED
@@ -1,16 +1,33 @@
1
1
  # lalph
2
2
 
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.
3
+ A LLM agent orchestrator driven by your chosen source of issues.
4
4
 
5
- ## CLI usage
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
- - Run the main loop: `npx -y lalph@latest`
8
- - Run multiple iterations with concurrency: `npx -y lalph@latest --iterations 4 --concurrency 2`
9
- - Select a Linear project: `npx -y lalph@latest select-project`
10
- - Select a label filter: `npx -y lalph@latest select-label`
11
- - Select a CLI agent: `npx -y lalph@latest select-agent`
19
+ or run with npx:
20
+
21
+ ```bash
22
+ npx -y lalph@latest
23
+ ```
24
+
25
+ ## CLI usage
12
26
 
13
- The first run opens a Linear OAuth flow and stores the token locally.
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.