ccman 3.3.12 → 3.3.14-beta.0

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.
@@ -0,0 +1,36 @@
1
+ {
2
+ "providers": {
3
+ "{{providerKey}}": {
4
+ "baseUrl": "{{baseUrl}}",
5
+ "apiKey": "{{apiKey}}",
6
+ "api": "openai-responses",
7
+ "authHeader": true,
8
+ "headers": {
9
+ "User-Agent": "curl/8.0",
10
+ "OpenAI-Beta": "responses=v1"
11
+ },
12
+ "models": [
13
+ {
14
+ "id": "{{primaryModelId}}",
15
+ "name": "{{primaryModelId}}",
16
+ "api": "openai-responses",
17
+ "reasoning": false,
18
+ "input": ["text"],
19
+ "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
20
+ "contextWindow": 200000,
21
+ "maxTokens": 8192
22
+ },
23
+ {
24
+ "id": "{{secondaryModelId}}",
25
+ "name": "{{secondaryModelId}}",
26
+ "api": "openai-responses",
27
+ "reasoning": false,
28
+ "input": ["text"],
29
+ "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
30
+ "contextWindow": 200000,
31
+ "maxTokens": 8192
32
+ }
33
+ ]
34
+ }
35
+ }
36
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "models": {
3
+ "mode": "merge",
4
+ "providers": {}
5
+ },
6
+ "agents": {
7
+ "defaults": {
8
+ "workspace": "{{homeDir}}",
9
+ "model": {
10
+ "primary": "{{providerKey}}/{{primaryModelId}}"
11
+ },
12
+ "thinkingDefault": "xhigh"
13
+ }
14
+ }
15
+ }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "ccman",
3
- "version": "3.3.12",
3
+ "version": "3.3.14-beta.0",
4
4
  "type": "module",
5
- "description": "Manage Codex, Claude Code, Gemini CLI, OpenCode, and MCP API service provider configurations",
5
+ "description": "Manage Codex, Claude Code, Gemini CLI, OpenCode, OpenClaw, and MCP API service provider configurations",
6
6
  "main": "./dist/index.js",
7
7
  "bin": {
8
8
  "ccman": "./dist/index.js"
@@ -18,6 +18,7 @@
18
18
  "gemini",
19
19
  "gemini-cli",
20
20
  "opencode",
21
+ "openclaw",
21
22
  "mcp",
22
23
  "model-context-protocol",
23
24
  "ai",