lalph 0.1.28 → 0.1.29
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/dist/cli.mjs +3 -2
- package/package.json +1 -1
- package/src/PromptGen.ts +1 -0
- package/src/cli.ts +3 -3
package/dist/cli.mjs
CHANGED
|
@@ -140238,6 +140238,7 @@ ${prdNotes}`;
|
|
|
140238
140238
|
3. Add the new tasks to the prd.yml file.
|
|
140239
140239
|
4. Wait until the tasks are saved, then setup task dependencies using the \`blockedBy\` field.
|
|
140240
140240
|
5. Add a outline of the plan to a "lalph-plan.md" file, that will help guide future iterations.
|
|
140241
|
+
6. Start a subagent with a copy of this prompt, to review the plan and provide feedback or improvements.
|
|
140241
140242
|
|
|
140242
140243
|
**Important:** You are only creating or updating the plan, not implementing any tasks yet.
|
|
140243
140244
|
|
|
@@ -140526,8 +140527,8 @@ const iterations = integer("iterations").pipe(withDescription$1("Number of itera
|
|
|
140526
140527
|
const concurrency = integer("concurrency").pipe(withDescription$1("Number of concurrent agents, defaults to 1"), withAlias("c"), withDefault(1));
|
|
140527
140528
|
const autoMerge = boolean("auto-merge").pipe(withAlias("a"), withDescription$1("Automatically merge eligible PRs"));
|
|
140528
140529
|
const targetBranch = string$1("target-branch").pipe(withDescription$1("Target branch for PRs"), withAlias("b"), optional);
|
|
140529
|
-
const maxIterationMinutes = integer("max-minutes").pipe(withDescription$1("Maximum number of minutes to allow an iteration to run"), withDefault(
|
|
140530
|
-
const stallMinutes = integer("stall-minutes").pipe(withDescription$1("If no activity occurs for this many minutes, the iteration will be stopped"), withDefault(5));
|
|
140530
|
+
const maxIterationMinutes = integer("max-minutes").pipe(withDescription$1("Maximum number of minutes to allow an iteration to run. Defaults to 90 minutes"), withDefault(90));
|
|
140531
|
+
const stallMinutes = integer("stall-minutes").pipe(withDescription$1("If no activity occurs for this many minutes, the iteration will be stopped. Defaults to 5 minutes"), withDefault(5));
|
|
140531
140532
|
const root = make$25("lalph", {
|
|
140532
140533
|
iterations,
|
|
140533
140534
|
concurrency,
|
package/package.json
CHANGED
package/src/PromptGen.ts
CHANGED
|
@@ -165,6 +165,7 @@ ${prdNotes}`
|
|
|
165
165
|
3. Add the new tasks to the prd.yml file.
|
|
166
166
|
4. Wait until the tasks are saved, then setup task dependencies using the \`blockedBy\` field.
|
|
167
167
|
5. Add a outline of the plan to a "lalph-plan.md" file, that will help guide future iterations.
|
|
168
|
+
6. Start a subagent with a copy of this prompt, to review the plan and provide feedback or improvements.
|
|
168
169
|
|
|
169
170
|
**Important:** You are only creating or updating the plan, not implementing any tasks yet.
|
|
170
171
|
|
package/src/cli.ts
CHANGED
|
@@ -59,14 +59,14 @@ const targetBranch = Flag.string("target-branch").pipe(
|
|
|
59
59
|
|
|
60
60
|
const maxIterationMinutes = Flag.integer("max-minutes").pipe(
|
|
61
61
|
Flag.withDescription(
|
|
62
|
-
"Maximum number of minutes to allow an iteration to run",
|
|
62
|
+
"Maximum number of minutes to allow an iteration to run. Defaults to 90 minutes",
|
|
63
63
|
),
|
|
64
|
-
Flag.withDefault(
|
|
64
|
+
Flag.withDefault(90),
|
|
65
65
|
)
|
|
66
66
|
|
|
67
67
|
const stallMinutes = Flag.integer("stall-minutes").pipe(
|
|
68
68
|
Flag.withDescription(
|
|
69
|
-
"If no activity occurs for this many minutes, the iteration will be stopped",
|
|
69
|
+
"If no activity occurs for this many minutes, the iteration will be stopped. Defaults to 5 minutes",
|
|
70
70
|
),
|
|
71
71
|
Flag.withDefault(5),
|
|
72
72
|
)
|