ccman 3.2.3 → 3.3.1
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 +62 -43
- package/dist/index.js +761 -93
- package/dist/templates/codex/config.toml +5 -6
- package/package.json +3 -2
|
@@ -72,7 +72,7 @@ web_search_request = true
|
|
|
72
72
|
unified_exec = false
|
|
73
73
|
streamable_shell = false
|
|
74
74
|
rmcp_client = true
|
|
75
|
-
#
|
|
75
|
+
# 如以后确认其他服务完全兼容,可以考虑再打开 ghost_commit 等
|
|
76
76
|
|
|
77
77
|
|
|
78
78
|
########################################
|
|
@@ -80,7 +80,7 @@ rmcp_client = true
|
|
|
80
80
|
########################################
|
|
81
81
|
|
|
82
82
|
[profiles.auto-max]
|
|
83
|
-
# 使用顶层的 model / model_provider(即 gpt-5.1-codex +
|
|
83
|
+
# 使用顶层的 model / model_provider(即 gpt-5.1-codex + OpenAI/GMN)
|
|
84
84
|
# 这里只覆盖“本地行为”,例如审批和沙箱
|
|
85
85
|
approval_policy = "never"
|
|
86
86
|
sandbox_mode = "workspace-write"
|
|
@@ -102,9 +102,8 @@ hide_gpt5_1_migration_prompt = true
|
|
|
102
102
|
# 模型提供方示例(仅注释示例,不会生效)
|
|
103
103
|
########################################
|
|
104
104
|
|
|
105
|
-
# [model_providers.
|
|
106
|
-
# name = "
|
|
107
|
-
# base_url = "https://
|
|
105
|
+
# [model_providers.gmn]
|
|
106
|
+
# name = "GMN"
|
|
107
|
+
# base_url = "https://gmn.chuangzuoli.cn/openai"
|
|
108
108
|
# wire_api = "responses"
|
|
109
109
|
# requires_openai_auth = true
|
|
110
|
-
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccman",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.1",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "Manage Codex, Claude Code, Gemini CLI, and MCP API service provider configurations",
|
|
5
|
+
"description": "Manage Codex, Claude Code, Gemini CLI, OpenCode, and MCP API service provider configurations",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"ccman": "./dist/index.js"
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"claude-code",
|
|
18
18
|
"gemini",
|
|
19
19
|
"gemini-cli",
|
|
20
|
+
"opencode",
|
|
20
21
|
"mcp",
|
|
21
22
|
"model-context-protocol",
|
|
22
23
|
"ai",
|