@x-otto/plugin-cursor 0.1.0-alpha.1 → 0.1.0-alpha.10

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,6 +1,6 @@
1
1
  # @x-otto/plugin-cursor
2
2
 
3
- > Cursor subscription provider plugin (RFC-130).
3
+ > Cursor subscription provider plugin.
4
4
 
5
5
  Provides Cursor IDE's AI model access via Connect-RPC + Protobuf over HTTP/2. Supports two authentication modes: local Cursor IDE installation credentials and `CURSOR_ACCESS_TOKEN` environment variable fallback.
6
6
 
@@ -8,9 +8,9 @@ Provides Cursor IDE's AI model access via Connect-RPC + Protobuf over HTTP/2. Su
8
8
 
9
9
  This is a **code-based provider** — Cursor's backend uses a custom Connect-RPC protocol that cannot be expressed through the standard `wireApi` schemas (openai-completions, openai-responses, anthropic-messages). The entire protocol encoding/decoding lives within this plugin's `src/connect-rpc/` directory.
10
10
 
11
- The OAuth device-flow credentials are declared in `otto-plugin.json` `contributes.oauth`, while the provider factory is wired programmatically via `plugin.ts`.
11
+ The OAuth provider is registered programmatically in `plugin.ts` (`oauthProviderFactories`) — it imports the local Cursor IDE installation's session on macOS instead of running a browser/device flow — and the manifest references it via `contributes.providers[].oauthRef`. The provider factory is wired in the same `plugin.ts`.
12
12
 
13
- Cursor provider does **not** support tool calling (agent-side tools only, see M131-3 WONT_FIX).
13
+ Cursor provider does **not** support tool calling (agent-side tools only).
14
14
 
15
15
  ## Installation
16
16
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@x-otto/plugin-cursor",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0-alpha.10",
4
4
  "private": false,
5
5
  "description": "Cursor subscription provider (RFC-130)",
6
6
  "dependencies": {
7
- "@x-otto/provider": "0.1.0-alpha.1",
8
- "@x-otto/shared": "0.1.0-alpha.1",
9
- "@x-otto/plugin": "0.1.0-alpha.1"
7
+ "@x-otto/provider": "0.1.0-alpha.10",
8
+ "@x-otto/plugin": "0.1.0-alpha.10",
9
+ "@x-otto/shared": "0.1.0-alpha.10"
10
10
  },
11
11
  "type": "module",
12
12
  "files": [
@@ -1 +1 @@
1
- {"apiVersion":1,"compilerVersion":"0.1.0-alpha.1","sourceHash":"ff4bf89980dcd93e794ffb0b1c53cd33edda56399f111cfd6a55037a420082ad"}
1
+ {"apiVersion":1,"compilerVersion":"0.1.0-alpha.10","sourceHash":"2cd6dc6f0baae5d9f62f34007239ee2c87ea856de787872ea989ed1c06b42873"}