ccman 3.3.25 → 3.3.29
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 +40 -6
- package/dist/index.js +1524 -967
- package/dist/templates/claude/settings.json +1 -1
- package/dist/templates/codex/config.toml +12 -6
- package/dist/templates/openclaw/models.base.template.json +2 -12
- package/dist/templates/openclaw/openclaw.base.template.json +4 -14
- package/dist/templates/opencode/opencode.json +3 -15
- package/package.json +4 -2
|
@@ -1,5 +1,10 @@
|
|
|
1
|
-
model = "gpt-5.
|
|
1
|
+
model = "gpt-5.5"
|
|
2
|
+
review_model = "gpt-5.5"
|
|
2
3
|
model_reasoning_effort = "xhigh"
|
|
4
|
+
plan_mode_reasoning_effort = "xhigh"
|
|
5
|
+
model_reasoning_summary = "auto"
|
|
6
|
+
model_verbosity = "high"
|
|
7
|
+
personality = "pragmatic"
|
|
3
8
|
disable_response_storage = true
|
|
4
9
|
sandbox_mode = "danger-full-access"
|
|
5
10
|
windows_wsl_setup_acknowledged = true
|
|
@@ -24,13 +29,14 @@ ignore_default_excludes = false
|
|
|
24
29
|
network_access = true
|
|
25
30
|
|
|
26
31
|
[features]
|
|
27
|
-
plan_tool = true
|
|
28
32
|
apply_patch_freeform = true
|
|
29
|
-
view_image_tool = true
|
|
30
33
|
unified_exec = false
|
|
31
|
-
streamable_shell = false
|
|
32
|
-
rmcp_client = true
|
|
33
34
|
elevated_windows_sandbox = true
|
|
35
|
+
multi_agent = true
|
|
36
|
+
shell_tool = true
|
|
37
|
+
shell_snapshot = true
|
|
38
|
+
fast_mode = true
|
|
39
|
+
personality = true
|
|
34
40
|
|
|
35
41
|
[profiles.auto-max]
|
|
36
42
|
approval_policy = "never"
|
|
@@ -45,6 +51,6 @@ hide_gpt5_1_migration_prompt = true
|
|
|
45
51
|
|
|
46
52
|
[model_providers.gmn]
|
|
47
53
|
name = "gmn"
|
|
48
|
-
base_url = "https://
|
|
54
|
+
base_url = "https://ai.gmncode.com"
|
|
49
55
|
wire_api = "responses"
|
|
50
56
|
requires_openai_auth = true
|
|
@@ -10,24 +10,14 @@
|
|
|
10
10
|
},
|
|
11
11
|
"models": [
|
|
12
12
|
{
|
|
13
|
-
"id": "gpt-5.
|
|
14
|
-
"name": "gpt-5.
|
|
13
|
+
"id": "gpt-5.5",
|
|
14
|
+
"name": "gpt-5.5",
|
|
15
15
|
"api": "openai-responses",
|
|
16
16
|
"reasoning": true,
|
|
17
17
|
"input": ["text", "image"],
|
|
18
18
|
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
|
|
19
19
|
"contextWindow": 1050000,
|
|
20
20
|
"maxTokens": 128000
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"id": "gpt-5.3-codex",
|
|
24
|
-
"name": "gpt-5.3-codex",
|
|
25
|
-
"api": "openai-responses",
|
|
26
|
-
"reasoning": false,
|
|
27
|
-
"input": ["text", "image"],
|
|
28
|
-
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
|
|
29
|
-
"contextWindow": 400000,
|
|
30
|
-
"maxTokens": 128000
|
|
31
21
|
}
|
|
32
22
|
]
|
|
33
23
|
}
|
|
@@ -12,24 +12,14 @@
|
|
|
12
12
|
"authHeader": true,
|
|
13
13
|
"models": [
|
|
14
14
|
{
|
|
15
|
-
"id": "gpt-5.
|
|
16
|
-
"name": "gpt-5.
|
|
15
|
+
"id": "gpt-5.5",
|
|
16
|
+
"name": "gpt-5.5",
|
|
17
17
|
"api": "openai-responses",
|
|
18
18
|
"reasoning": true,
|
|
19
19
|
"input": ["text", "image"],
|
|
20
20
|
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
|
|
21
21
|
"contextWindow": 1050000,
|
|
22
22
|
"maxTokens": 128000
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"id": "gpt-5.3-codex",
|
|
26
|
-
"name": "gpt-5.3-codex",
|
|
27
|
-
"api": "openai-responses",
|
|
28
|
-
"reasoning": false,
|
|
29
|
-
"input": ["text", "image"],
|
|
30
|
-
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
|
|
31
|
-
"contextWindow": 400000,
|
|
32
|
-
"maxTokens": 128000
|
|
33
23
|
}
|
|
34
24
|
]
|
|
35
25
|
}
|
|
@@ -38,9 +28,9 @@
|
|
|
38
28
|
"agents": {
|
|
39
29
|
"defaults": {
|
|
40
30
|
"workspace": "",
|
|
41
|
-
"imageModel": "{{providerName}}/gpt-5.
|
|
31
|
+
"imageModel": "{{providerName}}/gpt-5.5",
|
|
42
32
|
"model": {
|
|
43
|
-
"primary": "{{providerName}}/gpt-5.
|
|
33
|
+
"primary": "{{providerName}}/gpt-5.5"
|
|
44
34
|
},
|
|
45
35
|
"thinkingDefault": "xhigh"
|
|
46
36
|
}
|
|
@@ -6,20 +6,8 @@
|
|
|
6
6
|
"apiKey": "{{apiKey}}"
|
|
7
7
|
},
|
|
8
8
|
"models": {
|
|
9
|
-
"gpt-5.
|
|
10
|
-
"name": "GPT-5.
|
|
11
|
-
"options": {
|
|
12
|
-
"store": false
|
|
13
|
-
},
|
|
14
|
-
"variants": {
|
|
15
|
-
"low": {},
|
|
16
|
-
"medium": {},
|
|
17
|
-
"high": {},
|
|
18
|
-
"xhigh": {}
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
"gpt-5.4": {
|
|
22
|
-
"name": "GPT-5.4",
|
|
9
|
+
"gpt-5.5": {
|
|
10
|
+
"name": "GPT-5.5",
|
|
23
11
|
"options": {
|
|
24
12
|
"store": false
|
|
25
13
|
},
|
|
@@ -46,5 +34,5 @@
|
|
|
46
34
|
}
|
|
47
35
|
},
|
|
48
36
|
"$schema": "https://opencode.ai/config.json",
|
|
49
|
-
"model": "openai/gpt-5.
|
|
37
|
+
"model": "openai/gpt-5.5"
|
|
50
38
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccman",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.29",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Manage Codex, Claude Code, Gemini CLI, OpenCode, OpenClaw, and MCP API service provider configurations",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsup",
|
|
16
16
|
"dev": "NODE_ENV=development tsx src/index.ts",
|
|
17
|
-
"test": "tsx --test src/utils/*.test.ts",
|
|
17
|
+
"test": "tsx --test src/utils/*.test.ts src/commands/sync/*.test.ts",
|
|
18
18
|
"clean": "rm -rf dist"
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
@@ -46,8 +46,10 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@iarna/toml": "^2.2.5",
|
|
49
|
+
"boxen": "^8.0.1",
|
|
49
50
|
"chalk": "^4.1.2",
|
|
50
51
|
"commander": "^11.0.0",
|
|
52
|
+
"gradient-string": "^3.0.0",
|
|
51
53
|
"inquirer": "^8.2.6",
|
|
52
54
|
"proper-lockfile": "^4.1.2",
|
|
53
55
|
"webdav": "^5.8.0"
|