cc-viewer 1.0.7 → 1.0.9
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 +7 -4
- package/dist/assets/index-DQK_3R38.js +513 -0
- package/dist/assets/index-q9WR6TTz.css +1 -0
- package/dist/index.html +2 -2
- package/i18n.js +7 -14
- package/interceptor.js +4 -19
- package/locales/i18n.json +1402 -0
- package/package.json +1 -1
- package/server.js +33 -20
- package/dist/assets/index-Bf2poirE.js +0 -514
- package/dist/assets/index-C_eOlam6.css +0 -1
- package/locales/ar.json +0 -71
- package/locales/da.json +0 -71
- package/locales/de.json +0 -71
- package/locales/en.json +0 -73
- package/locales/es.json +0 -71
- package/locales/fr.json +0 -71
- package/locales/it.json +0 -71
- package/locales/ja.json +0 -71
- package/locales/ko.json +0 -71
- package/locales/no.json +0 -71
- package/locales/pl.json +0 -71
- package/locales/pt-BR.json +0 -71
- package/locales/ru.json +0 -71
- package/locales/th.json +0 -71
- package/locales/tr.json +0 -71
- package/locales/uk.json +0 -71
- package/locales/zh-TW.json +0 -71
- package/locales/zh.json +0 -78
package/README.md
CHANGED
|
@@ -40,6 +40,7 @@ ccv --uninstall
|
|
|
40
40
|
- One-click JSON content copy
|
|
41
41
|
- MainAgent requests support Body Diff JSON, showing a collapsible diff with the previous MainAgent request (only changed/added fields)
|
|
42
42
|
- Body Diff JSON tooltip is dismissible; once closed, the preference is persisted server-side and never shown again
|
|
43
|
+
- Inline token usage stats per request (input/output tokens, cache creation/read, hit rate)
|
|
43
44
|
|
|
44
45
|
### Chat Mode
|
|
45
46
|
|
|
@@ -48,13 +49,15 @@ Click the "Chat mode" button in the top right to parse Main Agent's full convers
|
|
|
48
49
|
- User messages right-aligned (blue bubbles), Main Agent replies left-aligned (dark bubbles) with Markdown rendering
|
|
49
50
|
- `/compact` messages auto-detected and displayed collapsed, click to expand full summary
|
|
50
51
|
- Tool call results displayed inline within the corresponding Assistant message
|
|
51
|
-
- `thinking` blocks collapsed by default, click to expand
|
|
52
|
+
- `thinking` blocks collapsed by default, rendered as Markdown, click to expand
|
|
52
53
|
- `tool_use` shown as compact tool call cards (Bash, Read, Edit, Write, Glob, Grep, Task each have dedicated displays)
|
|
54
|
+
- Task (SubAgent) tool results rendered as Markdown
|
|
53
55
|
- User selection messages (AskUserQuestion) shown in Q&A format
|
|
54
56
|
- System tags (`<system-reminder>`, `<project-reminder>`, etc.) auto-collapsed
|
|
55
57
|
- System text auto-filtered, showing only real user input
|
|
56
58
|
- Multi-session segmented display (auto-segmented after `/compact`, `/clear`, etc.)
|
|
57
|
-
- Each message shows a timestamp accurate to the second
|
|
59
|
+
- Each message shows a timestamp accurate to the second, derived from API request timing
|
|
60
|
+
- Settings panel: toggle default collapse state for tool results and thinking blocks
|
|
58
61
|
|
|
59
62
|
### Token Stats
|
|
60
63
|
|
|
@@ -71,8 +74,8 @@ Via the CC-Viewer dropdown menu in the top left:
|
|
|
71
74
|
- Import local logs: browse historical log files, grouped by project, opens in new window
|
|
72
75
|
- Load local JSONL file: directly select and load a local `.jsonl` file (up to 200MB)
|
|
73
76
|
- Download current log: download the current monitoring JSONL log file
|
|
74
|
-
- Export user prompts: extract and display all user inputs, with system-reminder collapsible
|
|
75
|
-
- Export prompts to TXT: export user prompts to a local `.txt` file
|
|
77
|
+
- Export user prompts: extract and display all user inputs, with XML tags (system-reminder, etc.) collapsible; slash commands (`/model`, `/context`, etc.) shown as standalone entries; command-related tags auto-hidden from prompt content
|
|
78
|
+
- Export prompts to TXT: export user prompts (text only, excluding system tags) to a local `.txt` file
|
|
76
79
|
|
|
77
80
|
### Multi-language Support
|
|
78
81
|
|