wormclaude 1.0.32 → 1.0.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/ansi.js CHANGED
@@ -151,11 +151,11 @@ export function itemAnsi(it, cols) {
151
151
  }
152
152
  if (it.kind === 'assistant') {
153
153
  const md = markdownAnsi(it.text || '', cols).split('\n');
154
- return '\n' + md.map((ln, i) => (i === 0 ? paint(' ', theme.redBright, true) + ln : ' ' + ln)).join('\n');
154
+ return '\n' + md.map((ln, i) => (i === 0 ? paint(' ', theme.redBright, true) + ln : ' ' + ln)).join('\n');
155
155
  }
156
156
  if (it.kind === 'tool') {
157
157
  const n = (it.result || '').split('\n').length, chars = (it.result || '').length;
158
- const head = paint(' ', theme.redBright, true) + paint(it.label || '', theme.white);
158
+ const head = paint(' ', theme.redBright, true) + paint(it.label || '', theme.white);
159
159
  const sub = paint(' ⎿ ', theme.greyDim) + (it.ok
160
160
  ? paint(`${n} ${t('common.lines') || 'satır'} (${chars})`, theme.grey)
161
161
  : paint('✗ ' + (it.result || '').slice(0, 160), theme.errorRed));
package/dist/cli.js CHANGED
@@ -276,11 +276,11 @@ function buildLines(items, cols) {
276
276
  }
277
277
  else if (it.kind === 'assistant') {
278
278
  const seg = mdToSegLines(it.text, W - 2);
279
- seg.forEach((segs, i) => lines.push(i === 0 ? [{ text: ' ', color: redB, bold: true }, ...segs] : [{ text: ' ', dim: true }, ...segs]));
279
+ seg.forEach((segs, i) => lines.push(i === 0 ? [{ text: ' ', color: redB, bold: true }, ...segs] : [{ text: ' ', dim: true }, ...segs]));
280
280
  }
281
281
  else if (it.kind === 'tool') {
282
282
  const n = it.result.split('\n').length, chars = it.result.length;
283
- lines.push([{ text: ' ', color: redB, bold: true }, { text: it.label, color: white }]);
283
+ lines.push([{ text: ' ', color: redB, bold: true }, { text: it.label, color: white }]);
284
284
  lines.push([{ text: ' ⎿ ', dim: true }, { text: it.ok ? `${n} satır (${chars} karakter)` : '✗ ' + it.result.slice(0, 120), color: it.ok ? theme.grey : theme.errorRed }]);
285
285
  }
286
286
  else if (it.kind === 'note') {
@@ -321,7 +321,7 @@ function RenderItem({ item }) {
321
321
  }
322
322
  if (item.kind === 'assistant') {
323
323
  return (React.createElement(Box, { marginTop: 1, flexDirection: "row" },
324
- React.createElement(Text, { color: theme.redBright, bold: true }, "\u23FA "),
324
+ React.createElement(Text, { color: theme.redBright, bold: true }, "\u203A "),
325
325
  React.createElement(Box, { flexDirection: "column", flexGrow: 1 },
326
326
  React.createElement(MarkdownDisplay, { text: item.text }))));
327
327
  }
@@ -330,7 +330,7 @@ function RenderItem({ item }) {
330
330
  const chars = item.result.length;
331
331
  return (React.createElement(Box, { flexDirection: "column", marginTop: 1 },
332
332
  React.createElement(Box, null,
333
- React.createElement(Text, { color: theme.redBright, bold: true }, "\u23FA "),
333
+ React.createElement(Text, { color: theme.redBright, bold: true }, "\u203A "),
334
334
  React.createElement(Text, { color: theme.white }, item.label)),
335
335
  React.createElement(Box, null,
336
336
  React.createElement(Text, { color: theme.greyDim }, " \u23BF "),
@@ -1000,7 +1000,7 @@ function App() {
1000
1000
  off,
1001
1001
  " sat\u0131r \u00B7 PageDown / Son") : null,
1002
1002
  streaming && off === 0 ? (React.createElement(Box, { flexDirection: "row" },
1003
- React.createElement(Text, { color: theme.redBright, bold: true }, "\u23FA "),
1003
+ React.createElement(Text, { color: theme.redBright, bold: true }, "\u203A "),
1004
1004
  React.createElement(Box, { flexDirection: "column" },
1005
1005
  React.createElement(Text, { color: theme.white }, streaming)))) : null));
1006
1006
  })()),
package/dist/theme.js CHANGED
@@ -16,4 +16,4 @@ export const theme = {
16
16
  synType: '#a78bfa', // tip/sınıf adları, sabitler
17
17
  synProp: '#e0e0e0', // özellik/anahtar adları
18
18
  };
19
- export const VERSION = '1.0.32';
19
+ export const VERSION = '1.0.33';
package/dist/tui.js CHANGED
@@ -70,7 +70,7 @@ export async function runTui() {
70
70
  if (streamPreview) {
71
71
  const maxTail = Math.max(2, Math.min(12, (process.stdout.rows || 24) - 4)); // ekran boyunu aşma
72
72
  const tail = streamPreview.split('\n').slice(-maxTail);
73
- lines.push(paint(' ', theme.redBright, true) + paint(tail.shift() || '', theme.white));
73
+ lines.push(paint(' ', theme.redBright, true) + paint(tail.shift() || '', theme.white));
74
74
  for (const l of tail)
75
75
  lines.push(' ' + paint(l, theme.white));
76
76
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wormclaude",
3
- "version": "1.0.32",
3
+ "version": "1.0.33",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {