chatccc 0.2.241 → 0.2.242
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/bin/cccagent.mjs +1 -1
- package/deepccc-agent/LICENSE +201 -0
- package/deepccc-agent/README.md +291 -0
- package/deepccc-agent/bin/deepccc.mjs +26 -0
- package/deepccc-agent/docs/cache-hit-rate-1.jpg +0 -0
- package/deepccc-agent/docs/cache-hit-rate-2.jpg +0 -0
- package/deepccc-agent/package-lock.json +1959 -0
- package/deepccc-agent/package.json +62 -0
- package/deepccc-agent/src/__tests__/chat-session.test.ts +522 -0
- package/deepccc-agent/src/__tests__/cli-json.test.ts +49 -0
- package/deepccc-agent/src/__tests__/config.test.ts +26 -0
- package/deepccc-agent/src/__tests__/context.test.ts +319 -0
- package/deepccc-agent/src/__tests__/file-tools.test.ts +240 -0
- package/deepccc-agent/src/__tests__/permissions.test.ts +195 -0
- package/deepccc-agent/src/__tests__/privacy.test.ts +311 -0
- package/deepccc-agent/src/__tests__/progress-reducer.test.ts +121 -0
- package/deepccc-agent/src/__tests__/session-search.test.ts +262 -0
- package/deepccc-agent/src/__tests__/session-select.test.ts +116 -0
- package/deepccc-agent/src/__tests__/sigint.test.ts +56 -0
- package/deepccc-agent/src/__tests__/skills.test.ts +284 -0
- package/deepccc-agent/src/__tests__/terminal-renderer.test.ts +247 -0
- package/deepccc-agent/src/__tests__/web-tools.test.ts +220 -0
- package/deepccc-agent/tsconfig.build.json +13 -0
- package/deepccc-agent/tsconfig.json +13 -0
- package/deepccc-agent/vitest.config.ts +7 -0
- package/package.json +3 -1
- package/src/__tests__/builtin-chat-session.test.ts +17 -17
- package/src/__tests__/builtin-config.test.ts +2 -2
- package/src/__tests__/builtin-context.test.ts +1 -1
- package/src/__tests__/builtin-file-tools.test.ts +1 -1
- package/src/__tests__/builtin-permissions.test.ts +4 -4
- package/src/__tests__/builtin-session-search.test.ts +1 -1
- package/src/__tests__/builtin-session-select.test.ts +2 -2
- package/src/__tests__/builtin-sigint.test.ts +1 -1
- package/src/__tests__/builtin-skills.test.ts +1 -1
- package/src/__tests__/builtin-web-tools.test.ts +1 -1
- package/src/__tests__/progress-reducer.test.ts +1 -1
- package/src/adapters/ccc-adapter.ts +2 -2
- package/src/progress/reducer.ts +1 -1
- /package/{src/builtin → deepccc-agent/src}/cli.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/config.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/context.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/file-log.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/file-tools.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/index.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/permissions.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/privacy.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/proc-tree-kill.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/progress/cards-helpers.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/progress/reducer.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/progress/terminal-renderer.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/progress/view.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/raw-stream-log.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/session-search.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/session-select.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/sigint.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/skills.ts +0 -0
- /package/{src/builtin → deepccc-agent/src}/web-tools.ts +0 -0
package/bin/cccagent.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { dirname, join } from "node:path";
|
|
|
5
5
|
|
|
6
6
|
const require = createRequire(import.meta.url);
|
|
7
7
|
const pkgRoot = dirname(require.resolve("../package.json"));
|
|
8
|
-
const cliTs = join(pkgRoot, "
|
|
8
|
+
const cliTs = join(pkgRoot, "deepccc-agent", "src", "cli.ts");
|
|
9
9
|
const tsxCli = require.resolve("tsx/cli");
|
|
10
10
|
|
|
11
11
|
const result = spawnSync(process.execPath, [tsxCli, cliTs, ...process.argv.slice(2)], {
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
# deepccc
|
|
2
|
+
|
|
3
|
+
`deepccc` 是一个轻量级本地编程 Agent,针对 DeepSeek 使用体验做了优化,同时支持其他 OpenAI-compatible 模型接口。
|
|
4
|
+
|
|
5
|
+
它提供交互式命令行、JSONL 流式输出、本地文件工具、命令执行、项目提示词自动注入和持久化上下文。
|
|
6
|
+
|
|
7
|
+
## 当前状态
|
|
8
|
+
|
|
9
|
+
代码已经开源在 GitHub:
|
|
10
|
+
|
|
11
|
+
https://github.com/wzj998/deepccc-agent
|
|
12
|
+
|
|
13
|
+
npm 包名规划为 `deepccc`。如果 npm 包已经发布,可以直接全局安装:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install -g deepccc
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
如果还没有发布,可以从源码运行:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
git clone https://github.com/wzj998/deepccc-agent.git
|
|
23
|
+
cd deepccc-agent
|
|
24
|
+
npm install
|
|
25
|
+
npm run build
|
|
26
|
+
node bin/deepccc.mjs --help
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
运行要求:
|
|
30
|
+
|
|
31
|
+
- Node.js >= 20
|
|
32
|
+
- DeepSeek 或其他 OpenAI-compatible 模型服务的 API Key
|
|
33
|
+
|
|
34
|
+
## 缓存命中率
|
|
35
|
+
|
|
36
|
+
deepccc 的本地缓存优化实测命中率 **96.7%**,有效降低重复请求开销,让响应更快、更省成本。
|
|
37
|
+
|
|
38
|
+

|
|
39
|
+
|
|
40
|
+

|
|
41
|
+
|
|
42
|
+
## 配置
|
|
43
|
+
|
|
44
|
+
最快的方式是使用环境变量:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
export DEEPCCC_API_KEY="sk-..."
|
|
48
|
+
export DEEPCCC_BASE_URL="https://api.deepseek.com/v1"
|
|
49
|
+
export DEEPCCC_MODEL="deepseek-v4-pro"
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Windows PowerShell:
|
|
53
|
+
|
|
54
|
+
```powershell
|
|
55
|
+
$env:DEEPCCC_API_KEY="sk-..."
|
|
56
|
+
$env:DEEPCCC_BASE_URL="https://api.deepseek.com/v1"
|
|
57
|
+
$env:DEEPCCC_MODEL="deepseek-v4-pro"
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
也兼容这些 DeepSeek 别名:
|
|
61
|
+
|
|
62
|
+
- `DEEPSEEK_API_KEY`
|
|
63
|
+
- `DEEPSEEK_BASE_URL`
|
|
64
|
+
- `DEEPSEEK_MODEL`
|
|
65
|
+
- `DEEPSEEK_EFFORT`
|
|
66
|
+
|
|
67
|
+
也可以创建 `~/.deepccc/config.json`:
|
|
68
|
+
|
|
69
|
+
```json
|
|
70
|
+
{
|
|
71
|
+
"apiKey": "sk-...",
|
|
72
|
+
"baseURL": "https://api.deepseek.com/v1",
|
|
73
|
+
"model": "deepseek-v4-pro",
|
|
74
|
+
"effort": "",
|
|
75
|
+
"rawStreamLogs": {
|
|
76
|
+
"enabled": false,
|
|
77
|
+
"maxBytesPerTurn": 1048576,
|
|
78
|
+
"retentionDays": 7,
|
|
79
|
+
"keepCompleted": false
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## 命令行交互
|
|
85
|
+
|
|
86
|
+
在当前目录启动一个交互式 Agent:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
deepccc
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
指定其他模型或 OpenAI-compatible 接口:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
deepccc --base-url https://api.openai.com/v1 --api-key "$OPENAI_API_KEY" --model gpt-4.1
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
指定工作目录:
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
deepccc --cwd /path/to/project
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
恢复当前工作目录最近一次会话:
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
deepccc --resume
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
设置工具调用步数上限:
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
deepccc --max-steps 20
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
默认情况下,`deepccc` 不设置固定步数上限,会让模型自然完成工具循环。
|
|
117
|
+
|
|
118
|
+
设置推理强度(reasoning effort):
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
deepccc --effort high
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
可选值:`none` / `minimal` / `low` / `medium` / `high` / `xhigh` / `max`(留空则不传 `reasoning_effort` 请求字段)。
|
|
125
|
+
|
|
126
|
+
## 权限机制
|
|
127
|
+
|
|
128
|
+
`deepccc` 内置轻量权限机制,对标主流 agent 的审批体验:**只拦截有副作用的操作**(`run_command` 与文件写操作),只读工具(`read_file` / `list_dir` / `search_code`)永不拦截,常规文件编辑默认放行不打断工作流。
|
|
129
|
+
|
|
130
|
+
默认模式(`ask`)下,只有**命中内置危险命令库**的高危命令才会询问,例如:
|
|
131
|
+
|
|
132
|
+
- `rm -rf` / `rm -fr` / `del /s` / `rmdir /s` 等强制删除
|
|
133
|
+
- `git push --force` / `git reset --hard` / `git clean -f` 等破坏性 git 操作
|
|
134
|
+
- `format` / `diskpart` / `mkfs` / `dd of=设备` 等磁盘操作
|
|
135
|
+
- `shutdown` / `reboot` 等系统操作
|
|
136
|
+
- `drop table` / `truncate table` 等数据库操作
|
|
137
|
+
- `npm publish` / `npm uninstall -g` / `pip uninstall` 等发布与全局卸载
|
|
138
|
+
|
|
139
|
+
交互模式下,高危命令会暂停并询问:
|
|
140
|
+
|
|
141
|
+
```text
|
|
142
|
+
⚠️ 高危操作需要确认
|
|
143
|
+
运行命令: rm -rf node_modules
|
|
144
|
+
允许一次(y) / 永远允许(a) / 拒绝(n) / 本会话允许所有(g) >
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
- `y` — 允许本次
|
|
148
|
+
- `a` — 永远允许,写入 `~/.deepccc/allow.json`
|
|
149
|
+
- `n` — 拒绝本次
|
|
150
|
+
- `g` — 本会话内全部放行(不落盘)
|
|
151
|
+
|
|
152
|
+
### 规则文件 `~/.deepccc/allow.json`
|
|
153
|
+
|
|
154
|
+
规则格式为 `"<工具>:<模式>"`(`*` 为通配符,`*:` 匹配所有工具),支持相对/绝对路径:
|
|
155
|
+
|
|
156
|
+
```json
|
|
157
|
+
{
|
|
158
|
+
"allow": [
|
|
159
|
+
"run_command:git status*",
|
|
160
|
+
"run_command:git push --force origin release*"
|
|
161
|
+
],
|
|
162
|
+
"deny": [
|
|
163
|
+
"edit_file:node_modules/**",
|
|
164
|
+
"run_command:npm publish*"
|
|
165
|
+
]
|
|
166
|
+
}
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
`deny` 命中永远拒绝,`allow` 命中永远放行(可覆盖高危判定)。文件变更后自动热加载,无需重启。
|
|
170
|
+
|
|
171
|
+
### 非交互模式与 bypass
|
|
172
|
+
|
|
173
|
+
`--stream-json` 或程序化调用(无终端可交互)时,高危命令**安全默认拒绝**。需要全自动场景可显式传入:
|
|
174
|
+
|
|
175
|
+
```bash
|
|
176
|
+
deepccc --dangerously-bypass-permissions
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
该参数与 `ChatSession` 的 `permissionMode: "bypass"` 等价,也是 chatccc 集成 deepccc 时使用的模式(对齐 chatccc 调用 Claude Code / Codex 的 bypass 方式)。
|
|
180
|
+
|
|
181
|
+
## 终端过程区块
|
|
182
|
+
|
|
183
|
+
交互模式下,每轮回复渲染为固定"过程区块":状态行(压缩上下文中/生成回复中/完成/已停止/异常结束)+ 折叠工具行 + 原地更新正文,不滚屏刷 JSON。活动状态有心跳点号动画;完成/停止/异常后区块定型留在屏幕上。
|
|
184
|
+
|
|
185
|
+
持久化上下文达到 token 阈值时,deepccc 会先按 token 预算保留最近消息,再压缩较早内容;超长历史消息、工具记录和压缩输入会被限长,避免单次摘要请求反复吞入巨量文本。一次压缩最多等待 5 分钟,超时或摘要失败会给出明确错误,不会自动重放用户请求。
|
|
186
|
+
|
|
187
|
+
如果终端渲染出现异常,可以强制回退为纯文本流式输出:
|
|
188
|
+
|
|
189
|
+
```bash
|
|
190
|
+
deepccc --plain
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
## JSONL 流式输出
|
|
194
|
+
|
|
195
|
+
JSONL 模式适合脚本、服务端集成或其他上层系统调用:
|
|
196
|
+
|
|
197
|
+
```bash
|
|
198
|
+
deepccc --stream-json --prompt "检查这个仓库并总结测试命令"
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
也可以从 stdin 传入提示词:
|
|
202
|
+
|
|
203
|
+
```bash
|
|
204
|
+
echo "运行测试并解释失败原因" | deepccc --stream-json
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
输出是逐行 JSON:
|
|
208
|
+
|
|
209
|
+
```jsonl
|
|
210
|
+
{"type":"start","session_id":"session-...","mode":"new","cwd":"/repo","model":"deepseek-v4-pro"}
|
|
211
|
+
{"type":"status","phase":"compacting"}
|
|
212
|
+
{"type":"compact","compactedMessages":12}
|
|
213
|
+
{"type":"status","phase":"generating"}
|
|
214
|
+
{"type":"text_delta","text":"...","accumulated":"..."}
|
|
215
|
+
{"type":"tool_call","id":"call_...","name":"read_file","input":{"path":"package.json"}}
|
|
216
|
+
{"type":"tool_result","tool_call_id":"call_...","name":"read_file","content":{},"is_error":false}
|
|
217
|
+
{"type":"done","text":"..."}
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
## 在 ChatCCC 中使用
|
|
221
|
+
|
|
222
|
+
**ChatCCC 已内置 deepccc**:ChatCCC 的 "CCC Agent" 工具直接内嵌 deepccc 的代码(仓库内 `deepccc-agent/` 子目录),以 `permissionMode: "bypass"` 全自动运行,无需单独安装或配置本仓库。
|
|
223
|
+
|
|
224
|
+
ChatCCC 是一个把 Claude Code / Codex / Cursor / CCC Agent 聚合到飞书/企微等 IM 消息通道的本地机器人框架,提供会话管理、过程卡片、用量统计与隐私替换等能力。
|
|
225
|
+
|
|
226
|
+
- 公有仓库:https://github.com/wzj998/ChatCCC
|
|
227
|
+
- npm 包:`chatccc`(`npm install -g chatccc`)
|
|
228
|
+
|
|
229
|
+
在 ChatCCC 会话里可以使用隐藏指令创建 `deepccc` Agent 会话:
|
|
230
|
+
|
|
231
|
+
```text
|
|
232
|
+
/new ccc
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
这种方式适合已经在 ChatCCC 里协作的场景:ChatCCC 负责会话入口和消息通道,`deepccc` 负责本地编程 Agent 能力,包括读取项目提示词、运行命令、编辑文件和输出流式结果。
|
|
236
|
+
|
|
237
|
+
deepccc 的内核主战场在 ChatCCC 仓库的 `deepccc-agent/` 子目录;本仓库(deepccc-agent)是发布镜像,由 ChatCCC 仓库的 `sync-deepccc.mjs` 目录级同步(多的删、少的补、不同的改),之后 `npm run build && npm publish` 发布独立 `deepccc` 包。
|
|
238
|
+
|
|
239
|
+
## 项目提示词自动注入
|
|
240
|
+
|
|
241
|
+
会话启动时,`deepccc` 会从当前工作目录读取这些文件,如果存在就注入为项目级提示词:
|
|
242
|
+
|
|
243
|
+
- `AGENTS.md`
|
|
244
|
+
- `AGENTS.local.md`
|
|
245
|
+
- `CLAUDE.md`
|
|
246
|
+
- `CLAUDE.local.md`
|
|
247
|
+
|
|
248
|
+
这些内容会放在固定系统提示词之后,作为项目指导使用。
|
|
249
|
+
|
|
250
|
+
## Skills 自动加载
|
|
251
|
+
|
|
252
|
+
`deepccc` 会并行扫描本机 **Claude / Codex / Cursor / DeepCCC** 四套生态的目录式 skill(`<name>/SKILL.md`,含 `name` + `description` frontmatter),把索引注入系统提示词;模型在任务匹配时先用 `read_file` 读取 `SKILL.md` 全文再执行。
|
|
253
|
+
|
|
254
|
+
自动加载的目录(按优先级从低到高排列,扫描时后者覆盖前者):
|
|
255
|
+
|
|
256
|
+
| 目录 | 来源 | 级别 |
|
|
257
|
+
| --- | --- | --- |
|
|
258
|
+
| `~/.claude/skills` | claude | 用户级 |
|
|
259
|
+
| `<cwd>/.claude/skills` | claude | 项目级 |
|
|
260
|
+
| `~/.cursor/skills` | cursor | 用户级 |
|
|
261
|
+
| `<cwd>/.cursor/skills` | cursor | 项目级 |
|
|
262
|
+
| `~/.codex/skills` | codex | 用户级 |
|
|
263
|
+
| `~/.agents/skills` | codex | 用户级(标准全局目录) |
|
|
264
|
+
| `<cwd>/.codex/skills` | codex | 项目级 |
|
|
265
|
+
| `~/.deepccc/skills` | deepccc | 用户级 |
|
|
266
|
+
| `<cwd>/.deepccc/skills` | deepccc | 项目级 |
|
|
267
|
+
|
|
268
|
+
**同名去重优先级(高 → 低):`deepccc` > `codex` > `cursor` > `claude`**;同一来源内:**项目级(project)> 用户级(global)**。扫描时低优先级先入索引、高优先级同名覆盖,天然实现优先级。
|
|
269
|
+
|
|
270
|
+
扫描带 mtime 热加载缓存:SKILL.md 内容变化自动重读,新技能目录每次扫描立即被发现——因此"创建技能 → 下一次对话自动生效",无需重启。
|
|
271
|
+
|
|
272
|
+
需要新建技能时,创建为 Codex 结构:`~/.deepccc/skills/<name>/SKILL.md`(默认,全局)或 `<cwd>/.deepccc/skills/<name>/SKILL.md`(`--scope project`,仅当用户明确要求项目级时)。
|
|
273
|
+
|
|
274
|
+
## 内置工具
|
|
275
|
+
|
|
276
|
+
`deepccc` 可以让模型调用这些本地工具:
|
|
277
|
+
|
|
278
|
+
- 按行读取文件
|
|
279
|
+
- 列目录
|
|
280
|
+
- 用 ripgrep 搜索代码
|
|
281
|
+
- 编辑、创建、删除、移动文件
|
|
282
|
+
- 应用 unified diff patch
|
|
283
|
+
- 运行非交互式 shell 命令,并返回 stdout、stderr、exitCode 和超时状态
|
|
284
|
+
- 联网搜索(`websearch`:DuckDuckGo,免 API key,返回标题 + URL + 摘要)
|
|
285
|
+
- 抓取网页并转纯文本(`webfetch`:仅 http/https,自动去 HTML 标签、控制长度与超时)
|
|
286
|
+
|
|
287
|
+
命令返回非零退出码时不会直接被当成工具异常;模型可以读取结构化结果,继续判断下一步。
|
|
288
|
+
|
|
289
|
+
## License
|
|
290
|
+
|
|
291
|
+
Apache-2.0
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { existsSync } from "node:fs";
|
|
3
|
+
import { spawnSync } from "node:child_process";
|
|
4
|
+
import { createRequire } from "node:module";
|
|
5
|
+
import { dirname, join } from "node:path";
|
|
6
|
+
|
|
7
|
+
const require = createRequire(import.meta.url);
|
|
8
|
+
const pkgRoot = dirname(require.resolve("../package.json"));
|
|
9
|
+
const distCli = join(pkgRoot, "dist", "cli.js");
|
|
10
|
+
|
|
11
|
+
let args;
|
|
12
|
+
if (existsSync(distCli)) {
|
|
13
|
+
args = [distCli, ...process.argv.slice(2)];
|
|
14
|
+
} else {
|
|
15
|
+
const tsxCli = require.resolve("tsx/cli");
|
|
16
|
+
const sourceCli = join(pkgRoot, "src", "cli.ts");
|
|
17
|
+
args = [tsxCli, sourceCli, ...process.argv.slice(2)];
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
const result = spawnSync(process.execPath, args, {
|
|
21
|
+
stdio: "inherit",
|
|
22
|
+
cwd: process.cwd(),
|
|
23
|
+
env: process.env,
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
process.exit(result.status === null ? 1 : result.status);
|
|
Binary file
|
|
Binary file
|