@koi-language/koi 1.0.6 → 1.1.0

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 (113) hide show
  1. package/README.md +4 -125
  2. package/examples/.build/agent-dialogue.ts +138 -0
  3. package/examples/.build/agent-dialogue.ts.map +1 -0
  4. package/examples/.build/chess.ts +77 -0
  5. package/examples/.build/chess.ts.map +1 -0
  6. package/examples/.build/delegation-test.ts +140 -0
  7. package/examples/.build/delegation-test.ts.map +1 -0
  8. package/examples/.build/dialog-demo.ts +77 -0
  9. package/examples/.build/dialog-demo.ts.map +1 -0
  10. package/examples/.build/hello-world.ts +77 -0
  11. package/examples/.build/hello-world.ts.map +1 -0
  12. package/examples/.build/lover-dialog-demo.ts +77 -0
  13. package/examples/.build/lover-dialog-demo.ts.map +1 -0
  14. package/examples/.build/package.json +3 -0
  15. package/examples/.build/registry-interactive-demo.ts +202 -0
  16. package/examples/.build/registry-interactive-demo.ts.map +1 -0
  17. package/examples/.build/registry-playbook-demo.ts +201 -0
  18. package/examples/.build/registry-playbook-demo.ts.map +1 -0
  19. package/examples/.build/tic-tac-toe.ts +77 -0
  20. package/examples/.build/tic-tac-toe.ts.map +1 -0
  21. package/examples/actions-demo.koi +8 -9
  22. package/examples/activists-dialogue.koi +75 -0
  23. package/examples/agent-dialogue.koi +66 -0
  24. package/examples/chess.koi +19 -0
  25. package/examples/counter.koi +20 -69
  26. package/examples/delegation-test.koi +16 -18
  27. package/examples/dialog-demo.koi +20 -0
  28. package/examples/hello-world.koi +7 -43
  29. package/examples/mcp-stdio-demo.koi +29 -0
  30. package/examples/memory-test.koi +49 -0
  31. package/examples/mobile-mcp-demo.koi +32 -0
  32. package/examples/multi-event-handler-test.koi +16 -18
  33. package/examples/pipeline.koi +15 -17
  34. package/examples/prompt-demo.koi +20 -0
  35. package/examples/{registry-playbook-email-compositor.koi → registry-interactive-demo.koi} +27 -27
  36. package/examples/registry-playbook-demo.koi +28 -28
  37. package/examples/skill-import-test.koi +7 -9
  38. package/examples/skills/.build/math-operations.ts +1656 -0
  39. package/examples/skills/.build/math-operations.ts.map +1 -0
  40. package/examples/skills/.build/package.json +3 -0
  41. package/examples/skills/.build/string-operations.ts +1643 -0
  42. package/examples/skills/.build/string-operations.ts.map +1 -0
  43. package/examples/skills/advanced/.build/index.ts +3223 -0
  44. package/examples/skills/advanced/.build/index.ts.map +1 -0
  45. package/examples/skills/advanced/.build/package.json +3 -0
  46. package/examples/skills/advanced/index.koi +3 -5
  47. package/examples/skills/math-operations.koi +1 -3
  48. package/examples/skills/string-operations.koi +1 -3
  49. package/examples/tic-tac-toe.koi +19 -0
  50. package/examples/utils/echo-mcp-server.js +141 -0
  51. package/examples/web-delegation-demo.koi +15 -17
  52. package/package.json +2 -1
  53. package/src/cli/koi.js +30 -41
  54. package/src/compiler/build-optimizer.js +204 -289
  55. package/src/compiler/cache-manager.js +1 -1
  56. package/src/compiler/import-resolver.js +5 -9
  57. package/src/compiler/parser.js +6072 -3476
  58. package/src/compiler/transpiler.js +346 -38
  59. package/src/grammar/koi.pegjs +302 -62
  60. package/src/runtime/actions/{format.js → call-llm.js} +37 -44
  61. package/src/runtime/actions/call-mcp.js +97 -0
  62. package/src/runtime/actions/if.js +179 -0
  63. package/src/runtime/actions/print.js +3 -1
  64. package/src/runtime/actions/prompt-user.js +75 -0
  65. package/src/runtime/actions/repeat.js +147 -0
  66. package/src/runtime/actions/shell.js +185 -0
  67. package/src/runtime/actions/while.js +205 -0
  68. package/src/runtime/agent.js +592 -178
  69. package/src/runtime/cli-display.js +26 -0
  70. package/src/runtime/cli-input.js +421 -0
  71. package/src/runtime/cli-logger.js +2 -5
  72. package/src/runtime/cli-markdown.js +61 -0
  73. package/src/runtime/cli-select.js +106 -0
  74. package/src/runtime/incremental-json-parser.js +27 -17
  75. package/src/runtime/index.js +1 -0
  76. package/src/runtime/llm-provider.js +1083 -572
  77. package/src/runtime/mcp-registry.js +141 -0
  78. package/src/runtime/mcp-stdio-client.js +334 -0
  79. package/src/runtime/planner.js +1 -1
  80. package/src/runtime/playbook-session.js +259 -0
  81. package/src/runtime/registry-backends/keyv-sqlite.js +1 -1
  82. package/src/runtime/registry-backends/local.js +1 -1
  83. package/src/runtime/router.js +22 -26
  84. package/src/runtime/runtime.js +7 -1
  85. package/examples/cache-test.koi +0 -29
  86. package/examples/calculator.koi +0 -61
  87. package/examples/clear-registry.js +0 -33
  88. package/examples/clear-registry.koi +0 -30
  89. package/examples/code-introspection-test.koi +0 -149
  90. package/examples/directory-import-test.koi +0 -84
  91. package/examples/hello-world-claude.koi +0 -52
  92. package/examples/hello.koi +0 -24
  93. package/examples/mcp-example.koi +0 -70
  94. package/examples/new-import-test.koi +0 -89
  95. package/examples/registry-demo.koi +0 -184
  96. package/examples/registry-playbook-email-compositor-2.koi +0 -140
  97. package/examples/sentiment.koi +0 -90
  98. package/examples/simple.koi +0 -48
  99. package/examples/task-chaining-demo.koi +0 -244
  100. package/examples/test-await.koi +0 -22
  101. package/examples/test-crypto-sha256.koi +0 -196
  102. package/examples/test-delegation.koi +0 -41
  103. package/examples/test-multi-team-routing.koi +0 -258
  104. package/examples/test-no-handler.koi +0 -35
  105. package/examples/test-npm-import.koi +0 -67
  106. package/examples/test-parse.koi +0 -10
  107. package/examples/test-peers-with-team.koi +0 -59
  108. package/examples/test-permissions-fail.koi +0 -20
  109. package/examples/test-permissions.koi +0 -36
  110. package/examples/test-simple-registry.koi +0 -31
  111. package/examples/test-typescript-import.koi +0 -64
  112. package/examples/test-uses-team-syntax.koi +0 -25
  113. package/examples/test-uses-team.koi +0 -31
@@ -0,0 +1,1656 @@
1
+ // Generated from math-operations.koi
2
+ // Using local runtime from KOI_RUNTIME_PATH: /Users/antonioparraga/Git/M/src/runtime
3
+ import { Agent, Team, Skill, Role, Runtime, SkillRegistry, skillSelector, registry, mcpRegistry } from 'file:///Users/antonioparraga/Git/M/src/runtime/index.js';
4
+ import { createRequire } from 'module';
5
+ const require = createRequire(import.meta.url);
6
+
7
+ globalThis.SkillRegistry = SkillRegistry;
8
+ globalThis.skillSelector = skillSelector;
9
+ globalThis.registry = registry;
10
+ globalThis.mcpRegistry = mcpRegistry;
11
+
12
+ // ============================================================
13
+ // Pre-computed Affordances (Build-time Cache)
14
+ // Generated at: 2026-02-16T16:55:33.108Z
15
+ // Total agents: 0
16
+ // Total agent affordances: 0
17
+ // Total skills: 1
18
+ // Total skill affordances: 1
19
+ // This avoids embedding API calls at runtime
20
+ // ============================================================
21
+
22
+ const CACHED_AFFORDANCES = {};
23
+
24
+ const CACHED_SKILL_AFFORDANCES = {
25
+ "MathOperations": {
26
+ "description": "Perform mathematical operations like addition, subtraction, multiplication, and division",
27
+ "embedding": [
28
+ -0.013672269880771637,
29
+ 0.012927687726914883,
30
+ 0.021916639059782028,
31
+ 0.009399011731147766,
32
+ 0.019272828474640846,
33
+ 0.0214742049574852,
34
+ 0.008578890934586525,
35
+ 0.035027772188186646,
36
+ -0.01729806512594223,
37
+ -0.007920636795461178,
38
+ 0.0019315993413329124,
39
+ -0.04404909908771515,
40
+ -0.027085555717349052,
41
+ 0.0349198617041111,
42
+ 0.05663147196173668,
43
+ 0.02630859985947609,
44
+ -0.012981642968952656,
45
+ -0.02712871879339218,
46
+ 0.022639639675617218,
47
+ 0.03468246012926102,
48
+ 0.007078933995217085,
49
+ -0.008077106438577175,
50
+ 0.028768960386514664,
51
+ -0.00493151368573308,
52
+ -0.004605083726346493,
53
+ -0.013553569093346596,
54
+ -0.025315821170806885,
55
+ -0.01774049922823906,
56
+ 0.001878993003629148,
57
+ -0.04230094701051712,
58
+ 0.023028116673231125,
59
+ -0.022790715098381042,
60
+ 0.0006919765728525817,
61
+ 0.009981728158891201,
62
+ 0.03200627863407135,
63
+ 0.022186415269970894,
64
+ 0.00820659939199686,
65
+ 0.04327214136719704,
66
+ -0.0030673581641167402,
67
+ 0.002372683957219124,
68
+ -0.03293430805206299,
69
+ -0.007397270295768976,
70
+ -0.04894823953509331,
71
+ -0.008843271993100643,
72
+ -0.026071196421980858,
73
+ 0.02399931289255619,
74
+ -0.02014690451323986,
75
+ -0.06008461117744446,
76
+ 0.045020293444395065,
77
+ 0.04109234735369682,
78
+ 0.030085468664765358,
79
+ -0.05486173927783966,
80
+ -0.0018263865495100617,
81
+ 0.008676010183990002,
82
+ 0.01946706883609295,
83
+ 0.004219303838908672,
84
+ -0.0009428687044419348,
85
+ -0.012765821069478989,
86
+ 0.042775753885507584,
87
+ -0.0259848665446043,
88
+ -0.007909845560789108,
89
+ -0.004618573002517223,
90
+ 0.008427816443145275,
91
+ -0.013521195389330387,
92
+ -0.04722166806459427,
93
+ 0.03858882188796997,
94
+ 0.0072354041039943695,
95
+ 0.019995830953121185,
96
+ -0.0217763539403677,
97
+ 0.007721001747995615,
98
+ -0.04937988147139549,
99
+ -0.009123839437961578,
100
+ 0.06086156517267227,
101
+ 0.03725073114037514,
102
+ 0.015323301777243614,
103
+ 0.01024610921740532,
104
+ -0.012485253624618053,
105
+ 0.004424333572387695,
106
+ 0.01703908108174801,
107
+ 0.026222269982099533,
108
+ 0.05771057680249214,
109
+ 0.002066487679257989,
110
+ 0.06677506864070892,
111
+ 0.029632244259119034,
112
+ 0.030819261446595192,
113
+ -0.001736011472530663,
114
+ -0.052142392843961716,
115
+ -0.022402236238121986,
116
+ -0.058789681643247604,
117
+ -0.0720411017537117,
118
+ -0.03854565694928169,
119
+ -0.013478031381964684,
120
+ 0.025531642138957977,
121
+ 0.052444539964199066,
122
+ 0.020060576498508453,
123
+ 0.0011978073744103312,
124
+ -0.013920464552938938,
125
+ -0.01113637164235115,
126
+ -0.00919937714934349,
127
+ 0.015528332442045212,
128
+ 0.006366724148392677,
129
+ -0.02313602901995182,
130
+ 0.03476879000663757,
131
+ -0.0445454865694046,
132
+ 0.05002734437584877,
133
+ 0.09824179112911224,
134
+ -0.008546518161892891,
135
+ -0.02432304434478283,
136
+ -0.04284049943089485,
137
+ 0.04428650066256523,
138
+ -0.07342235743999481,
139
+ -0.03062502294778824,
140
+ -0.012798194773495197,
141
+ -0.04376853257417679,
142
+ -0.000020886598576908,
143
+ -0.002101558493450284,
144
+ 0.02516474761068821,
145
+ -0.012075194157660007,
146
+ 0.00671743368729949,
147
+ -0.06392622739076614,
148
+ -0.05468907952308655,
149
+ 0.023092864081263542,
150
+ 0.04066070541739464,
151
+ -0.05179707705974579,
152
+ 0.005886522121727467,
153
+ -0.04458865150809288,
154
+ -0.0038470120634883642,
155
+ -0.061595357954502106,
156
+ 0.029308512806892395,
157
+ 0.030236544087529182,
158
+ -0.017956320196390152,
159
+ -0.007273172959685326,
160
+ 0.01116874534636736,
161
+ -0.04920722544193268,
162
+ 0.014632674865424633,
163
+ -0.001435210695490241,
164
+ -0.005816380027681589,
165
+ 0.06353774666786194,
166
+ -0.003369507845491171,
167
+ 0.01072631124407053,
168
+ 0.0023308685049414635,
169
+ 0.014902451075613499,
170
+ 0.021139683201909065,
171
+ 0.024776268750429153,
172
+ -0.041329752653837204,
173
+ -0.035243596881628036,
174
+ -0.020481428131461143,
175
+ -0.02803516760468483,
176
+ -0.01848508231341839,
177
+ -0.05270352587103844,
178
+ -0.0043676807545125484,
179
+ -0.007100515998899937,
180
+ -0.025855375453829765,
181
+ -0.06150903180241585,
182
+ 0.02715030126273632,
183
+ 0.014449226669967175,
184
+ 0.012765821069478989,
185
+ -0.026071196421980858,
186
+ -0.0018682018853724003,
187
+ -0.009539294987916946,
188
+ 0.0008882389520294964,
189
+ -0.0010575236519798636,
190
+ -0.007310941815376282,
191
+ 0.030473947525024414,
192
+ -0.00994396023452282,
193
+ -0.012118358165025711,
194
+ -0.02805675007402897,
195
+ -0.008406233973801136,
196
+ -0.006129320710897446,
197
+ -0.06081840395927429,
198
+ -0.01715778186917305,
199
+ -0.053005676716566086,
200
+ 0.001691498328000307,
201
+ -0.07225692272186279,
202
+ -0.029848065227270126,
203
+ -0.01783761940896511,
204
+ 0.023956147953867912,
205
+ -0.048214446753263474,
206
+ -0.049897853285074234,
207
+ 0.026179106906056404,
208
+ -0.00024144991766661406,
209
+ 0.01976921781897545,
210
+ -0.04963886737823486,
211
+ 0.038416165858507156,
212
+ 0.03317171335220337,
213
+ 0.010791057720780373,
214
+ 0.00037768701440654695,
215
+ 0.026934480294585228,
216
+ 0.008260554634034634,
217
+ 0.0068199485540390015,
218
+ -0.009226354770362377,
219
+ 0.02945958822965622,
220
+ -0.005457577295601368,
221
+ 0.059307653456926346,
222
+ 0.008438607677817345,
223
+ -0.021722398698329926,
224
+ 0.06168168783187866,
225
+ 0.004302934277802706,
226
+ -0.013337747193872929,
227
+ -0.0031644776463508606,
228
+ 0.04346638172864914,
229
+ -0.023567670956254005,
230
+ 0.06673189997673035,
231
+ 0.022661222144961357,
232
+ -0.015021152794361115,
233
+ -0.03811401501297951,
234
+ 0.009879213757812977,
235
+ -0.012355761602520943,
236
+ 0.011190326884388924,
237
+ -0.054516423493623734,
238
+ 0.00887024961411953,
239
+ -0.03368968144059181,
240
+ 0.002673484617844224,
241
+ -0.021215219050645828,
242
+ -0.015884436666965485,
243
+ 0.029308512806892395,
244
+ 0.0005290990811772645,
245
+ 0.029891230165958405,
246
+ -0.024927344173192978,
247
+ 0.0135967331007123,
248
+ -0.020297979936003685,
249
+ 0.003644679905846715,
250
+ 0.029632244259119034,
251
+ -0.008023151196539402,
252
+ -0.04484763741493225,
253
+ 0.014082330279052258,
254
+ 0.028531556949019432,
255
+ -0.011578804813325405,
256
+ 0.021862683817744255,
257
+ -0.029027946293354034,
258
+ 0.03138039633631706,
259
+ 0.009976333007216454,
260
+ -0.04059595987200737,
261
+ 0.05110644921660423,
262
+ 0.02161448821425438,
263
+ 0.014276569709181786,
264
+ -0.026524420827627182,
265
+ 0.008541122078895569,
266
+ -0.0391283743083477,
267
+ 0.015010361559689045,
268
+ 0.001676660613156855,
269
+ 0.02516474761068821,
270
+ -0.0007668395410291851,
271
+ -0.024538865312933922,
272
+ -0.011352192610502243,
273
+ 0.048171281814575195,
274
+ -0.0010076150065287948,
275
+ 0.020211651921272278,
276
+ 0.009474548511207104,
277
+ -0.004394658375531435,
278
+ 0.023049699142575264,
279
+ 0.003496302757412195,
280
+ -0.034423474222421646,
281
+ -0.026697076857089996,
282
+ -0.015798108652234077,
283
+ -0.057926397770643234,
284
+ 0.010046474635601044,
285
+ 0.03800610452890396,
286
+ 0.0053550624288618565,
287
+ 0.03174729272723198,
288
+ -0.06211332976818085,
289
+ -0.04812811687588692,
290
+ -0.033020637929439545,
291
+ -0.0009408453479409218,
292
+ -0.004437822382897139,
293
+ 0.06202699989080429,
294
+ -0.002856932580471039,
295
+ 0.06737936288118362,
296
+ -0.05054531618952751,
297
+ -0.031876783818006516,
298
+ 0.05883284658193588,
299
+ 0.07333602756261826,
300
+ 0.00951231736689806,
301
+ 0.00014230707893148065,
302
+ -0.028833705931901932,
303
+ -0.016790885478258133,
304
+ 0.03321487456560135,
305
+ 0.05827171355485916,
306
+ 0.028963198885321617,
307
+ 0.0063613285310566425,
308
+ -0.020902279764413834,
309
+ -0.06202699989080429,
310
+ 0.04666053503751755,
311
+ 0.012884522788226604,
312
+ 0.005983641371130943,
313
+ -0.0019302504369989038,
314
+ 0.009026720188558102,
315
+ -0.016046302393078804,
316
+ 0.0023443573154509068,
317
+ -0.0012045517796650529,
318
+ 0.047912295907735825,
319
+ 0.015226182527840137,
320
+ 0.049293551594018936,
321
+ -0.06466002017259598,
322
+ 0.01488086860626936,
323
+ 0.008158039301633835,
324
+ -0.0000070447481448354665,
325
+ -0.04463181644678116,
326
+ 0.04709217697381973,
327
+ 0.02825099043548107,
328
+ 0.015636242926120758,
329
+ 0.03468246012926102,
330
+ -0.03118615783751011,
331
+ -0.0051635210402309895,
332
+ -0.011028461158275604,
333
+ 0.015841273590922356,
334
+ -0.047005847096443176,
335
+ -0.02520791068673134,
336
+ 0.0015188413672149181,
337
+ -0.011902537196874619,
338
+ 0.017654171213507652,
339
+ 0.03606371581554413,
340
+ 0.059048667550086975,
341
+ 0.004667132627218962,
342
+ 0.006490821484476328,
343
+ -0.0014365595998242497,
344
+ 0.009690370410680771,
345
+ 0.0383298359811306,
346
+ 0.014848495833575726,
347
+ -0.038394585251808167,
348
+ 0.06794050335884094,
349
+ -0.03656010329723358,
350
+ -0.016423990949988365,
351
+ -0.033538609743118286,
352
+ 0.033301204442977905,
353
+ -0.024430954828858376,
354
+ -0.022725967690348625,
355
+ 0.01888435147702694,
356
+ -0.0036338886711746454,
357
+ -0.043876443058252335,
358
+ 0.004815509542822838,
359
+ -0.022380653768777847,
360
+ 0.005810984876006842,
361
+ 0.004761554300785065,
362
+ 0.022531729191541672,
363
+ -0.001228831708431244,
364
+ 0.025661135092377663,
365
+ 0.04089811071753502,
366
+ 0.015388048253953457,
367
+ 0.0411355122923851,
368
+ -0.0018628063844516873,
369
+ -0.04890507459640503,
370
+ -0.021042563021183014,
371
+ -0.029071109369397163,
372
+ -0.010613005608320236,
373
+ -0.015700988471508026,
374
+ -0.02602803148329258,
375
+ 0.033560190349817276,
376
+ 0.003852407680824399,
377
+ 0.026071196421980858,
378
+ -0.04657420516014099,
379
+ -0.019413113594055176,
380
+ 0.024366209283471107,
381
+ 0.014513973146677017,
382
+ 0.02000662125647068,
383
+ -0.03636586666107178,
384
+ 0.011427730321884155,
385
+ -0.0001656595995882526,
386
+ 0.019240455701947212,
387
+ 0.03679750859737396,
388
+ -0.03694858402013779,
389
+ -0.00464555062353611,
390
+ 0.05399845540523529,
391
+ 0.004909931216388941,
392
+ 0.025920120999217033,
393
+ 0.02397773042321205,
394
+ 0.022380653768777847,
395
+ 0.0011337355244904757,
396
+ -0.04890507459640503,
397
+ -0.0248841792345047,
398
+ 0.041351333260536194,
399
+ 0.050200000405311584,
400
+ 0.012679493054747581,
401
+ 0.005479159764945507,
402
+ -0.01631607860326767,
403
+ -0.046185728162527084,
404
+ 0.019661307334899902,
405
+ 0.024387791752815247,
406
+ 0.00019980318029411137,
407
+ 0.0064584482461214066,
408
+ 0.014449226669967175,
409
+ 0.04890507459640503,
410
+ 0.020535383373498917,
411
+ -0.004888349212706089,
412
+ 0.02626543492078781,
413
+ 0.010019497014582157,
414
+ 0.010084243491292,
415
+ -0.011449312791228294,
416
+ -0.012355761602520943,
417
+ 0.02432304434478283,
418
+ 0.0251863282173872,
419
+ 0.022941788658499718,
420
+ -0.002347055124118924,
421
+ 0.03828667476773262,
422
+ -0.004699505865573883,
423
+ -0.0271934662014246,
424
+ 0.05835803970694542,
425
+ 0.015096689574420452,
426
+ 0.018873561173677444,
427
+ -0.016499526798725128,
428
+ 0.02997755818068981,
429
+ -0.005794798023998737,
430
+ -0.01745993085205555,
431
+ -0.016521109268069267,
432
+ 0.05628615617752075,
433
+ -0.014632674865424633,
434
+ 0.022380653768777847,
435
+ 0.018495872616767883,
436
+ 0.034423474222421646,
437
+ 0.00708432961255312,
438
+ -0.007650860119611025,
439
+ -0.025639552623033524,
440
+ 0.013046389445662498,
441
+ 0.02974015474319458,
442
+ 0.0323084257543087,
443
+ -0.0720411017537117,
444
+ -0.0000394969574699644,
445
+ 0.014352107420563698,
446
+ 0.003941433969885111,
447
+ -0.005897313356399536,
448
+ -0.05058848112821579,
449
+ 0.014103912748396397,
450
+ -0.00950152613222599,
451
+ -0.0122910151258111,
452
+ -0.032200515270233154,
453
+ 0.006490821484476328,
454
+ -0.03679750859737396,
455
+ -0.030711350962519646,
456
+ -0.012474463321268559,
457
+ -0.03623637184500694,
458
+ 0.020179279148578644,
459
+ 0.02374032698571682,
460
+ -0.010051870718598366,
461
+ 0.008336092345416546,
462
+ 0.03884780779480934,
463
+ -0.024366209283471107,
464
+ 0.005935081746429205,
465
+ 0.047005847096443176,
466
+ -0.01962893456220627,
467
+ 0.014039166271686554,
468
+ -0.016823260113596916,
469
+ 0.004027762450277805,
470
+ 0.02602803148329258,
471
+ -0.009879213757812977,
472
+ -0.044502321630716324,
473
+ -0.0027706041000783443,
474
+ -0.033344369381666183,
475
+ -0.01512906327843666,
476
+ -0.005139241460710764,
477
+ -0.01631607860326767,
478
+ 0.001122944406233728,
479
+ 0.014600301161408424,
480
+ 0.012323387898504734,
481
+ 0.044178590178489685,
482
+ -0.02717188373208046,
483
+ -0.01171908900141716,
484
+ 0.052228718996047974,
485
+ -0.04545193538069725,
486
+ 0.0040979040786623955,
487
+ 0.0503726564347744,
488
+ -0.023243939504027367,
489
+ 0.012247851118445396,
490
+ -0.011632760055363178,
491
+ -0.02514316514134407,
492
+ 0.014988779090344906,
493
+ -0.018927516415715218,
494
+ -0.001914063934236765,
495
+ 0.01530172023922205,
496
+ -0.004346098750829697,
497
+ 0.04107076674699783,
498
+ -0.004435124807059765,
499
+ 0.030991917476058006,
500
+ 0.008319905959069729,
501
+ 0.03381917625665665,
502
+ -0.03375443071126938,
503
+ -0.032157354056835175,
504
+ 0.025941703468561172,
505
+ -0.050200000405311584,
506
+ 0.006663478445261717,
507
+ 0.027560362592339516,
508
+ 0.017513886094093323,
509
+ -0.03487670049071312,
510
+ -0.011632760055363178,
511
+ -0.014654256403446198,
512
+ -0.037639208137989044,
513
+ 0.09245778620243073,
514
+ -0.009086070582270622,
515
+ -0.02397773042321205,
516
+ 0.026804987341165543,
517
+ -0.003757986007258296,
518
+ -0.017006706446409225,
519
+ -0.01470821164548397,
520
+ 0.0784725695848465,
521
+ -0.0076940241269767284,
522
+ 0.034725625067949295,
523
+ 0.026502838358283043,
524
+ -0.04584041237831116,
525
+ 0.02710713818669319,
526
+ 0.014071539044380188,
527
+ -0.022207997739315033,
528
+ 0.06569596379995346,
529
+ -0.032696906477212906,
530
+ -0.02941642329096794,
531
+ -0.005177009850740433,
532
+ -0.0011634109541773796,
533
+ 0.01998503878712654,
534
+ 0.028941616415977478,
535
+ -0.01643478125333786,
536
+ 0.004397355951368809,
537
+ 0.02684815227985382,
538
+ 0.03366810083389282,
539
+ -0.039063628762960434,
540
+ -0.0019127150299027562,
541
+ -0.0029243766330182552,
542
+ -0.007186844479292631,
543
+ -0.016499526798725128,
544
+ -0.009620227850973606,
545
+ 0.03623637184500694,
546
+ 0.01715778186917305,
547
+ -0.017751289531588554,
548
+ 0.002460361225530505,
549
+ -0.008346883580088615,
550
+ -0.012960060499608517,
551
+ -0.02000662125647068,
552
+ -0.013143508695065975,
553
+ -0.06712038069963455,
554
+ 0.00256152730435133,
555
+ -0.009836048819124699,
556
+ -0.022024549543857574,
557
+ -0.03515726700425148,
558
+ 0.033581770956516266,
559
+ 0.030150216072797775,
560
+ 0.019672097638249397,
561
+ 0.02115047350525856,
562
+ 0.003919851966202259,
563
+ -0.032459501177072525,
564
+ -0.026999227702617645,
565
+ 0.009015928953886032,
566
+ -0.027063973248004913,
567
+ -0.04085494577884674,
568
+ 0.0008909367024898529,
569
+ 0.03679750859737396,
570
+ 0.02399931289255619,
571
+ 0.0003618376504164189,
572
+ -0.01513985451310873,
573
+ 0.003399183275178075,
574
+ -0.022445401176810265,
575
+ -0.010305460542440414,
576
+ -0.018668530508875847,
577
+ 0.01115795411169529,
578
+ 0.009614832699298859,
579
+ -0.02971857413649559,
580
+ -0.0029243766330182552,
581
+ 0.018808813765645027,
582
+ -0.014772958122193813,
583
+ 0.02456044778227806,
584
+ -0.00820659939199686,
585
+ 0.003620399860665202,
586
+ -0.005079890601336956,
587
+ -0.06375356763601303,
588
+ -0.0125931641086936,
589
+ -0.009463758207857609,
590
+ 0.020513800904154778,
591
+ -0.016650602221488953,
592
+ -0.02775460109114647,
593
+ 0.018657738342881203,
594
+ 0.006447657011449337,
595
+ -0.03895571827888489,
596
+ 0.015560705214738846,
597
+ 0.024128805845975876,
598
+ -0.010256900452077389,
599
+ 0.02255331166088581,
600
+ -0.00463475938886404,
601
+ 0.001578192226588726,
602
+ -0.012550000101327896,
603
+ -0.02663233131170273,
604
+ -0.005967454984784126,
605
+ -0.035847894847393036,
606
+ -0.0009125188225880265,
607
+ -0.042128290981054306,
608
+ -0.014427644200623035,
609
+ 0.0013731621438637376,
610
+ 0.003304761368781328,
611
+ -0.03194153308868408,
612
+ -0.028445228934288025,
613
+ 0.034466639161109924,
614
+ 0.004437822382897139,
615
+ 0.03520043194293976,
616
+ -0.005384738091379404,
617
+ -0.032135769724845886,
618
+ 0.005740842781960964,
619
+ 0.039279449731111526,
620
+ 0.018679320812225342,
621
+ 0.006480030249804258,
622
+ 0.003472022945061326,
623
+ 0.01489165984094143,
624
+ -0.03056027553975582,
625
+ -0.004370378330349922,
626
+ 0.003906363155692816,
627
+ -0.03401341289281845,
628
+ 0.028833705931901932,
629
+ 0.011071625165641308,
630
+ 0.037596046924591064,
631
+ 0.010758684948086739,
632
+ -0.021949011832475662,
633
+ -0.01065616961568594,
634
+ 0.03854565694928169,
635
+ -0.014244196005165577,
636
+ -0.006210254039615393,
637
+ -0.01641319878399372,
638
+ -0.03461771458387375,
639
+ 0.010445743799209595,
640
+ -0.0012672748416662216,
641
+ -0.0052795251831412315,
642
+ -0.03599897027015686,
643
+ -0.019456276670098305,
644
+ 0.016510318964719772,
645
+ 0.027603525668382645,
646
+ 0.020136114209890366,
647
+ 0.023395013064146042,
648
+ -0.029243767261505127,
649
+ 0.015862854197621346,
650
+ 0.01954260654747486,
651
+ 0.013942047022283077,
652
+ 0.03479037061333656,
653
+ 0.02654600329697132,
654
+ 0.0008909367024898529,
655
+ 0.003571840235963464,
656
+ 0.021808728575706482,
657
+ 0.020362725481390953,
658
+ -0.015657825395464897,
659
+ 0.02978331968188286,
660
+ 0.046703699976205826,
661
+ -0.01155722327530384,
662
+ -0.00902132410556078,
663
+ -0.010553654283285141,
664
+ 0.009118444286286831,
665
+ -0.04666053503751755,
666
+ -0.027884094044566154,
667
+ -0.016423990949988365,
668
+ 0.0026519023813307285,
669
+ 0.03381917625665665,
670
+ 0.028941616415977478,
671
+ -0.03658168762922287,
672
+ 0.02007136680185795,
673
+ 0.00558437267318368,
674
+ -0.015603870153427124,
675
+ -0.0005655188579112291,
676
+ -0.04510662332177162,
677
+ 0.005665305536240339,
678
+ -0.025056837126612663,
679
+ 0.0204706359654665,
680
+ 0.008875644765794277,
681
+ -0.04912089556455612,
682
+ -0.01064537838101387,
683
+ -0.028941616415977478,
684
+ 0.02259647473692894,
685
+ -0.02406405843794346,
686
+ 0.027258211746811867,
687
+ -0.02189505659043789,
688
+ 0.003892874112352729,
689
+ -0.021042563021183014,
690
+ -0.010861199349164963,
691
+ 0.009755115956068039,
692
+ 0.026416510343551636,
693
+ 0.057581085711717606,
694
+ -0.02969699166715145,
695
+ -0.01603551208972931,
696
+ 0.04038013890385628,
697
+ 0.0052795251831412315,
698
+ -0.05978246033191681,
699
+ 0.03977584093809128,
700
+ -0.028963198885321617,
701
+ 0.03811401501297951,
702
+ -0.02341659553349018,
703
+ 0.029912812635302544,
704
+ -0.008740756660699844,
705
+ 0.011934909969568253,
706
+ 0.013909673318266869,
707
+ 0.030214961618185043,
708
+ 0.0030700559727847576,
709
+ 0.001865504076704383,
710
+ -0.0222727432847023,
711
+ 0.024754686281085014,
712
+ 0.015614660456776619,
713
+ -0.011179535649716854,
714
+ 0.00010445406951475888,
715
+ 0.03630111739039421,
716
+ 0.04376853257417679,
717
+ -0.06176801398396492,
718
+ 0.002747673075646162,
719
+ -0.03891255334019661,
720
+ 0.035869475454092026,
721
+ 0.0020152300130575895,
722
+ 0.01731964759528637,
723
+ 0.0064206793904304504,
724
+ 0.04346638172864914,
725
+ -0.0061347163282334805,
726
+ 0.010354019701480865,
727
+ -0.02861788496375084,
728
+ 0.0021676537580788136,
729
+ -0.0008349581039510667,
730
+ -0.040336973965168,
731
+ -0.018010275438427925,
732
+ -0.015495958738029003,
733
+ -0.04579725116491318,
734
+ 0.006355932913720608,
735
+ 0.03323645889759064,
736
+ 0.0405312143266201,
737
+ -0.02072962187230587,
738
+ 0.01825846917927265,
739
+ 0.0051824054680764675,
740
+ -0.02576904557645321,
741
+ -0.0034801161382347345,
742
+ -0.0026181803550571203,
743
+ -0.01188095472753048,
744
+ -0.0005672049592249095,
745
+ 0.02773301862180233,
746
+ -0.003922549542039633,
747
+ 0.0008477724622935057,
748
+ -0.004251676611602306,
749
+ -0.008891832083463669,
750
+ -0.040164317935705185,
751
+ -0.025251075625419617,
752
+ -0.03509252145886421,
753
+ 0.003053869353607297,
754
+ -0.004648248199373484,
755
+ 0.05058848112821579,
756
+ 0.030366037040948868,
757
+ 0.017125409096479416,
758
+ 0.008109480142593384,
759
+ 0.003822732251137495,
760
+ -0.000939496501814574,
761
+ -0.025617972016334534,
762
+ 0.002283657668158412,
763
+ -0.019434696063399315,
764
+ -0.019175710156559944,
765
+ -0.0017373603768646717,
766
+ 0.022402236238121986,
767
+ -0.03397025167942047,
768
+ -0.017783664166927338,
769
+ -0.02825099043548107,
770
+ 0.012679493054747581,
771
+ -0.03343069553375244,
772
+ 0.0087785255163908,
773
+ 0.021236801519989967,
774
+ 0.011244282126426697,
775
+ -0.024646775797009468,
776
+ -0.023632416501641273,
777
+ -0.0021946313790977,
778
+ -0.0537826307117939,
779
+ 0.003981900401413441,
780
+ 0.04087652638554573,
781
+ 0.009145421907305717,
782
+ 0.002229702426120639,
783
+ -0.01669376716017723,
784
+ -0.03824350982904434,
785
+ -0.015398839488625526,
786
+ 0.008665219880640507,
787
+ -0.047307997941970825,
788
+ 0.030689768493175507,
789
+ 0.03850249573588371,
790
+ -0.001914063934236765,
791
+ 0.02233749069273472,
792
+ -0.004834393970668316,
793
+ -0.0022917508613318205,
794
+ 0.009107653051614761,
795
+ -0.010629191994667053,
796
+ 0.014060748741030693,
797
+ 0.0067444113083183765,
798
+ 0.015010361559689045,
799
+ -0.02103177271783352,
800
+ 0.009409802034497261,
801
+ -0.01472979411482811,
802
+ 0.02974015474319458,
803
+ 0.007192240096628666,
804
+ -0.038200344890356064,
805
+ -0.04437283053994179,
806
+ -0.026416510343551636,
807
+ 0.001060221460647881,
808
+ -0.026783404871821404,
809
+ 0.0007115353946574032,
810
+ 0.037293896079063416,
811
+ 0.005541208200156689,
812
+ -0.028164660558104515,
813
+ -0.003186059882864356,
814
+ 0.030366037040948868,
815
+ -0.00967418309301138,
816
+ 0.010456535033881664,
817
+ -0.06150903180241585,
818
+ -0.028747377917170525,
819
+ -0.0078774718567729,
820
+ 0.02205692231655121,
821
+ -0.0015579590108245611,
822
+ -0.0003422788577154279,
823
+ -0.02658916637301445,
824
+ -0.0017832223093137145,
825
+ -0.07527841627597809,
826
+ 0.0445454865694046,
827
+ 0.027646690607070923,
828
+ -0.013683061115443707,
829
+ -0.011384566314518452,
830
+ -0.009970937855541706,
831
+ -0.014805331826210022,
832
+ 0.05404161661863327,
833
+ -0.0001656595995882526,
834
+ -0.0306034404784441,
835
+ 0.05654514208436012,
836
+ -0.0271934662014246,
837
+ -0.02635176293551922,
838
+ 0.04627205803990364,
839
+ 0.003061962779611349,
840
+ -0.01601392962038517,
841
+ 0.053868960589170456,
842
+ -0.02481943368911743,
843
+ -0.017492305487394333,
844
+ -0.015636242926120758,
845
+ 0.018269261345267296,
846
+ 0.014395271427929401,
847
+ -0.006733620073646307,
848
+ 0.002322775311768055,
849
+ -0.053868960589170456,
850
+ 0.029351677745580673,
851
+ 0.00835767388343811,
852
+ 0.01617579534649849,
853
+ 0.015862854197621346,
854
+ -0.006652687210589647,
855
+ 0.030193379148840904,
856
+ -0.02105335332453251,
857
+ 0.05926448851823807,
858
+ -0.011416939087212086,
859
+ -0.033322785049676895,
860
+ -0.017093036323785782,
861
+ 0.015571496449410915,
862
+ 0.034747205674648285,
863
+ -0.002032765420153737,
864
+ 0.013855718076229095,
865
+ 0.020535383373498917,
866
+ -0.009873817674815655,
867
+ 0.026481255888938904,
868
+ 0.02019006945192814,
869
+ -0.008508749306201935,
870
+ 0.04035855829715729,
871
+ -0.01399600226432085,
872
+ 0.007569927256554365,
873
+ 0.036732759326696396,
874
+ -0.023934565484523773,
875
+ 0.04596990719437599,
876
+ -0.02740928716957569,
877
+ 0.039603181183338165,
878
+ -0.023891402408480644,
879
+ -0.009981728158891201,
880
+ 0.0010757335694506764,
881
+ -0.015808898955583572,
882
+ 0.03742338716983795,
883
+ -0.03796294331550598,
884
+ 0.011535640805959702,
885
+ 0.022229578346014023,
886
+ 0.02317919209599495,
887
+ -0.011082416400313377,
888
+ -0.014665047638118267,
889
+ 0.03621479123830795,
890
+ -0.03666801378130913,
891
+ -0.04523611441254616,
892
+ 0.012560791335999966,
893
+ 0.019510231912136078,
894
+ 0.010305460542440414,
895
+ -0.014028375037014484,
896
+ 0.022466981783509254,
897
+ 0.005376644432544708,
898
+ -0.011762253008782864,
899
+ 0.016844840720295906,
900
+ -0.02231590822339058,
901
+ -0.006409888155758381,
902
+ 0.0073325238190591335,
903
+ -0.027258211746811867,
904
+ -0.016769304871559143,
905
+ 0.000511563615873456,
906
+ -0.007143680471926928,
907
+ -0.0034261608961969614,
908
+ 0.023351849988102913,
909
+ -0.001756244688294828,
910
+ -0.04402751475572586,
911
+ -0.009312682785093784,
912
+ -0.0009084721677936614,
913
+ -0.01692037843167782,
914
+ -0.018452709540724754,
915
+ 0.01748151332139969,
916
+ -0.00895118247717619,
917
+ 0.02570430003106594,
918
+ -0.0020206256303936243,
919
+ 0.0435527078807354,
920
+ -0.0003102429036516696,
921
+ 0.006852321792393923,
922
+ -0.023610834032297134,
923
+ -0.020481428131461143,
924
+ 0.0377255380153656,
925
+ -0.009037511423230171,
926
+ 0.018344799056649208,
927
+ -0.022423818707466125,
928
+ -0.023632416501641273,
929
+ -0.0222727432847023,
930
+ -0.010019497014582157,
931
+ -0.03379759192466736,
932
+ -0.03153147175908089,
933
+ 0.0029675408732146025,
934
+ -0.025661135092377663,
935
+ 0.03541625291109085,
936
+ -0.0076940241269767284,
937
+ -0.018377171829342842,
938
+ -0.011060833930969238,
939
+ -0.012258641421794891,
940
+ 0.02287704311311245,
941
+ -0.04262467846274376,
942
+ 0.0011822952656075358,
943
+ -0.0011452010367065668,
944
+ -0.02367558144032955,
945
+ -0.0122910151258111,
946
+ -0.012539208866655827,
947
+ -0.031056664884090424,
948
+ 0.014481599442660809,
949
+ -0.0405312143266201,
950
+ -0.03554574400186539,
951
+ -0.013380912132561207,
952
+ 0.0041006021201610565,
953
+ 0.006825344171375036,
954
+ -0.016208168119192123,
955
+ -0.00042928176117129624,
956
+ 0.025855375453829765,
957
+ -0.019499441608786583,
958
+ 0.05041582137346268,
959
+ -0.016952751204371452,
960
+ 0.045581430196762085,
961
+ -0.0010318949352949858,
962
+ 0.013089553453028202,
963
+ -0.006091552320867777,
964
+ -0.0075213671661913395,
965
+ 0.009970937855541706,
966
+ 0.00017720939649734646,
967
+ -0.01170829776674509,
968
+ -0.02917901985347271,
969
+ -0.013769390061497688,
970
+ 0.008346883580088615,
971
+ -0.002090767491608858,
972
+ 0.013132717460393906,
973
+ -0.042754169553518295,
974
+ 0.01072631124407053,
975
+ 0.006194067187607288,
976
+ 0.002132582711055875,
977
+ 0.022984953597187996,
978
+ 0.00072232645470649,
979
+ -0.02512158267199993,
980
+ 0.059048667550086975,
981
+ -0.023092864081263542,
982
+ 0.0012881825678050518,
983
+ 0.02712871879339218,
984
+ 0.010175967589020729,
985
+ -0.06513482332229614,
986
+ 0.02863946743309498,
987
+ 0.02857472188770771,
988
+ -0.04096285626292229,
989
+ -0.06785417348146439,
990
+ 0.009296496398746967,
991
+ -0.04098443686962128,
992
+ 0.004259770270437002,
993
+ 0.008994346484541893,
994
+ -0.008228181861341,
995
+ 0.015334093011915684,
996
+ -0.027905676513910294,
997
+ -0.0331069640815258,
998
+ 0.04180455952882767,
999
+ 0.02367558144032955,
1000
+ -0.015582287684082985,
1001
+ 0.040423303842544556,
1002
+ -0.01760021597146988,
1003
+ -0.05926448851823807,
1004
+ -0.025358986109495163,
1005
+ 0.00036284932866692543,
1006
+ -0.005160823464393616,
1007
+ 0.024754686281085014,
1008
+ -0.005112263839691877,
1009
+ 0.022380653768777847,
1010
+ 0.031855203211307526,
1011
+ -0.003933340776711702,
1012
+ 0.017945529893040657,
1013
+ 0.022359071299433708,
1014
+ 0.0165534820407629,
1015
+ -0.010952923446893692,
1016
+ -0.011082416400313377,
1017
+ -0.00686850817874074,
1018
+ 0.028121497482061386,
1019
+ -0.0009705207776278257,
1020
+ 0.0023929171729832888,
1021
+ -0.011600387282669544,
1022
+ 0.01802106760442257,
1023
+ 0.011001483537256718,
1024
+ -0.03377601131796837,
1025
+ -0.059609804302453995,
1026
+ -0.007230008952319622,
1027
+ 0.0005489950417540967,
1028
+ -0.022466981783509254,
1029
+ -0.026524420827627182,
1030
+ 0.02072962187230587,
1031
+ 0.004391960334032774,
1032
+ 0.008400838822126389,
1033
+ 0.03384075686335564,
1034
+ 0.045020293444395065,
1035
+ -0.029351677745580673,
1036
+ -0.004375773947685957,
1037
+ 0.007165262475609779,
1038
+ -0.013683061115443707,
1039
+ 0.0034504407085478306,
1040
+ -0.037552881985902786,
1041
+ -0.035049356520175934,
1042
+ 0.005007050931453705,
1043
+ 0.0178592000156641,
1044
+ 0.013704643584787846,
1045
+ -0.015485168434679508,
1046
+ -0.003350623417645693,
1047
+ -0.0075051807798445225,
1048
+ -0.026999227702617645,
1049
+ 0.013262210413813591,
1050
+ -0.0034909071400761604,
1051
+ -0.02430146187543869,
1052
+ -0.04894823953509331,
1053
+ -0.004343400709331036,
1054
+ 0.0045160576701164246,
1055
+ -0.019833965227007866,
1056
+ -0.009285705164074898,
1057
+ -0.0005439367378130555,
1058
+ 0.0048802560195326805,
1059
+ 0.012722657062113285,
1060
+ -0.003863198682665825,
1061
+ -0.029286930337548256,
1062
+ -0.04249518737196922,
1063
+ 0.03947369009256363,
1064
+ -0.011179535649716854,
1065
+ -0.03686225414276123,
1066
+ 0.003973807208240032,
1067
+ -0.010478117503225803,
1068
+ 0.0015255857724696398,
1069
+ 0.007526762783527374,
1070
+ 0.002347055124118924,
1071
+ 0.029869647696614265,
1072
+ 0.013521195389330387,
1073
+ 0.03921470418572426,
1074
+ 0.029308512806892395,
1075
+ -0.0038551054894924164,
1076
+ 0.0019059706246480346,
1077
+ 0.01633766107261181,
1078
+ -0.009091466665267944,
1079
+ 0.007515972014516592,
1080
+ 0.004580804146826267,
1081
+ -0.02341659553349018,
1082
+ 0.008233577013015747,
1083
+ 0.003334436798468232,
1084
+ -0.007192240096628666,
1085
+ 0.02661074884235859,
1086
+ 0.0012072495883330703,
1087
+ 0.007899054326117039,
1088
+ 0.008427816443145275,
1089
+ -0.012744239531457424,
1090
+ -0.018506664782762527,
1091
+ -0.04040171951055527,
1092
+ -0.006685060448944569,
1093
+ 0.04368220269680023,
1094
+ -0.007872076705098152,
1095
+ -0.031250905245542526,
1096
+ 0.0000812701546237804,
1097
+ -0.0005024586571380496,
1098
+ -0.01115795411169529,
1099
+ -0.0162513330578804,
1100
+ 0.03796294331550598,
1101
+ 0.0068199485540390015,
1102
+ -0.003156384453177452,
1103
+ -0.023308685049414635,
1104
+ -0.01299243327230215,
1105
+ -0.018031857907772064,
1106
+ -0.008676010183990002,
1107
+ 0.009744325652718544,
1108
+ 0.001089896890334785,
1109
+ 0.007397270295768976,
1110
+ -0.004904535599052906,
1111
+ -0.002032765420153737,
1112
+ -0.03084084391593933,
1113
+ -0.019110962748527527,
1114
+ -0.01430894248187542,
1115
+ -0.022984953597187996,
1116
+ 0.012420508079230785,
1117
+ 0.010650774464011192,
1118
+ -0.02086990512907505,
1119
+ -0.008670615032315254,
1120
+ -0.014988779090344906,
1121
+ -0.032977472990751266,
1122
+ -0.02434462681412697,
1123
+ 0.017125409096479416,
1124
+ 0.00501244654878974,
1125
+ 0.003852407680824399,
1126
+ 0.021226011216640472,
1127
+ -0.02456044778227806,
1128
+ -0.01529092900454998,
1129
+ 0.00039218750316649675,
1130
+ 0.026502838358283043,
1131
+ -0.007435038685798645,
1132
+ 0.004699505865573883,
1133
+ -0.012938478030264378,
1134
+ 0.00014829274732619524,
1135
+ -0.00033637750311754644,
1136
+ 0.0050879837945103645,
1137
+ 0.03118615783751011,
1138
+ 0.02863946743309498,
1139
+ 0.005794798023998737,
1140
+ 0.038416165858507156,
1141
+ -0.02484101615846157,
1142
+ -0.05745159089565277,
1143
+ 0.0031941530760377645,
1144
+ 0.015528332442045212,
1145
+ 0.05084746330976486,
1146
+ 0.0049935621209442616,
1147
+ 0.02261805720627308,
1148
+ 0.011978073976933956,
1149
+ -0.04972519353032112,
1150
+ -0.013219045475125313,
1151
+ 0.018830396234989166,
1152
+ -0.03746655210852623,
1153
+ -0.019251247867941856,
1154
+ 0.003196850884705782,
1155
+ 0.026459673419594765,
1156
+ -0.00434879632666707,
1157
+ -0.022359071299433708,
1158
+ -0.04020748287439346,
1159
+ 0.005444088485091925,
1160
+ 0.0178592000156641,
1161
+ -0.029351677745580673,
1162
+ -0.005446786526590586,
1163
+ -0.030819261446595192,
1164
+ 0.013111134991049767,
1165
+ -0.02945958822965622,
1166
+ -0.010758684948086739,
1167
+ 0.007467411924153566,
1168
+ 0.000729745312128216,
1169
+ -0.0016874517314136028,
1170
+ 0.02124759368598461,
1171
+ 0.018269261345267296,
1172
+ 0.027581943199038506,
1173
+ 0.013898883014917374,
1174
+ 0.01512906327843666,
1175
+ 0.02481943368911743,
1176
+ 0.017028288915753365,
1177
+ 0.02743086963891983,
1178
+ 0.0044405204243958,
1179
+ 0.021182846277952194,
1180
+ 0.016823260113596916,
1181
+ -0.020384307950735092,
1182
+ -0.0022917508613318205,
1183
+ -0.04210670664906502,
1184
+ -0.015539123676717281,
1185
+ -0.0023214262910187244,
1186
+ 0.03513568267226219,
1187
+ -0.0046725282445549965,
1188
+ 0.010882781818509102,
1189
+ 0.010580631904304028,
1190
+ -0.009307287633419037,
1191
+ 0.015053525567054749,
1192
+ 0.021344712004065514,
1193
+ -0.0005183080211281776,
1194
+ 0.02004978619515896,
1195
+ -0.004564617294818163,
1196
+ -0.02205692231655121,
1197
+ 0.022747550159692764,
1198
+ 0.0405312143266201,
1199
+ 0.022812295705080032,
1200
+ -0.021646862849593163,
1201
+ 0.0041006021201610565,
1202
+ 0.014589509926736355,
1203
+ 0.017103826627135277,
1204
+ 0.007866681553423405,
1205
+ -0.008961973711848259,
1206
+ 0.04003482311964035,
1207
+ 0.0676383525133133,
1208
+ 0.03064660355448723,
1209
+ -0.03373284637928009,
1210
+ -0.00103594153188169,
1211
+ -0.021949011832475662,
1212
+ -0.0214742049574852,
1213
+ -0.014017583802342415,
1214
+ -0.014233405701816082,
1215
+ -0.02163607068359852,
1216
+ 0.011028461158275604,
1217
+ 0.005713865160942078,
1218
+ -0.014049957506358624,
1219
+ 0.020600128918886185,
1220
+ -0.008465585298836231,
1221
+ 0.014686630107462406,
1222
+ -0.05507756024599075,
1223
+ 0.011891745962202549,
1224
+ -0.0076184868812561035,
1225
+ -0.0034612317103892565,
1226
+ 0.012388134375214577,
1227
+ 0.02917901985347271,
1228
+ -0.004985468927770853,
1229
+ 0.01374780759215355,
1230
+ 0.029265349730849266,
1231
+ 0.012474463321268559,
1232
+ 0.032740071415901184,
1233
+ -0.0033964854665100574,
1234
+ 0.020503010600805283,
1235
+ 0.005198592320084572,
1236
+ 0.018247678875923157,
1237
+ -0.002101558493450284,
1238
+ 0.01474058534950018,
1239
+ 0.005489950533956289,
1240
+ -0.006490821484476328,
1241
+ -0.03032287210226059,
1242
+ -0.014492390677332878,
1243
+ -0.006436866242438555,
1244
+ -0.00029759714379906654,
1245
+ -0.013057179749011993,
1246
+ 0.02283387817442417,
1247
+ -0.011902537196874619,
1248
+ -0.011578804813325405,
1249
+ 0.034445058554410934,
1250
+ -0.0008720523910596967,
1251
+ 0.025358986109495163,
1252
+ -0.015107480809092522,
1253
+ -0.00265864678658545,
1254
+ -0.02974015474319458,
1255
+ 0.023567670956254005,
1256
+ 0.01245288085192442,
1257
+ 0.023934565484523773,
1258
+ 0.003763381391763687,
1259
+ -0.018549827858805656,
1260
+ -0.016985125839710236,
1261
+ -0.01474058534950018,
1262
+ -0.006507007870823145,
1263
+ -0.009059092961251736,
1264
+ -0.016823260113596916,
1265
+ -0.02348134107887745,
1266
+ -0.0003031612723134458,
1267
+ 0.01002489309757948,
1268
+ 0.0009523108601570129,
1269
+ -0.03891255334019661,
1270
+ -0.003596120048314333,
1271
+ 0.010683147236704826,
1272
+ -0.005913499742746353,
1273
+ 0.03004230558872223,
1274
+ 0.007893659174442291,
1275
+ -0.02283387817442417,
1276
+ -0.013639897108078003,
1277
+ 0.02715030126273632,
1278
+ 0.03349544480443001,
1279
+ 0.025100000202655792,
1280
+ -0.018064230680465698,
1281
+ 0.004208512604236603,
1282
+ 0.0026465069968253374,
1283
+ 0.014837704598903656,
1284
+ 0.005535812582820654,
1285
+ 0.03716440498828888,
1286
+ 0.022100087255239487,
1287
+ -0.013780181296169758,
1288
+ -0.019208082929253578,
1289
+ 0.011665133759379387,
1290
+ 0.02978331968188286,
1291
+ -0.0043892627581954,
1292
+ 0.01958576962351799,
1293
+ -0.011438521556556225,
1294
+ -0.011773044243454933,
1295
+ 0.011934909969568253,
1296
+ 0.002283657668158412,
1297
+ 0.03602055087685585,
1298
+ -0.0028650257736444473,
1299
+ 0.005333480425179005,
1300
+ 0.02089148759841919,
1301
+ 0.01597076654434204,
1302
+ 0.019920293241739273,
1303
+ -0.0014729794347658753,
1304
+ 0.005740842781960964,
1305
+ 0.037574462592601776,
1306
+ 0.035329923033714294,
1307
+ 0.029027946293354034,
1308
+ 0.006010619457811117,
1309
+ 0.02112889103591442,
1310
+ 0.00936124287545681,
1311
+ 0.018290843814611435,
1312
+ 0.0041006021201610565,
1313
+ 0.005983641371130943,
1314
+ 0.000915216573048383,
1315
+ -0.02689131535589695,
1316
+ 0.028358900919556618,
1317
+ 0.030711350962519646,
1318
+ -0.0015215391758829355,
1319
+ -0.018938306719064713,
1320
+ 0.006960232276469469,
1321
+ 0.010138198733329773,
1322
+ -0.007321732584387064,
1323
+ 0.002135280519723892,
1324
+ 0.0009779395768418908,
1325
+ -0.03207102417945862,
1326
+ -0.004397355951368809,
1327
+ -0.04085494577884674,
1328
+ -0.02911427430808544,
1329
+ 0.0002878177328966558,
1330
+ -0.011848581954836845,
1331
+ 0.0057894024066627026,
1332
+ -0.008470980450510979,
1333
+ 0.009345056489109993,
1334
+ -0.0178592000156641,
1335
+ -0.01872248575091362,
1336
+ 0.0033910898491740227,
1337
+ -0.019315993413329124,
1338
+ -0.023524506017565727,
1339
+ -0.0013077412731945515,
1340
+ -0.0485597588121891,
1341
+ 0.004286747891455889,
1342
+ -0.024927344173192978,
1343
+ -0.006269604433327913,
1344
+ -0.021528160199522972,
1345
+ -0.011805417016148567,
1346
+ -0.017632588744163513,
1347
+ -0.017006706446409225,
1348
+ -0.008875644765794277,
1349
+ 0.011514058336615562,
1350
+ -0.019801590591669083,
1351
+ 0.020038994029164314,
1352
+ 0.012711865827441216,
1353
+ -0.043056320399045944,
1354
+ -0.013639897108078003,
1355
+ -0.015625452622771263,
1356
+ -0.024668358266353607,
1357
+ -0.024215133860707283,
1358
+ 0.02943800576031208,
1359
+ -0.011319819837808609,
1360
+ 0.013391702435910702,
1361
+ 0.006652687210589647,
1362
+ -0.009749720804393291,
1363
+ -0.00019356459961272776,
1364
+ 0.02747403271496296,
1365
+ 0.016909588128328323,
1366
+ -0.024733103811740875,
1367
+ 0.024797851219773293,
1368
+ 0.0018048044294118881,
1369
+ 0.0030862425919622183,
1370
+ 0.05205606296658516,
1371
+ 0.0245820302516222,
1372
+ -0.00399269163608551,
1373
+ -0.002816466148942709,
1374
+ 0.023373430594801903,
1375
+ 0.01088817697018385,
1376
+ 0.020513800904154778,
1377
+ -0.01286294125020504,
1378
+ 0.011643551290035248,
1379
+ -0.004435124807059765,
1380
+ -0.007926031947135925,
1381
+ 0.020621711388230324,
1382
+ 0.002476547844707966,
1383
+ 0.00788826309144497,
1384
+ 0.06750886142253876,
1385
+ 0.03138039633631706,
1386
+ 0.007014187518507242,
1387
+ 0.012906105257570744,
1388
+ 0.00958245899528265,
1389
+ 0.0002402696554781869,
1390
+ 0.030063888058066368,
1391
+ 0.025682717561721802,
1392
+ 0.00926951877772808,
1393
+ 0.002570969518274069,
1394
+ 0.021042563021183014,
1395
+ -0.017265692353248596,
1396
+ -0.0017225226620212197,
1397
+ -0.0024751988239586353,
1398
+ -0.020772786810994148,
1399
+ -0.0059458729811012745,
1400
+ -0.025510061532258987,
1401
+ -0.046142563223838806,
1402
+ -0.005214778706431389,
1403
+ 0.011006878688931465,
1404
+ 0.03714282065629959,
1405
+ -0.038200344890356064,
1406
+ 0.0074080610647797585,
1407
+ -0.003577235620468855,
1408
+ 0.016585856676101685,
1409
+ 0.027560362592339516,
1410
+ -0.02596328593790531,
1411
+ -0.0016699162079021335,
1412
+ -0.012150730937719345,
1413
+ 0.0019653213676065207,
1414
+ 0.000018273138266522437,
1415
+ 0.03222209960222244,
1416
+ -0.008406233973801136,
1417
+ 0.009749720804393291,
1418
+ -0.001509399269707501,
1419
+ 0.016564274206757545,
1420
+ -0.0405312143266201,
1421
+ 0.03336594998836517,
1422
+ -0.02661074884235859,
1423
+ -0.027517197653651237,
1424
+ 0.01172988023608923,
1425
+ 0.0047831363044679165,
1426
+ 0.01000331062823534,
1427
+ -0.010321646928787231,
1428
+ 0.0003618376504164189,
1429
+ 0.02199217677116394,
1430
+ 0.023610834032297134,
1431
+ 0.01342407613992691,
1432
+ 0.017265692353248596,
1433
+ 0.04609939828515053,
1434
+ 0.01585206389427185,
1435
+ 0.035243596881628036,
1436
+ 0.02889845333993435,
1437
+ -0.0019450881518423557,
1438
+ -0.004502568859606981,
1439
+ 0.011978073976933956,
1440
+ 0.01285215001553297,
1441
+ -0.004443218000233173,
1442
+ -0.005713865160942078,
1443
+ 0.01902463473379612,
1444
+ 0.012172313407063484,
1445
+ -0.0030592649709433317,
1446
+ 0.021668443456292152,
1447
+ 0.010893573053181171,
1448
+ -0.02283387817442417,
1449
+ 0.017729708924889565,
1450
+ -0.015808898955583572,
1451
+ 0.011492476798593998,
1452
+ 0.012517627328634262,
1453
+ 0.004208512604236603,
1454
+ -0.015118272043764591,
1455
+ 0.02374032698571682,
1456
+ 0.016370035707950592,
1457
+ 0.01059681922197342,
1458
+ 0.015042734332382679,
1459
+ 0.0025143164675682783,
1460
+ 0.04432966560125351,
1461
+ -0.02686973474919796,
1462
+ -0.001563354511745274,
1463
+ 0.04165348410606384,
1464
+ 0.0018263865495100617,
1465
+ 0.008363069966435432,
1466
+ 0.034207653254270554,
1467
+ 0.016186587512493134,
1468
+ -0.0034180674701929092,
1469
+ -0.0015997743466868997,
1470
+ -0.0068199485540390015,
1471
+ -0.02654600329697132,
1472
+ -0.03282639756798744,
1473
+ 0.030171798542141914,
1474
+ 0.029632244259119034,
1475
+ -0.021884266287088394,
1476
+ 0.021603697910904884,
1477
+ 0.05007050931453705,
1478
+ 0.019877128303050995,
1479
+ -0.016046302393078804,
1480
+ -0.00945296697318554,
1481
+ 0.002314681885764003,
1482
+ 0.006900881417095661,
1483
+ 0.014049957506358624,
1484
+ 0.029308512806892395,
1485
+ -0.0028245593421161175,
1486
+ 0.0059620593674480915,
1487
+ -0.03742338716983795,
1488
+ 0.04031539335846901,
1489
+ -0.03237317502498627,
1490
+ 0.004454009234905243,
1491
+ 0.0012409716146066785,
1492
+ -0.020902279764413834,
1493
+ -0.01685563288629055,
1494
+ 0.033301204442977905,
1495
+ -0.01745993085205555,
1496
+ -0.02341659553349018,
1497
+ 0.009188585914671421,
1498
+ -0.0008079804829321802,
1499
+ 0.0271934662014246,
1500
+ -0.016704557463526726,
1501
+ -0.040509629994630814,
1502
+ -0.008746152743697166,
1503
+ -0.018636157736182213,
1504
+ 0.0007600951357744634,
1505
+ -0.00492072245106101,
1506
+ -0.003032287349924445,
1507
+ 0.02628701739013195,
1508
+ -0.016402408480644226,
1509
+ -0.015603870153427124,
1510
+ 0.009873817674815655,
1511
+ 0.009895400144159794,
1512
+ -0.005160823464393616,
1513
+ 0.033344369381666183,
1514
+ -0.023869819939136505,
1515
+ -0.015981556847691536,
1516
+ 0.02710713818669319,
1517
+ -0.01474058534950018,
1518
+ -0.033581770956516266,
1519
+ 0.003404578659683466,
1520
+ 0.01399600226432085,
1521
+ 0.049941014498472214,
1522
+ 0.005665305536240339,
1523
+ 0.03595580533146858,
1524
+ -0.008546518161892891,
1525
+ -0.021064145490527153,
1526
+ -0.007839703932404518,
1527
+ 0.010273086838424206,
1528
+ 0.017082244157791138,
1529
+ 0.007435038685798645,
1530
+ 0.011093207634985447,
1531
+ 0.02425829879939556,
1532
+ 0.016823260113596916,
1533
+ 0.05032949522137642,
1534
+ 0.001450048410333693,
1535
+ -0.025920120999217033,
1536
+ 0.038200344890356064,
1537
+ 0.01587364636361599,
1538
+ 0.04428650066256523,
1539
+ 0.0015862855361774564,
1540
+ 0.01342407613992691,
1541
+ -0.014535554684698582,
1542
+ -0.011023066006600857,
1543
+ -0.012118358165025711,
1544
+ -0.049293551594018936,
1545
+ -0.007246195338666439,
1546
+ 0.022024549543857574,
1547
+ 0.022002967074513435,
1548
+ -0.0014878171496093273,
1549
+ -0.015096689574420452,
1550
+ -0.00935045164078474,
1551
+ -0.005190498661249876,
1552
+ 0.02712871879339218,
1553
+ 0.010472721420228481,
1554
+ -0.019477859139442444,
1555
+ 0.033344369381666183,
1556
+ -0.040725450962781906,
1557
+ 0.05166758596897125,
1558
+ 0.011033856309950352,
1559
+ 0.03280481696128845,
1560
+ 0.03738022595643997,
1561
+ -0.026761824265122414,
1562
+ -0.026179106906056404,
1563
+ 0.053350988775491714
1564
+ ],
1565
+ "confidence": 0.9
1566
+ }
1567
+ };
1568
+
1569
+ // ============================================================
1570
+ // Skill: MathOperations
1571
+ // Perform mathematical operations like addition, subtraction, multiplication, and division
1572
+ // ============================================================
1573
+
1574
+ export async function add(args) {
1575
+ const a = args.a || 0;
1576
+ const b = args.b || 0;
1577
+ console.log(`[add] ${a} + ${b} = ${a + b}`);
1578
+ return {
1579
+ operation: "addition",
1580
+ a: a,
1581
+ b: b,
1582
+ result: a + b
1583
+ };
1584
+ }
1585
+
1586
+ export async function subtract(args) {
1587
+ const a = args.a || 0;
1588
+ const b = args.b || 0;
1589
+ console.log(`[subtract] ${a} - ${b} = ${a - b}`);
1590
+ return {
1591
+ operation: "subtraction",
1592
+ a: a,
1593
+ b: b,
1594
+ result: a - b
1595
+ };
1596
+ }
1597
+
1598
+ export async function multiply(args) {
1599
+ const a = args.a || 0;
1600
+ const b = args.b || 0;
1601
+ console.log(`[multiply] ${a} × ${b} = ${a * b}`);
1602
+ return {
1603
+ operation: "multiplication",
1604
+ a: a,
1605
+ b: b,
1606
+ result: a * b
1607
+ };
1608
+ }
1609
+
1610
+ export async function divide(args) {
1611
+ const a = args.a || 0;
1612
+ const b = args.b || 1;
1613
+ if (b === 0) {
1614
+ console.error(`[divide] Error: Division by zero`);
1615
+ return {
1616
+ operation: "division",
1617
+ a: a,
1618
+ b: b,
1619
+ error: "Division by zero"
1620
+ };
1621
+ }
1622
+ console.log(`[divide] ${a} ÷ ${b} = ${a / b}`);
1623
+ return {
1624
+ operation: "division",
1625
+ a: a,
1626
+ b: b,
1627
+ result: a / b
1628
+ };
1629
+ }
1630
+
1631
+ // Register skill functions
1632
+ SkillRegistry.register('MathOperations', 'add', add, { affordance: "Perform mathematical operations like addition, subtraction, multiplication, and division" });
1633
+ SkillRegistry.register('MathOperations', 'subtract', subtract, { affordance: "Perform mathematical operations like addition, subtraction, multiplication, and division" });
1634
+ SkillRegistry.register('MathOperations', 'multiply', multiply, { affordance: "Perform mathematical operations like addition, subtraction, multiplication, and division" });
1635
+ SkillRegistry.register('MathOperations', 'divide', divide, { affordance: "Perform mathematical operations like addition, subtraction, multiplication, and division" });
1636
+
1637
+
1638
+
1639
+ // Main execution function
1640
+ (async () => {
1641
+ // Register skills with skillSelector
1642
+ const MathOperationsFunctions = [{ name: 'add', fn: add, description: SkillRegistry.get('MathOperations', 'add')?.metadata?.affordance || 'Function from MathOperations' }, { name: 'subtract', fn: subtract, description: SkillRegistry.get('MathOperations', 'subtract')?.metadata?.affordance || 'Function from MathOperations' }, { name: 'multiply', fn: multiply, description: SkillRegistry.get('MathOperations', 'multiply')?.metadata?.affordance || 'Function from MathOperations' }, { name: 'divide', fn: divide, description: SkillRegistry.get('MathOperations', 'divide')?.metadata?.affordance || 'Function from MathOperations' }];
1643
+ await skillSelector.register('MathOperations', MathOperationsFunctions, CACHED_SKILL_AFFORDANCES['MathOperations']);
1644
+
1645
+ const _gracefulShutdown = async () => { await mcpRegistry.disconnectAll(); process.exit(0); };
1646
+ process.on('SIGINT', _gracefulShutdown);
1647
+ process.on('SIGTERM', _gracefulShutdown);
1648
+
1649
+ await mcpRegistry.disconnectAll();
1650
+ process.exit(0);
1651
+ })().catch(err => {
1652
+ console.error('Error:', err.message);
1653
+ process.exit(1);
1654
+ });
1655
+
1656
+ //# sourceMappingURL=math-operations.ts.map