lalph 0.3.131 → 0.3.132
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 +6 -4
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
- package/src/PromptGen.ts +5 -3
package/package.json
CHANGED
package/src/PromptGen.ts
CHANGED
|
@@ -384,9 +384,11 @@ ${options.plan}
|
|
|
384
384
|
accordingly.
|
|
385
385
|
- When interviewing the user, ask one question at a time about anything that
|
|
386
386
|
needs clarification.
|
|
387
|
+
- At the end of the interview, there should be no open questions left.
|
|
387
388
|
2. Add a detailed implementation plan to the specification, breaking down the work into
|
|
388
389
|
smaller, manageable tasks.
|
|
389
|
-
3.
|
|
390
|
+
3. If there are any open questions, restart the interview process from step 1.
|
|
391
|
+
4. Start two subagents to review the plan:
|
|
390
392
|
- The first subagent will recieve the following prompt:
|
|
391
393
|
\`\`\`
|
|
392
394
|
Your job is to thoroughly review the specification created for the request,
|
|
@@ -414,13 +416,13 @@ ${options.plan}
|
|
|
414
416
|
{insert original prompt here}
|
|
415
417
|
\`\`\`
|
|
416
418
|
|
|
417
|
-
|
|
419
|
+
5. Write the specification details to a \`.lalph/plan.json\` file using the following format:
|
|
418
420
|
\`\`\`json
|
|
419
421
|
{
|
|
420
422
|
"specification": "path/to/specification/file.md"
|
|
421
423
|
}
|
|
422
424
|
\`\`\`
|
|
423
|
-
|
|
425
|
+
6. Present the full absolute 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
|
|