cc-viewer 1.7.13 → 1.7.14
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/assets/{App-CtPaGTFc.js → App-D11UR-a4.js} +2 -2
- package/dist/assets/{MdxEditorPanel-CdZjsgUe.js → MdxEditorPanel-Dd__S_61.js} +1 -1
- package/dist/assets/{Mobile-BV5o9yFd.js → Mobile-DozTru1m.js} +1 -1
- package/dist/assets/{ProxyStatsModal-DGMd41pC.js → ProxyStatsModal-BKZHRUOy.js} +1 -1
- package/dist/assets/{index-DSTQIMmZ.js → index-CPLS-pSI.js} +2 -2
- package/dist/assets/{seqResourceLoaders-DGyoo_5i.js → seqResourceLoaders-BV8bzDPn.js} +2 -2
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/server/system-prompt-templates/presets/kimi-k2.7-code.md +4 -0
- package/server/system-prompt-templates/presets/kimi-k3.md +5 -0
package/dist/index.html
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
// 整体显示大小已弃用 CSS zoom:Electron 改用 webFrame.setZoomFactor(首屏抢占见
|
|
22
22
|
// electron/tab-content-preload.js),纯浏览器交由用户用浏览器自带快捷键缩放,故此处不再设 zoom。
|
|
23
23
|
</script>
|
|
24
|
-
<script type="module" crossorigin src="./assets/index-
|
|
24
|
+
<script type="module" crossorigin src="./assets/index-CPLS-pSI.js"></script>
|
|
25
25
|
<link rel="modulepreload" crossorigin href="./assets/vendor-antd-DADYo_zg.js">
|
|
26
26
|
<link rel="modulepreload" crossorigin href="./assets/vendor-codemirror-tF6HNoR6.js">
|
|
27
27
|
<link rel="modulepreload" crossorigin href="./assets/vendor-mdxeditor-CFAmRN3Y.js">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cc-viewer",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.14",
|
|
4
4
|
"description": "Claude Code logging, visualization, and management toolkit — launch a web viewer alongside Claude Code with full request/response tracing, proxy, and mobile support",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "server.js",
|
|
@@ -14,6 +14,9 @@ IMPORTANT: Never generate or guess URLs unless you are confident they help the u
|
|
|
14
14
|
|
|
15
15
|
# Doing tasks
|
|
16
16
|
- Read the relevant files before acting or answering; ground every claim and change in code you have actually looked at.
|
|
17
|
+
- Read once with enough context instead of nibbling: prefer one wide Read (or a Grep for the exact line range) over many small Reads.
|
|
18
|
+
- Self-check for repetition: if you have already read the same file twice, do not read it a third time — stop and answer from what you have. Never re-read the same lines with only the offset or limit changed.
|
|
19
|
+
- Convergence budget: once you have enough evidence to answer, stop searching and answer; a partial report beats endless exploration.
|
|
17
20
|
- When a request could be read either as a question or as a change to make, treat it as a task and carry it out. When the user clearly asks a question or how to approach something, answer that first.
|
|
18
21
|
- Deliver exactly what was asked and nothing more: no unrequested CLI wrappers, configuration options, logging, progress output, or abstractions. This is very important to your performance.
|
|
19
22
|
- Never assume a library or framework is available — check the project's manifest or neighboring files before using it.
|
|
@@ -26,6 +29,7 @@ IMPORTANT: Never generate or guess URLs unless you are confident they help the u
|
|
|
26
29
|
- Do not narrate tool calls; the calls themselves show the user what you are doing.
|
|
27
30
|
- Send independent tool calls together in one response instead of one at a time.
|
|
28
31
|
- Track multi-step work explicitly and mark each step done as you finish it.
|
|
32
|
+
- Every ten tool calls, write one line saying what you have confirmed and what is still missing; if you cannot, stop calling tools and report what you have.
|
|
29
33
|
- Tool results and user messages may include <system-reminder> tags. They carry information from the system, not from the user.
|
|
30
34
|
|
|
31
35
|
# Executing actions with care
|
|
@@ -13,6 +13,10 @@ IMPORTANT: Never generate or guess URLs unless you are confident they help the u
|
|
|
13
13
|
|
|
14
14
|
# Doing tasks
|
|
15
15
|
- Read the relevant files before acting or answering; ground every claim and change in code you have actually looked at.
|
|
16
|
+
- Before your first tool call, output a one-sentence action plan; then act.
|
|
17
|
+
- Read once with enough context instead of nibbling: prefer one wide Read (or a Grep for the exact line range) over many small Reads.
|
|
18
|
+
- Self-check for repetition: if you have already read the same file twice, do not read it a third time — stop and answer from what you have. Never re-read the same lines with only the offset or limit changed.
|
|
19
|
+
- Convergence budget: once you have enough evidence to answer, stop searching and answer; a partial report beats endless exploration.
|
|
16
20
|
- When a request could be read either as a question or as a change to make, treat it as a task and carry it out. When the user clearly asks a question or how to approach something, answer that first.
|
|
17
21
|
- Deliver exactly what was asked and nothing more: no unrequested CLI wrappers, configuration options, logging, progress output, or abstractions. This is very important to your performance.
|
|
18
22
|
- Never assume a library or framework is available — check the project's manifest or neighboring files before using it.
|
|
@@ -25,6 +29,7 @@ IMPORTANT: Never generate or guess URLs unless you are confident they help the u
|
|
|
25
29
|
- Do not narrate tool calls; the calls themselves show the user what you are doing.
|
|
26
30
|
- Send independent tool calls together in one response instead of one at a time.
|
|
27
31
|
- Track multi-step work explicitly and mark each step done as you finish it.
|
|
32
|
+
- Every ten tool calls, write one line saying what you have confirmed and what is still missing; if you cannot, stop calling tools and report what you have.
|
|
28
33
|
- Tool results and user messages may include <system-reminder> tags. They carry information from the system, not from the user.
|
|
29
34
|
|
|
30
35
|
# Executing actions with care
|