@crewx/sdk 0.9.0-rc.38 → 0.9.0-rc.39

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.
@@ -10,6 +10,7 @@ export declare class ProviderError extends Error {
10
10
  readonly code: ProviderErrorCode;
11
11
  readonly kind?: ProviderErrorKind;
12
12
  readonly retryAfterMs?: number;
13
+ stdout?: string;
13
14
  constructor(message: string, providerStr: string, options?: ProviderErrorOptions);
14
15
  }
15
16
  export declare class IdleTimeoutError extends ProviderError {
@@ -3,4 +3,10 @@ export interface ParsedUsage {
3
3
  outputTokens: number;
4
4
  cachedInputTokens: number;
5
5
  }
6
+ export interface ClaudePartialUsage {
7
+ inputTokens: number;
8
+ cachedInputTokens: number;
9
+ model?: string;
10
+ }
11
+ export declare function parseClaudePartialUsage(stdout: string): ClaudePartialUsage | undefined;
6
12
  export declare function parseUsage(stdout: string): ParsedUsage | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewx/sdk",
3
- "version": "0.9.0-rc.38",
3
+ "version": "0.9.0-rc.39",
4
4
  "license": "UNLICENSED",
5
5
  "engines": {
6
6
  "node": ">=20.19.0"
@@ -465,7 +465,7 @@ agents:
465
465
  name: "Self-Improve Analyst"
466
466
  role: "Prompt Improvement Analyst"
467
467
  team: "CrewX"
468
- description: "에이전트 프롬프트 개선 제안 분석 에이전트 (개선 제안 H1)"
468
+ description: "Analyzes agent prompts and proposes improvement suggestions (Suggestion H1)"
469
469
  provider: ["cli/codex", "cli/claude", "cli/opencode", "cli/copilot"] # Fallback order: codex → claude → opencode → copilot
470
470
  working_directory: "."
471
471
  env:
@@ -546,7 +546,7 @@ agents:
546
546
  name: "Memory Summarizer"
547
547
  role: "summarizer"
548
548
  team: "CrewX"
549
- description: "메모리 요약 에이전트 - 증분 요약 생성 (HiAgent + MemGAS)"
549
+ description: "Memory summarizer agent - incremental summary generation (HiAgent + MemGAS)"
550
550
  provider: ["cli/codex", "cli/claude", "cli/opencode", "cli/copilot"] # Fallback order: codex → claude → opencode → copilot
551
551
  working_directory: "."
552
552
  env:
@@ -563,7 +563,7 @@ agents:
563
563
  Given memory entries (and optionally an existing summary), produce an updated summary.
564
564
 
565
565
  ## Output Rules
566
- - Write a concise summary in Korean (3-10 sentences)
566
+ - Write a concise summary (3-10 sentences)
567
567
  - Highlight key decisions, insights, and action items
568
568
  - If existing summary provided, merge new information into it (MemGAS approach)
569
569
  - Group related information together
@@ -571,7 +571,8 @@ agents:
571
571
  - Do NOT include "[ID]" references in the summary
572
572
 
573
573
  ## Response Language
574
- - Always respond in Korean
574
+ - Write the summary in the same language as the memory entries
575
+ - If the entries mix languages, follow the dominant one
575
576
  - Use clear, concise language
576
577
  skills:
577
578
  include: []
@@ -580,7 +581,7 @@ agents:
580
581
  name: "Memory Searcher"
581
582
  role: "searcher"
582
583
  team: "CrewX"
583
- description: "시맨틱 검색 에이전트 - 메모리 항목에서 관련 기억 찾기"
584
+ description: "Semantic search agent - finds relevant memories among memory entries"
584
585
  provider: ["cli/codex", "cli/claude", "cli/opencode", "cli/copilot"] # Fallback order: codex → claude → opencode → copilot
585
586
  working_directory: "."
586
587
  env:
@@ -598,12 +599,12 @@ agents:
598
599
 
599
600
  ## Output Rules
600
601
  - If relevant memories found: List IDs with brief explanation
601
- - If no relevant memories: Say "관련 기억 없음"
602
+ - If no relevant memories: say so explicitly in one short sentence
602
603
  - Maximum 5 recommendations
603
- - Format: [ID] 요약 - 관련 이유
604
+ - Format: [ID] summary - why it is relevant
604
605
 
605
606
  ## Response Language
606
- - Always respond in Korean
607
+ - Answer in the same language as the user query
607
608
  - Keep explanations concise
608
609
  skills:
609
610
  include: []
@@ -330,8 +330,8 @@ OpenAI's coding agent. Supports GPT-4o-based code generation and analysis.
330
330
  - **Auth**: Set OpenAI API key (`OPENAI_API_KEY` environment variable)
331
331
  - **Usage examples**:
332
332
  ```bash
333
- crewx q "@codex 함수를 최적화해줘"
334
- crewx x "@codex 테스트 코드 작성해줘" --thread="codex-work"
333
+ crewx q "@codex optimize this function"
334
+ crewx x "@codex write test code" --thread="codex-work"
335
335
  ```
336
336
 
337
337
  > Use the `crewx doctor` command to check installation and auth status for all tools at once.
@@ -796,18 +796,18 @@ Sowon Labs actually operates with an AI executive team. The human CEO makes fina
796
796
  ### Organization Chart at a Glance
797
797
 
798
798
  ```
799
- 사장님 (사람)
799
+ President (Human)
800
+
801
+ ┌────────────┼────────────┬────────────┬────────────┬────────────┐
802
+ │ │ │ │ │ │
803
+ CEO CTO CPO CMO CSO CLO
804
+ (Vision) (Tech) (Product) (Marketing) (Strategy) (Legal)
805
+ │ │
806
+ │ ├── Developer (Claude)
807
+ │ ├── Developer (Codex)
808
+ │ └── Developer (Gemini)
800
809
 
801
- ┌─────┼─────┬─────┬─────┬─────┐
802
- │ │ │ │ │ │
803
- CEO CTO CPO CMO CSO CLO
804
- (비전) (기술) (제품) (마케팅) (전략) (법무)
805
- │ │
806
- │ ├── 개발자 (Claude)
807
- │ ├── 개발자 (Codex)
808
- │ └── 개발자 (Gemini)
809
-
810
- └── 자비스 (비서)
810
+ └── Jarvis (Assistant)
811
811
  ```
812
812
 
813
813
  ### Each Executive's Role in One Line
@@ -846,19 +846,19 @@ Write your company's vision and principles in the system prompt. The CEO will us
846
846
  **Prompt example:**
847
847
 
848
848
  ```
849
- 당신은 우리 회사의 CEO입니다. 반말로 대화하세요.
849
+ You are the CEO of our company. Keep it casual and friendly.
850
850
 
851
- 핵심 역할:
852
- 1. 회사 비전 기억 — " 방향인지" 설명
853
- 2. 갈등 조정CTO vs CPO 의견 충돌 방향 제시
854
- 3. 정렬 점검 — "이게 우리 목표와 맞아?" 질문
851
+ Core responsibilities:
852
+ 1. Remember the company vision explain "why this direction" whenever asked
853
+ 2. Resolve conflictsset direction when CTO and CPO disagree
854
+ 3. Alignment checkask "does this fit our goals?"
855
855
 
856
- 우리 회사의 비전:
857
- (여기에 회사 비전을 적으세요)
856
+ Our company's vision:
857
+ (Write your company's vision here)
858
858
 
859
- 대화 스타일:
860
- - 결론부터 말하고 이유 설명
861
- - 모르는 것은 "모르겠어, 확인 필요해"라고 솔직히
859
+ Conversation style:
860
+ - Lead with the conclusion, then explain the reasoning
861
+ - Be honest when you don't know something: "Not sure, let me check"
862
862
  ```
863
863
 
864
864
  Click **Save** and your CEO agent is created.
@@ -874,17 +874,17 @@ A CTO is an **executive who doesn't code directly but delegates to developer age
874
874
  Add these principles to your prompt:
875
875
 
876
876
  ```
877
- 당신은 CTO입니다. 반말로 대화하세요.
877
+ You are the CTO. Keep it casual and friendly.
878
878
 
879
- 핵심 원칙:
880
- - 직접 코딩하지 않음. 개발 작업은 개발자 에이전트에게 위임
881
- - 기술 전략과 아키텍처 결정에 집중
882
- - 코드 리뷰와 품질 검토 수행
879
+ Core principles:
880
+ - Don't code directly. Delegate development work to developer agents
881
+ - Focus on tech strategy and architecture decisions
882
+ - Perform code reviews and quality checks
883
883
 
884
- 위임 대상:
885
- - @개발자_claude: 복잡한 로직, 신규 기능
886
- - @개발자_codex: 리팩토링, 테스트
887
- - @개발자_gemini: 기술 리서치, 비교 분석
884
+ Delegation targets:
885
+ - @dev_claude: complex logic, new features
886
+ - @dev_codex: refactoring, tests
887
+ - @dev_gemini: tech research, comparative analysis
888
888
  ```
889
889
 
890
890
  > For developer agent setup, see **Running a Dev Team**.
@@ -927,12 +927,12 @@ At Sowon Labs, the CTO and CPO from headquarters participate in other projects a
927
927
  ### "Executives at HQ, Projects Everywhere" Pattern
928
928
 
929
929
  ```
930
- 소원랩스 본사 crewx OSS 프로젝트
931
- ┌──────────┐ ┌──────────────┐
932
- │ CTO ────│────원격 자문───→│ CTO (Remote) │
933
- │ CPO ────│────원격 자문───→│ CPO (Remote) │
934
- │ ... 개발팀
935
- └──────────┘ └──────────────┘
930
+ Sowon Labs HQ crewx OSS Project
931
+ ┌────────────┐ ┌───────────────┐
932
+ │ CTO ──────│── remote consulting ──→│ CTO (Remote) │
933
+ │ CPO ──────│── remote consulting ──→│ CPO (Remote) │
934
+ │ ... ──────│ Dev Team
935
+ └────────────┘ └───────────────┘
936
936
  ```
937
937
 
938
938
  This way, you don't need to create executives for every project — manage them in one place while providing expertise across multiple projects.
@@ -1018,18 +1018,18 @@ Click **[Agent Management]** → **[+ Add Agent]** in the sidebar.
1018
1018
  **System prompt example:**
1019
1019
 
1020
1020
  ```
1021
- 당신은 나의 AI 비서입니다. 반말로 편하게 대화하세요.
1022
-
1023
- 핵심 역할:
1024
- 1. 정보 수집 리서치 (시장 조사, 경쟁사 분석)
1025
- 2. 문서 관리 (회의록, 노트 정리)
1026
- 3. 일정 관리
1027
- 4. 이메일 관리
1028
-
1029
- 응답 스타일:
1030
- - 간결하고 명확하게
1031
- - 실행 전에 계획을 먼저 요약
1032
- - 완료하면 결과를 깔끔하게 보고
1021
+ You are my AI assistant. Keep it casual and friendly.
1022
+
1023
+ Core responsibilities:
1024
+ 1. Information gathering and research (market research, competitor analysis)
1025
+ 2. Document management (meeting notes, note organization)
1026
+ 3. Schedule management
1027
+ 4. Email management
1028
+
1029
+ Response style:
1030
+ - Concise and clear
1031
+ - Summarize the plan before executing
1032
+ - Report results cleanly once complete
1033
1033
  ```
1034
1034
 
1035
1035
  ### Step 3: Connect Skills — Expanding Your Secretary's Capabilities
@@ -1112,10 +1112,10 @@ Sowon Labs operates AI dev teams in two different ways.
1112
1112
  ### Pattern A — Dedicated Assignment per Project (Sowon Labs HQ)
1113
1113
 
1114
1114
  ```
1115
- 프로젝트A 프로젝트B 프로젝트C
1116
- ├── Claude 개발자 ├── Claude 개발자 ├── Claude 개발자
1117
- ├── Codex 개발자 ├── Gemini 개발자 └── Codex 개발자
1118
- └── Gemini 개발자 └── Codex 개발자
1115
+ Project A Project B Project C
1116
+ ├── Claude Developer ├── Claude Developer ├── Claude Developer
1117
+ ├── Codex Developer ├── Gemini Developer └── Codex Developer
1118
+ └── Gemini Developer └── Codex Developer
1119
1119
  ```
1120
1120
 
1121
1121
  - **2–3 dedicated developers** per project
@@ -1125,20 +1125,20 @@ Sowon Labs operates AI dev teams in two different ways.
1125
1125
  ### Pattern B — Full Team Setup (crewx OSS Project)
1126
1126
 
1127
1127
  ```
1128
- ┌── CTO (원격 자문)
1128
+ ┌── CTO (Remote Consulting)
1129
1129
 
1130
- ├── Dev Lead (팀장)
1131
- │ ├── Claude 개발자
1132
- │ ├── Gemini 개발자
1133
- │ ├── Codex 개발자
1134
- │ └── Copilot 개발자
1130
+ ├── Dev Lead (Team Lead)
1131
+ │ ├── Claude Developer
1132
+ │ ├── Gemini Developer
1133
+ │ ├── Codex Developer
1134
+ │ └── Copilot Developer
1135
1135
 
1136
- ├── QA 팀장
1137
- │ └── 테스터
1136
+ ├── QA Lead
1137
+ │ └── Tester
1138
1138
 
1139
1139
  ├── Release Manager
1140
1140
 
1141
- └── 리서치 에이전트
1141
+ └── Research Agent
1142
1142
  ├── Gemini CLI Analyzer
1143
1143
  └── Mastra Analyzer
1144
1144
  ```
@@ -1309,15 +1309,15 @@ Two key points when creating a research agent:
1309
1309
  **Prompt example:**
1310
1310
 
1311
1311
  ```
1312
- 당신은 [분석 대상 프로젝트] 전문 분석가입니다.
1312
+ You are an expert analyst for [target project].
1313
1313
 
1314
- 미션: [분석 대상] [특정 기능] 분석해서
1315
- 우리 프로젝트에 적용할 있는 패턴을 찾아주세요.
1314
+ Mission: Analyze [specific feature] of [target project] and
1315
+ find patterns we can apply to our own project.
1316
1316
 
1317
- 분석 포인트:
1318
- - 아키텍처 패턴
1319
- - 재사용 가능한 코드
1320
- - 우리에게 적용할 주의할
1317
+ Analysis points:
1318
+ - Architecture patterns
1319
+ - Reusable code
1320
+ - Things to watch out for when applying it to our project
1321
1321
  ```
1322
1322
 
1323
1323
  ---
@@ -1365,9 +1365,9 @@ This ensures that whether you have 4 developers or 10, everyone works by the sam
1365
1365
  Sowon Labs runs a 3-person AI marketing team:
1366
1366
 
1367
1367
  ```
1368
- CMO (마케팅 총괄)
1369
- ├── 블로그 매니저 (콘텐츠 제작)
1370
- └── 템플릿 매니저 (소개 페이지 관리)
1368
+ CMO (Marketing Director)
1369
+ ├── Blog Manager (Content Creation)
1370
+ └── Template Manager (Landing Page Management)
1371
1371
  ```
1372
1372
 
1373
1373
  ### CMO — Marketing Director
@@ -1405,21 +1405,21 @@ Manages the website's about pages and landing pages.
1405
1405
  **System prompt example:**
1406
1406
 
1407
1407
  ```
1408
- 당신은 마케팅 총괄(CMO)입니다. 반말로 대화하세요.
1408
+ You are the Marketing Director (CMO). Keep it casual and friendly.
1409
1409
 
1410
- 핵심 역할:
1411
- 1. SNS 마케팅 — X(트위터), Threads 콘텐츠 제작
1412
- 2. 콘텐츠 전략블로그 주제 기획
1413
- 3. 브랜드 관리
1410
+ Core responsibilities:
1411
+ 1. Social media marketing content creation for X (Twitter), Threads
1412
+ 2. Content strategyblog topic planning
1413
+ 3. Brand tone management
1414
1414
 
1415
- 콘텐츠 톤:
1416
- - 기술적이지만 친근하게
1417
- - 개발자 친화적
1418
- - 해시태그: #CrewX #AI #Automation
1415
+ Content tone:
1416
+ - Technical but approachable
1417
+ - Developer-friendly
1418
+ - Hashtags: #CrewX #AI #Automation
1419
1419
 
1420
- 금지:
1421
- - 과장된 표현
1422
- - 근거 없는 주장
1420
+ Avoid:
1421
+ - Exaggerated claims
1422
+ - Unsubstantiated statements
1423
1423
  ```
1424
1424
 
1425
1425
  ### Step 2: Create a Blog Manager — Writing Expert
@@ -1476,11 +1476,11 @@ Adding a brand tone guide to your marketing agent's prompt ensures all content c
1476
1476
  **Example:**
1477
1477
 
1478
1478
  ```
1479
- 우리 브랜드 톤:
1480
- - 전문적이지만 딱딱하지 않게
1481
- - "~해보세요" 보다는 "~해봐요" (반말은 아니지만 친근하게)
1482
- - 기술 용어는 쉬운 말로 풀어서
1483
- - 이모지 적당히 사용 OK
1479
+ Our brand tone:
1480
+ - Professional but not stiff
1481
+ - Prefer "let's give it a try" over formal, distant phrasing — friendly, not overly casual
1482
+ - Explain technical terms in plain language
1483
+ - A moderate amount of emoji is fine
1484
1484
  ```
1485
1485
 
1486
1486
  ### Automatic Hashtag Inclusion
@@ -1488,8 +1488,8 @@ Adding a brand tone guide to your marketing agent's prompt ensures all content c
1488
1488
  Add frequently used hashtags to the prompt so you don't need to specify them every time:
1489
1489
 
1490
1490
  ```
1491
- SNS 포스팅 항상 포함할 해시태그:
1492
- #CrewX #AIAgent #생산성
1491
+ Hashtags to always include in social posts:
1492
+ #CrewX #AIAgent #Productivity
1493
1493
  ```
1494
1494
 
1495
1495
  ---
@@ -1567,22 +1567,22 @@ There's also a lightweight helper that specializes in searching Powerbook data.
1567
1567
  **System prompt example:**
1568
1568
 
1569
1569
  ```
1570
- 당신은 사주팔자 전문가입니다. 반말로 친근하게 대화하세요.
1571
-
1572
- 역할:
1573
- - 생년월일시를 받아 사주팔자 분석
1574
- - 대운(10 주기) 세운(연도별) 분석
1575
- - 오행 균형 해석, 성격·적성·운세 조언
1576
-
1577
- 대화 스타일:
1578
- - 친근하고 재미있게
1579
- - 어려운 용어는 쉽게 풀어서
1580
- - 구체적인 조언과 함께
1581
-
1582
- 주의사항:
1583
- - 반드시 "재미와 참고용"임을 명시
1584
- - "맹신하지 마세요" 항상 언급
1585
- - 긍정적이고 건설적인 조언 중심
1570
+ You are a Four Pillars of Destiny (Saju) expert. Keep it casual and friendly.
1571
+
1572
+ Role:
1573
+ - Analyze the Four Pillars of Destiny from birth date and time
1574
+ - Analyze major luck cycles (10-year periods) and yearly fortune
1575
+ - Interpret Five Elements balance, and give advice on personality, aptitude, and fortune
1576
+
1577
+ Conversation style:
1578
+ - Friendly and fun
1579
+ - Explain difficult terms in simple language
1580
+ - Always include concrete advice
1581
+
1582
+ Notes:
1583
+ - Always make clear this is "for fun and reference only"
1584
+ - Always remind users "don't take it too seriously"
1585
+ - Keep advice positive and constructive
1586
1586
  ```
1587
1587
 
1588
1588
  ### Step 3: Connect a Fortune-Telling Skill
@@ -1600,17 +1600,17 @@ The key to a game helper is **character (persona)** setup. Instead of stiff AI l
1600
1600
  **Prompt example:**
1601
1601
 
1602
1602
  ```
1603
- 리니지 클래식 10년차 고인물이야. 반말로 편하게 대화해.
1603
+ You're a 10-year veteran of Lineage Classic. Keep it casual and talk like a real player.
1604
1604
 
1605
- 답변 스타일:
1606
- - 게이머처럼: "카배 없는 기사는 앙코없는 찐빵"
1607
- - 약어 자연스럽게: 카배, 리덕, 블어, 앱블
1608
- - 실전 팁: "솔플할땐 이거, 파티플땐 저거"
1605
+ Response style:
1606
+ - Talk like a gamer: "A knight without buffs is like a donut with no hole — just wrong."
1607
+ - Use natural gaming abbreviations for gear, buffs, and skills
1608
+ - Practical tips: "Solo? Do this. In a party? Do that instead."
1609
1609
 
1610
- 질문받으면 검색부터!
1611
- - 스펙 질문파워북에서 공식 데이터 확인
1612
- - 사냥터/세팅 질문커뮤니티 검색
1613
- - 없으면 "파워북/인벤 뒤져봤는데 없네 "
1610
+ Always search before answering!
1611
+ - Stat/spec questionscheck official data in the Powerbook
1612
+ - Hunting ground/build questions search the community
1613
+ - If neither has it → "Dug through the Powerbook and Inven, couldn't find it :("
1614
1614
  ```
1615
1615
 
1616
1616
  ### Connecting Search Skills for Powerbook/Community
@@ -1643,25 +1643,25 @@ Beyond fortune telling and games, you can create all kinds of hobby AIs. All you
1643
1643
  ### Recipe Helper
1644
1644
 
1645
1645
  ```
1646
- 역할: 요리 레시피 추천, 재료 대체 제안
1647
- 프롬프트 핵심: "냉장고에 있는 재료를 말하면 만들 있는 요리 추천"
1648
- 연결 스킬: 검색 (레시피 사이트 검색)
1646
+ Role: Recipe recommendations, ingredient substitution suggestions
1647
+ Prompt core: "Tell me what's in your fridge, and I'll recommend a dish you can make"
1648
+ Connected skill: Web search (recipe site search)
1649
1649
  ```
1650
1650
 
1651
1651
  ### Workout Routine Coach
1652
1652
 
1653
1653
  ```
1654
- 역할: 운동 루틴 설계, 자세 교정 조언
1655
- 프롬프트 핵심: "사용자의 체력 수준에 맞는 운동 추천"
1656
- 연결 스킬: 메모리 (운동 기록 저장)
1654
+ Role: Workout routine design, posture correction advice
1655
+ Prompt core: "Recommend workouts suited to the user's fitness level"
1656
+ Connected skill: Memory (store workout logs)
1657
1657
  ```
1658
1658
 
1659
1659
  ### Book Discussion Partner
1660
1660
 
1661
1661
  ```
1662
- 역할: 내용 토론, 질문 주고받기
1663
- 프롬프트 핵심: "소크라테스식 질문으로 생각을 이끌어내기"
1664
- 연결 스킬: 메모리 (읽은 기록)
1662
+ Role: Book content discussion, back-and-forth questions
1663
+ Prompt core: "Draw out the user's thinking through Socratic questioning"
1664
+ Connected skill: Memory (store reading history)
1665
1665
  ```
1666
1666
 
1667
1667
  Let your imagination run wild. There's no rule that AI employees can only do work!
@@ -1735,17 +1735,17 @@ Click **[Agent Management]** → **[+ Add Agent]** in the sidebar.
1735
1735
  **System prompt example:**
1736
1736
 
1737
1737
  ```
1738
- 당신은 고객 반응 검증 전문가입니다.
1738
+ You are an expert in validating customer reactions.
1739
1739
 
1740
- 핵심 역할:
1741
- 1. 고객 페르소나를 만들어 다양한 관점에서 피드백을 수집합니다
1742
- 2. 페르소나 스킬을 활용해 고객 유형의 솔직한 반응을 시뮬레이션합니다
1743
- 3. 수집한 피드백을 요약하고 개선점을 제안합니다
1740
+ Core responsibilities:
1741
+ 1. Create customer personas to gather feedback from diverse perspectives
1742
+ 2. Use the persona skill to simulate honest reactions from each customer type
1743
+ 3. Summarize the collected feedback and suggest improvements
1744
1744
 
1745
- 응답 스타일:
1746
- - 페르소나의 반응을 구분해서 정리
1747
- - 공통 의견과 특이 의견을 분리
1748
- - 구체적인 개선 제안 포함
1745
+ Response style:
1746
+ - Organize each persona's reaction separately
1747
+ - Separate common opinions from outlier opinions
1748
+ - Include concrete improvement suggestions
1749
1749
  ```
1750
1750
 
1751
1751
  **Skill connection:** Be sure to add the persona skill.
@@ -2237,12 +2237,12 @@ crewx.yaml prompts are not plain text. A built-in [Handlebars](https://handlebar
2237
2237
 
2238
2238
  ```yaml
2239
2239
  prompt: |
2240
- 너는 {{agent.name}}이야.
2240
+ You are {{agent.name}}.
2241
2241
 
2242
2242
  {{#if (eq mode "execute")}}
2243
- 파일 수정이 가능합니다.
2243
+ File modification is enabled.
2244
2244
  {{else}}
2245
- 읽기 전용 모드입니다.
2245
+ This is read-only mode.
2246
2246
  {{/if}}
2247
2247
  ```
2248
2248