lalph 0.3.39 → 0.3.41
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 +7 -4
- package/dist/cli.mjs +384 -230
- package/package.json +3 -3
- package/src/PromptGen.ts +2 -4
- package/src/commands/agents/add.ts +1 -1
- package/src/commands/agents/edit.ts +1 -1
- package/src/commands/agents/ls.ts +2 -1
- package/src/commands/agents.ts +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ A LLM agent orchestrator driven by your chosen source of issues.
|
|
|
10
10
|
|
|
11
11
|
- Pull work from an issue source (GitHub Issues, Linear, etc.) and keep task state in sync
|
|
12
12
|
- Projects to group execution settings (enabled state, concurrency, target branch, git flow, review agent)
|
|
13
|
-
- Agent presets to control which CLI agent
|
|
13
|
+
- Agent presets to control which CLI agent and optional clanka model run tasks, with optional label-based routing
|
|
14
14
|
- Plan mode to turn a high-level plan into a spec and generate PRD tasks
|
|
15
15
|
- Git worktrees to support multiple concurrent iterations
|
|
16
16
|
- Optional PR flow with auto-merge and support for issue dependencies
|
|
@@ -42,9 +42,9 @@ credentials.
|
|
|
42
42
|
|
|
43
43
|
## Agent presets
|
|
44
44
|
|
|
45
|
-
Agent presets define which CLI agent runs tasks
|
|
46
|
-
always needs a default preset and will
|
|
47
|
-
it's missing.
|
|
45
|
+
Agent presets define which CLI agent runs tasks, the optional clanka model to
|
|
46
|
+
use, and any extra arguments. Lalph always needs a default preset and will
|
|
47
|
+
prompt you to create one on first run if it's missing.
|
|
48
48
|
|
|
49
49
|
Some issue sources support routing: you can associate a preset with a label, and
|
|
50
50
|
issues with that label will run with that preset; anything else uses the default.
|
|
@@ -54,6 +54,9 @@ lalph agents ls
|
|
|
54
54
|
lalph agents add
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
+
`lalph agents ls` shows each preset's CLI agent, clanka model selection,
|
|
58
|
+
extra args, command prefix, and any issue-source routing metadata.
|
|
59
|
+
|
|
57
60
|
## Projects
|
|
58
61
|
|
|
59
62
|
Projects bundle execution settings for the current repo: whether it is enabled
|