@mclawnet/mcp-server 0.1.7 → 0.1.8

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.
@@ -15,6 +15,378 @@ export interface ToolContext {
15
15
  planReview: PlanReviewToolContext;
16
16
  }
17
17
  export declare function getAllToolDefinitions(): ({
18
+ name: string;
19
+ description: string;
20
+ inputSchema: {
21
+ type: "object";
22
+ properties: {
23
+ workDir: {
24
+ type: string;
25
+ description: string;
26
+ };
27
+ swarmId: {
28
+ type: string;
29
+ description: string;
30
+ };
31
+ from: {
32
+ type: string;
33
+ description: string;
34
+ };
35
+ to: {
36
+ type: string;
37
+ description: string;
38
+ };
39
+ type: {
40
+ type: string;
41
+ description: string;
42
+ };
43
+ data: {
44
+ type: string;
45
+ description: string;
46
+ };
47
+ taskId: {
48
+ type: string;
49
+ description: string;
50
+ };
51
+ expectedStatus: {
52
+ type: string;
53
+ description: string;
54
+ };
55
+ expectedOwner: {
56
+ type: string[];
57
+ description: string;
58
+ };
59
+ instanceId?: undefined;
60
+ seconds?: undefined;
61
+ payload?: undefined;
62
+ includeGlobs?: undefined;
63
+ ignoreGlobs?: undefined;
64
+ debounceMs?: undefined;
65
+ watchId?: undefined;
66
+ };
67
+ required: string[];
68
+ };
69
+ } | {
70
+ name: string;
71
+ description: string;
72
+ inputSchema: {
73
+ type: "object";
74
+ properties: {
75
+ workDir: {
76
+ type: string;
77
+ description: string;
78
+ };
79
+ swarmId: {
80
+ type: string;
81
+ description: string;
82
+ };
83
+ instanceId: {
84
+ type: string;
85
+ description: string;
86
+ };
87
+ seconds: {
88
+ type: string;
89
+ exclusiveMinimum: number;
90
+ maximum: number;
91
+ description: string;
92
+ };
93
+ payload: {
94
+ type: string;
95
+ description: string;
96
+ };
97
+ type: {
98
+ type: string;
99
+ description: string;
100
+ };
101
+ from: {
102
+ type: string;
103
+ description: string;
104
+ };
105
+ to?: undefined;
106
+ data?: undefined;
107
+ taskId?: undefined;
108
+ expectedStatus?: undefined;
109
+ expectedOwner?: undefined;
110
+ includeGlobs?: undefined;
111
+ ignoreGlobs?: undefined;
112
+ debounceMs?: undefined;
113
+ watchId?: undefined;
114
+ };
115
+ required: string[];
116
+ };
117
+ } | {
118
+ name: string;
119
+ description: string;
120
+ inputSchema: {
121
+ type: "object";
122
+ properties: {
123
+ workDir: {
124
+ type: string;
125
+ description: string;
126
+ };
127
+ swarmId: {
128
+ type: string;
129
+ description?: undefined;
130
+ };
131
+ instanceId: {
132
+ type: string;
133
+ description: string;
134
+ };
135
+ includeGlobs: {
136
+ type: string;
137
+ items: {
138
+ type: string;
139
+ };
140
+ minItems: number;
141
+ description: string;
142
+ };
143
+ payload: {
144
+ type: string;
145
+ description: string;
146
+ };
147
+ ignoreGlobs: {
148
+ type: string;
149
+ items: {
150
+ type: string;
151
+ };
152
+ description: string;
153
+ };
154
+ debounceMs: {
155
+ type: string;
156
+ minimum: number;
157
+ description: string;
158
+ };
159
+ type: {
160
+ type: string;
161
+ description: string;
162
+ };
163
+ from: {
164
+ type: string;
165
+ description: string;
166
+ };
167
+ watchId: {
168
+ type: string;
169
+ description: string;
170
+ };
171
+ to?: undefined;
172
+ data?: undefined;
173
+ taskId?: undefined;
174
+ expectedStatus?: undefined;
175
+ expectedOwner?: undefined;
176
+ seconds?: undefined;
177
+ };
178
+ required: string[];
179
+ };
180
+ } | {
181
+ name: string;
182
+ description: string;
183
+ inputSchema: {
184
+ type: "object";
185
+ properties: {
186
+ query: {
187
+ type: string;
188
+ description: string;
189
+ };
190
+ domain: {
191
+ type: string;
192
+ description: string;
193
+ };
194
+ limit: {
195
+ type: string;
196
+ description: string;
197
+ };
198
+ crossWorkdir: {
199
+ type: string;
200
+ description: string;
201
+ };
202
+ workDir: {
203
+ type: string;
204
+ description: string;
205
+ };
206
+ content?: undefined;
207
+ type?: undefined;
208
+ tags?: undefined;
209
+ importance?: undefined;
210
+ scope?: undefined;
211
+ };
212
+ required: string[];
213
+ };
214
+ } | {
215
+ name: string;
216
+ description: string;
217
+ inputSchema: {
218
+ type: "object";
219
+ properties: {
220
+ content: {
221
+ type: string;
222
+ description: string;
223
+ };
224
+ type: {
225
+ type: string;
226
+ enum: string[];
227
+ description: string;
228
+ };
229
+ tags: {
230
+ type: string;
231
+ items: {
232
+ type: string;
233
+ };
234
+ description: string;
235
+ };
236
+ domain: {
237
+ type: string;
238
+ description: string;
239
+ };
240
+ importance: {
241
+ type: string;
242
+ description: string;
243
+ };
244
+ workDir: {
245
+ type: string;
246
+ description: string;
247
+ };
248
+ query?: undefined;
249
+ limit?: undefined;
250
+ crossWorkdir?: undefined;
251
+ scope?: undefined;
252
+ };
253
+ required: string[];
254
+ };
255
+ } | {
256
+ name: string;
257
+ description: string;
258
+ inputSchema: {
259
+ type: "object";
260
+ properties: {
261
+ workDir: {
262
+ type: string;
263
+ description: string;
264
+ };
265
+ query?: undefined;
266
+ domain?: undefined;
267
+ limit?: undefined;
268
+ crossWorkdir?: undefined;
269
+ content?: undefined;
270
+ type?: undefined;
271
+ tags?: undefined;
272
+ importance?: undefined;
273
+ scope?: undefined;
274
+ };
275
+ required?: undefined;
276
+ };
277
+ } | {
278
+ name: string;
279
+ description: string;
280
+ inputSchema: {
281
+ type: "object";
282
+ properties: {
283
+ scope: {
284
+ type: string;
285
+ enum: string[];
286
+ description: string;
287
+ };
288
+ workDir: {
289
+ type: string;
290
+ description: string;
291
+ };
292
+ query?: undefined;
293
+ domain?: undefined;
294
+ limit?: undefined;
295
+ crossWorkdir?: undefined;
296
+ content?: undefined;
297
+ type?: undefined;
298
+ tags?: undefined;
299
+ importance?: undefined;
300
+ };
301
+ required?: undefined;
302
+ };
303
+ } | {
304
+ name: string;
305
+ description: string;
306
+ inputSchema: {
307
+ type: "object";
308
+ properties: {
309
+ name?: undefined;
310
+ };
311
+ required?: undefined;
312
+ };
313
+ } | {
314
+ name: string;
315
+ description: string;
316
+ inputSchema: {
317
+ type: "object";
318
+ properties: {
319
+ name: {
320
+ type: string;
321
+ description: string;
322
+ };
323
+ };
324
+ required: string[];
325
+ };
326
+ } | {
327
+ name: string;
328
+ description: string;
329
+ inputSchema: {
330
+ type: "object";
331
+ properties: {
332
+ skillName: {
333
+ type: string;
334
+ description: string;
335
+ };
336
+ signal: {
337
+ type: string;
338
+ enum: string[];
339
+ };
340
+ problem: {
341
+ type: string;
342
+ description: string;
343
+ };
344
+ fix: {
345
+ type: string;
346
+ description: string;
347
+ };
348
+ patch: {
349
+ type: string;
350
+ description: string;
351
+ };
352
+ id?: undefined;
353
+ };
354
+ required: string[];
355
+ };
356
+ } | {
357
+ name: string;
358
+ description: string;
359
+ inputSchema: {
360
+ type: "object";
361
+ properties: {
362
+ skillName?: undefined;
363
+ signal?: undefined;
364
+ problem?: undefined;
365
+ fix?: undefined;
366
+ patch?: undefined;
367
+ id?: undefined;
368
+ };
369
+ required?: undefined;
370
+ };
371
+ } | {
372
+ name: string;
373
+ description: string;
374
+ inputSchema: {
375
+ type: "object";
376
+ properties: {
377
+ id: {
378
+ type: string;
379
+ description: string;
380
+ };
381
+ skillName?: undefined;
382
+ signal?: undefined;
383
+ problem?: undefined;
384
+ fix?: undefined;
385
+ patch?: undefined;
386
+ };
387
+ required: string[];
388
+ };
389
+ } | {
18
390
  name: string;
19
391
  description: string;
20
392
  inputSchema: {
@@ -531,51 +903,6 @@ export declare function getAllToolDefinitions(): ({
531
903
  };
532
904
  required: string[];
533
905
  };
534
- } | {
535
- name: string;
536
- description: string;
537
- inputSchema: {
538
- type: "object";
539
- properties: {
540
- workDir: {
541
- type: string;
542
- description: string;
543
- };
544
- swarmId: {
545
- type: string;
546
- description: string;
547
- };
548
- from: {
549
- type: string;
550
- description: string;
551
- };
552
- to: {
553
- type: string;
554
- description: string;
555
- };
556
- type: {
557
- type: string;
558
- description: string;
559
- };
560
- data: {
561
- type: string;
562
- description: string;
563
- };
564
- taskId: {
565
- type: string;
566
- description: string;
567
- };
568
- expectedStatus: {
569
- type: string;
570
- description: string;
571
- };
572
- expectedOwner: {
573
- type: string[];
574
- description: string;
575
- };
576
- };
577
- required: string[];
578
- };
579
906
  } | {
580
907
  name: string;
581
908
  description: string;
@@ -606,215 +933,6 @@ export declare function getAllToolDefinitions(): ({
606
933
  };
607
934
  required: string[];
608
935
  };
609
- } | {
610
- name: string;
611
- description: string;
612
- inputSchema: {
613
- type: "object";
614
- properties: {
615
- query: {
616
- type: string;
617
- description: string;
618
- };
619
- domain: {
620
- type: string;
621
- description: string;
622
- };
623
- limit: {
624
- type: string;
625
- description: string;
626
- };
627
- crossWorkdir: {
628
- type: string;
629
- description: string;
630
- };
631
- workDir: {
632
- type: string;
633
- description: string;
634
- };
635
- content?: undefined;
636
- type?: undefined;
637
- tags?: undefined;
638
- importance?: undefined;
639
- scope?: undefined;
640
- };
641
- required: string[];
642
- };
643
- } | {
644
- name: string;
645
- description: string;
646
- inputSchema: {
647
- type: "object";
648
- properties: {
649
- content: {
650
- type: string;
651
- description: string;
652
- };
653
- type: {
654
- type: string;
655
- enum: string[];
656
- description: string;
657
- };
658
- tags: {
659
- type: string;
660
- items: {
661
- type: string;
662
- };
663
- description: string;
664
- };
665
- domain: {
666
- type: string;
667
- description: string;
668
- };
669
- importance: {
670
- type: string;
671
- description: string;
672
- };
673
- workDir: {
674
- type: string;
675
- description: string;
676
- };
677
- query?: undefined;
678
- limit?: undefined;
679
- crossWorkdir?: undefined;
680
- scope?: undefined;
681
- };
682
- required: string[];
683
- };
684
- } | {
685
- name: string;
686
- description: string;
687
- inputSchema: {
688
- type: "object";
689
- properties: {
690
- workDir: {
691
- type: string;
692
- description: string;
693
- };
694
- query?: undefined;
695
- domain?: undefined;
696
- limit?: undefined;
697
- crossWorkdir?: undefined;
698
- content?: undefined;
699
- type?: undefined;
700
- tags?: undefined;
701
- importance?: undefined;
702
- scope?: undefined;
703
- };
704
- required?: undefined;
705
- };
706
- } | {
707
- name: string;
708
- description: string;
709
- inputSchema: {
710
- type: "object";
711
- properties: {
712
- scope: {
713
- type: string;
714
- enum: string[];
715
- description: string;
716
- };
717
- workDir: {
718
- type: string;
719
- description: string;
720
- };
721
- query?: undefined;
722
- domain?: undefined;
723
- limit?: undefined;
724
- crossWorkdir?: undefined;
725
- content?: undefined;
726
- type?: undefined;
727
- tags?: undefined;
728
- importance?: undefined;
729
- };
730
- required?: undefined;
731
- };
732
- } | {
733
- name: string;
734
- description: string;
735
- inputSchema: {
736
- type: "object";
737
- properties: {
738
- name?: undefined;
739
- };
740
- required?: undefined;
741
- };
742
- } | {
743
- name: string;
744
- description: string;
745
- inputSchema: {
746
- type: "object";
747
- properties: {
748
- name: {
749
- type: string;
750
- description: string;
751
- };
752
- };
753
- required: string[];
754
- };
755
- } | {
756
- name: string;
757
- description: string;
758
- inputSchema: {
759
- type: "object";
760
- properties: {
761
- skillName: {
762
- type: string;
763
- description: string;
764
- };
765
- signal: {
766
- type: string;
767
- enum: string[];
768
- };
769
- problem: {
770
- type: string;
771
- description: string;
772
- };
773
- fix: {
774
- type: string;
775
- description: string;
776
- };
777
- patch: {
778
- type: string;
779
- description: string;
780
- };
781
- id?: undefined;
782
- };
783
- required: string[];
784
- };
785
- } | {
786
- name: string;
787
- description: string;
788
- inputSchema: {
789
- type: "object";
790
- properties: {
791
- skillName?: undefined;
792
- signal?: undefined;
793
- problem?: undefined;
794
- fix?: undefined;
795
- patch?: undefined;
796
- id?: undefined;
797
- };
798
- required?: undefined;
799
- };
800
- } | {
801
- name: string;
802
- description: string;
803
- inputSchema: {
804
- type: "object";
805
- properties: {
806
- id: {
807
- type: string;
808
- description: string;
809
- };
810
- skillName?: undefined;
811
- signal?: undefined;
812
- problem?: undefined;
813
- fix?: undefined;
814
- patch?: undefined;
815
- };
816
- required: string[];
817
- };
818
936
  })[];
819
937
  export declare function routeToolCall(name: string, args: Record<string, unknown>, context: ToolContext): Promise<{
820
938
  content: Array<{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkD,KAAK,iBAAiB,EAAE,MAAM,aAAa,CAAC;AACrG,OAAO,EAAgD,KAAK,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACjG,OAAO,EAGL,KAAK,oBAAoB,EAC1B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAIL,KAAK,eAAe,EACrB,MAAM,WAAW,CAAC;AACnB,OAAO,EAIL,KAAK,gBAAgB,EAEtB,MAAM,YAAY,CAAC;AACpB,OAAO,EAIL,KAAK,qBAAqB,EAC3B,MAAM,kBAAkB,CAAC;AAE1B,YAAY,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACnE,YAAY,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AAE9D,MAAM,WAAW,WAAW;IAC1B,MAAM,EAAE,iBAAiB,CAAC;IAC1B,KAAK,EAAE,gBAAgB,CAAC;IACxB,SAAS,EAAE,oBAAoB,CAAC;IAChC,IAAI,EAAE,eAAe,CAAC;IACtB,KAAK,EAAE,gBAAgB,CAAC;IACxB,UAAU,EAAE,qBAAqB,CAAC;CACnC;AAED,wBAAgB,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KASpC;AAED,wBAAsB,aAAa,CACjC,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC7B,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC;IAAE,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAAC,OAAO,CAAC,EAAE,OAAO,CAAA;CAAE,CAAC,CA0BhF;AAED,YAAY,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AACrD,YAAY,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACnD,YAAY,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAC3D,YAAY,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkD,KAAK,iBAAiB,EAAE,MAAM,aAAa,CAAC;AACrG,OAAO,EAAgD,KAAK,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACjG,OAAO,EAGL,KAAK,oBAAoB,EAC1B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAIL,KAAK,eAAe,EACrB,MAAM,WAAW,CAAC;AACnB,OAAO,EAIL,KAAK,gBAAgB,EAEtB,MAAM,YAAY,CAAC;AACpB,OAAO,EAIL,KAAK,qBAAqB,EAC3B,MAAM,kBAAkB,CAAC;AAE1B,YAAY,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACnE,YAAY,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AAE9D,MAAM,WAAW,WAAW;IAC1B,MAAM,EAAE,iBAAiB,CAAC;IAC1B,KAAK,EAAE,gBAAgB,CAAC;IACxB,SAAS,EAAE,oBAAoB,CAAC;IAChC,IAAI,EAAE,eAAe,CAAC;IACtB,KAAK,EAAE,gBAAgB,CAAC;IACxB,UAAU,EAAE,qBAAqB,CAAC;CACnC;AAED,wBAAgB,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KASpC;AAED,wBAAsB,aAAa,CACjC,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC7B,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC;IAAE,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAAC,OAAO,CAAC,EAAE,OAAO,CAAA;CAAE,CAAC,CA0BhF;AAED,YAAY,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AACrD,YAAY,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACnD,YAAY,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAC3D,YAAY,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC"}
package/package.json CHANGED
@@ -1,12 +1,16 @@
1
1
  {
2
2
  "name": "@mclawnet/mcp-server",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
7
7
  "import": "./dist/index.js",
8
8
  "types": "./dist/index.d.ts"
9
9
  },
10
+ "./server": {
11
+ "import": "./dist/server.js",
12
+ "types": "./dist/server.d.ts"
13
+ },
10
14
  "./package.json": "./package.json"
11
15
  },
12
16
  "bin": {
@@ -20,11 +24,11 @@
20
24
  },
21
25
  "dependencies": {
22
26
  "@modelcontextprotocol/sdk": "^1.27.1",
27
+ "@mclawnet/memory": "0.1.7",
23
28
  "@mclawnet/logger": "0.1.7",
24
- "@mclawnet/swarm": "0.1.12",
29
+ "@mclawnet/swarm": "0.1.13",
25
30
  "@mclawnet/skill-manager": "0.1.6",
26
- "@mclawnet/task": "0.1.2",
27
- "@mclawnet/memory": "0.1.7"
31
+ "@mclawnet/task": "0.1.2"
28
32
  },
29
33
  "devDependencies": {
30
34
  "@types/better-sqlite3": "^7",