lalph 0.3.130 → 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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lalph",
3
3
  "type": "module",
4
- "version": "0.3.130",
4
+ "version": "0.3.132",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -37,21 +37,21 @@
37
37
  "devDependencies": {
38
38
  "@changesets/changelog-github": "^0.7.0",
39
39
  "@changesets/cli": "^2.31.0",
40
- "@effect/ai-openai": "4.0.0-beta.67",
41
- "@effect/ai-openai-compat": "4.0.0-beta.67",
40
+ "@effect/ai-openai": "4.0.0-beta.68",
41
+ "@effect/ai-openai-compat": "4.0.0-beta.68",
42
42
  "@effect/language-service": "^0.86.1",
43
- "@effect/platform-node": "4.0.0-beta.67",
43
+ "@effect/platform-node": "4.0.0-beta.68",
44
44
  "@linear/sdk": "^84.0.0",
45
45
  "@octokit/plugin-rest-endpoint-methods": "^17.0.0",
46
46
  "@octokit/types": "^16.0.0",
47
- "@typescript/native-preview": "7.0.0-dev.20260517.1",
48
- "clanka": "^0.2.63",
47
+ "@typescript/native-preview": "7.0.0-dev.20260519.1",
48
+ "clanka": "^0.2.65",
49
49
  "concurrently": "^9.2.1",
50
- "effect": "4.0.0-beta.67",
50
+ "effect": "4.0.0-beta.68",
51
51
  "husky": "^9.1.7",
52
52
  "lint-staged": "^17.0.5",
53
53
  "octokit": "^5.0.5",
54
- "oxlint": "^1.65.0",
54
+ "oxlint": "^1.66.0",
55
55
  "prettier": "^3.8.3",
56
56
  "tsdown": "^0.22.0",
57
57
  "typescript": "^6.0.3",
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. Start two subagents to review the plan:
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
- 4. Write the specification details to a \`.lalph/plan.json\` file using the following format:
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
- 5. Present the full path to the specification file for review.
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