lalph 0.3.4 → 0.3.5
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 +26 -5
- package/package.json +1 -1
- package/src/PromptGen.ts +25 -4
package/dist/cli.mjs
CHANGED
|
@@ -151362,13 +151362,34 @@ ${options.plan}
|
|
|
151362
151362
|
accordingly.
|
|
151363
151363
|
2. Add a detailed implementation plan to the specification, breaking down the work into
|
|
151364
151364
|
smaller, manageable tasks.
|
|
151365
|
-
3. Start two subagents
|
|
151366
|
-
- The first subagent will
|
|
151367
|
-
|
|
151368
|
-
|
|
151365
|
+
3. Start two subagents to review the plan:
|
|
151366
|
+
- The first subagent will recieve the following prompt:
|
|
151367
|
+
\`\`\`
|
|
151368
|
+
Your job is to thoroughly review the specification created for the request,
|
|
151369
|
+
recommend improvements, and ensure every detail is covered.
|
|
151370
|
+
|
|
151371
|
+
Below is the original request.
|
|
151372
|
+
|
|
151373
|
+
---
|
|
151374
|
+
|
|
151375
|
+
{insert original prompt here}
|
|
151376
|
+
\`\`\`
|
|
151377
|
+
|
|
151378
|
+
- The second subagent will receive the following prompt:
|
|
151379
|
+
\`\`\`
|
|
151380
|
+
Your job is to look over the implementation plan, and ensure each task is
|
|
151381
|
+
small, atomic and independently shippable. You also **NEED TO** make sure task
|
|
151369
151382
|
can be completed without failing validation checks (typechecks, linting, tests).
|
|
151370
151383
|
If a task will only pass validations when combined with another, the subagent should
|
|
151371
151384
|
combine the work into one task.
|
|
151385
|
+
|
|
151386
|
+
Below is the original request.
|
|
151387
|
+
|
|
151388
|
+
---
|
|
151389
|
+
|
|
151390
|
+
{insert original prompt here}
|
|
151391
|
+
\`\`\`
|
|
151392
|
+
|
|
151372
151393
|
4. Write the specification details to a \`.lalph/plan.json\` file using the following format:
|
|
151373
151394
|
\`\`\`json
|
|
151374
151395
|
{
|
|
@@ -152513,7 +152534,7 @@ const commandSource = make$35("source").pipe(withDescription("Select the issue s
|
|
|
152513
152534
|
|
|
152514
152535
|
//#endregion
|
|
152515
152536
|
//#region package.json
|
|
152516
|
-
var version = "0.3.
|
|
152537
|
+
var version = "0.3.5";
|
|
152517
152538
|
|
|
152518
152539
|
//#endregion
|
|
152519
152540
|
//#region src/commands/projects/ls.ts
|
package/package.json
CHANGED
package/src/PromptGen.ts
CHANGED
|
@@ -255,13 +255,34 @@ ${options.plan}
|
|
|
255
255
|
accordingly.
|
|
256
256
|
2. Add a detailed implementation plan to the specification, breaking down the work into
|
|
257
257
|
smaller, manageable tasks.
|
|
258
|
-
3. Start two subagents
|
|
259
|
-
- The first subagent will
|
|
260
|
-
|
|
261
|
-
|
|
258
|
+
3. Start two subagents to review the plan:
|
|
259
|
+
- The first subagent will recieve the following prompt:
|
|
260
|
+
\`\`\`
|
|
261
|
+
Your job is to thoroughly review the specification created for the request,
|
|
262
|
+
recommend improvements, and ensure every detail is covered.
|
|
263
|
+
|
|
264
|
+
Below is the original request.
|
|
265
|
+
|
|
266
|
+
---
|
|
267
|
+
|
|
268
|
+
{insert original prompt here}
|
|
269
|
+
\`\`\`
|
|
270
|
+
|
|
271
|
+
- The second subagent will receive the following prompt:
|
|
272
|
+
\`\`\`
|
|
273
|
+
Your job is to look over the implementation plan, and ensure each task is
|
|
274
|
+
small, atomic and independently shippable. You also **NEED TO** make sure task
|
|
262
275
|
can be completed without failing validation checks (typechecks, linting, tests).
|
|
263
276
|
If a task will only pass validations when combined with another, the subagent should
|
|
264
277
|
combine the work into one task.
|
|
278
|
+
|
|
279
|
+
Below is the original request.
|
|
280
|
+
|
|
281
|
+
---
|
|
282
|
+
|
|
283
|
+
{insert original prompt here}
|
|
284
|
+
\`\`\`
|
|
285
|
+
|
|
265
286
|
4. Write the specification details to a \`.lalph/plan.json\` file using the following format:
|
|
266
287
|
\`\`\`json
|
|
267
288
|
{
|