cli-jaw 1.7.33 → 1.7.34
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/bin/commands/dispatch.js +8 -0
- package/dist/bin/commands/dispatch.js.map +1 -1
- package/dist/bin/commands/memory.js +7 -1
- package/dist/bin/commands/memory.js.map +1 -1
- package/dist/bin/commands/orchestrate.js +67 -8
- package/dist/bin/commands/orchestrate.js.map +1 -1
- package/dist/src/agent/args.js +4 -0
- package/dist/src/agent/args.js.map +1 -1
- package/dist/src/agent/events.js +50 -20
- package/dist/src/agent/events.js.map +1 -1
- package/dist/src/agent/opencode-diagnostics.js +106 -0
- package/dist/src/agent/opencode-diagnostics.js.map +1 -0
- package/dist/src/agent/spawn-env.js +75 -4
- package/dist/src/agent/spawn-env.js.map +1 -1
- package/dist/src/agent/spawn.js +104 -15
- package/dist/src/agent/spawn.js.map +1 -1
- package/dist/src/cli/commands.js +1 -1
- package/dist/src/cli/commands.js.map +1 -1
- package/dist/src/cli/handlers-runtime.js +23 -5
- package/dist/src/cli/handlers-runtime.js.map +1 -1
- package/dist/src/core/compact.js +8 -7
- package/dist/src/core/compact.js.map +1 -1
- package/dist/src/core/runtime-settings-gate.js +40 -0
- package/dist/src/core/runtime-settings-gate.js.map +1 -0
- package/dist/src/core/runtime-settings.js +71 -64
- package/dist/src/core/runtime-settings.js.map +1 -1
- package/dist/src/orchestrator/pipeline.js +20 -0
- package/dist/src/orchestrator/pipeline.js.map +1 -1
- package/dist/src/orchestrator/state-machine.js +8 -5
- package/dist/src/orchestrator/state-machine.js.map +1 -1
- package/dist/src/prompt/templates/a1-system.md +9 -1
- package/dist/src/prompt/templates/employee.md +5 -1
- package/dist/src/routes/orchestrate.js +52 -11
- package/dist/src/routes/orchestrate.js.map +1 -1
- package/package.json +6 -5
- package/public/css/modals.css +126 -0
- package/public/dist/assets/{employees-Do9d6Xi5.js → employees-p53cgGmH.js} +1 -1
- package/public/dist/assets/{index-qALA03H1.css → index-CLKLbGzn.css} +1 -1
- package/public/dist/assets/index-wUWc2M5K.js +32 -0
- package/public/dist/assets/memory-6zLEr-qI.js +1 -0
- package/public/dist/assets/{memory-DeZSzBAb.js → memory-C2i7ZIvv.js} +2 -2
- package/public/dist/assets/{render-CQnnZ-_i.js → render-CulTuvJs.js} +1 -1
- package/public/dist/assets/settings-BUEiZgkm.js +40 -0
- package/public/dist/assets/settings-BhrOslae.js +1 -0
- package/public/dist/assets/{skills-Ci5t_dsV.js → skills-CSuSbBWa.js} +1 -1
- package/public/dist/assets/skills-CgwxEvFx.js +1 -0
- package/public/dist/assets/slash-commands-Bo8jvBfI.js +1 -0
- package/public/dist/assets/{slash-commands-0RvnZU9z.js → slash-commands-D-v0DlbY.js} +1 -1
- package/public/dist/assets/ui-4JiRyxJy.js +131 -0
- package/public/dist/assets/ui-Dx0MwI23.js +1 -0
- package/public/dist/assets/ws-DKtFfZsY.js +14 -0
- package/public/dist/index.html +74 -15
- package/public/index.html +72 -13
- package/public/js/features/attention-badge.ts +151 -0
- package/public/js/features/chat.ts +16 -0
- package/public/js/features/help-content.ts +75 -0
- package/public/js/features/help-dialog.ts +164 -0
- package/public/js/features/memory.ts +2 -2
- package/public/js/features/orchestrate-scope.ts +4 -0
- package/public/js/features/settings-core.ts +36 -11
- package/public/js/main.ts +4 -0
- package/public/js/ui.ts +21 -1
- package/public/js/virtual-scroll.ts +72 -8
- package/public/js/ws.ts +50 -6
- package/public/locales/en.json +183 -2
- package/public/locales/ko.json +183 -2
- package/scripts/smoke/opencode-external-dir-smoke.ts +350 -0
- package/public/dist/assets/index-yGExjgR_.js +0 -32
- package/public/dist/assets/memory-Dpe-qPbZ.js +0 -1
- package/public/dist/assets/settings-C8bSXG3q.js +0 -40
- package/public/dist/assets/settings-COrhSfDh.js +0 -1
- package/public/dist/assets/skills-BO0V4aHG.js +0 -1
- package/public/dist/assets/slash-commands-DbUvFtCk.js +0 -1
- package/public/dist/assets/ui-Cxk1_e0b.js +0 -1
- package/public/dist/assets/ui-IWxpAzJ7.js +0 -131
- package/public/dist/assets/ws-FsYmCE65.js +0 -14
- /package/public/dist/assets/{constants-IeOVgtYz.js → constants-BU8a_R5s.js} +0 -0
package/public/locales/en.json
CHANGED
|
@@ -257,5 +257,186 @@
|
|
|
257
257
|
"cmd.ide.toggled": "IDE diff mode toggled",
|
|
258
258
|
"cmd.ide.popToggled": "IDE popup toggled",
|
|
259
259
|
"cmd.ide.usage": "Usage: /ide [pop|on|off]",
|
|
260
|
-
"label.mentionOnly": "Mention Only"
|
|
261
|
-
|
|
260
|
+
"label.mentionOnly": "Mention Only",
|
|
261
|
+
"help.section.what": "What it is",
|
|
262
|
+
"help.section.effect": "What changes",
|
|
263
|
+
"help.section.useWhen": "Use when",
|
|
264
|
+
"help.section.howTo": "How to use",
|
|
265
|
+
"help.section.example": "Example",
|
|
266
|
+
"help.section.avoidWhen": "Avoid when",
|
|
267
|
+
"help.section.related": "Related",
|
|
268
|
+
"help.close": "Close",
|
|
269
|
+
"help.activeCli.title": "Active CLI",
|
|
270
|
+
"help.activeCli.aria": "Active CLI help",
|
|
271
|
+
"help.activeCli.intro": "Chooses which CLI engine handles the next request.",
|
|
272
|
+
"help.activeCli.effect": "The next run uses the selected CLI's session, model settings, and tool behavior.",
|
|
273
|
+
"help.activeCli.use.1": "Switching between Claude, Codex, Gemini, OpenCode, or Copilot",
|
|
274
|
+
"help.activeCli.use.2": "Testing behavior across CLI engines",
|
|
275
|
+
"help.activeCli.howTo.1": "Choose the desired CLI from the active CLI selector.",
|
|
276
|
+
"help.activeCli.howTo.2": "You can also type /cli <name> in chat.",
|
|
277
|
+
"help.activeCli.example.1": "If Claude is blocked, switch to Codex and continue the same work.",
|
|
278
|
+
"help.activeCli.avoid.1": "Only the model within the same CLI needs to change",
|
|
279
|
+
"help.activeCli.related.1": "/cli",
|
|
280
|
+
"help.activeCli.related.2": "Model selector",
|
|
281
|
+
"help.model.title": "Model",
|
|
282
|
+
"help.model.aria": "Model help",
|
|
283
|
+
"help.model.intro": "Chooses the model used by the active CLI.",
|
|
284
|
+
"help.model.effect": "Future requests on the same CLI run with the selected model name.",
|
|
285
|
+
"help.model.use.1": "Switching to a faster or stronger model",
|
|
286
|
+
"help.model.use.2": "Tuning model-specific capability or cost",
|
|
287
|
+
"help.model.howTo.1": "Pick a model from the selector beside the active CLI.",
|
|
288
|
+
"help.model.howTo.2": "You can also type /model <model-name> in chat.",
|
|
289
|
+
"help.model.example.1": "Use Sonnet for normal coding and an Opus model when deeper review matters more than speed.",
|
|
290
|
+
"help.model.avoid.1": "The CLI engine itself needs to change",
|
|
291
|
+
"help.model.related.1": "/model",
|
|
292
|
+
"help.effort.title": "Reasoning effort",
|
|
293
|
+
"help.effort.aria": "Reasoning effort help",
|
|
294
|
+
"help.effort.intro": "Controls reasoning depth and speed where the selected model supports it.",
|
|
295
|
+
"help.effort.effect": "Supported models rebalance response speed against reasoning depth.",
|
|
296
|
+
"help.effort.use.1": "Deep code analysis or design review needs more reasoning",
|
|
297
|
+
"help.effort.use.2": "Small tasks should run faster",
|
|
298
|
+
"help.effort.howTo.1": "Choose low, medium, high, or another available value from the effort selector.",
|
|
299
|
+
"help.effort.howTo.2": "Use lower effort for quick checks and higher effort before complex implementation.",
|
|
300
|
+
"help.effort.example.1": "Use low for a typo fix and high for a large refactor plan.",
|
|
301
|
+
"help.effort.avoid.1": "The current model ignores effort settings",
|
|
302
|
+
"help.effort.related.1": "Model support notes",
|
|
303
|
+
"help.permissions.title": "Permissions",
|
|
304
|
+
"help.permissions.aria": "Permissions help",
|
|
305
|
+
"help.permissions.intro": "Controls how automatically the agent can run tools.",
|
|
306
|
+
"help.permissions.effect": "Command execution, file access, and confirmation prompts follow the selected permission mode.",
|
|
307
|
+
"help.permissions.use.1": "Local automation should proceed without repeated prompts",
|
|
308
|
+
"help.permissions.use.2": "A trusted working directory is handling a long task",
|
|
309
|
+
"help.permissions.howTo.1": "Choose stricter permissions for unfamiliar repositories.",
|
|
310
|
+
"help.permissions.howTo.2": "Use more automatic permissions only in trusted workspaces with repeated build/test loops.",
|
|
311
|
+
"help.permissions.example.1": "Keep a new project conservative, then relax permissions in a known local workspace.",
|
|
312
|
+
"help.permissions.avoid.1": "The directory or task is unfamiliar or risky",
|
|
313
|
+
"help.permissions.related.1": "safe / auto / yolo policy",
|
|
314
|
+
"help.flushAgent.title": "Flush Agent",
|
|
315
|
+
"help.flushAgent.aria": "Flush Agent help",
|
|
316
|
+
"help.flushAgent.intro": "Chooses which CLI and model summarize or flush context.",
|
|
317
|
+
"help.flushAgent.effect": "Compaction and flush work use the configured summary agent instead of the active model.",
|
|
318
|
+
"help.flushAgent.use.1": "Summary work should use a fast or reliable model",
|
|
319
|
+
"help.flushAgent.use.2": "The active model and summary model should differ",
|
|
320
|
+
"help.flushAgent.howTo.1": "Pick the CLI and model that should handle summarization in Flush Agent settings.",
|
|
321
|
+
"help.flushAgent.howTo.2": "Align it with the /flush flow before long sessions.",
|
|
322
|
+
"help.flushAgent.example.1": "Use Opus for main work while a faster Sonnet handles context summaries.",
|
|
323
|
+
"help.flushAgent.avoid.1": "The active CLI and model are already enough",
|
|
324
|
+
"help.flushAgent.related.1": "/flush",
|
|
325
|
+
"help.employees.title": "Employees",
|
|
326
|
+
"help.employees.aria": "Employees help",
|
|
327
|
+
"help.employees.intro": "Employees are separate AI workers that the Boss can dispatch for role-based verification or analysis.",
|
|
328
|
+
"help.employees.effect": "The Boss receives audit or verification results from a separate CLI session.",
|
|
329
|
+
"help.employees.use.1": "Frontend, backend, or docs review should run independently",
|
|
330
|
+
"help.employees.use.2": "PABCD A/B needs read-only verification",
|
|
331
|
+
"help.employees.use.3": "A long review should run outside the main thread",
|
|
332
|
+
"help.employees.howTo.1": "In PABCD A/B, use employees only for read-only audit or verification.",
|
|
333
|
+
"help.employees.howTo.2": "For explicit dispatch, run cli-jaw dispatch --agent \"Name\" --task \"...\".",
|
|
334
|
+
"help.employees.example.1": "While Boss implements, ask Backend to audit imports and test risks only.",
|
|
335
|
+
"help.employees.avoid.1": "Simple file lookup",
|
|
336
|
+
"help.employees.avoid.2": "Small single-file edits",
|
|
337
|
+
"help.employees.avoid.3": "Questions that can be answered directly",
|
|
338
|
+
"help.employees.related.1": "cli-jaw dispatch",
|
|
339
|
+
"help.employees.related.2": "PABCD A/B phase",
|
|
340
|
+
"help.skills.title": "Skills",
|
|
341
|
+
"help.skills.aria": "Skills help",
|
|
342
|
+
"help.skills.intro": "Skills are instruction packs for specialized workflows.",
|
|
343
|
+
"help.skills.effect": "The agent receives workflow-specific procedures, tools, and verification rules.",
|
|
344
|
+
"help.skills.use.1": "A task needs browser control, GitHub, PDF, document, or testing workflow",
|
|
345
|
+
"help.skills.use.2": "A repeatable workflow should run consistently",
|
|
346
|
+
"help.skills.howTo.1": "Name the skill or describe the specialized task in your request.",
|
|
347
|
+
"help.skills.howTo.2": "Use the skills list to confirm which workflows are installed and available.",
|
|
348
|
+
"help.skills.example.1": "PDF analysis uses the pdf skill; frontend implementation uses dev-frontend guidance.",
|
|
349
|
+
"help.skills.avoid.1": "A normal chat response is enough",
|
|
350
|
+
"help.skills.related.1": "/skill",
|
|
351
|
+
"help.activeChannel.title": "Active Channel",
|
|
352
|
+
"help.activeChannel.aria": "Active Channel help",
|
|
353
|
+
"help.activeChannel.intro": "Chooses which service receives channel output.",
|
|
354
|
+
"help.activeChannel.effect": "File delivery, notifications, and scheduled job results target the selected channel.",
|
|
355
|
+
"help.activeChannel.use.1": "Switching operational output between Telegram and Discord",
|
|
356
|
+
"help.activeChannel.use.2": "External notification targets change",
|
|
357
|
+
"help.activeChannel.howTo.1": "Select Telegram or Discord in channel settings.",
|
|
358
|
+
"help.activeChannel.howTo.2": "Check the active channel before tasks that deliver files or notifications.",
|
|
359
|
+
"help.activeChannel.example.1": "Receive document files on Telegram while team alerts go to Discord.",
|
|
360
|
+
"help.activeChannel.avoid.1": "Only forwarding on/off should change",
|
|
361
|
+
"help.activeChannel.related.1": "Telegram / Discord settings",
|
|
362
|
+
"help.telegram.title": "Telegram",
|
|
363
|
+
"help.telegram.aria": "Telegram help",
|
|
364
|
+
"help.telegram.intro": "Manages Telegram bot connection, allowed chats, mention-only mode, and forwarding.",
|
|
365
|
+
"help.telegram.effect": "Allowed Telegram chats can exchange messages, files, voice input, and task results.",
|
|
366
|
+
"help.telegram.use.1": "You want cli-jaw updates through Telegram",
|
|
367
|
+
"help.telegram.use.2": "Web responses should be forwarded to Telegram",
|
|
368
|
+
"help.telegram.howTo.1": "Configure the bot token and allowed chat ID.",
|
|
369
|
+
"help.telegram.howTo.2": "Enable mention-only or forwarding options when needed.",
|
|
370
|
+
"help.telegram.example.1": "Receive a long-running task's finished file through Telegram while away from the web UI.",
|
|
371
|
+
"help.telegram.avoid.1": "Discord is the active operational channel",
|
|
372
|
+
"help.telegram.related.1": "/forward",
|
|
373
|
+
"help.telegram.related.2": "Allowed chat IDs",
|
|
374
|
+
"help.discord.title": "Discord",
|
|
375
|
+
"help.discord.aria": "Discord help",
|
|
376
|
+
"help.discord.intro": "Manages Discord guild and channel routing plus mention behavior.",
|
|
377
|
+
"help.discord.effect": "Commands, files, and employee results are limited to the configured guild and channel.",
|
|
378
|
+
"help.discord.use.1": "Operating through a server channel with slash commands",
|
|
379
|
+
"help.discord.use.2": "Restricting output to specific guilds or channels",
|
|
380
|
+
"help.discord.howTo.1": "Set guild and channel routing in Discord settings.",
|
|
381
|
+
"help.discord.howTo.2": "Run jaw doctor when bot state or permissions look wrong.",
|
|
382
|
+
"help.discord.example.1": "Collect employee verification results in one project channel.",
|
|
383
|
+
"help.discord.avoid.1": "You expect direct-message delivery",
|
|
384
|
+
"help.discord.related.1": "jaw doctor",
|
|
385
|
+
"help.discord.related.2": "Discord degraded mode",
|
|
386
|
+
"help.fallbackOrder.title": "Fallback",
|
|
387
|
+
"help.fallbackOrder.aria": "Fallback help",
|
|
388
|
+
"help.fallbackOrder.intro": "Sets which CLI is tried when the current one fails or is unavailable.",
|
|
389
|
+
"help.fallbackOrder.effect": "Other CLIs are tried in order to reduce interruptions from provider failures or quota issues.",
|
|
390
|
+
"help.fallbackOrder.use.1": "A provider is overloaded and you want an automatic backup",
|
|
391
|
+
"help.fallbackOrder.use.2": "Long jobs should be less likely to stop on provider failure",
|
|
392
|
+
"help.fallbackOrder.howTo.1": "Set the retry order in Fallback settings.",
|
|
393
|
+
"help.fallbackOrder.howTo.2": "Disable or simplify fallback while debugging root causes.",
|
|
394
|
+
"help.fallbackOrder.example.1": "If Claude is overloaded, continue through Codex or Gemini according to your order.",
|
|
395
|
+
"help.fallbackOrder.avoid.1": "Failures should stop immediately for debugging",
|
|
396
|
+
"help.fallbackOrder.related.1": "/fallback",
|
|
397
|
+
"help.mcp.title": "MCP Servers",
|
|
398
|
+
"help.mcp.aria": "MCP help",
|
|
399
|
+
"help.mcp.intro": "MCP servers connect agents to external tools and resources.",
|
|
400
|
+
"help.mcp.effect": "Installed servers sync into tool lists for Claude, Codex, Gemini, and other CLIs.",
|
|
401
|
+
"help.mcp.use.1": "A task needs external app, data, or tool access",
|
|
402
|
+
"help.mcp.use.2": "The same tool setup should sync across CLIs",
|
|
403
|
+
"help.mcp.howTo.1": "Add a server in MCP settings or run jaw mcp install.",
|
|
404
|
+
"help.mcp.howTo.2": "Restart or refresh the target CLI, then confirm the tool appears.",
|
|
405
|
+
"help.mcp.example.1": "Add filesystem MCP so agents can inspect allowed folders reliably.",
|
|
406
|
+
"help.mcp.avoid.1": "Local files and built-in tools are enough",
|
|
407
|
+
"help.mcp.related.1": "/mcp",
|
|
408
|
+
"help.memory.title": "Memory",
|
|
409
|
+
"help.memory.aria": "Memory help",
|
|
410
|
+
"help.memory.intro": "Stores durable project facts, user preferences, and long-term context.",
|
|
411
|
+
"help.memory.effect": "Saved decisions and preferences can be searched and injected in later sessions or after compaction.",
|
|
412
|
+
"help.memory.use.1": "Decisions or preferences should survive future sessions",
|
|
413
|
+
"help.memory.use.2": "A long project needs stable context continuity",
|
|
414
|
+
"help.memory.howTo.1": "Search, read, or save through the memory panel or cli-jaw memory commands.",
|
|
415
|
+
"help.memory.howTo.2": "Save durable decisions, not temporary checklists or raw logs.",
|
|
416
|
+
"help.memory.example.1": "Save \"this project stays vanilla JS\"; do not save \"three tests left today\".",
|
|
417
|
+
"help.memory.avoid.1": "You are saving temporary checklists or raw logs",
|
|
418
|
+
"help.memory.related.1": "/memory",
|
|
419
|
+
"help.memory.related.2": "flush / bootstrap",
|
|
420
|
+
"help.stt.title": "Speech recognition",
|
|
421
|
+
"help.stt.aria": "STT help",
|
|
422
|
+
"help.stt.intro": "Configures speech-to-text for browser voice input.",
|
|
423
|
+
"help.stt.effect": "Voice button recordings are transcribed by the selected STT engine into chat text.",
|
|
424
|
+
"help.stt.use.1": "You want to dictate long instructions",
|
|
425
|
+
"help.stt.use.2": "You need to choose Gemini, OpenAI, or Whisper STT",
|
|
426
|
+
"help.stt.howTo.1": "Choose an STT provider and configure any required API key.",
|
|
427
|
+
"help.stt.howTo.2": "Press the voice button, record, then review the transcribed text.",
|
|
428
|
+
"help.stt.example.1": "Dictate long meeting notes and then ask the agent to summarize them.",
|
|
429
|
+
"help.stt.avoid.1": "Text input is enough or API keys are not configured",
|
|
430
|
+
"help.stt.related.1": "voice button",
|
|
431
|
+
"help.promptTemplates.title": "Prompt Templates",
|
|
432
|
+
"help.promptTemplates.aria": "Prompt Templates help",
|
|
433
|
+
"help.promptTemplates.intro": "Stores reusable prompt blocks for common workflows.",
|
|
434
|
+
"help.promptTemplates.effect": "The selected template is inserted as repeatable instructions for new requests.",
|
|
435
|
+
"help.promptTemplates.use.1": "Repeated instructions should stay consistent",
|
|
436
|
+
"help.promptTemplates.use.2": "Long setup instructions should not be rewritten each time",
|
|
437
|
+
"help.promptTemplates.howTo.1": "Create and save templates in the prompt templates modal.",
|
|
438
|
+
"help.promptTemplates.howTo.2": "Select the template before a repeated workflow.",
|
|
439
|
+
"help.promptTemplates.example.1": "Save the same code review checklist instead of retyping it each time.",
|
|
440
|
+
"help.promptTemplates.avoid.1": "A short one-off instruction is clearer in chat",
|
|
441
|
+
"help.promptTemplates.related.1": "Prompt templates modal"
|
|
442
|
+
}
|
package/public/locales/ko.json
CHANGED
|
@@ -257,5 +257,186 @@
|
|
|
257
257
|
"cmd.ide.toggled": "IDE diff 모드를 전환했습니다",
|
|
258
258
|
"cmd.ide.popToggled": "IDE 팝업을 전환했습니다",
|
|
259
259
|
"cmd.ide.usage": "/ide [pop|on|off]",
|
|
260
|
-
"label.mentionOnly": "@멘션 시에만 응답"
|
|
261
|
-
|
|
260
|
+
"label.mentionOnly": "@멘션 시에만 응답",
|
|
261
|
+
"help.section.what": "무엇인가",
|
|
262
|
+
"help.section.effect": "무엇이 바뀌나",
|
|
263
|
+
"help.section.useWhen": "언제 쓰나",
|
|
264
|
+
"help.section.howTo": "사용방법",
|
|
265
|
+
"help.section.example": "예시",
|
|
266
|
+
"help.section.avoidWhen": "언제 안 쓰나",
|
|
267
|
+
"help.section.related": "관련",
|
|
268
|
+
"help.close": "닫기",
|
|
269
|
+
"help.activeCli.title": "활성 CLI",
|
|
270
|
+
"help.activeCli.aria": "활성 CLI 도움말",
|
|
271
|
+
"help.activeCli.intro": "다음 요청을 처리할 CLI 엔진을 선택합니다.",
|
|
272
|
+
"help.activeCli.effect": "다음 실행부터 선택한 CLI의 세션, 모델 설정, 도구 동작 규칙을 사용합니다.",
|
|
273
|
+
"help.activeCli.use.1": "Claude, Codex, Gemini, OpenCode, Copilot 사이를 바꿀 때",
|
|
274
|
+
"help.activeCli.use.2": "CLI별 동작 차이를 비교하거나 테스트할 때",
|
|
275
|
+
"help.activeCli.howTo.1": "상단 활성 CLI 선택기에서 원하는 CLI를 고릅니다.",
|
|
276
|
+
"help.activeCli.howTo.2": "채팅에서 /cli <이름> 명령으로도 바꿀 수 있습니다.",
|
|
277
|
+
"help.activeCli.example.1": "Claude 응답이 막히면 Codex로 바꿔 같은 작업을 이어갈 수 있습니다.",
|
|
278
|
+
"help.activeCli.avoid.1": "같은 CLI 안에서 모델만 바꾸려는 경우",
|
|
279
|
+
"help.activeCli.related.1": "/cli",
|
|
280
|
+
"help.activeCli.related.2": "모델 선택",
|
|
281
|
+
"help.model.title": "모델",
|
|
282
|
+
"help.model.aria": "모델 도움말",
|
|
283
|
+
"help.model.intro": "현재 활성 CLI가 사용할 모델을 선택합니다.",
|
|
284
|
+
"help.model.effect": "다음 요청부터 같은 CLI 안에서 선택한 모델명으로 실행됩니다.",
|
|
285
|
+
"help.model.use.1": "더 빠른 모델이나 더 강한 모델로 바꿀 때",
|
|
286
|
+
"help.model.use.2": "모델별 기능이나 비용을 조절할 때",
|
|
287
|
+
"help.model.howTo.1": "활성 CLI 옆 모델 선택기에서 모델을 고릅니다.",
|
|
288
|
+
"help.model.howTo.2": "채팅에서 /model <모델명>으로도 변경할 수 있습니다.",
|
|
289
|
+
"help.model.example.1": "일반 코딩은 Sonnet, 긴 설계 검토는 Opus 계열처럼 목적에 맞춰 바꿉니다.",
|
|
290
|
+
"help.model.avoid.1": "CLI 엔진 자체를 바꿔야 하는 경우",
|
|
291
|
+
"help.model.related.1": "/model",
|
|
292
|
+
"help.effort.title": "추론 강도",
|
|
293
|
+
"help.effort.aria": "추론 강도 도움말",
|
|
294
|
+
"help.effort.intro": "지원되는 모델에서 사고 깊이와 속도를 조절합니다.",
|
|
295
|
+
"help.effort.effect": "지원되는 모델에서는 응답 속도와 reasoning 깊이의 균형이 바뀝니다.",
|
|
296
|
+
"help.effort.use.1": "복잡한 코드 분석이나 설계 검토가 필요할 때",
|
|
297
|
+
"help.effort.use.2": "짧은 작업을 빠르게 처리하고 싶을 때",
|
|
298
|
+
"help.effort.howTo.1": "Effort 선택기에서 low, medium, high 같은 값을 고릅니다.",
|
|
299
|
+
"help.effort.howTo.2": "빠른 확인은 낮게, 복잡한 구현 전 검토는 높게 둡니다.",
|
|
300
|
+
"help.effort.example.1": "오타 수정은 low, 큰 리팩터링 계획은 high로 둡니다.",
|
|
301
|
+
"help.effort.avoid.1": "현재 모델이 effort 설정을 무시하는 경우",
|
|
302
|
+
"help.effort.related.1": "모델별 지원 여부",
|
|
303
|
+
"help.permissions.title": "권한",
|
|
304
|
+
"help.permissions.aria": "권한 도움말",
|
|
305
|
+
"help.permissions.intro": "에이전트가 도구 실행을 얼마나 자동으로 진행할지 정합니다.",
|
|
306
|
+
"help.permissions.effect": "명령 실행, 파일 접근, 확인 요청 빈도가 권한 모드에 맞춰 달라집니다.",
|
|
307
|
+
"help.permissions.use.1": "로컬 자동화가 반복 승인 없이 진행되어야 할 때",
|
|
308
|
+
"help.permissions.use.2": "신뢰할 수 있는 작업 디렉토리에서 긴 작업을 맡길 때",
|
|
309
|
+
"help.permissions.howTo.1": "낯선 repo에서는 보수적인 권한을 선택합니다.",
|
|
310
|
+
"help.permissions.howTo.2": "반복 빌드와 테스트가 필요한 신뢰 repo에서만 자동 권한을 높입니다.",
|
|
311
|
+
"help.permissions.example.1": "처음 여는 프로젝트는 안전하게 두고, 익숙한 로컬 작업공간에서만 완화합니다.",
|
|
312
|
+
"help.permissions.avoid.1": "낯선 디렉토리나 위험한 작업을 다룰 때",
|
|
313
|
+
"help.permissions.related.1": "safe / auto / yolo 정책",
|
|
314
|
+
"help.flushAgent.title": "Flush Agent",
|
|
315
|
+
"help.flushAgent.aria": "Flush Agent 도움말",
|
|
316
|
+
"help.flushAgent.intro": "컨텍스트 정리나 요약에 사용할 CLI와 모델을 지정합니다.",
|
|
317
|
+
"help.flushAgent.effect": "compact나 flush 때 활성 모델 대신 지정된 요약용 에이전트가 컨텍스트를 정리합니다.",
|
|
318
|
+
"help.flushAgent.use.1": "요약 작업을 빠르고 안정적인 모델에 맡기고 싶을 때",
|
|
319
|
+
"help.flushAgent.use.2": "활성 모델과 요약 모델을 분리하고 싶을 때",
|
|
320
|
+
"help.flushAgent.howTo.1": "Flush Agent 설정에서 요약에 쓸 CLI와 모델을 고릅니다.",
|
|
321
|
+
"help.flushAgent.howTo.2": "긴 작업 전에 /flush 흐름과 함께 사용할 모델을 맞춥니다.",
|
|
322
|
+
"help.flushAgent.example.1": "주 작업은 Opus로 하고, 컨텍스트 정리는 빠른 Sonnet으로 맡길 수 있습니다.",
|
|
323
|
+
"help.flushAgent.avoid.1": "활성 CLI와 모델을 그대로 쓰면 충분한 경우",
|
|
324
|
+
"help.flushAgent.related.1": "/flush",
|
|
325
|
+
"help.employees.title": "직원",
|
|
326
|
+
"help.employees.aria": "직원 도움말",
|
|
327
|
+
"help.employees.intro": "직원은 Boss가 작업을 나눠 맡기는 별도 AI 작업자입니다.",
|
|
328
|
+
"help.employees.effect": "Boss의 메인 흐름과 분리된 CLI 세션에서 감사나 검증 결과를 받아옵니다.",
|
|
329
|
+
"help.employees.use.1": "프론트/백엔드/문서 검증을 나눌 때",
|
|
330
|
+
"help.employees.use.2": "PABCD A/B 단계에서 read-only 검증이 필요할 때",
|
|
331
|
+
"help.employees.use.3": "긴 리뷰를 메인 작업과 분리해서 돌릴 때",
|
|
332
|
+
"help.employees.howTo.1": "PABCD A/B에서는 직원에게 read-only 감사나 검증만 맡깁니다.",
|
|
333
|
+
"help.employees.howTo.2": "직접 보낼 때는 cli-jaw dispatch --agent \"이름\" --task \"...\"를 사용합니다.",
|
|
334
|
+
"help.employees.example.1": "Boss가 구현하는 동안 Backend 직원에게 계획의 import와 테스트 위험만 감사시킵니다.",
|
|
335
|
+
"help.employees.avoid.1": "단순 파일 읽기",
|
|
336
|
+
"help.employees.avoid.2": "작은 단일 수정",
|
|
337
|
+
"help.employees.avoid.3": "즉시 답변 가능한 질문",
|
|
338
|
+
"help.employees.related.1": "cli-jaw dispatch",
|
|
339
|
+
"help.employees.related.2": "PABCD A/B phase",
|
|
340
|
+
"help.skills.title": "스킬",
|
|
341
|
+
"help.skills.aria": "스킬 도움말",
|
|
342
|
+
"help.skills.intro": "스킬은 특정 작업 방식을 에이전트에게 알려주는 지침 묶음입니다.",
|
|
343
|
+
"help.skills.effect": "선택된 작업 유형에 맞는 절차, 도구, 검증 규칙이 에이전트에게 추가됩니다.",
|
|
344
|
+
"help.skills.use.1": "브라우저 제어, GitHub, PDF, 문서 작업처럼 특화된 절차가 필요할 때",
|
|
345
|
+
"help.skills.use.2": "반복 워크플로를 안정적으로 수행하게 만들 때",
|
|
346
|
+
"help.skills.howTo.1": "작업 요청에 필요한 스킬 이름이나 작업 유형을 명확히 말합니다.",
|
|
347
|
+
"help.skills.howTo.2": "스킬 목록에서 설치/사용 가능한 워크플로를 확인합니다.",
|
|
348
|
+
"help.skills.example.1": "PDF 분석은 pdf 스킬, 프런트엔드 구현은 dev-frontend 지침을 사용합니다.",
|
|
349
|
+
"help.skills.avoid.1": "기본 대화만으로 충분한 일반 질문",
|
|
350
|
+
"help.skills.related.1": "/skill",
|
|
351
|
+
"help.activeChannel.title": "Active Channel",
|
|
352
|
+
"help.activeChannel.aria": "Active Channel 도움말",
|
|
353
|
+
"help.activeChannel.intro": "현재 메시지 전달과 채널 출력을 어느 서비스로 보낼지 정합니다.",
|
|
354
|
+
"help.activeChannel.effect": "파일 전달, 알림, 예약 작업 결과가 선택된 채널 기준으로 전송됩니다.",
|
|
355
|
+
"help.activeChannel.use.1": "Telegram과 Discord 중 운영 채널을 바꿀 때",
|
|
356
|
+
"help.activeChannel.use.2": "외부 알림 대상이 달라질 때",
|
|
357
|
+
"help.activeChannel.howTo.1": "채널 설정에서 Telegram 또는 Discord를 활성 채널로 선택합니다.",
|
|
358
|
+
"help.activeChannel.howTo.2": "전송이 필요한 작업 전 현재 채널이 맞는지 확인합니다.",
|
|
359
|
+
"help.activeChannel.example.1": "문서 파일은 Telegram으로 받고, 팀 알림은 Discord 채널로 보낼 수 있습니다.",
|
|
360
|
+
"help.activeChannel.avoid.1": "전송 on/off만 바꾸려는 경우",
|
|
361
|
+
"help.activeChannel.related.1": "Telegram / Discord 설정",
|
|
362
|
+
"help.telegram.title": "Telegram",
|
|
363
|
+
"help.telegram.aria": "Telegram 도움말",
|
|
364
|
+
"help.telegram.intro": "Telegram 봇 연결, 허용 채팅, mention-only, 자동 전송을 관리합니다.",
|
|
365
|
+
"help.telegram.effect": "허용된 Telegram 채팅에서 메시지, 파일, 음성 입력, 작업 결과를 주고받을 수 있습니다.",
|
|
366
|
+
"help.telegram.use.1": "Telegram에서 cli-jaw 응답이나 상태를 받고 싶을 때",
|
|
367
|
+
"help.telegram.use.2": "웹 응답을 Telegram으로 자동 전송할 때",
|
|
368
|
+
"help.telegram.howTo.1": "Bot token과 allowed chat ID를 설정합니다.",
|
|
369
|
+
"help.telegram.howTo.2": "필요하면 mention-only나 forwarding 옵션을 켭니다.",
|
|
370
|
+
"help.telegram.example.1": "외출 중에도 Telegram으로 장기 작업 완료 파일을 받을 수 있습니다.",
|
|
371
|
+
"help.telegram.avoid.1": "Discord를 주 운영 채널로 쓰는 경우",
|
|
372
|
+
"help.telegram.related.1": "/forward",
|
|
373
|
+
"help.telegram.related.2": "Allowed chat IDs",
|
|
374
|
+
"help.discord.title": "Discord",
|
|
375
|
+
"help.discord.aria": "Discord 도움말",
|
|
376
|
+
"help.discord.intro": "Discord guild/channel 라우팅과 mention 동작을 관리합니다.",
|
|
377
|
+
"help.discord.effect": "설정된 guild와 channel로 명령, 파일, 직원 결과 전달 범위가 제한됩니다.",
|
|
378
|
+
"help.discord.use.1": "서버 채널에서 slash command 중심으로 운영할 때",
|
|
379
|
+
"help.discord.use.2": "특정 guild/channel로 출력을 제한할 때",
|
|
380
|
+
"help.discord.howTo.1": "Discord 설정에서 guild와 channel 라우팅을 지정합니다.",
|
|
381
|
+
"help.discord.howTo.2": "문제가 있으면 jaw doctor로 bot 상태와 권한을 확인합니다.",
|
|
382
|
+
"help.discord.example.1": "프로젝트 채널 하나에 직원 검증 결과만 모아볼 수 있습니다.",
|
|
383
|
+
"help.discord.avoid.1": "DM 전달을 기대하는 경우",
|
|
384
|
+
"help.discord.related.1": "jaw doctor",
|
|
385
|
+
"help.discord.related.2": "Discord degraded mode",
|
|
386
|
+
"help.fallbackOrder.title": "Fallback",
|
|
387
|
+
"help.fallbackOrder.aria": "Fallback 도움말",
|
|
388
|
+
"help.fallbackOrder.intro": "현재 CLI가 실패하거나 사용 불가일 때 재시도할 CLI 순서를 정합니다.",
|
|
389
|
+
"help.fallbackOrder.effect": "선택한 순서대로 다른 CLI를 시도해 provider 장애나 quota 문제의 중단을 줄입니다.",
|
|
390
|
+
"help.fallbackOrder.use.1": "한 provider가 overloaded일 때 자동 백업을 쓰고 싶을 때",
|
|
391
|
+
"help.fallbackOrder.use.2": "긴 작업에서 중단 가능성을 줄이고 싶을 때",
|
|
392
|
+
"help.fallbackOrder.howTo.1": "Fallback 설정에서 재시도할 CLI 순서를 정합니다.",
|
|
393
|
+
"help.fallbackOrder.howTo.2": "디버깅 중에는 fallback을 끄거나 순서를 단순화합니다.",
|
|
394
|
+
"help.fallbackOrder.example.1": "Claude가 overloaded이면 Codex나 Gemini로 이어가도록 순서를 둘 수 있습니다.",
|
|
395
|
+
"help.fallbackOrder.avoid.1": "실패 원인을 즉시 멈춰서 디버깅해야 할 때",
|
|
396
|
+
"help.fallbackOrder.related.1": "/fallback",
|
|
397
|
+
"help.mcp.title": "MCP Servers",
|
|
398
|
+
"help.mcp.aria": "MCP 도움말",
|
|
399
|
+
"help.mcp.intro": "MCP 서버는 에이전트가 외부 도구와 리소스를 사용할 수 있게 연결합니다.",
|
|
400
|
+
"help.mcp.effect": "설치된 서버가 Claude, Codex, Gemini 등 여러 CLI의 도구 목록에 동기화됩니다.",
|
|
401
|
+
"help.mcp.use.1": "외부 앱, 데이터, 도구 접근이 필요한 작업을 할 때",
|
|
402
|
+
"help.mcp.use.2": "여러 CLI에 같은 도구 설정을 동기화할 때",
|
|
403
|
+
"help.mcp.howTo.1": "MCP 설정에서 서버를 추가하거나 jaw mcp install 명령을 사용합니다.",
|
|
404
|
+
"help.mcp.howTo.2": "설정 후 대상 CLI를 다시 열어 도구가 보이는지 확인합니다.",
|
|
405
|
+
"help.mcp.example.1": "filesystem MCP를 추가하면 에이전트가 허용된 폴더를 안정적으로 탐색할 수 있습니다.",
|
|
406
|
+
"help.mcp.avoid.1": "로컬 파일과 기본 도구만으로 충분한 작업",
|
|
407
|
+
"help.mcp.related.1": "/mcp",
|
|
408
|
+
"help.memory.title": "메모리",
|
|
409
|
+
"help.memory.aria": "메모리 도움말",
|
|
410
|
+
"help.memory.intro": "프로젝트 사실, 사용자 선호, 장기 컨텍스트를 세션 밖에 저장합니다.",
|
|
411
|
+
"help.memory.effect": "저장한 결정과 선호가 다음 세션이나 compact 이후에도 다시 검색되어 주입될 수 있습니다.",
|
|
412
|
+
"help.memory.use.1": "결정이나 선호를 다음 세션에도 유지해야 할 때",
|
|
413
|
+
"help.memory.use.2": "긴 프로젝트의 핵심 맥락을 보존해야 할 때",
|
|
414
|
+
"help.memory.howTo.1": "메모리 패널이나 cli-jaw memory 명령으로 검색, 읽기, 저장을 수행합니다.",
|
|
415
|
+
"help.memory.howTo.2": "장기 결정만 저장하고 임시 체크리스트나 원본 로그는 저장하지 않습니다.",
|
|
416
|
+
"help.memory.example.1": "\"이 프로젝트는 vanilla JS 유지\"는 저장하고, \"오늘 테스트 3개 남음\"은 저장하지 않습니다.",
|
|
417
|
+
"help.memory.avoid.1": "임시 체크리스트나 원본 로그를 그대로 저장하려는 경우",
|
|
418
|
+
"help.memory.related.1": "/memory",
|
|
419
|
+
"help.memory.related.2": "flush / bootstrap",
|
|
420
|
+
"help.stt.title": "음성 인식",
|
|
421
|
+
"help.stt.aria": "STT 도움말",
|
|
422
|
+
"help.stt.intro": "브라우저 음성 입력을 텍스트로 변환하는 설정입니다.",
|
|
423
|
+
"help.stt.effect": "음성 버튼으로 입력한 말이 선택된 STT 엔진을 거쳐 채팅 텍스트로 들어갑니다.",
|
|
424
|
+
"help.stt.use.1": "음성으로 긴 지시를 입력하고 싶을 때",
|
|
425
|
+
"help.stt.use.2": "Gemini, OpenAI, Whisper 중 STT 엔진을 고를 때",
|
|
426
|
+
"help.stt.howTo.1": "STT provider와 필요한 API 키를 설정합니다.",
|
|
427
|
+
"help.stt.howTo.2": "음성 버튼을 눌러 녹음한 뒤 변환된 텍스트를 확인합니다.",
|
|
428
|
+
"help.stt.example.1": "긴 회의 메모를 말로 입력한 뒤 에이전트에게 요약을 요청할 수 있습니다.",
|
|
429
|
+
"help.stt.avoid.1": "텍스트 입력만 쓰거나 API 키가 없는 경우",
|
|
430
|
+
"help.stt.related.1": "voice button",
|
|
431
|
+
"help.promptTemplates.title": "프롬프트 템플릿",
|
|
432
|
+
"help.promptTemplates.aria": "프롬프트 템플릿 도움말",
|
|
433
|
+
"help.promptTemplates.intro": "자주 쓰는 지시문을 재사용 가능한 템플릿으로 관리합니다.",
|
|
434
|
+
"help.promptTemplates.effect": "선택한 템플릿 내용이 새 요청에 반복 가능한 지시문으로 들어갑니다.",
|
|
435
|
+
"help.promptTemplates.use.1": "반복되는 작업 지시를 일관되게 넣고 싶을 때",
|
|
436
|
+
"help.promptTemplates.use.2": "긴 시스템성 지시를 직접 다시 쓰기 싫을 때",
|
|
437
|
+
"help.promptTemplates.howTo.1": "프롬프트 템플릿 모달에서 템플릿을 만들고 저장합니다.",
|
|
438
|
+
"help.promptTemplates.howTo.2": "반복 작업 전 해당 템플릿을 선택해 요청에 붙입니다.",
|
|
439
|
+
"help.promptTemplates.example.1": "매번 같은 코드 리뷰 기준을 붙여야 할 때 템플릿으로 저장합니다.",
|
|
440
|
+
"help.promptTemplates.avoid.1": "한 번만 쓸 짧은 지시인 경우",
|
|
441
|
+
"help.promptTemplates.related.1": "프롬프트 템플릿 모달"
|
|
442
|
+
}
|