ccman 3.3.16 → 3.3.18

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.
@@ -1,4 +1,4 @@
1
- model = "gpt-5.3-codex"
1
+ model = "gpt-5.4"
2
2
  model_reasoning_effort = "xhigh"
3
3
  disable_response_storage = true
4
4
  sandbox_mode = "danger-full-access"
@@ -9,6 +9,8 @@ file_opener = "vscode"
9
9
  model_provider = "gmn"
10
10
  web_search = "cached"
11
11
  suppress_unstable_features_warning = true
12
+ model_context_window = 1000000
13
+ model_auto_compact_token_limit = 900000
12
14
 
13
15
  [history]
14
16
  persistence = "save-all"
@@ -47,4 +49,4 @@ hide_gpt5_1_migration_prompt = true
47
49
  name = "gmn"
48
50
  base_url = "https://gmn.chuangzuoli.com"
49
51
  wire_api = "responses"
50
- requires_openai_auth = true
52
+ requires_openai_auth = true
@@ -10,24 +10,24 @@
10
10
  },
11
11
  "models": [
12
12
  {
13
- "id": "gpt-5.3-codex",
14
- "name": "gpt-5.3-codex",
13
+ "id": "gpt-5.4",
14
+ "name": "gpt-5.4",
15
15
  "api": "openai-responses",
16
16
  "reasoning": true,
17
- "input": ["text"],
17
+ "input": ["text", "image"],
18
18
  "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
19
- "contextWindow": 200000,
20
- "maxTokens": 8192
19
+ "contextWindow": 1050000,
20
+ "maxTokens": 128000
21
21
  },
22
22
  {
23
- "id": "gpt-5.2-codex",
24
- "name": "gpt-5.2-codex",
23
+ "id": "gpt-5.3-codex",
24
+ "name": "gpt-5.3-codex",
25
25
  "api": "openai-responses",
26
26
  "reasoning": false,
27
- "input": ["text"],
27
+ "input": ["text", "image"],
28
28
  "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
29
- "contextWindow": 200000,
30
- "maxTokens": 8192
29
+ "contextWindow": 400000,
30
+ "maxTokens": 128000
31
31
  }
32
32
  ]
33
33
  }
@@ -12,24 +12,24 @@
12
12
  "authHeader": true,
13
13
  "models": [
14
14
  {
15
- "id": "gpt-5.3-codex",
16
- "name": "gpt-5.3-codex",
15
+ "id": "gpt-5.4",
16
+ "name": "gpt-5.4",
17
17
  "api": "openai-responses",
18
18
  "reasoning": true,
19
- "input": ["text"],
19
+ "input": ["text", "image"],
20
20
  "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
21
- "contextWindow": 200000,
22
- "maxTokens": 8192
21
+ "contextWindow": 1050000,
22
+ "maxTokens": 128000
23
23
  },
24
24
  {
25
- "id": "gpt-5.2-codex",
26
- "name": "gpt-5.2-codex",
25
+ "id": "gpt-5.3-codex",
26
+ "name": "gpt-5.3-codex",
27
27
  "api": "openai-responses",
28
28
  "reasoning": false,
29
- "input": ["text"],
29
+ "input": ["text", "image"],
30
30
  "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
31
- "contextWindow": 200000,
32
- "maxTokens": 8192
31
+ "contextWindow": 400000,
32
+ "maxTokens": 128000
33
33
  }
34
34
  ]
35
35
  }
@@ -38,8 +38,9 @@
38
38
  "agents": {
39
39
  "defaults": {
40
40
  "workspace": "",
41
+ "imageModel": "{{providerName}}/gpt-5.4",
41
42
  "model": {
42
- "primary": "{{providerName}}/gpt-5.3-codex"
43
+ "primary": "{{providerName}}/gpt-5.4"
43
44
  },
44
45
  "thinkingDefault": "xhigh"
45
46
  }
@@ -6,8 +6,8 @@
6
6
  "apiKey": "{{apiKey}}"
7
7
  },
8
8
  "models": {
9
- "gpt-5.2-codex": {
10
- "name": "GPT-5.2 Codex",
9
+ "gpt-5.3-codex": {
10
+ "name": "GPT-5.3 Codex",
11
11
  "options": {
12
12
  "store": false
13
13
  },
@@ -18,8 +18,8 @@
18
18
  "xhigh": {}
19
19
  }
20
20
  },
21
- "gpt-5.3-codex": {
22
- "name": "GPT-5.3 Codex",
21
+ "gpt-5.4": {
22
+ "name": "GPT-5.4",
23
23
  "options": {
24
24
  "store": false
25
25
  },
@@ -46,5 +46,5 @@
46
46
  }
47
47
  },
48
48
  "$schema": "https://opencode.ai/config.json",
49
- "model": "openai/gpt-5.3-codex"
49
+ "model": "openai/gpt-5.4"
50
50
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccman",
3
- "version": "3.3.16",
3
+ "version": "3.3.18",
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",