opencode-windsurf-codeium 0.1.34 → 0.1.35
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 +5 -7
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/src/plugin.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# opencode-windsurf-
|
|
1
|
+
# opencode-windsurf-auth
|
|
2
2
|
|
|
3
3
|
OpenCode plugin for Windsurf/Codeium authentication - use Windsurf models in OpenCode.
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ This plugin enables OpenCode users to access Windsurf/Codeium models by leveragi
|
|
|
24
24
|
## Installation
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
bun add opencode-windsurf-
|
|
27
|
+
bun add opencode-windsurf-auth@beta
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
## OpenCode Configuration
|
|
@@ -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-
|
|
37
|
+
"plugin": ["opencode-windsurf-auth@beta"],
|
|
38
38
|
"provider": {
|
|
39
39
|
"windsurf": {
|
|
40
40
|
"npm": "@ai-sdk/openai-compatible",
|
|
@@ -104,7 +104,6 @@ Add the following to your OpenCode config (typically `~/.config/opencode/config.
|
|
|
104
104
|
After saving the config:
|
|
105
105
|
|
|
106
106
|
```bash
|
|
107
|
-
bun run build && bun add -g opencode-windsurf-codeium@beta # local install during development
|
|
108
107
|
opencode models list # confirm models appear under windsurf/
|
|
109
108
|
opencode chat --model=windsurf/claude-4.5-opus "Hello" # quick smoke test
|
|
110
109
|
```
|
|
@@ -175,12 +174,11 @@ bun test
|
|
|
175
174
|
|
|
176
175
|
- **Windsurf must be running** - The plugin communicates with the local language server
|
|
177
176
|
- **macOS focus** - Linux/Windows paths need verification
|
|
178
|
-
- **Tool execution** - OpenCode executes tools; plugin only plans tool_calls via Windsurf inference
|
|
179
177
|
|
|
180
178
|
## Further Reading
|
|
181
179
|
|
|
182
|
-
-
|
|
183
|
-
-
|
|
180
|
+
- [docs/WINDSURF_API_SPEC.md](https://github.com/rsvedant/opencode-windsurf-auth/blob/master/docs/WINDSURF_API_SPEC.md) – gRPC endpoints & protobuf notes
|
|
181
|
+
- [docs/REVERSE_ENGINEERING.md](https://github.com/rsvedant/opencode-windsurf-auth/blob/master/docs/REVERSE_ENGINEERING.md) – credential discovery + tooling
|
|
184
182
|
- [opencode-antigravity-auth](https://github.com/NoeFabris/opencode-antigravity-auth) – related project
|
|
185
183
|
|
|
186
184
|
## License
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/src/plugin.js
CHANGED
package/package.json
CHANGED