skill-tree 0.1.1 → 0.1.2
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/chunk-3SRB47JW.mjs +8344 -0
- package/dist/chunk-43YOKLZP.mjs +6081 -0
- package/dist/chunk-4AGZU52D.mjs +7918 -0
- package/dist/chunk-4OC5QFIF.mjs +11267 -0
- package/dist/chunk-55SMGVTP.mjs +7126 -0
- package/dist/chunk-6FX4IK4Z.mjs +5368 -0
- package/dist/chunk-7EGDKOHV.mjs +9439 -0
- package/dist/chunk-7LMOQW5H.mjs +4893 -0
- package/dist/chunk-7VB4ZRZO.mjs +7127 -0
- package/dist/chunk-BPVRW25O.mjs +6089 -0
- package/dist/chunk-CI4476KM.mjs +6607 -0
- package/dist/{chunk-5QGJJCVX.mjs → chunk-DDXYQ74I.mjs} +10588 -12011
- package/dist/chunk-DQOFJXBX.mjs +6595 -0
- package/dist/chunk-E2CVK23F.mjs +8751 -0
- package/dist/chunk-II7DECZQ.mjs +9111 -0
- package/dist/{chunk-Q6SFFUDU.mjs → chunk-INKVOZXK.mjs} +24 -0
- package/dist/chunk-K6NRCSAZ.mjs +4355 -0
- package/dist/chunk-ZQVS7MQK.mjs +6081 -0
- package/dist/cli/index.mjs +1 -1
- package/dist/index.d.mts +19 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +25 -0
- package/dist/index.mjs +3 -1
- package/package.json +3 -2
|
@@ -14230,6 +14230,29 @@ Context: ${options.context}`;
|
|
|
14230
14230
|
function createCognitiveCoreProvider(options) {
|
|
14231
14231
|
return new CognitiveCoreProvider(options);
|
|
14232
14232
|
}
|
|
14233
|
+
async function createDefaultCognitiveCoreFactory() {
|
|
14234
|
+
const cc = await import("cognitive-core");
|
|
14235
|
+
return {
|
|
14236
|
+
createMemorySystem(storagePath) {
|
|
14237
|
+
return cc.createMemorySystem(storagePath);
|
|
14238
|
+
},
|
|
14239
|
+
createLearningPipeline(memory, config) {
|
|
14240
|
+
return cc.createLearningPipeline(
|
|
14241
|
+
memory,
|
|
14242
|
+
config
|
|
14243
|
+
);
|
|
14244
|
+
},
|
|
14245
|
+
createTrajectory(params) {
|
|
14246
|
+
return cc.createTrajectory(params);
|
|
14247
|
+
},
|
|
14248
|
+
createTask(params) {
|
|
14249
|
+
return cc.createTask(params);
|
|
14250
|
+
},
|
|
14251
|
+
createStep(params) {
|
|
14252
|
+
return cc.createStep(params);
|
|
14253
|
+
}
|
|
14254
|
+
};
|
|
14255
|
+
}
|
|
14233
14256
|
|
|
14234
14257
|
// src/sync/git-sync-adapter.ts
|
|
14235
14258
|
import * as fs8 from "fs";
|
|
@@ -15846,6 +15869,7 @@ export {
|
|
|
15846
15869
|
conditionalHook,
|
|
15847
15870
|
CognitiveCoreProvider,
|
|
15848
15871
|
createCognitiveCoreProvider,
|
|
15872
|
+
createDefaultCognitiveCoreFactory,
|
|
15849
15873
|
ConflictStore,
|
|
15850
15874
|
createConflictStore,
|
|
15851
15875
|
GitSyncAdapter,
|