lalph 0.1.18 → 0.1.19
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 +5 -1
- package/package.json +1 -1
- package/src/PromptGen.ts +5 -1
package/dist/cli.mjs
CHANGED
|
@@ -140371,7 +140371,9 @@ var CurrentIssueSource = class CurrentIssueSource extends Service()("lalph/Curre
|
|
|
140371
140371
|
var PromptGen = class extends Service()("lalph/PromptGen", { make: gen(function* () {
|
|
140372
140372
|
const sourceMeta = yield* CurrentIssueSource;
|
|
140373
140373
|
const states = yield* (yield* IssueSource).states;
|
|
140374
|
-
const prdNotes = `## prd.yml
|
|
140374
|
+
const prdNotes = `## prd.yml file
|
|
140375
|
+
|
|
140376
|
+
**Important:** Wait 5 seconds between edits to allow the system to update the prd.yml file.
|
|
140375
140377
|
|
|
140376
140378
|
Each item in the prd.yml file represents a task for the current project.
|
|
140377
140379
|
|
|
@@ -140461,11 +140463,13 @@ permission.
|
|
|
140461
140463
|
- You have permission to create or update the PR as needed. You have full
|
|
140462
140464
|
permission to push branches, create PRs or create git commits.
|
|
140463
140465
|
7. Update the prd.yml file to reflect any changes in task states.
|
|
140466
|
+
- Only update the prd.yml file after the GitHub PR has been created or updated.
|
|
140464
140467
|
- Add follow up tasks only if needed.
|
|
140465
140468
|
- Append to the \`description\` field with any notes or important discoveries.
|
|
140466
140469
|
- If you believe the task is complete, update the \`stateId\` for "review".
|
|
140467
140470
|
Only if no "review" state exists, use a completed state.
|
|
140468
140471
|
|
|
140472
|
+
|
|
140469
140473
|
## Handling blockers
|
|
140470
140474
|
|
|
140471
140475
|
If for any reason you get stuck on a task, mark the task back as "todo" by updating its
|
package/package.json
CHANGED
package/src/PromptGen.ts
CHANGED
|
@@ -11,7 +11,9 @@ export class PromptGen extends ServiceMap.Service<PromptGen>()(
|
|
|
11
11
|
const source = yield* IssueSource
|
|
12
12
|
const states = yield* source.states
|
|
13
13
|
|
|
14
|
-
const prdNotes = `## prd.yml
|
|
14
|
+
const prdNotes = `## prd.yml file
|
|
15
|
+
|
|
16
|
+
**Important:** Wait 5 seconds between edits to allow the system to update the prd.yml file.
|
|
15
17
|
|
|
16
18
|
Each item in the prd.yml file represents a task for the current project.
|
|
17
19
|
|
|
@@ -103,11 +105,13 @@ permission.
|
|
|
103
105
|
- You have permission to create or update the PR as needed. You have full
|
|
104
106
|
permission to push branches, create PRs or create git commits.
|
|
105
107
|
7. Update the prd.yml file to reflect any changes in task states.
|
|
108
|
+
- Only update the prd.yml file after the GitHub PR has been created or updated.
|
|
106
109
|
- Add follow up tasks only if needed.
|
|
107
110
|
- Append to the \`description\` field with any notes or important discoveries.
|
|
108
111
|
- If you believe the task is complete, update the \`stateId\` for "review".
|
|
109
112
|
Only if no "review" state exists, use a completed state.
|
|
110
113
|
|
|
114
|
+
|
|
111
115
|
## Handling blockers
|
|
112
116
|
|
|
113
117
|
If for any reason you get stuck on a task, mark the task back as "todo" by updating its
|