lalph 0.3.69 → 0.3.70
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 +21 -23
- package/package.json +3 -3
package/dist/cli.mjs
CHANGED
|
@@ -179172,7 +179172,7 @@ var ji = Bt, Ii = Object.assign(Qe, { sync: Bt }), zi = Ut, Bi = Object.assign(e
|
|
|
179172
179172
|
});
|
|
179173
179173
|
Ze.glob = Ze;
|
|
179174
179174
|
//#endregion
|
|
179175
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
179175
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/ApplyPatch.js
|
|
179176
179176
|
/**
|
|
179177
179177
|
* @since 1.0.0
|
|
179178
179178
|
*/
|
|
@@ -194045,7 +194045,7 @@ var StreamableHTTPClientTransport = class {
|
|
|
194045
194045
|
}
|
|
194046
194046
|
};
|
|
194047
194047
|
//#endregion
|
|
194048
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
194048
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/McpClient.js
|
|
194049
194049
|
/**
|
|
194050
194050
|
* @since 1.0.0
|
|
194051
194051
|
*/
|
|
@@ -194090,7 +194090,7 @@ const layer$7 = effect$1(McpClient, gen(function* () {
|
|
|
194090
194090
|
});
|
|
194091
194091
|
}));
|
|
194092
194092
|
//#endregion
|
|
194093
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
194093
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/ExaSearch.js
|
|
194094
194094
|
/**
|
|
194095
194095
|
* @since 1.0.0
|
|
194096
194096
|
*/
|
|
@@ -209040,7 +209040,7 @@ var require_lib = /* @__PURE__ */ __commonJSMin$1(((exports) => {
|
|
|
209040
209040
|
exports.impl = impl;
|
|
209041
209041
|
}));
|
|
209042
209042
|
//#endregion
|
|
209043
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
209043
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/WebToMarkdown.js
|
|
209044
209044
|
/**
|
|
209045
209045
|
* @since 1.0.0
|
|
209046
209046
|
*/
|
|
@@ -212178,7 +212178,7 @@ function isEmptyParamsRecord(indexSignature) {
|
|
|
212178
212178
|
return indexSignature.parameter === string$3 && isNever(indexSignature.type);
|
|
212179
212179
|
}
|
|
212180
212180
|
//#endregion
|
|
212181
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
212181
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/AgentTools.js
|
|
212182
212182
|
/**
|
|
212183
212183
|
* @since 1.0.0
|
|
212184
212184
|
*/
|
|
@@ -212352,9 +212352,10 @@ const AgentToolHandlersNoDeps = AgentTools.toLayer(gen(function* () {
|
|
|
212352
212352
|
yield* logInfo(`Calling "rg"`).pipe(annotateLogs(options));
|
|
212353
212353
|
const cwd = yield* CurrentDirectory;
|
|
212354
212354
|
const args = [
|
|
212355
|
-
"--max-filesize",
|
|
212356
|
-
"
|
|
212357
|
-
"--line-number"
|
|
212355
|
+
"--max-filesize=1M",
|
|
212356
|
+
"--heading",
|
|
212357
|
+
"--line-number",
|
|
212358
|
+
"--max-columns=300"
|
|
212358
212359
|
];
|
|
212359
212360
|
if (options.filesOnly) args.push("--files-with-matches");
|
|
212360
212361
|
if (options.glob) {
|
|
@@ -212362,12 +212363,9 @@ const AgentToolHandlersNoDeps = AgentTools.toLayer(gen(function* () {
|
|
|
212362
212363
|
if (!options.glob.startsWith("*")) args.push("-uu");
|
|
212363
212364
|
}
|
|
212364
212365
|
args.push(options.pattern);
|
|
212365
|
-
let stream =
|
|
212366
|
+
let stream = spawner.streamLines(make$40("rg", args, {
|
|
212366
212367
|
cwd,
|
|
212367
212368
|
stdin: "ignore"
|
|
212368
|
-
})), map$7((line) => {
|
|
212369
|
-
if (line.length <= 500) return line;
|
|
212370
|
-
return line.slice(0, 500) + "...[truncated]";
|
|
212371
212369
|
}));
|
|
212372
212370
|
stream = take(stream, options.maxLines ?? 500);
|
|
212373
212371
|
return yield* runCollect(stream).pipe(map$9(join$3("\n")), orDie$2);
|
|
@@ -212514,7 +212512,7 @@ const AgentToolHandlers = AgentToolHandlersNoDeps.pipe(provide$3([layer$6, layer
|
|
|
212514
212512
|
AgentToolHandlersNoDeps.pipe(provide$3([mock(ExaSearch)({}), mock(WebToMarkdown)({})]));
|
|
212515
212513
|
var ApplyPatchError = class extends TaggedClass$1("ApplyPatchError") {};
|
|
212516
212514
|
//#endregion
|
|
212517
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
212515
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/TypeBuilder.js
|
|
212518
212516
|
const resolveDocumentation = resolveAt("documentation");
|
|
212519
212517
|
const identifierPattern = /^[$A-Z_a-z][$0-9A-Z_a-z]*$/u;
|
|
212520
212518
|
const Precedence = {
|
|
@@ -212787,7 +212785,7 @@ const render = (schema, options) => {
|
|
|
212787
212785
|
return printNode({ text: documentation === void 0 ? rendered.text : `${renderJsDoc(documentation, 0, printerOptions)}${printerOptions.newLine}${rendered.text}` }, printerOptions);
|
|
212788
212786
|
};
|
|
212789
212787
|
//#endregion
|
|
212790
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
212788
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/ToolkitRenderer.js
|
|
212791
212789
|
/**
|
|
212792
212790
|
* @since 1.0.0
|
|
212793
212791
|
*/
|
|
@@ -212809,7 +212807,7 @@ declare function ${name}(${params}): Promise<${render(tool.successSchema)}>`);
|
|
|
212809
212807
|
}) });
|
|
212810
212808
|
};
|
|
212811
212809
|
//#endregion
|
|
212812
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
212810
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/AgentExecutor.js
|
|
212813
212811
|
/**
|
|
212814
212812
|
* @since 1.0.0
|
|
212815
212813
|
*/
|
|
@@ -212963,7 +212961,7 @@ var QueueWriteStream = class extends Writable {
|
|
|
212963
212961
|
}
|
|
212964
212962
|
};
|
|
212965
212963
|
//#endregion
|
|
212966
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
212964
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/ScriptExtraction.js
|
|
212967
212965
|
const stripWrappingCodeFence = (script) => {
|
|
212968
212966
|
const lines = script.split(/\r?\n/);
|
|
212969
212967
|
if (lines.length < 2) return script;
|
|
@@ -214496,7 +214494,7 @@ const applySpanTransformer = (transformer, response, options) => {
|
|
|
214496
214494
|
});
|
|
214497
214495
|
};
|
|
214498
214496
|
//#endregion
|
|
214499
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
214497
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/Agent.js
|
|
214500
214498
|
/**
|
|
214501
214499
|
* @since 1.0.0
|
|
214502
214500
|
*/
|
|
@@ -225729,7 +225727,7 @@ const transformToolCallParams = /* @__PURE__ */ fnUntraced(function* (tools, too
|
|
|
225729
225727
|
})));
|
|
225730
225728
|
});
|
|
225731
225729
|
//#endregion
|
|
225732
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
225730
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/CodexAuth.js
|
|
225733
225731
|
/**
|
|
225734
225732
|
* @since 1.0.0
|
|
225735
225733
|
*/
|
|
@@ -225949,7 +225947,7 @@ var CodexAuth = class CodexAuth extends Service$1()("clanka/CodexAuth") {
|
|
|
225949
225947
|
static layerClient = this.layerClientNoDeps.pipe(provide$3(CodexAuth.layer));
|
|
225950
225948
|
};
|
|
225951
225949
|
//#endregion
|
|
225952
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
225950
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/Codex.js
|
|
225953
225951
|
/**
|
|
225954
225952
|
* @since 1.0.0
|
|
225955
225953
|
*/
|
|
@@ -227261,7 +227259,7 @@ const getUsageDetailNumber = (details, field) => {
|
|
|
227261
227259
|
return typeof value === "number" ? value : void 0;
|
|
227262
227260
|
};
|
|
227263
227261
|
//#endregion
|
|
227264
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
227262
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/CopilotAuth.js
|
|
227265
227263
|
/**
|
|
227266
227264
|
* @since 1.0.0
|
|
227267
227265
|
*/
|
|
@@ -227452,7 +227450,7 @@ var GithubCopilotAuth = class GithubCopilotAuth extends Service$1()("clanka/Gith
|
|
|
227452
227450
|
static layerClient = this.layerClientNoDeps.pipe(provide$3(GithubCopilotAuth.layer));
|
|
227453
227451
|
};
|
|
227454
227452
|
//#endregion
|
|
227455
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
227453
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/Copilot.js
|
|
227456
227454
|
/**
|
|
227457
227455
|
* @since 1.0.0
|
|
227458
227456
|
*/
|
|
@@ -227872,7 +227870,7 @@ Object.defineProperties(createChalk.prototype, styles);
|
|
|
227872
227870
|
const chalk = createChalk();
|
|
227873
227871
|
createChalk({ level: stderrColor ? stderrColor.level : 0 });
|
|
227874
227872
|
//#endregion
|
|
227875
|
-
//#region node_modules/.pnpm/clanka@0.1.
|
|
227873
|
+
//#region node_modules/.pnpm/clanka@0.1.20_@effect+ai-openai-compat@https+++pkg.pr.new+Effect-TS+effect-smol+@effect_eb7b797e43c03e41b048546694742fb3/node_modules/clanka/dist/OutputFormatter.js
|
|
227876
227874
|
/**
|
|
227877
227875
|
* @since 1.0.0
|
|
227878
227876
|
*/
|
|
@@ -237208,7 +237206,7 @@ const commandEdit = make$50("edit").pipe(withDescription("Open the selected proj
|
|
|
237208
237206
|
const commandSource = make$50("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));
|
|
237209
237207
|
//#endregion
|
|
237210
237208
|
//#region package.json
|
|
237211
|
-
var version = "0.3.
|
|
237209
|
+
var version = "0.3.70";
|
|
237212
237210
|
//#endregion
|
|
237213
237211
|
//#region src/commands/projects/ls.ts
|
|
237214
237212
|
const commandProjectsLs = make$50("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.
|
|
4
|
+
"version": "0.3.70",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"@linear/sdk": "^77.0.0",
|
|
30
30
|
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
|
|
31
31
|
"@octokit/types": "^16.0.0",
|
|
32
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
33
|
-
"clanka": "^0.1.
|
|
32
|
+
"@typescript/native-preview": "7.0.0-dev.20260317.1",
|
|
33
|
+
"clanka": "^0.1.20",
|
|
34
34
|
"concurrently": "^9.2.1",
|
|
35
35
|
"effect": "https://pkg.pr.new/Effect-TS/effect-smol/effect@fe407c2",
|
|
36
36
|
"husky": "^9.1.7",
|