cc-viewer 1.6.215 → 1.6.216
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 +16 -15
- package/dist/assets/{App--3RHsUVw.js → App-B9pJjP34.js} +1 -1
- package/dist/assets/{AppHeader-DUNIZWmS.css → AppHeader-BJMwwuPA.css} +2 -2
- package/dist/assets/{AppHeader.module-BOLvJtso.js → AppHeader.module-DGlWZXjI.js} +2 -2
- package/dist/assets/{MdxEditorPanel-Dulg8GYx.js → MdxEditorPanel-B2iZWhvH.js} +1 -1
- package/dist/assets/{MdxEditorPanel-DtahKs8-.css → MdxEditorPanel-BgYng1f-.css} +1 -1
- package/dist/assets/{Mobile-BDbmLPLA.js → Mobile-CNdm2R0s.js} +1 -1
- package/dist/assets/{index-xm0FJ5GP.js → index-CwV0ECbH.js} +2 -2
- package/dist/index.html +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,46 +3,47 @@
|
|
|
3
3
|
|
|
4
4
|
# CC-Viewer
|
|
5
5
|
|
|
6
|
-
A Vibe Coding toolkit distilled from
|
|
6
|
+
A Vibe Coding toolkit distilled from hands-on development experience, built on top of Claude Code:
|
|
7
7
|
|
|
8
|
-
1.
|
|
9
|
-
2.
|
|
10
|
-
3. Full Claude Code payload interception and analysis
|
|
11
|
-
4.
|
|
12
|
-
5.
|
|
8
|
+
1. Push the capability ceiling — run /ultraPlan and /ultraReview locally, so your project code never has to be fully exposed to Claude's cloud;
|
|
9
|
+
2. Multi-device adaptive — code from mobile devices over your local network, the web build adapts to every scenario for embedding into browser extensions or OS split views, and a native installer is also provided;
|
|
10
|
+
3. Full audit trail — full Claude Code payload interception and analysis, perfect for logging, debugging, learning, and reverse-engineering;
|
|
11
|
+
4. Knowledge sharing — comes with accumulated study notes and hands-on experience (look for the "?" icons throughout the app);
|
|
12
|
+
5. Native experience preserved — only augments Claude Code's capabilities without any substantive changes to its core, keeping the native experience intact;
|
|
13
|
+
6. Third-party model support — works with deepseek-v4-*, GLM 5.1, Kimi K2.6, with built-in cc-switch capability for hot-swapping third-party tools at any time.
|
|
13
14
|
|
|
14
15
|
English | [简体中文](./docs/README.zh.md) | [繁體中文](./docs/README.zh-TW.md) | [한국어](./docs/README.ko.md) | [日本語](./docs/README.ja.md) | [Deutsch](./docs/README.de.md) | [Español](./docs/README.es.md) | [Français](./docs/README.fr.md) | [Italiano](./docs/README.it.md) | [Dansk](./docs/README.da.md) | [Polski](./docs/README.pl.md) | [Русский](./docs/README.ru.md) | [العربية](./docs/README.ar.md) | [Norsk](./docs/README.no.md) | [Português (Brasil)](./docs/README.pt-BR.md) | [ไทย](./docs/README.th.md) | [Türkçe](./docs/README.tr.md) | [Українська](./docs/README.uk.md)
|
|
15
16
|
|
|
16
17
|
## Usage
|
|
17
18
|
|
|
18
|
-
###
|
|
19
|
+
### Prerequisites
|
|
20
|
+
|
|
21
|
+
- Make sure Node.js 22.0.0+ is installed; [download & install](https://nodejs.org)
|
|
22
|
+
- Make sure Claude Code is installed; [installation guide](https://github.com/anthropics/claude-code)
|
|
23
|
+
|
|
24
|
+
### Install ccv
|
|
19
25
|
|
|
20
26
|
```bash
|
|
21
27
|
npm install -g cc-viewer --registry=https://registry.npmjs.org
|
|
22
28
|
```
|
|
23
29
|
|
|
24
|
-
###
|
|
30
|
+
### Launch
|
|
25
31
|
|
|
26
32
|
ccv is a drop-in replacement for claude — all arguments are passed through to claude while launching the Web Viewer.
|
|
27
33
|
|
|
28
34
|
```bash
|
|
29
35
|
ccv # == claude (interactive mode)
|
|
30
|
-
ccv -c # == claude --continue (continue last conversation)
|
|
31
|
-
ccv -r # == claude --resume (resume a conversation)
|
|
32
|
-
ccv -p "hello" # == claude --print "hello" (print mode)
|
|
33
|
-
ccv --d # == claude --dangerously-skip-permissions (shortcut)
|
|
34
|
-
ccv --model opus # == claude --model opus
|
|
35
36
|
```
|
|
36
37
|
|
|
37
38
|
The author's most-used command is:
|
|
38
39
|
```
|
|
39
40
|
ccv -c --d # == claude --continue --dangerously-skip-permissions
|
|
41
|
+
# ccv passes through all Claude Code launch arguments — combine them however you like
|
|
40
42
|
```
|
|
41
43
|
|
|
42
44
|
After launching in programming mode, a web page will open automatically.
|
|
43
45
|
|
|
44
|
-
CC-Viewer also ships as a native desktop app
|
|
45
|
-
[Download page](https://github.com/weiesky/cc-viewer/releases)
|
|
46
|
+
CC-Viewer also ships as a native desktop app: [Download page](https://github.com/weiesky/cc-viewer/releases)
|
|
46
47
|
|
|
47
48
|
|
|
48
49
|
### Logger Mode
|