lalph 0.3.60 → 0.3.61

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.
Files changed (2) hide show
  1. package/dist/cli.mjs +20 -20
  2. package/package.json +2 -2
package/dist/cli.mjs CHANGED
@@ -177948,7 +177948,7 @@ var ji = Bt, Ii = Object.assign(Qe, { sync: Bt }), zi = Ut, Bi = Object.assign(e
177948
177948
  });
177949
177949
  Ze.glob = Ze;
177950
177950
  //#endregion
177951
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/ApplyPatch.js
177951
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/ApplyPatch.js
177952
177952
  /**
177953
177953
  * @since 1.0.0
177954
177954
  */
@@ -192821,7 +192821,7 @@ var StreamableHTTPClientTransport = class {
192821
192821
  }
192822
192822
  };
192823
192823
  //#endregion
192824
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/McpClient.js
192824
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/McpClient.js
192825
192825
  /**
192826
192826
  * @since 1.0.0
192827
192827
  */
@@ -192866,7 +192866,7 @@ const layer$7 = effect$1(McpClient, gen(function* () {
192866
192866
  });
192867
192867
  }));
192868
192868
  //#endregion
192869
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/ExaSearch.js
192869
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/ExaSearch.js
192870
192870
  /**
192871
192871
  * @since 1.0.0
192872
192872
  */
@@ -207816,7 +207816,7 @@ var require_lib = /* @__PURE__ */ __commonJSMin$1(((exports) => {
207816
207816
  exports.impl = impl;
207817
207817
  }));
207818
207818
  //#endregion
207819
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/WebToMarkdown.js
207819
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/WebToMarkdown.js
207820
207820
  /**
207821
207821
  * @since 1.0.0
207822
207822
  */
@@ -210898,7 +210898,7 @@ const unsafeSecureJsonParse = (text) => {
210898
210898
  }
210899
210899
  };
210900
210900
  //#endregion
210901
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/AgentTools.js
210901
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/AgentTools.js
210902
210902
  /**
210903
210903
  * @since 1.0.0
210904
210904
  */
@@ -210985,7 +210985,7 @@ const AgentTools = make$9(make$8("readFile", {
210985
210985
  description: "Run a bash command and return the output",
210986
210986
  parameters: Struct({
210987
210987
  command: String$1,
210988
- timeout: optional$3(Finite).annotate({ documentation: "Timeout in seconds (default: 120)" })
210988
+ timeoutMs: optional$3(Finite).annotate({ documentation: "Timeout in ms (default: 120000)" })
210989
210989
  }).annotate({ identifier: "command" }),
210990
210990
  success: String$1,
210991
210991
  dependencies: [CurrentDirectory]
@@ -211101,7 +211101,7 @@ const AgentToolHandlersNoDeps = AgentTools.toLayer(gen(function* () {
211101
211101
  return yield* promise(() => Ze(pattern, { cwd }));
211102
211102
  }),
211103
211103
  bash: fn("AgentTools.bash")(function* (options) {
211104
- const timeout = options.timeout ?? 120;
211104
+ const timeout = millis(options.timeoutMs ?? 12e4);
211105
211105
  yield* logInfo(`Calling "bash"`).pipe(annotateLogs({
211106
211106
  ...options,
211107
211107
  timeout
@@ -211111,8 +211111,8 @@ const AgentToolHandlersNoDeps = AgentTools.toLayer(gen(function* () {
211111
211111
  cwd,
211112
211112
  stdin: "ignore"
211113
211113
  })).pipe(timeoutOrElse({
211114
- duration: timeout * 1e3,
211115
- onTimeout: () => die$2(/* @__PURE__ */ new Error(`Command timed out after ${timeout} seconds`))
211114
+ duration: timeout,
211115
+ onTimeout: () => die$2(/* @__PURE__ */ new Error(`Command timed out after ${timeout}`))
211116
211116
  }));
211117
211117
  }, orDie$2),
211118
211118
  gh: fn("AgentTools.gh")(function* (args) {
@@ -211248,7 +211248,7 @@ const AgentToolHandlers = AgentToolHandlersNoDeps.pipe(provide$3([layer$6, layer
211248
211248
  AgentToolHandlersNoDeps.pipe(provide$3([mock(ExaSearch)({}), mock(WebToMarkdown)({})]));
211249
211249
  var ApplyPatchError = class extends TaggedClass$1("ApplyPatchError") {};
211250
211250
  //#endregion
211251
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/TypeBuilder.js
211251
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/TypeBuilder.js
211252
211252
  const resolveDocumentation = resolveAt("documentation");
211253
211253
  const identifierPattern = /^[$A-Z_a-z][$0-9A-Z_a-z]*$/u;
211254
211254
  const Precedence = {
@@ -211521,7 +211521,7 @@ const render = (schema, options) => {
211521
211521
  return printNode({ text: documentation === void 0 ? rendered.text : `${renderJsDoc(documentation, 0, printerOptions)}${printerOptions.newLine}${rendered.text}` }, printerOptions);
211522
211522
  };
211523
211523
  //#endregion
211524
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/ToolkitRenderer.js
211524
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/ToolkitRenderer.js
211525
211525
  /**
211526
211526
  * @since 1.0.0
211527
211527
  */
@@ -211543,7 +211543,7 @@ declare function ${name}(${params}): Promise<${render(tool.successSchema)}>`);
211543
211543
  }) });
211544
211544
  };
211545
211545
  //#endregion
211546
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/AgentExecutor.js
211546
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/AgentExecutor.js
211547
211547
  /**
211548
211548
  * @since 1.0.0
211549
211549
  */
@@ -211697,7 +211697,7 @@ var QueueWriteStream = class extends Writable {
211697
211697
  }
211698
211698
  };
211699
211699
  //#endregion
211700
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/ScriptExtraction.js
211700
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/ScriptExtraction.js
211701
211701
  const stripWrappingCodeFence = (script) => {
211702
211702
  const lines = script.split(/\r?\n/);
211703
211703
  if (lines.length < 2) return script;
@@ -213080,7 +213080,7 @@ const applySpanTransformer = (transformer, response, options) => {
213080
213080
  });
213081
213081
  };
213082
213082
  //#endregion
213083
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/Agent.js
213083
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/Agent.js
213084
213084
  /**
213085
213085
  * @since 1.0.0
213086
213086
  */
@@ -224220,7 +224220,7 @@ const transformToolCallParams = /* @__PURE__ */ fnUntraced(function* (tools, too
224220
224220
  })));
224221
224221
  });
224222
224222
  //#endregion
224223
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/CodexAuth.js
224223
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/CodexAuth.js
224224
224224
  /**
224225
224225
  * @since 1.0.0
224226
224226
  */
@@ -224440,7 +224440,7 @@ var CodexAuth = class CodexAuth extends Service$1()("clanka/CodexAuth") {
224440
224440
  static layerClient = this.layerClientNoDeps.pipe(provide$3(CodexAuth.layer));
224441
224441
  };
224442
224442
  //#endregion
224443
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/Codex.js
224443
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/Codex.js
224444
224444
  /**
224445
224445
  * @since 1.0.0
224446
224446
  */
@@ -225759,7 +225759,7 @@ const getUsageDetailNumber = (details, field) => {
225759
225759
  return typeof value === "number" ? value : void 0;
225760
225760
  };
225761
225761
  //#endregion
225762
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/CopilotAuth.js
225762
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/CopilotAuth.js
225763
225763
  /**
225764
225764
  * @since 1.0.0
225765
225765
  */
@@ -225950,7 +225950,7 @@ var GithubCopilotAuth = class GithubCopilotAuth extends Service$1()("clanka/Gith
225950
225950
  static layerClient = this.layerClientNoDeps.pipe(provide$3(GithubCopilotAuth.layer));
225951
225951
  };
225952
225952
  //#endregion
225953
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/Copilot.js
225953
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/Copilot.js
225954
225954
  /**
225955
225955
  * @since 1.0.0
225956
225956
  */
@@ -226373,7 +226373,7 @@ Object.defineProperties(createChalk.prototype, styles);
226373
226373
  const chalk = createChalk();
226374
226374
  createChalk({ level: stderrColor ? stderrColor.level : 0 });
226375
226375
  //#endregion
226376
- //#region node_modules/.pnpm/clanka@0.1.7_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c447e60528c70ed451c9a3bd1c3e2a21/node_modules/clanka/dist/OutputFormatter.js
226376
+ //#region node_modules/.pnpm/clanka@0.1.8_@effect+ai-openai-compat@4.0.0-beta.31_effect@4.0.0-beta.31__@effect+ai-op_c1c0d9126463b1cd141896b41f79abdf/node_modules/clanka/dist/OutputFormatter.js
226377
226377
  /**
226378
226378
  * @since 1.0.0
226379
226379
  */
@@ -235650,7 +235650,7 @@ const commandEdit = make$49("edit").pipe(withDescription("Open the selected proj
235650
235650
  const commandSource = make$49("source").pipe(withDescription("Select the issue source to use (e.g. GitHub Issues or Linear). This applies to all projects."), withHandler(() => selectIssueSource), provide(Settings.layer));
235651
235651
  //#endregion
235652
235652
  //#region package.json
235653
- var version = "0.3.60";
235653
+ var version = "0.3.61";
235654
235654
  //#endregion
235655
235655
  //#region src/commands/projects/ls.ts
235656
235656
  const commandProjectsLs = make$49("ls").pipe(withDescription("List configured projects and how they run (enabled state, concurrency, branch, git flow, review agent)."), withHandler(fnUntraced(function* () {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lalph",
3
3
  "type": "module",
4
- "version": "0.3.60",
4
+ "version": "0.3.61",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -30,7 +30,7 @@
30
30
  "@octokit/plugin-rest-endpoint-methods": "^17.0.0",
31
31
  "@octokit/types": "^16.0.0",
32
32
  "@typescript/native-preview": "7.0.0-dev.20260313.1",
33
- "clanka": "^0.1.7",
33
+ "clanka": "^0.1.8",
34
34
  "concurrently": "^9.2.1",
35
35
  "effect": "4.0.0-beta.31",
36
36
  "husky": "^9.1.7",