lalph 0.2.6 → 0.2.7
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 +5 -5
- package/package.json +1 -1
- package/src/Agents/planner.ts +1 -1
- package/src/Agents/tasker.ts +1 -1
- package/src/PromptGen.ts +2 -2
package/dist/cli.mjs
CHANGED
|
@@ -150952,8 +150952,8 @@ ${options.task.description}
|
|
|
150952
150952
|
githubPrNumber: options.githubPrNumber,
|
|
150953
150953
|
targetBranch: options.targetBranch
|
|
150954
150954
|
})}
|
|
150955
|
-
6.
|
|
150956
|
-
|
|
150955
|
+
6. **After ${options.gitFlow.requiresGithubPr ? "pushing" : "committing"}**
|
|
150956
|
+
your changes, update the prd.yml to reflect any changes in the task state.
|
|
150957
150957
|
- Rewrite the notes in the description to include only the key discoveries and information that could speed up future work on other tasks. Make sure to preserve important information such as specification file references.
|
|
150958
150958
|
- If you believe the task is complete, update the \`state\` to "in-review".
|
|
150959
150959
|
|
|
@@ -151988,7 +151988,7 @@ const agentPlanner = fnUntraced(function* (options) {
|
|
|
151988
151988
|
const promptGen = yield* PromptGen;
|
|
151989
151989
|
yield* pipe(options.cliAgent.commandPlan({
|
|
151990
151990
|
prompt: promptGen.planPrompt(options),
|
|
151991
|
-
prdFilePath: pathService.join(
|
|
151991
|
+
prdFilePath: pathService.join(".lalph", "prd.yml"),
|
|
151992
151992
|
dangerous: options.dangerous
|
|
151993
151993
|
}), setCwd(worktree.directory), options.commandPrefix, exitCode);
|
|
151994
151994
|
});
|
|
@@ -152004,7 +152004,7 @@ const agentTasker = fnUntraced(function* (options) {
|
|
|
152004
152004
|
specsDirectory: options.specsDirectory,
|
|
152005
152005
|
specificationPath: options.specificationPath
|
|
152006
152006
|
}),
|
|
152007
|
-
prdFilePath: pathService.join(
|
|
152007
|
+
prdFilePath: pathService.join(".lalph", "prd.yml")
|
|
152008
152008
|
}), setCwd(worktree.directory), options.commandPrefix, worktree.execWithOutput(options));
|
|
152009
152009
|
});
|
|
152010
152010
|
|
|
@@ -152174,7 +152174,7 @@ const commandSource = make$35("source").pipe(withDescription("Select the issue s
|
|
|
152174
152174
|
|
|
152175
152175
|
//#endregion
|
|
152176
152176
|
//#region package.json
|
|
152177
|
-
var version = "0.2.
|
|
152177
|
+
var version = "0.2.7";
|
|
152178
152178
|
|
|
152179
152179
|
//#endregion
|
|
152180
152180
|
//#region src/commands/projects/ls.ts
|
package/package.json
CHANGED
package/src/Agents/planner.ts
CHANGED
|
@@ -19,7 +19,7 @@ export const agentPlanner = Effect.fnUntraced(function* (options: {
|
|
|
19
19
|
yield* pipe(
|
|
20
20
|
options.cliAgent.commandPlan({
|
|
21
21
|
prompt: promptGen.planPrompt(options),
|
|
22
|
-
prdFilePath: pathService.join(
|
|
22
|
+
prdFilePath: pathService.join(".lalph", "prd.yml"),
|
|
23
23
|
dangerous: options.dangerous,
|
|
24
24
|
}),
|
|
25
25
|
ChildProcess.setCwd(worktree.directory),
|
package/src/Agents/tasker.ts
CHANGED
|
@@ -22,7 +22,7 @@ export const agentTasker = Effect.fnUntraced(function* (options: {
|
|
|
22
22
|
specsDirectory: options.specsDirectory,
|
|
23
23
|
specificationPath: options.specificationPath,
|
|
24
24
|
}),
|
|
25
|
-
prdFilePath: pathService.join(
|
|
25
|
+
prdFilePath: pathService.join(".lalph", "prd.yml"),
|
|
26
26
|
}),
|
|
27
27
|
ChildProcess.setCwd(worktree.directory),
|
|
28
28
|
options.commandPrefix,
|
package/src/PromptGen.ts
CHANGED
|
@@ -174,8 +174,8 @@ ${options.task.description}
|
|
|
174
174
|
githubPrNumber: options.githubPrNumber,
|
|
175
175
|
targetBranch: options.targetBranch,
|
|
176
176
|
})}
|
|
177
|
-
6.
|
|
178
|
-
|
|
177
|
+
6. **After ${options.gitFlow.requiresGithubPr ? "pushing" : "committing"}**
|
|
178
|
+
your changes, update the prd.yml to reflect any changes in the task state.
|
|
179
179
|
- Rewrite the notes in the description to include only the key discoveries and information that could speed up future work on other tasks. Make sure to preserve important information such as specification file references.
|
|
180
180
|
- If you believe the task is complete, update the \`state\` to "in-review".
|
|
181
181
|
|