lalph 0.3.100 → 0.3.101
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 +106 -25
- package/package.json +2 -2
package/dist/cli.mjs
CHANGED
|
@@ -36135,6 +36135,33 @@ function TaggedUnion(casesByTag) {
|
|
|
36135
36135
|
});
|
|
36136
36136
|
}
|
|
36137
36137
|
/**
|
|
36138
|
+
* Wraps a schema so that its decoded `Type` becomes a nominally distinct type `Self`.
|
|
36139
|
+
* Useful for creating opaque types that are structurally identical to a base schema
|
|
36140
|
+
* but type-incompatible with it.
|
|
36141
|
+
*
|
|
36142
|
+
* **Example** (Opaque user ID)
|
|
36143
|
+
*
|
|
36144
|
+
* ```ts
|
|
36145
|
+
* import { Schema } from "effect"
|
|
36146
|
+
*
|
|
36147
|
+
* type UserId = string & { readonly _tag: "UserId" }
|
|
36148
|
+
* const UserId = Schema.Opaque<UserId>()(Schema.String)
|
|
36149
|
+
*
|
|
36150
|
+
* // Decoded value is UserId, not plain string
|
|
36151
|
+
* const id = Schema.decodeUnknownSync(UserId)("abc")
|
|
36152
|
+
* // id: UserId
|
|
36153
|
+
* ```
|
|
36154
|
+
*
|
|
36155
|
+
* @since 4.0.0
|
|
36156
|
+
*/
|
|
36157
|
+
function Opaque() {
|
|
36158
|
+
return (schema) => {
|
|
36159
|
+
class Opaque {}
|
|
36160
|
+
Object.setPrototypeOf(Opaque, schema);
|
|
36161
|
+
return Opaque;
|
|
36162
|
+
};
|
|
36163
|
+
}
|
|
36164
|
+
/**
|
|
36138
36165
|
* Creates a schema that validates values using `instanceof`.
|
|
36139
36166
|
* Decoding and encoding pass the value through unchanged.
|
|
36140
36167
|
*
|
|
@@ -181617,7 +181644,7 @@ var ji = Bt, Ii = Object.assign(Qe, { sync: Bt }), zi = Ut, Bi = Object.assign(e
|
|
|
181617
181644
|
});
|
|
181618
181645
|
Ze.glob = Ze;
|
|
181619
181646
|
//#endregion
|
|
181620
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
181647
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/ApplyPatch.js
|
|
181621
181648
|
/**
|
|
181622
181649
|
* @since 1.0.0
|
|
181623
181650
|
*/
|
|
@@ -196490,7 +196517,7 @@ var StreamableHTTPClientTransport = class {
|
|
|
196490
196517
|
}
|
|
196491
196518
|
};
|
|
196492
196519
|
//#endregion
|
|
196493
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
196520
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/McpClient.js
|
|
196494
196521
|
/**
|
|
196495
196522
|
* @since 1.0.0
|
|
196496
196523
|
*/
|
|
@@ -196535,7 +196562,7 @@ const layer$13 = effect$1(McpClient, gen(function* () {
|
|
|
196535
196562
|
});
|
|
196536
196563
|
}));
|
|
196537
196564
|
//#endregion
|
|
196538
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
196565
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/ExaSearch.js
|
|
196539
196566
|
/**
|
|
196540
196567
|
* @since 1.0.0
|
|
196541
196568
|
*/
|
|
@@ -211485,7 +211512,7 @@ var require_lib = /* @__PURE__ */ __commonJSMin$1(((exports) => {
|
|
|
211485
211512
|
exports.impl = impl;
|
|
211486
211513
|
}));
|
|
211487
211514
|
//#endregion
|
|
211488
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
211515
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/WebToMarkdown.js
|
|
211489
211516
|
/**
|
|
211490
211517
|
* @since 1.0.0
|
|
211491
211518
|
*/
|
|
@@ -214624,7 +214651,7 @@ function isEmptyParamsRecord(indexSignature) {
|
|
|
214624
214651
|
return indexSignature.parameter === string$3 && isNever(indexSignature.type);
|
|
214625
214652
|
}
|
|
214626
214653
|
//#endregion
|
|
214627
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
214654
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/SemanticSearch/Service.js
|
|
214628
214655
|
/**
|
|
214629
214656
|
* @since 1.0.0
|
|
214630
214657
|
*/
|
|
@@ -214650,7 +214677,7 @@ const maybeRemoveFile = (path) => serviceOption(SemanticSearch).pipe(flatMap$4(m
|
|
|
214650
214677
|
onSome: (service) => service.removeFile(path)
|
|
214651
214678
|
})));
|
|
214652
214679
|
//#endregion
|
|
214653
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
214680
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/AgentTools.js
|
|
214654
214681
|
/**
|
|
214655
214682
|
* @since 1.0.0
|
|
214656
214683
|
*/
|
|
@@ -214669,6 +214696,11 @@ var TaskCompleter = class extends Service$1()("clanka/AgentTools/TaskCompleter")
|
|
|
214669
214696
|
* @category Context
|
|
214670
214697
|
*/
|
|
214671
214698
|
var SubagentExecutor = class extends Service$1()("clanka/AgentTools/SubagentExecutor") {};
|
|
214699
|
+
var TodoItem = class extends Opaque()(Struct$2({
|
|
214700
|
+
id: Number$1,
|
|
214701
|
+
text: String$1,
|
|
214702
|
+
completed: Boolean$2
|
|
214703
|
+
})) {};
|
|
214672
214704
|
/**
|
|
214673
214705
|
* @since 1.0.0
|
|
214674
214706
|
* @category Toolkit
|
|
@@ -214707,6 +214739,23 @@ const AgentTools = make$14(make$13("readFile", {
|
|
|
214707
214739
|
parameters: Array$1(String$1).annotate({ identifier: "args" }),
|
|
214708
214740
|
success: String$1,
|
|
214709
214741
|
dependencies: [CurrentDirectory]
|
|
214742
|
+
}), make$13("listTodos", {
|
|
214743
|
+
description: "Read your todo list",
|
|
214744
|
+
parameters: Void,
|
|
214745
|
+
success: Array$1(TodoItem)
|
|
214746
|
+
}), make$13("addTodo", {
|
|
214747
|
+
description: "Add an item to your todo list",
|
|
214748
|
+
parameters: String$1.annotate({ identifier: "text" })
|
|
214749
|
+
}), make$13("updateTodo", {
|
|
214750
|
+
description: "Update an item in your todo list",
|
|
214751
|
+
parameters: Struct$2({
|
|
214752
|
+
id: Number$1,
|
|
214753
|
+
text: optional$3(String$1),
|
|
214754
|
+
completed: optional$3(Boolean$2)
|
|
214755
|
+
})
|
|
214756
|
+
}), make$13("clearTodos", {
|
|
214757
|
+
description: "Clear all items in your todo list",
|
|
214758
|
+
parameters: Void
|
|
214710
214759
|
}), make$13("bash", {
|
|
214711
214760
|
description: "Run a bash command and return the output",
|
|
214712
214761
|
parameters: Struct$2({
|
|
@@ -214779,6 +214828,8 @@ const AgentToolHandlersNoDeps = AgentToolsWithSearch.toLayer(gen(function* () {
|
|
|
214779
214828
|
const pathService = yield* Path$1;
|
|
214780
214829
|
const webSearch = yield* ExaSearch;
|
|
214781
214830
|
const fetchMarkdown = yield* WebToMarkdown;
|
|
214831
|
+
const todoMap = /* @__PURE__ */ new Map();
|
|
214832
|
+
let todoIdCounter = 0;
|
|
214782
214833
|
const execute = fn(function* (command) {
|
|
214783
214834
|
const handle = yield* spawner.spawn(command);
|
|
214784
214835
|
return yield* handle.all.pipe(decodeText, mkString, flatMap$4(fnUntraced(function* (output) {
|
|
@@ -214860,6 +214911,34 @@ const AgentToolHandlersNoDeps = AgentToolsWithSearch.toLayer(gen(function* () {
|
|
|
214860
214911
|
const cwd = yield* CurrentDirectory;
|
|
214861
214912
|
return yield* promise(() => Ze(pattern, { cwd }));
|
|
214862
214913
|
}),
|
|
214914
|
+
listTodos: fn("AgentTools.listTodos")(function* () {
|
|
214915
|
+
yield* logInfo(`Calling "listTodos"`);
|
|
214916
|
+
return fromIterable$5(todoMap.values());
|
|
214917
|
+
}),
|
|
214918
|
+
addTodo: fn("AgentTools.addTodo")(function* (text) {
|
|
214919
|
+
yield* logInfo(`Calling "addTodo"`).pipe(annotateLogs({ text }));
|
|
214920
|
+
const id = ++todoIdCounter;
|
|
214921
|
+
const item = {
|
|
214922
|
+
id,
|
|
214923
|
+
text,
|
|
214924
|
+
completed: false
|
|
214925
|
+
};
|
|
214926
|
+
todoMap.set(id, item);
|
|
214927
|
+
}),
|
|
214928
|
+
updateTodo: fn("AgentTools.updateTodo")(function* (options) {
|
|
214929
|
+
yield* logInfo(`Calling "updateTodo"`).pipe(annotateLogs(options));
|
|
214930
|
+
const item = todoMap.get(options.id);
|
|
214931
|
+
if (item === void 0) return yield* die$2(`Todo item ${options.id} not found`);
|
|
214932
|
+
todoMap.set(item.id, {
|
|
214933
|
+
...item,
|
|
214934
|
+
text: options.text ?? item.text,
|
|
214935
|
+
completed: options.completed ?? item.completed
|
|
214936
|
+
});
|
|
214937
|
+
}),
|
|
214938
|
+
clearTodos: fn("AgentTools.clearTodos")(function* () {
|
|
214939
|
+
yield* logInfo(`Calling "clearTodos"`);
|
|
214940
|
+
todoMap.clear();
|
|
214941
|
+
}),
|
|
214863
214942
|
bash: fn("AgentTools.bash")(function* (options) {
|
|
214864
214943
|
const timeoutMs = Math.min(options.timeoutMs ?? 12e4, 24e4);
|
|
214865
214944
|
yield* logInfo(`Calling "bash"`).pipe(annotateLogs({
|
|
@@ -215001,7 +215080,7 @@ const AgentToolHandlers = AgentToolHandlersNoDeps.pipe(provide$3([layer$12, laye
|
|
|
215001
215080
|
AgentToolHandlersNoDeps.pipe(provide$3([mock(ExaSearch)({}), mock(WebToMarkdown)({})]));
|
|
215002
215081
|
var ApplyPatchError = class extends TaggedClass$2("ApplyPatchError") {};
|
|
215003
215082
|
//#endregion
|
|
215004
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
215083
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/TypeBuilder.js
|
|
215005
215084
|
const resolveDocumentation = resolveAt("documentation");
|
|
215006
215085
|
const identifierPattern = /^[$A-Z_a-z][$0-9A-Z_a-z]*$/u;
|
|
215007
215086
|
const Precedence = {
|
|
@@ -215274,7 +215353,7 @@ const render = (schema, options) => {
|
|
|
215274
215353
|
return printNode({ text: documentation === void 0 ? rendered.text : `${renderJsDoc(documentation, 0, printerOptions)}${printerOptions.newLine}${rendered.text}` }, printerOptions);
|
|
215275
215354
|
};
|
|
215276
215355
|
//#endregion
|
|
215277
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
215356
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/ToolkitRenderer.js
|
|
215278
215357
|
/**
|
|
215279
215358
|
* @since 1.0.0
|
|
215280
215359
|
*/
|
|
@@ -215296,7 +215375,7 @@ declare function ${name}(${params}): Promise<${render(tool.successSchema)}>`);
|
|
|
215296
215375
|
}) });
|
|
215297
215376
|
};
|
|
215298
215377
|
//#endregion
|
|
215299
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
215378
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/ScriptPreprocessing.js
|
|
215300
215379
|
const callTemplateTargets = ["applyPatch", "taskComplete"];
|
|
215301
215380
|
const objectPropertyTargets = [{
|
|
215302
215381
|
functionName: "writeFile",
|
|
@@ -215775,7 +215854,7 @@ const rewriteAssignedTargets = (script) => {
|
|
|
215775
215854
|
};
|
|
215776
215855
|
const preprocessScript = (script) => rewriteAssignedTargets(rewriteDirectTemplates(script));
|
|
215777
215856
|
//#endregion
|
|
215778
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
215857
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/AgentExecutor.js
|
|
215779
215858
|
/**
|
|
215780
215859
|
* @since 1.0.0
|
|
215781
215860
|
*/
|
|
@@ -215960,7 +216039,7 @@ var QueueWriteStream = class extends Writable {
|
|
|
215960
216039
|
}
|
|
215961
216040
|
};
|
|
215962
216041
|
//#endregion
|
|
215963
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
216042
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/ScriptExtraction.js
|
|
215964
216043
|
const stripWrappingCodeFence = (script) => {
|
|
215965
216044
|
const lines = script.split(/\r?\n/);
|
|
215966
216045
|
if (lines.length < 2) return script;
|
|
@@ -217509,7 +217588,7 @@ const applySpanTransformer = (transformer, response, options) => {
|
|
|
217509
217588
|
});
|
|
217510
217589
|
};
|
|
217511
217590
|
//#endregion
|
|
217512
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
217591
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/Agent.js
|
|
217513
217592
|
/**
|
|
217514
217593
|
* @since 1.0.0
|
|
217515
217594
|
*/
|
|
@@ -217545,7 +217624,7 @@ ${content}
|
|
|
217545
217624
|
let agentCounter = 0;
|
|
217546
217625
|
const outputBuffer = /* @__PURE__ */ new Map();
|
|
217547
217626
|
let currentOutputAgent = null;
|
|
217548
|
-
|
|
217627
|
+
const history = make$77(empty);
|
|
217549
217628
|
const spawn = fnUntraced(function* (opts) {
|
|
217550
217629
|
const agentId = opts.agentId;
|
|
217551
217630
|
const ai = yield* LanguageModel;
|
|
@@ -217770,6 +217849,7 @@ ${content}
|
|
|
217770
217849
|
const sendLock = makeUnsafe$9(1);
|
|
217771
217850
|
return Agent.of({
|
|
217772
217851
|
[TypeId$3]: TypeId$3,
|
|
217852
|
+
history,
|
|
217773
217853
|
send: (options) => spawn({
|
|
217774
217854
|
agentId: agentCounter++,
|
|
217775
217855
|
prompt: make$12(options.prompt),
|
|
@@ -217808,7 +217888,8 @@ const generateSystemTools = (capabilities, conversationMode) => `**YOU ONLY HAVE
|
|
|
217808
217888
|
- You can add / update / remove multiple files in one go with "applyPatch".
|
|
217809
217889
|
- AVOID passing scripts into the "bash" function, and instead write javascript.
|
|
217810
217890
|
- **Variables are not shared** between executions, so you must include all necessary code in each script you execute.
|
|
217811
|
-
- DO NOT use \`require\`, \`import\`, \`process\`, or any other node.js apis
|
|
217891
|
+
- DO NOT use \`require\`, \`import\`, \`process\`, or any other node.js apis.
|
|
217892
|
+
- Make use of the todo functions to keep track of your progress.${conversationMode ? "" : `
|
|
217812
217893
|
|
|
217813
217894
|
When you have fully completed your task, call the "taskComplete" function with the final output.
|
|
217814
217895
|
DO NOT output the final result without wrapping it with "taskComplete".
|
|
@@ -229014,7 +229095,7 @@ const transformToolCallParams = /* @__PURE__ */ fnUntraced(function* (tools, too
|
|
|
229014
229095
|
})));
|
|
229015
229096
|
});
|
|
229016
229097
|
//#endregion
|
|
229017
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
229098
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/CodexAuth.js
|
|
229018
229099
|
/**
|
|
229019
229100
|
* @since 1.0.0
|
|
229020
229101
|
*/
|
|
@@ -229234,7 +229315,7 @@ var CodexAuth = class CodexAuth extends Service$1()("clanka/CodexAuth") {
|
|
|
229234
229315
|
static layerClient = this.layerClientNoDeps.pipe(provide$3(CodexAuth.layer));
|
|
229235
229316
|
};
|
|
229236
229317
|
//#endregion
|
|
229237
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
229318
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/Codex.js
|
|
229238
229319
|
/**
|
|
229239
229320
|
* @since 1.0.0
|
|
229240
229321
|
*/
|
|
@@ -229260,7 +229341,7 @@ const layerModel = (model, options) => layer$7({
|
|
|
229260
229341
|
}
|
|
229261
229342
|
}).pipe(merge$6(AgentModelConfig.layer({ systemPromptTransform: (system, effect) => withConfigOverride(effect, { instructions: system }) })));
|
|
229262
229343
|
//#endregion
|
|
229263
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
229344
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/CodeChunker.js
|
|
229264
229345
|
/**
|
|
229265
229346
|
* @since 1.0.0
|
|
229266
229347
|
*/
|
|
@@ -231020,7 +231101,7 @@ const getUsageDetailNumber = (details, field) => {
|
|
|
231020
231101
|
return typeof value === "number" ? value : void 0;
|
|
231021
231102
|
};
|
|
231022
231103
|
//#endregion
|
|
231023
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
231104
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/CopilotAuth.js
|
|
231024
231105
|
/**
|
|
231025
231106
|
* @since 1.0.0
|
|
231026
231107
|
*/
|
|
@@ -231211,7 +231292,7 @@ var GithubCopilotAuth = class GithubCopilotAuth extends Service$1()("clanka/Gith
|
|
|
231211
231292
|
static layerClient = this.layerClientNoDeps.pipe(provide$3(GithubCopilotAuth.layer));
|
|
231212
231293
|
};
|
|
231213
231294
|
//#endregion
|
|
231214
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
231295
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/Copilot.js
|
|
231215
231296
|
/**
|
|
231216
231297
|
* @since 1.0.0
|
|
231217
231298
|
*/
|
|
@@ -231631,7 +231712,7 @@ Object.defineProperties(createChalk.prototype, styles);
|
|
|
231631
231712
|
const chalk = createChalk();
|
|
231632
231713
|
createChalk({ level: stderrColor ? stderrColor.level : 0 });
|
|
231633
231714
|
//#endregion
|
|
231634
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
231715
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/OutputFormatter.js
|
|
231635
231716
|
/**
|
|
231636
231717
|
* @since 1.0.0
|
|
231637
231718
|
*/
|
|
@@ -232117,7 +232198,7 @@ select * from ${sql(options.tableName)} where ${sql(idColumn)} = LAST_INSERT_ID(
|
|
|
232117
232198
|
};
|
|
232118
232199
|
});
|
|
232119
232200
|
//#endregion
|
|
232120
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
232201
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/ChunkRepo.js
|
|
232121
232202
|
/**
|
|
232122
232203
|
* @since 1.0.0
|
|
232123
232204
|
* @category Models
|
|
@@ -232397,7 +232478,7 @@ const run$1 = /* @__PURE__ */ make$25({});
|
|
|
232397
232478
|
*/
|
|
232398
232479
|
const layer$1 = (options) => effectDiscard(run$1(options));
|
|
232399
232480
|
//#endregion
|
|
232400
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
232481
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/internal/sqlite-vector.js
|
|
232401
232482
|
/**
|
|
232402
232483
|
* Binary extension for each platform
|
|
232403
232484
|
*/
|
|
@@ -232514,7 +232595,7 @@ function getExtensionPath() {
|
|
|
232514
232595
|
throw new ExtensionNotFoundError(`SQLite Vector extension not found for platform: ${getCurrentPlatform()}\n\nThe platform-specific package "${getPlatformPackageName()}" is not installed.\nThis usually happens when:\n 1. Your platform is not supported\n 2. npm failed to install optional dependencies\n 3. You're installing with --no-optional flag\n\nTry running: npm install --force`);
|
|
232515
232596
|
}
|
|
232516
232597
|
//#endregion
|
|
232517
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
232598
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/Sqlite.js
|
|
232518
232599
|
/**
|
|
232519
232600
|
* @since 1.0.0
|
|
232520
232601
|
*/
|
|
@@ -232542,7 +232623,7 @@ const SqliteLayer = (database) => layer$1({ loader: fromRecord({ "0001_create_ch
|
|
|
232542
232623
|
yield* fs.makeDirectory(directory, { recursive: true });
|
|
232543
232624
|
}))));
|
|
232544
232625
|
//#endregion
|
|
232545
|
-
//#region node_modules/.pnpm/clanka@0.2.
|
|
232626
|
+
//#region node_modules/.pnpm/clanka@0.2.30_@effect+ai-openai-compat@4.0.0-beta.36_effect@4.0.0-beta.36__@effect+ai-o_4128f6b6cb035b98696bdeb40e30bb98/node_modules/clanka/dist/SemanticSearch.js
|
|
232546
232627
|
/**
|
|
232547
232628
|
* @since 1.0.0
|
|
232548
232629
|
*/
|
|
@@ -242255,7 +242336,7 @@ const commandEdit = make$60("edit").pipe(withDescription("Open the selected proj
|
|
|
242255
242336
|
const commandSource = make$60("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));
|
|
242256
242337
|
//#endregion
|
|
242257
242338
|
//#region package.json
|
|
242258
|
-
var version = "0.3.
|
|
242339
|
+
var version = "0.3.101";
|
|
242259
242340
|
//#endregion
|
|
242260
242341
|
//#region src/Tracing.ts
|
|
242261
242342
|
const TracingLayer = unwrap$3(gen(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.101",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
|
|
46
46
|
"@octokit/types": "^16.0.0",
|
|
47
47
|
"@typescript/native-preview": "7.0.0-dev.20260322.1",
|
|
48
|
-
"clanka": "^0.2.
|
|
48
|
+
"clanka": "^0.2.30",
|
|
49
49
|
"concurrently": "^9.2.1",
|
|
50
50
|
"effect": "4.0.0-beta.36",
|
|
51
51
|
"husky": "^9.1.7",
|