lalph 0.3.114 → 0.3.116

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.114",
4
+ "version": "0.3.116",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -44,8 +44,8 @@
44
44
  "@linear/sdk": "^80.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.20260324.1",
48
- "clanka": "^0.2.38",
47
+ "@typescript/native-preview": "7.0.0-dev.20260326.1",
48
+ "clanka": "^0.2.42",
49
49
  "concurrently": "^9.2.1",
50
50
  "effect": "4.0.0-beta.40",
51
51
  "husky": "^9.1.7",
@@ -53,7 +53,7 @@
53
53
  "octokit": "^5.0.5",
54
54
  "oxlint": "^1.57.0",
55
55
  "prettier": "^3.8.1",
56
- "tsdown": "^0.21.4",
56
+ "tsdown": "^0.21.5",
57
57
  "typescript": "^6.0.2",
58
58
  "yaml": "^2.8.3"
59
59
  },
@@ -1,4 +1,4 @@
1
- import { Duration, Effect, Option } from "effect"
1
+ import { Effect, Option } from "effect"
2
2
  import { PromptGen } from "../PromptGen.ts"
3
3
  import { Worktree } from "../Worktree.ts"
4
4
  import type { CliAgentPreset } from "../domain/CliAgentPreset.ts"
@@ -8,7 +8,6 @@ import type { PrdIssue } from "../domain/PrdIssue.ts"
8
8
  export const agentResearcher = Effect.fnUntraced(function* (options: {
9
9
  readonly task: PrdIssue
10
10
  readonly specsDirectory: string
11
- readonly stallTimeout: Duration.Duration
12
11
  readonly preset: CliAgentPreset
13
12
  }) {
14
13
  const worktree = yield* Worktree
@@ -221,7 +221,6 @@ const run = Effect.fnUntraced(
221
221
  researchResult = yield* agentResearcher({
222
222
  task: chosenTask.prd,
223
223
  specsDirectory: options.specsDirectory,
224
- stallTimeout: options.stallTimeout,
225
224
  preset: taskPreset,
226
225
  })
227
226
  }