lalph 0.1.39 → 0.1.40

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
@@ -140454,16 +140454,6 @@ The following instructions should be done without interaction or asking for perm
140454
140454
  }
140455
140455
  \`\`\`
140456
140456
 
140457
- ## Important: Task sizing
140458
-
140459
- If at any point you decide that a task is too large or complex to complete in a
140460
- single iteration, break it down into smaller tasks and add them to the prd.yml
140461
- file. Then, mark the original task as "done" by updating its \`state\`.
140462
-
140463
- Each task should be an atomic, committable piece of work.
140464
- Instead of creating tasks like "Refactor the authentication system", create
140465
- smaller tasks like "Implement OAuth2 login endpoint", "Add JWT token refresh mechanism", etc.
140466
-
140467
140457
  ${prdNotes}`;
140468
140458
  const prompt = (options) => `# Instructions
140469
140459
 
@@ -140497,6 +140487,11 @@ permission.
140497
140487
  and information that could speed up future work on other tasks.
140498
140488
  - If you believe the task is complete, update the \`state\` to "in-review".
140499
140489
 
140490
+ ## Important: Adding new tasks
140491
+
140492
+ **If at any point** you discover something that needs fixing, or another task
140493
+ that needs doing, immediately add it to the prd.yml file as a new task.
140494
+
140500
140495
  ## Important: Recording key information
140501
140496
 
140502
140497
  This session will time out after a certain period, so make sure to record
@@ -140510,9 +140505,6 @@ do not wait until the end of the task. Things to record include:
140510
140505
  - If you found a library api was renamed or moved, record the new name.
140511
140506
  - Any other information that could help future work on similar tasks.
140512
140507
 
140513
- **If at any point** you discover something that needs fixing, or another task
140514
- that needs doing, immediately add it to the prd.yml file as a new task.
140515
-
140516
140508
  ## Handling blockers
140517
140509
 
140518
140510
  If for any reason you get stuck on a task, mark the task back as "todo" by updating its
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lalph",
3
3
  "type": "module",
4
- "version": "0.1.39",
4
+ "version": "0.1.40",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
package/src/PromptGen.ts CHANGED
@@ -69,16 +69,6 @@ The following instructions should be done without interaction or asking for perm
69
69
  }
70
70
  \`\`\`
71
71
 
72
- ## Important: Task sizing
73
-
74
- If at any point you decide that a task is too large or complex to complete in a
75
- single iteration, break it down into smaller tasks and add them to the prd.yml
76
- file. Then, mark the original task as "done" by updating its \`state\`.
77
-
78
- Each task should be an atomic, committable piece of work.
79
- Instead of creating tasks like "Refactor the authentication system", create
80
- smaller tasks like "Implement OAuth2 login endpoint", "Add JWT token refresh mechanism", etc.
81
-
82
72
  ${prdNotes}`
83
73
 
84
74
  const prompt = (options: {
@@ -116,6 +106,11 @@ permission.
116
106
  and information that could speed up future work on other tasks.
117
107
  - If you believe the task is complete, update the \`state\` to "in-review".
118
108
 
109
+ ## Important: Adding new tasks
110
+
111
+ **If at any point** you discover something that needs fixing, or another task
112
+ that needs doing, immediately add it to the prd.yml file as a new task.
113
+
119
114
  ## Important: Recording key information
120
115
 
121
116
  This session will time out after a certain period, so make sure to record
@@ -129,9 +124,6 @@ do not wait until the end of the task. Things to record include:
129
124
  - If you found a library api was renamed or moved, record the new name.
130
125
  - Any other information that could help future work on similar tasks.
131
126
 
132
- **If at any point** you discover something that needs fixing, or another task
133
- that needs doing, immediately add it to the prd.yml file as a new task.
134
-
135
127
  ## Handling blockers
136
128
 
137
129
  If for any reason you get stuck on a task, mark the task back as "todo" by updating its