koneck 2.37.0 → 2.38.1

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.
@@ -22,6 +22,9 @@ export function css(markUrl) {
22
22
  --add-bg:#e4f6ea; --add-ink:#0d5c37; --del-bg:#fdeaea; --del-ink:#8f1c22;
23
23
  /* The region a tool is reading, and the exact text it matched inside that region. */
24
24
  --attn-bg:#e8f4fb; --attn-hit:#bde4f7;
25
+ /* Syntax. Light theme. */
26
+ --syn-com:#6a7d8c; --syn-str:#0a6b4f; --syn-num:#9a4b00; --syn-key:#8a2be2;
27
+ --syn-typ:#0b6ca8; --syn-fun:#0a5ea8; --syn-pun:#6b7785;
25
28
  --shadow:0 1px 2px rgba(15,28,34,.07), 0 8px 24px rgba(15,28,34,.05);
26
29
  --radius:10px; --mono:ui-monospace,'SF Mono',Menlo,Consolas,'DejaVu Sans Mono',monospace;
27
30
  --mark:url("${markUrl}");
@@ -34,7 +37,11 @@ export function css(markUrl) {
34
37
  --violet:#b39cfb;
35
38
  --add-bg:#0f2a1e; --add-ink:#7ee0a7; --del-bg:#2b1416; --del-ink:#f4a3a6;
36
39
  --attn-bg:#10222c; --attn-hit:#1c3f52;
40
+ --syn-com:#6b8296; --syn-str:#7ee0a7; --syn-num:#f0b166; --syn-key:#c792ea;
41
+ --syn-typ:#63c8f0; --syn-fun:#82aaff; --syn-pun:#7a8899;
37
42
  --attn-bg:#10222c; --attn-hit:#1c3f52;
43
+ --syn-com:#6b8296; --syn-str:#7ee0a7; --syn-num:#f0b166; --syn-key:#c792ea;
44
+ --syn-typ:#63c8f0; --syn-fun:#82aaff; --syn-pun:#7a8899;
38
45
  --shadow:0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.3);
39
46
  }
40
47
  }
@@ -264,7 +271,9 @@ header{height:47px;flex:0 0 47px;border-bottom:1px solid var(--line);display:fle
264
271
  .empty{text-align:center;padding:12vh 0;color:var(--dim);font-size:13px}
265
272
 
266
273
  /* ── file tree ───────────────────────────────────────────── */
267
- .split{display:flex;height:100%;min-height:0}
274
+ /* Like #chatview: the tab itself does not scroll, so the panes inside it can. */
275
+ #filesview{overflow:hidden;display:flex}
276
+ .split{display:flex;flex:1;min-height:0;min-width:0}
268
277
  .tree{width:300px;flex:0 0 300px;border-right:1px solid var(--line);overflow-y:auto;padding:8px 0}
269
278
  .tnode{display:flex;align-items:center;gap:6px;padding:3px 12px;width:100%;text-align:left;
270
279
  font-size:12.5px;font-family:var(--mono);color:var(--muted);white-space:nowrap}
@@ -273,7 +282,7 @@ header{height:47px;flex:0 0 47px;border-bottom:1px solid var(--line);display:fle
273
282
  .tnode .ic{width:13px;flex:0 0 13px;color:var(--dim);text-align:center}
274
283
  .tnode.d .ic{color:var(--cyan)}
275
284
  .tnode .sz{margin-left:auto;font-size:10.5px;color:var(--dim)}
276
- .fileview{flex:1;min-width:0;overflow:auto;display:flex;flex-direction:column}
285
+ .fileview{flex:1;min-width:0;min-height:0;overflow:hidden;display:flex;flex-direction:column}
277
286
  .fvhead{position:sticky;top:0;background:var(--panel);border-bottom:1px solid var(--line);
278
287
  padding:8px 14px;font-family:var(--mono);font-size:12px;display:flex;gap:12px;align-items:center}
279
288
  .fvhead .fsz{color:var(--dim);font-size:11px}
@@ -360,7 +369,16 @@ footer[hidden]{display:none}
360
369
  background:var(--panel-2);border-radius:var(--radius);padding:9px 10px;
361
370
  transition:border-color .14s,box-shadow .14s}
362
371
  .cin:focus-within{border-color:var(--cyan);box-shadow:0 0 0 3px rgba(77,214,232,.13)}
363
- textarea{flex:1;background:none;border:0;outline:0;resize:none;max-height:200px;
372
+ /*
373
+ * The composer's textarea, scoped to the composer.
374
+ *
375
+ * This was a bare element selector, so its max-height applied to every textarea on the page —
376
+ * including the file editor, which is why a 21K file was shown 200 pixels tall with 570 pixels of
377
+ * empty panel under it. A broad element selector setting a property that a later class does not
378
+ * happen to override is the same trap as [hidden]: measured 766px of panel, 200px of editor, and
379
+ * flex-grow reading 1 the whole time.
380
+ */
381
+ .cin textarea{flex:1;background:none;border:0;outline:0;resize:none;max-height:200px;
364
382
  line-height:1.5;font-size:14px}
365
383
  textarea::placeholder{color:var(--dim)}
366
384
  .send{width:31px;height:31px;flex:0 0 31px;border-radius:50%;
@@ -468,6 +486,9 @@ textarea::placeholder{color:var(--dim)}
468
486
  .setrow .si{flex:1;min-width:0}
469
487
  .setrow .sl{font-size:13px;font-weight:500}
470
488
  .setrow .sd{font-size:11.5px;color:var(--muted);margin-top:2px}
489
+ /* A type row is a label and a control, side by side. */
490
+ .setrow select{flex:0 0 auto;max-width:52%;padding:6px 9px;border-radius:7px;
491
+ border:1px solid var(--line);background:var(--panel-2);color:var(--ink);font-size:12px}
471
492
  .setrow .sc{flex:0 0 200px;display:flex;gap:6px;align-items:center}
472
493
  .setrow input[type=text],.setrow input[type=number],.setrow select{width:100%;padding:6px 9px;
473
494
  border-radius:7px;border:1px solid var(--line);background:var(--panel-2);font-size:12.5px}
@@ -642,6 +663,122 @@ dialog:has(.dlg.wide){max-width:560px}
642
663
  .resumed .ri{color:var(--muted);font-family:var(--mono);font-size:12px}
643
664
  .resumed .rn{font-size:12px;color:var(--dim);margin-top:7px}
644
665
 
666
+ /*
667
+ * Typography you choose.
668
+ *
669
+ * Held as variables on :root so the whole page follows one setting, rather than a font size that
670
+ * changes the body text and leaves the code at 12.5px. Every size below is relative to --ui so a
671
+ * single number moves the lot proportionally.
672
+ */
673
+ :root{--ui:14px; --uifam:system-ui,-apple-system,'Segoe UI',Roboto,Ubuntu,sans-serif;
674
+ --monofam:'JetBrains Mono',ui-monospace,'SF Mono',Menlo,Consolas,monospace; --uihue:none}
675
+ body{font-size:var(--ui);font-family:var(--uifam)}
676
+ /* Applied as a filter so it tints the interface without needing a value per token. */
677
+ body[data-tint="warm"]{filter:sepia(.14) saturate(1.08)}
678
+ body[data-tint="cool"]{filter:hue-rotate(-12deg) saturate(1.06)}
679
+ body[data-tint="high"]{filter:contrast(1.14)}
680
+ body[data-tint="soft"]{filter:contrast(.92) brightness(1.04)}
681
+
682
+ /* ── a terminal ───────────────────────────────────────────────────────────────────────────── */
683
+ .termwrap{display:flex;flex-direction:column;height:100%;min-height:0}
684
+ .termbar{display:flex;gap:9px;align-items:center;padding:11px 14px;background:var(--panel);
685
+ border-bottom:1px solid var(--line);flex:0 0 auto}
686
+ .termbar .tprompt{color:var(--cyan);font-family:var(--mono);font-size:14px}
687
+ .termbar input#tcmd{flex:1;min-width:0;padding:8px 11px;border-radius:8px;
688
+ border:1px solid var(--line);background:var(--panel-2);font-family:var(--mono);font-size:12.5px}
689
+ .termbar .tbg{display:flex;gap:5px;align-items:center;font-size:11.5px;color:var(--muted);
690
+ white-space:nowrap;cursor:pointer}
691
+ .termbar .trun{padding:8px 15px;border-radius:8px;border:1px solid var(--cyan);color:var(--cyan);
692
+ background:transparent;cursor:pointer;font-size:12.5px}
693
+ .termbar .trun:hover{background:var(--panel-2)}
694
+ .termsplit{flex:1;display:flex;min-height:0}
695
+ .tjobs{flex:0 0 250px;overflow-y:auto;border-right:1px solid var(--line);background:var(--panel)}
696
+ .tout{flex:1;min-width:0;overflow:auto;padding:12px 14px;font-family:var(--mono);font-size:11.5px;
697
+ line-height:1.55;white-space:pre-wrap;word-break:break-word}
698
+ .jrow{padding:9px 12px;border-bottom:1px solid var(--line);cursor:pointer;font-size:12px}
699
+ .jrow:hover{background:var(--panel-2)}
700
+ .jrow.on{background:var(--panel-2);box-shadow:inset 2px 0 0 var(--cyan)}
701
+ .jrow .jc{font-family:var(--mono);font-size:11.5px;overflow:hidden;text-overflow:ellipsis;
702
+ white-space:nowrap;color:var(--ink)}
703
+ .jrow .jm{display:flex;gap:7px;align-items:center;margin-top:4px;font-size:10.5px;color:var(--dim)}
704
+ .jrow .js{padding:1px 6px;border-radius:999px;border:1px solid var(--line)}
705
+ .jrow .js.running{color:var(--cyan);border-color:var(--cyan)}
706
+ .jrow .js.exited{color:var(--green)}
707
+ .jrow .js.failed,.jrow .js.killed{color:var(--red)}
708
+ .jrow .jk{margin-left:auto;background:none;border:0;color:var(--dim);cursor:pointer;font-size:11px}
709
+ .jrow .jk:hover{color:var(--red)}
710
+ .tout .oe{color:var(--red)}
711
+
712
+ /* ── the page, as it really renders ───────────────────────────────────────────────────────── */
713
+ .pvwrap{display:flex;flex-direction:column;height:100%;min-height:0}
714
+ .pvbar{display:flex;gap:8px;align-items:center;padding:11px 14px;background:var(--panel);
715
+ border-bottom:1px solid var(--line);flex:0 0 auto}
716
+ .pvbar input{flex:1;min-width:0;padding:8px 11px;border-radius:8px;border:1px solid var(--line);
717
+ background:var(--panel-2);font-family:var(--mono);font-size:12.5px}
718
+ .pvbar .pvgo{padding:8px 15px;border-radius:8px;border:1px solid var(--cyan);color:var(--cyan);
719
+ background:transparent;cursor:pointer;font-size:12.5px}
720
+ .pvbar .pvbtn{padding:8px 12px;border-radius:8px;border:1px solid var(--line);color:var(--muted);
721
+ background:transparent;cursor:pointer;font-size:12px}
722
+ .pvbar .pvbtn:hover{color:var(--ink)}
723
+ .pvinfo{font-size:11px;color:var(--dim);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
724
+ max-width:24%}
725
+ .pvbody{flex:1;overflow:auto;min-height:0;display:flex;flex-direction:column;align-items:center;
726
+ padding:16px;background:var(--panel-2)}
727
+ /* The screenshot is the page. Clicking it clicks the page at the same point. */
728
+ .pvshot{max-width:100%;border:1px solid var(--line);border-radius:8px;cursor:crosshair;
729
+ background:#fff;box-shadow:var(--shadow)}
730
+ .pvhint{margin-top:11px;font-size:11.5px;color:var(--dim);text-align:center;line-height:1.6}
731
+ .pvnone{padding:40px 20px;color:var(--dim);font-size:13px;text-align:center;line-height:1.7;
732
+ max-width:520px}
733
+
734
+ /* ── an editable file ─────────────────────────────────────────────────────────────────────── */
735
+ .edbar{display:flex;gap:9px;align-items:center;padding:8px 14px;background:var(--panel);
736
+ border-bottom:1px solid var(--line);flex:0 0 auto;font-size:11.5px}
737
+ .edbar .ebtn{padding:5px 11px;border-radius:7px;border:1px solid var(--line);background:transparent;
738
+ color:var(--muted);cursor:pointer;font-size:11.5px}
739
+ .edbar .ebtn:hover{color:var(--ink)}
740
+ .edbar .ebtn.save{border-color:var(--cyan);color:var(--cyan)}
741
+ .edbar .ebtn:disabled{opacity:.45;cursor:default}
742
+ .edbar .est{margin-left:auto;color:var(--dim);white-space:nowrap}
743
+ .edbar .est.dirty{color:var(--amber)}
744
+ .edbar .est.bad{color:var(--red)}
745
+ /*
746
+ * An editor that is coloured and numbered, and still a real textarea.
747
+ *
748
+ * The textarea sits on top with transparent text and a visible caret; the coloured copy is a <pre>
749
+ * directly behind it, and the line numbers are a third column. All three share the same font,
750
+ * size, line height and padding, and the textarea's scroll drives the other two — if any of those
751
+ * differ by a pixel the colours drift off the characters they belong to.
752
+ *
753
+ * Done this way so undo and redo stay the browser's own. A contenteditable div with syntax colours
754
+ * would look the same and break every shortcut a person already knows.
755
+ */
756
+ .ed{flex:1;display:flex;min-height:0;background:var(--bg)}
757
+ .ed .egut{flex:0 0 auto;overflow:hidden;padding:12px 10px 12px 14px;text-align:right;
758
+ color:var(--dim);background:var(--panel);border-right:1px solid var(--line);user-select:none;
759
+ font-family:var(--mono);font-size:12.5px;line-height:1.5;font-variant-numeric:tabular-nums;
760
+ white-space:pre}
761
+ .estack{position:relative;flex:1;min-width:0}
762
+ .ehl,.edit{position:absolute;inset:0;margin:0;padding:12px 14px;border:0;
763
+ font-family:var(--mono);font-size:12.5px;line-height:1.5;tab-size:2;
764
+ white-space:pre;overflow:auto;word-break:normal;overflow-wrap:normal}
765
+ .ehl{pointer-events:none;color:var(--ink)}
766
+ /* Transparent text over the coloured copy, with the caret and the selection still visible. */
767
+ .edit{background:transparent;color:transparent;caret-color:var(--cyan);resize:none;outline:none;
768
+ max-height:none}
769
+ .edit::selection{background:var(--attn-hit);color:transparent}
770
+
771
+ /* The colours. Chosen to read at 12.5px in both themes rather than to look like a screenshot. */
772
+ .tk-com{color:var(--syn-com);font-style:italic}
773
+ .tk-str{color:var(--syn-str)}
774
+ .tk-num{color:var(--syn-num)}
775
+ .tk-key{color:var(--syn-key)}
776
+ .tk-typ{color:var(--syn-typ)}
777
+ .tk-fun{color:var(--syn-fun)}
778
+ .tk-pun{color:var(--syn-pun)}
779
+ .tk-tag{color:var(--syn-key)}
780
+ .tk-att{color:var(--syn-fun)}
781
+
645
782
  /* Carrying on from a transcript, offered in the bar that says it is read only. */
646
783
  .readonly .rgap{flex:1}
647
784
  .readonly .rwhy{font-size:11.5px;color:var(--dim);white-space:nowrap;overflow:hidden;
@@ -1 +1 @@
1
- {"version":3,"file":"ui-css.js","sourceRoot":"","sources":["../../src/web/ui-css.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH,MAAM,UAAU,GAAG,CAAC,OAAe;IACjC,OAAO;;;;;;;;;;;;gBAYO,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8nBtB,CAAC;AACF,CAAC"}
1
+ {"version":3,"file":"ui-css.js","sourceRoot":"","sources":["../../src/web/ui-css.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH,MAAM,UAAU,GAAG,CAAC,OAAe;IACjC,OAAO;;;;;;;;;;;;;;;gBAeO,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAowBtB,CAAC;AACF,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAOH,wBAAgB,IAAI,IAAI,MAAM,CAyP7B"}
1
+ {"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAOH,wBAAgB,IAAI,IAAI,MAAM,CA4R7B"}
package/dist/web/ui.js CHANGED
@@ -45,6 +45,8 @@ export function page() {
45
45
  <button class="tab" id="tab-changes">Changes</button>
46
46
  <button class="tab" id="tab-timing">Timing</button>
47
47
  <button class="tab" id="tab-files">Files</button>
48
+ <button class="tab" id="tab-terminal">Terminal</button>
49
+ <button class="tab" id="tab-preview">Preview</button>
48
50
  <button class="tab" id="tab-search">Search</button>
49
51
  <button class="tab" id="tab-review">Review</button>
50
52
  <button class="tab" id="tab-refactor">Refactor</button>
@@ -108,6 +110,39 @@ export function page() {
108
110
  </div>
109
111
  </div>
110
112
 
113
+ <!-- A terminal. Commands you run yourself, in the foreground or left running behind. -->
114
+ <div class="view" id="terminalview" hidden>
115
+ <div class="termwrap">
116
+ <div class="termbar">
117
+ <span class="tprompt">$</span>
118
+ <input id="tcmd" placeholder="npm test, git status, npm run dev&hellip;"
119
+ autocomplete="off" spellcheck="false">
120
+ <label class="tbg" title="Leave it running — for a dev server, or anything that does not exit">
121
+ <input type="checkbox" id="tbackground"> background
122
+ </label>
123
+ <button class="trun" id="trun">Run</button>
124
+ </div>
125
+ <div class="termsplit">
126
+ <div class="tjobs" id="tjobs"></div>
127
+ <div class="tout" id="tout"></div>
128
+ </div>
129
+ </div>
130
+ </div>
131
+
132
+ <!-- The same browser the agent drives, so watching it and reaching in mean the same page. -->
133
+ <div class="view" id="previewview" hidden>
134
+ <div class="pvwrap">
135
+ <div class="pvbar">
136
+ <input id="pvurl" placeholder="http://localhost:3000" autocomplete="off" spellcheck="false">
137
+ <button class="pvgo" id="pvgo">Open</button>
138
+ <button class="pvbtn" id="pvrefresh" title="Read the page again">Refresh</button>
139
+ <button class="pvbtn" id="pvclose" title="Shut the browser down">Close</button>
140
+ <span class="pvinfo" id="pvinfo"></span>
141
+ </div>
142
+ <div class="pvbody" id="pvbody"></div>
143
+ </div>
144
+ </div>
145
+
111
146
  <div class="view" id="reviewview" hidden></div>
112
147
  <div class="view" id="refactorview" hidden></div>
113
148
  <div class="view" id="restoreview" hidden></div>
@@ -1 +1 @@
1
- {"version":3,"file":"ui.js","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,GAAG,EAAE,MAAM,aAAa,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,MAAM,UAAU,IAAI;IAClB,OAAO;;;;;;;SAOA,GAAG,CAAC,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBA6OF,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC;EAC7C,YAAY,EAAE;;eAED,CAAC;AAChB,CAAC"}
1
+ {"version":3,"file":"ui.js","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,GAAG,EAAE,MAAM,aAAa,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,MAAM,UAAU,IAAI;IAClB,OAAO;;;;;;;SAOA,GAAG,CAAC,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAgRF,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC;EAC7C,YAAY,EAAE;;eAED,CAAC;AAChB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koneck",
3
- "version": "2.37.0",
3
+ "version": "2.38.1",
4
4
  "description": "Kinetically Orchestrated Neural Execution Engine for Code",
5
5
  "type": "module",
6
6
  "bin": {