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 CHANGED
@@ -1,4 +1,4 @@
1
- # opencode-windsurf-codeium
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-codeium@beta
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-codeium@beta"],
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
- - `docs/WINDSURF_API_SPEC.md` – gRPC endpoints & protobuf notes
183
- - `docs/REVERSE_ENGINEERING.md` – credential discovery + tooling
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
@@ -6,7 +6,7 @@
6
6
  *
7
7
  * @example
8
8
  * ```typescript
9
- * import { WindsurfPlugin } from 'opencode-windsurf-codeium';
9
+ * import { WindsurfPlugin } from 'opencode-windsurf-auth';
10
10
  *
11
11
  * // Use in OpenCode configuration
12
12
  * export default {
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@
6
6
  *
7
7
  * @example
8
8
  * ```typescript
9
- * import { WindsurfPlugin } from 'opencode-windsurf-codeium';
9
+ * import { WindsurfPlugin } from 'opencode-windsurf-auth';
10
10
  *
11
11
  * // Use in OpenCode configuration
12
12
  * export default {
@@ -572,7 +572,7 @@ async function ensureWindsurfProxyServer() {
572
572
  port,
573
573
  fetch: handler,
574
574
  // Keep connections alive longer to allow slow/long chat streams
575
- idleTimeout: 300, // seconds
575
+ idleTimeout: 100, // seconds
576
576
  });
577
577
  };
578
578
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-windsurf-codeium",
3
- "version": "0.1.34",
3
+ "version": "0.1.35",
4
4
  "description": "OpenCode plugin for Windsurf/Codeium authentication - use Windsurf models in OpenCode",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",