fix(web): clarify shipped preset capabilities

This commit is contained in:
Yichen Jiang
2026-08-10 19:40:19 +08:00
parent 08b85654f4
commit 5e3dd2fd34
16 changed files with 49 additions and 48 deletions

View File

@@ -35,16 +35,17 @@ export const en: Record<AgentPresetSettingsKey, string> = {
setDefault: 'Set as default',
view: 'View',
presetStandardName: 'Standard mode',
presetStandardDescription: 'Full coding agent with file editing, shell, search, planning, delegation, and workflows.',
presetStandardDescription:
'Full coding agent with file editing, shell, file and web search, skills, planning, goals, subagents, and workflows.',
presetCodeName: 'Code mode',
presetCodeDescription:
'Presents Standard mode\'s tools through Code Mode: the model writes TypeScript against an SDK and runs it once instead of making multiple tool calls.',
'All Standard mode capabilities, with tools exposed through the Code Mode SDK so the model can combine multi-step operations in one TypeScript program.',
presetMinimalName: 'Minimal mode',
presetMinimalDescription:
'Exposes only bash and str_replace_editor to the model, for benchmarks and minimal reproductions.',
'Two-tool coding agent with only bash and str_replace_editor, for benchmarks and minimal reproductions.',
presetCordisName: 'Creator mode',
presetCordisDescription:
'Adds self-inspection tools to Standard mode, so it can read and modify its own running composition and create new presets from it.',
'Adds Cordis runtime inspection, temporary-plugin experiments, and preset-authoring guidance to Standard mode for creating new agent presets; experiments affect only the current runtime and do not modify the built-in preset.',
duplicate: 'Duplicate',
duplicateUnavailable: 'This deployment has no writable preset directory',
delete: 'Delete',
@@ -98,13 +99,13 @@ export const zh: Record<AgentPresetSettingsKey, string> = {
setDefault: '设为默认',
view: '查看',
presetStandardName: '标准模式',
presetStandardDescription: '完整的编码 agent文件读写、shell、检索、计划、委派与工作流。',
presetStandardDescription: '功能完整的编码 Agent支持文件编辑、Shell、文件与网页检索、Skills、计划、目标、子代理和工作流。',
presetCodeName: '代码模式',
presetCodeDescription: '标准模式的工具改为 Code Mode 呈现:模型写一段 TypeScript 调用 SDK一次执行代替多轮工具调用。',
presetCodeDescription: '具备标准模式的全部能力,并通过 Code Mode SDK 呈现工具,让模型用一个 TypeScript 程序组合多步操作。',
presetMinimalName: '极简模式',
presetMinimalDescription: '只向模型呈现 bash 与 str_replace_editor,适合 benchmark 与最小复现。',
presetMinimalDescription: '仅提供 bash 与 str_replace_editor 的双工具编码 Agent用于基准测试和最小复现。',
presetCordisName: '创造模式',
presetCordisDescription: '标准模式加上自指工具集,可以读改自己运行的这套组装,并据此创作新的预设。',
presetCordisDescription: '标准模式上增加 Cordis 运行时检查、临时插件实验和 preset 创作指导,用于创建新的 Agent preset临时实验仅影响当前运行时不会修改内置 preset。',
duplicate: '复制',
duplicateUnavailable: '此部署未配置可写的预设目录',
delete: '删除',