lalph 0.3.123 → 0.3.125
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 +4 -2
- package/package.json +1 -1
- package/src/PromptGen.ts +3 -1
package/dist/cli.mjs
CHANGED
|
@@ -241929,6 +241929,8 @@ ${options.plan}
|
|
|
241929
241929
|
- If the user asks you to update an existing specification, find the relevant
|
|
241930
241930
|
specification file in the \`${options.specsDirectory}\` directory and update it
|
|
241931
241931
|
accordingly.
|
|
241932
|
+
- When interviewing the user, ask one question at a time about anything that
|
|
241933
|
+
needs clarification.
|
|
241932
241934
|
2. Add a detailed implementation plan to the specification, breaking down the work into
|
|
241933
241935
|
smaller, manageable tasks.
|
|
241934
241936
|
3. Start two subagents to review the plan:
|
|
@@ -241965,7 +241967,7 @@ ${options.plan}
|
|
|
241965
241967
|
"specification": "path/to/specification/file.md"
|
|
241966
241968
|
}
|
|
241967
241969
|
\`\`\`
|
|
241968
|
-
5. Present the
|
|
241970
|
+
5. Present the full path to the specification file for review.
|
|
241969
241971
|
|
|
241970
241972
|
**Important:** You are only creating or updating a plan, not implementing any tasks yet.
|
|
241971
241973
|
|
|
@@ -243736,7 +243738,7 @@ const commandEdit = make$60("edit").pipe(withDescription("Open the selected proj
|
|
|
243736
243738
|
const commandSource = make$60("source").pipe(withDescription("Select the issue source to use (e.g. GitHub Issues or Linear). This applies to all projects."), withHandler(() => selectIssueSource), provide(Settings.layer));
|
|
243737
243739
|
//#endregion
|
|
243738
243740
|
//#region package.json
|
|
243739
|
-
var version = "0.3.
|
|
243741
|
+
var version = "0.3.125";
|
|
243740
243742
|
//#endregion
|
|
243741
243743
|
//#region src/Tracing.ts
|
|
243742
243744
|
const TracingLayer = unwrap$3(gen(function* () {
|
package/package.json
CHANGED
package/src/PromptGen.ts
CHANGED
|
@@ -384,6 +384,8 @@ ${options.plan}
|
|
|
384
384
|
- If the user asks you to update an existing specification, find the relevant
|
|
385
385
|
specification file in the \`${options.specsDirectory}\` directory and update it
|
|
386
386
|
accordingly.
|
|
387
|
+
- When interviewing the user, ask one question at a time about anything that
|
|
388
|
+
needs clarification.
|
|
387
389
|
2. Add a detailed implementation plan to the specification, breaking down the work into
|
|
388
390
|
smaller, manageable tasks.
|
|
389
391
|
3. Start two subagents to review the plan:
|
|
@@ -420,7 +422,7 @@ ${options.plan}
|
|
|
420
422
|
"specification": "path/to/specification/file.md"
|
|
421
423
|
}
|
|
422
424
|
\`\`\`
|
|
423
|
-
5. Present the
|
|
425
|
+
5. Present the full path to the specification file for review.
|
|
424
426
|
|
|
425
427
|
**Important:** You are only creating or updating a plan, not implementing any tasks yet.
|
|
426
428
|
|