deel-local-cli 1.7.0 → 1.8.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.
@@ -15,6 +15,7 @@ import { allowTemporarily, isOffline, isLocalHost } from '../safety/network.js';
15
15
  import { 원시요청, 몸읽기 } from '../backend/http.js';
16
16
  import { decode as decodeBytes } from './encoding.js';
17
17
  import { 웹글자수 } from '../agent/budget.js';
18
+ import { 말 } from '../i18n/index.js';
18
19
 
19
20
  /**
20
21
  * 받아 온 바이트를 글로. 머리글에 적힌 인코딩이 있으면 그것부터 믿는다.
@@ -275,7 +276,7 @@ export async function webFetch(args, { allowPrivate = false, 모델컨텍스트
275
276
  content: `${u.href}\n${'─'.repeat(60)}\n${text}${꼬리}`,
276
277
  // 요약은 화면에 그대로 뜬다. 잘렸으면 **얼마나** 잘렸는지까지 보여야
277
278
  // 사람이 "받은 줄 알았는데 아니었다" 를 안 겪는다.
278
- summary: `${text.length.toLocaleString()}자`
279
+ summary: 말('unit.chars', { n: text.length.toLocaleString() })
279
280
  + (눌렀나 ? ' (눌러 담음)' : '')
280
281
  + (cut ? ` (잘림 — ${원래길이.toLocaleString()}자 중)` : ''),
281
282
  };
package/src/ui/export.js CHANGED
@@ -43,7 +43,7 @@ function 도구줄(tc) {
43
43
  let 핵심 = '';
44
44
  try {
45
45
  const a = JSON.parse(tc?.function?.arguments ?? '{}');
46
- 핵심 = a.file_path ?? a.pattern ?? a.command ?? a.name ?? a.목적 ?? '';
46
+ 핵심 = a.file_path ?? a.pattern ?? a.command ?? a.name ?? a.purpose ?? a.목적 ?? '';
47
47
  } catch { /* 인자가 잘렸어도 이름은 보여 준다 */ }
48
48
  핵심 = String(핵심);
49
49
  if (핵심.length > 80) 핵심 = 핵심.slice(0, 80) + '…';