opencode-windsurf-codeium 0.1.25 → 0.1.26

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.
Files changed (2) hide show
  1. package/README.md +50 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -34,7 +34,7 @@ Add the following to your OpenCode config (typically `~/.config/opencode/config.
34
34
  ```json
35
35
  {
36
36
  "$schema": "https://opencode.ai/config.json",
37
- "plugin": ["opencode-windsurf-codeium"],
37
+ "plugin": ["opencode-windsurf-codeium@beta"],
38
38
  "provider": {
39
39
  "windsurf": {
40
40
  "npm": "@ai-sdk/openai-compatible",
@@ -42,19 +42,59 @@ Add the following to your OpenCode config (typically `~/.config/opencode/config.
42
42
  "baseURL": "http://127.0.0.1:42100/v1"
43
43
  },
44
44
  "models": {
45
- "claude-4.5-opus": { "name": "Claude 4.5 Opus (Windsurf)", "limit": { "context": 200000, "output": 8192 } },
46
- "gpt-5.2": {
47
- "name": "GPT 5.2 (Windsurf)",
48
- "limit": { "context": 200000, "output": 8192 },
49
- "variants": { "low": {}, "medium": {}, "high": {}, "xhigh": {}, "priority": {}, "low-priority": {}, "high-priority": {}, "xhigh-priority": {} }
45
+ "claude-4.5-opus-thinking": {
46
+ "name": "Claude 4.5 Opus Thinking (Windsurf)",
47
+ "limit": {
48
+ "context": 200000,
49
+ "output": 8192
50
+ }
51
+ },
52
+ "gpt-5.1-codex-max": {
53
+ "name": "GPT 5.1 Codex Max (Windsurf)",
54
+ "limit": {
55
+ "context": 200000,
56
+ "output": 8192
57
+ },
58
+ "variants": {
59
+ "low": {},
60
+ "medium": {},
61
+ "high": {}
62
+ }
50
63
  },
51
64
  "gemini-3.0-pro": {
52
65
  "name": "Gemini 3.0 Pro (Windsurf)",
53
- "limit": { "context": 200000, "output": 8192 },
54
- "variants": { "minimal": {}, "low": {}, "medium": {}, "high": {} }
66
+ "limit": {
67
+ "context": 200000,
68
+ "output": 8192
69
+ },
70
+ "variants": {
71
+ "minimal": {},
72
+ "low": {},
73
+ "medium": {},
74
+ "high": {}
75
+ }
76
+ },
77
+ "minimax-m2.1": {
78
+ "name": "Minimax M2.1 (Windsurf)",
79
+ "limit": {
80
+ "context": 200000,
81
+ "output": 8192
82
+ }
83
+ },
84
+ "glm-4.7": {
85
+ "name": "GLM 4.7 (Windsurf)",
86
+ "limit": {
87
+ "context": 200000,
88
+ "output": 8192
89
+ }
55
90
  },
56
- "deepseek-r1": { "name": "DeepSeek R1 (Windsurf)", "limit": { "context": 64000, "output": 8192 } },
57
- "swe-1.5": { "name": "SWE 1.5 (Windsurf)", "limit": { "context": 128000, "output": 32000 } }
91
+ "glm-4.7-fast": {
92
+ "name": "GLM 4.7 Fast (Windsurf)",
93
+ "limit": {
94
+ "context": 200000,
95
+ "output": 8192
96
+ }
97
+ }
58
98
  }
59
99
  }
60
100
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-windsurf-codeium",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "description": "OpenCode plugin for Windsurf/Codeium authentication - use Windsurf models in OpenCode",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",