@stablekernel/opencode-cursor 0.9.0-next.1 → 0.9.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.
package/CHANGELOG.md CHANGED
@@ -4,11 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
- ## [0.9.0-next.1] — 2026-08-26 (pre-release)
7
+ ## [0.9.0] — 2026-08-26
8
8
 
9
- Fixes the Cursor SDK's shell-parser diagnostic leaking into the opencode
10
- TUI prompt (#111). Still not on `latest`; install with
11
- `npm install @stablekernel/opencode-cursor@next` to test.
9
+ The Cursor agent can now use installed opencode plugins (#104), their
10
+ skills mirror into `.cursor/skills/`, and the Cursor SDK's shell-parser
11
+ diagnostic no longer leaks into the opencode TUI prompt (#111).
12
+ Consolidates pre-releases `0.9.0-next.0` and `0.9.0-next.1`.
12
13
 
13
14
  - **Fix: `shell-parser: tree-sitter natives are unavailable…` no longer
14
15
  appears in the TUI prompt.** `@cursor/sdk`'s bundled shell-parser emits a
@@ -24,12 +25,6 @@ TUI prompt (#111). Still not on `latest`; install with
24
25
  Unrelated `console.warn` output passes through unchanged, and the message
25
26
  remains visible in opencode logs (service `opencode-cursor`).
26
27
 
27
- ## [0.9.0-next.0] — 2026-08-26 (pre-release)
28
-
29
- The Cursor agent can now use installed opencode plugins (#104), plus
30
- consolidated opencode-ai dependency bumps (#107). Not yet on `latest`;
31
- install with `npm install @stablekernel/opencode-cursor@next` to test.
32
-
33
28
  - **Plugin tools bridge: other plugins' custom tools are now exposed to the
34
29
  Cursor agent.** Custom tools from installed opencode plugins (e.g.
35
30
  `opencode-pty`'s `pty_spawn`, `context-mode`'s `ctx_*`) are bridged to
@@ -814,7 +814,7 @@ function clearVersionCache() {
814
814
  }
815
815
  }
816
816
  function getLocalVersion() {
817
- if (true) return "0.9.0-next.1";
817
+ if (true) return "0.9.0";
818
818
  try {
819
819
  const require2 = createRequire(import.meta.url);
820
820
  const pkg = require2("../package.json");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stablekernel/opencode-cursor",
3
- "version": "0.9.0-next.1",
3
+ "version": "0.9.0",
4
4
  "description": "opencode provider plugin backed by the official Cursor SDK (@cursor/sdk) — adds a Cursor provider and lists its models",
5
5
  "type": "module",
6
6
  "license": "MIT",