cc-viewer 1.8.14 → 1.8.18
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/README.md +6 -5
- package/cli.js +19 -0
- package/concepts/ar/UltraPlan.md +1 -1
- package/concepts/da/UltraPlan.md +1 -1
- package/concepts/de/UltraPlan.md +1 -1
- package/concepts/en/UltraPlan.md +1 -1
- package/concepts/es/UltraPlan.md +1 -1
- package/concepts/fr/UltraPlan.md +1 -1
- package/concepts/it/UltraPlan.md +1 -1
- package/concepts/ja/UltraPlan.md +1 -1
- package/concepts/ko/UltraPlan.md +1 -1
- package/concepts/no/UltraPlan.md +1 -1
- package/concepts/pl/UltraPlan.md +1 -1
- package/concepts/pt-BR/UltraPlan.md +1 -1
- package/concepts/ru/UltraPlan.md +1 -1
- package/concepts/th/UltraPlan.md +1 -1
- package/concepts/tr/UltraPlan.md +1 -1
- package/concepts/uk/UltraPlan.md +1 -1
- package/concepts/zh/UltraPlan.md +1 -1
- package/concepts/zh-TW/UltraPlan.md +1 -1
- package/dist/assets/{App-ZWY7wiA3.js → App-C8h4oK-7.js} +2 -2
- package/dist/assets/{MdxEditorPanel-D89HBOrd.js → MdxEditorPanel-B2WzCeBQ.js} +1 -1
- package/dist/assets/{Mobile-CitUOMlD.js → Mobile-B9dwWsea.js} +1 -1
- package/dist/assets/{ProxyStatsModal-B92bNhle.js → ProxyStatsModal-sA62al0G.js} +1 -1
- package/dist/assets/index-Cp7ADaui.js +2 -0
- package/dist/assets/seqResourceLoaders-9Fe9dtRc.js +2 -0
- package/dist/assets/{seqResourceLoaders-B_FSQh3U.css → seqResourceLoaders-B0PEz0_d.css} +1 -1
- package/dist/index.html +1 -1
- package/node_modules/@ccv/core/src/context-rules.js +5 -0
- package/package.json +1 -1
- package/server/i18n.js +2 -2
- package/server/interceptor.js +176 -21
- package/server/lib/builtin-model-prompts.js +12 -1
- package/server/lib/create_system_prompt.js +94 -1
- package/server/lib/git-diff.js +49 -20
- package/server/lib/interceptor-core.js +144 -0
- package/server/lib/launch-config.js +83 -3
- package/server/lib/log-watcher.js +9 -1
- package/server/lib/model-system-prompts.js +6 -1
- package/server/lib/proxy/proxy-retry.js +57 -2
- package/server/lib/resume-watchdog.js +108 -0
- package/server/lib/session-id.js +33 -0
- package/server/lib/shell-hook-inspect.js +48 -0
- package/server/lib/system-prompt-files.js +14 -0
- package/server/lib/system-prompt-live.js +622 -0
- package/server/lib/v2/identity.js +3 -24
- package/server/lib/v2/session-select.js +11 -8
- package/server/lib/v2/v2-writer.js +13 -5
- package/server/proxy.js +32 -6
- package/server/routes/events.js +9 -3
- package/server/routes/preferences.js +6 -1
- package/server/routes/workspaces.js +3 -2
- package/server/server.js +33 -5
- package/server/system-prompt-templates/presets/GLM-5.2.md +2 -1
- package/server/system-prompt-templates/presets/GLM-5.3.md +2 -1
- package/server/system-prompt-templates/presets/{Qwen-3.7-Max.md → Qwen-3.md} +3 -2
- package/server/system-prompt-templates/presets/deepseek-v4-flash.md +2 -1
- package/server/system-prompt-templates/presets/deepseek-v4-pro.md +2 -1
- package/server/system-prompt-templates/presets/index.json +7 -7
- package/server/system-prompt-templates/presets/kimi-k2.7-code.md +3 -1
- package/server/system-prompt-templates/presets/kimi-k3.md +3 -1
- package/server/system-prompt-templates/systemPromptModel.md +0 -1
- package/ultraAgents/code-expert.json +1 -1
- package/dist/assets/index-OWc1WNdK.js +0 -2
- package/dist/assets/seqResourceLoaders-Bng7YSRv.js +0 -2
package/README.md
CHANGED
|
@@ -210,11 +210,12 @@ cc-viewer works in a single container or on a cloud host where you reach the UI
|
|
|
210
210
|
|
|
211
211
|
The **Edit System Prompt** modal (hamburger menu → Edit System Prompt) is tabbed:
|
|
212
212
|
|
|
213
|
-
*
|
|
214
|
-
* **Model tabs**:
|
|
215
|
-
*
|
|
216
|
-
*
|
|
217
|
-
|
|
213
|
+
* **Default** tab: writes `CC_SYSTEM.md` (override) or `CC_APPEND_SYSTEM.md` (append) into the workspace, injected on the next ccv launch.
|
|
214
|
+
* **Model tabs**: add a model by name (`opus`, `Gemini3`, …) in **Global** (`~/.claude/cc-viewer/system_prompt/`) or **Workspace** (`<project>/system_prompt/`) scope; each tab has its own Append/Override switch and preview. Names match fuzzily against the resolved model ID (so `opus` matches `claude-opus-4-8[1m]`); workspace beats global, longest name wins, a matched entry fully replaces the Default files.
|
|
215
|
+
* **Built-in presets**: tuned system prompts deeply adapted to the Kimi, DeepSeek, Qwen, and GLM families — injected automatically when the resolved model matches and no entry of yours does (your files always win). Disable one via its tab's ×.
|
|
216
|
+
* The system text follows hot-switched main models mid-session, pinned per session+model (KV-cache busted once at the switch). Saving a tab empty deletes the entry. Set `CCV_DISABLE_AUTO_SYSTEM_PROMPT=1` to disable all auto-injection, or `CCV_DISABLE_LIVE_SYSTEM_PROMPT=1` to disable only the mid-session follow.
|
|
217
|
+
|
|
218
|
+
**Continuing a session from the terminal:** `claude -c` / `claude -r` only keep the injected system prompt (and therefore the prompt-prefix KV cache) when the request goes through ccv. The shell hook installed by `ccv -logger` routes terminal `claude` calls through ccv — it takes effect in **new terminals** (or after sourcing your rc file). If you bypass it (hook missing, or invoking the claude binary directly), the resume launches with a different system text: the prefix cache is fully rewritten once (it re-warms on the next request; the detection is logged to the browser console). Cache entries also expire ~5 minutes after the last request regardless. When in doubt, continue sessions from the panel's continue entry, which always re-injects the full launch arguments.
|
|
218
219
|
|
|
219
220
|
### Logger mode (view the complete Claude Code session)
|
|
220
221
|
|
package/cli.js
CHANGED
|
@@ -14,6 +14,7 @@ import { t } from './server/i18n.js';
|
|
|
14
14
|
import { INJECT_IMPORT, LEGACY_INJECT_IMPORTS, resolveCliPath, resolvePreferredClaudeSelection, resolveNativePath, buildShellCandidates, setLogDir, LOG_DIR, hasClaude2xWrapper, getGlobalNodeModulesDir, PACKAGES, getClaudeConfigDir, isBrowserOpenSuppressed, applyAgentTeamsDefault } from './findcc.js';
|
|
15
15
|
import { ensureHooks, removeAllManagedHooks } from './server/lib/ensure-hooks.js';
|
|
16
16
|
import { injectCliJsAt, removeCliJsInjectionAt, INJECT_START as _INJECT_START, INJECT_END as _INJECT_END, buildInjectBlock as _buildInjectBlock } from './server/lib/cli-inject.js';
|
|
17
|
+
import { inspectShellHook } from './server/lib/shell-hook-inspect.js';
|
|
17
18
|
import { normalizeBasePath } from './server/lib/base-path.js';
|
|
18
19
|
import { mergeSettingsIntoArgs } from './server/lib/settings-merge.js';
|
|
19
20
|
import { splitSdkLaunchArgs, resolveLaunchSystemPrompt, insertBeforeDashDash } from './server/lib/launch-config.js';
|
|
@@ -36,6 +37,20 @@ const INJECT_BLOCK = _buildInjectBlock(INJECT_IMPORT);
|
|
|
36
37
|
const SHELL_HOOK_START = '# >>> CC-Viewer Auto-Inject >>>';
|
|
37
38
|
const SHELL_HOOK_END = '# <<< CC-Viewer Auto-Inject <<<';
|
|
38
39
|
|
|
40
|
+
// L1: hook 状态只读探针(server 侧经 /api/claude-settings 暴露;inspectShellHook 的
|
|
41
|
+
// 实现放 server/lib/shell-hook-inspect.js,cli.js 只注入自己的模板构造器做 stale 判定)。
|
|
42
|
+
const _inspectShellHookState = () => inspectShellHook(buildShellHook);
|
|
43
|
+
|
|
44
|
+
// 供 server(routes/preferences.js)读取 hook 状态:GUI 启动时把最近一次检查结果写到这里,
|
|
45
|
+
// 避免 server 反向 import side-effectful 的 cli.js。
|
|
46
|
+
export const shellHookState = { installed: null, stale: null, path: null, corrupt: null, checkedAt: null };
|
|
47
|
+
function refreshShellHookState() {
|
|
48
|
+
try {
|
|
49
|
+
const r = _inspectShellHookState();
|
|
50
|
+
Object.assign(shellHookState, r, { checkedAt: Date.now() });
|
|
51
|
+
} catch { /* 探针失败只退化为「未知」,绝不影响启动 */ }
|
|
52
|
+
}
|
|
53
|
+
|
|
39
54
|
const cliPath = resolveCliPath();
|
|
40
55
|
|
|
41
56
|
// Unified "claude not found" error message: distinguishes between "Claude Code 2.x wrapper
|
|
@@ -481,6 +496,10 @@ async function runCliMode(extraClaudeArgs = [], cwd, noOpen = false) {
|
|
|
481
496
|
// 确保 AskUserQuestion hook 已注册到 ~/.claude/settings.json
|
|
482
497
|
ensureHooks();
|
|
483
498
|
|
|
499
|
+
// L1: shell hook 状态检查(只读;结果经 shellHookState 暴露给 /api/claude-settings,
|
|
500
|
+
// 面板据此提示「重开终端使其生效」——绝不自动改用户 rc:删掉 = 不想装)。
|
|
501
|
+
refreshShellHookState();
|
|
502
|
+
|
|
484
503
|
// 2. 设置 CLI 模式标记(必须在 import proxy.js 之前,
|
|
485
504
|
// 因为 proxy.js → interceptor.js 可能触发 server.js 加载,
|
|
486
505
|
// server.js 的 isCliMode 在模块顶层求值且只执行一次)
|
package/concepts/ar/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/da/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/de/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/en/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/es/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/fr/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/it/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/ja/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/ko/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/no/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/pl/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/ru/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/th/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/tr/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/uk/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
package/concepts/zh/UltraPlan.md
CHANGED
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|
|
@@ -114,7 +114,7 @@ Workflow:
|
|
|
114
114
|
- Each teammate, according to their own role, covers the review dimensions one by one and independently outputs a report;
|
|
115
115
|
- After consolidating the reports, perform a cross-review to identify conflicts or shared concerns;
|
|
116
116
|
- Distill specific, actionable modification suggestions and annotate them with priority levels (P0/P1/P2/P3);
|
|
117
|
-
- Upon completion, adopt P0 items
|
|
117
|
+
- Upon completion, adopt P0 items; adopt P1 and P2 items selectively based on evaluation; disregard P3 items.
|
|
118
118
|
- After execution is complete, close the team (`TeamDelete`);
|
|
119
119
|
- If the `TeamDelete` tool is unavailable, notify each teammate to exit individually;
|
|
120
120
|
</system-reminder></textarea>
|