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 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 with a copy of this prompt.
151366
- - The first subagent will review the plan and provide feedback or improvements.
151367
- - The second subagent will look over the implementation plan, and ensure each task is
151368
- small, atomic and independently shippable. It also **NEEDS TO** make sure task
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.4";
152537
+ var version = "0.3.5";
152517
152538
 
152518
152539
  //#endregion
152519
152540
  //#region src/commands/projects/ls.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lalph",
3
3
  "type": "module",
4
- "version": "0.3.4",
4
+ "version": "0.3.5",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
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 with a copy of this prompt.
259
- - The first subagent will review the plan and provide feedback or improvements.
260
- - The second subagent will look over the implementation plan, and ensure each task is
261
- small, atomic and independently shippable. It also **NEEDS TO** make sure task
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
  {