@mcowger/opencode-plexus 1.2.2 → 1.2.4

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 +8 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -98,7 +98,6 @@ You will be prompted for:
98
98
 
99
99
  - **Plexus base URL** — e.g. `https://plexus.example.com`
100
100
  - **Plexus API key**
101
- - **Default model** (optional)
102
101
 
103
102
  To force a model refresh:
104
103
 
@@ -106,6 +105,13 @@ To force a model refresh:
106
105
  /plexus refresh
107
106
  ```
108
107
 
108
+ Set the model Pi should use by default. With no model ID, Pi opens a selector; you can also pass the exact Plexus model ID directly:
109
+
110
+ ```
111
+ /plexus set-default-model
112
+ /plexus set-default-model claude-sonnet-4-5
113
+ ```
114
+
109
115
  Use `/login plexus` for setup and `/logout plexus` to remove stored credentials.
110
116
 
111
117
  ### OpenCode
@@ -157,7 +163,7 @@ export PLEXUS_API_KEY=your-api-key
157
163
 
158
164
  ```
159
165
  ~/.pi/agent/extensions/plexus/
160
- config.json # base URL and optional default model
166
+ config.json # base URL and optional default model (set via /plexus set-default-model)
161
167
  plexus-models-cache.json # last-fetched model list (startup cache)
162
168
  plexus-models-response.json # raw API response (diagnostics)
163
169
  plexus.log # extension activity log
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcowger/opencode-plexus",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "description": "OpenCode plugin: Plexus provider with dynamic model discovery",
5
5
  "type": "module",
6
6
  "module": "./dist/index.js",