openzoo 0.28.1 → 0.28.2

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/lib/cursorcfg.js +7 -2
  2. package/package.json +1 -1
package/lib/cursorcfg.js CHANGED
@@ -185,7 +185,12 @@ export function writeEditorProviderConfig(which, { baseUrl, models }) {
185
185
  variants: [],
186
186
  legacySlugs: [],
187
187
  idAliases: [],
188
- namedModelSectionIndex: 1,
188
+ // SECTION 0, not 1. The named-models view groups rows by this index and
189
+ // renders section 0; every row we wrote pointed at section 1, which put them
190
+ // in a group the dropdown does not draw — visible in Settings (which ignores
191
+ // the index) but "unavailable" in the composer picker. That split — right in
192
+ // Settings, missing from the dropdown — is the tell.
193
+ namedModelSectionIndex: 0,
189
194
  cloudAgentEffortModes: [],
190
195
  modelPickerBadges: [],
191
196
  });
@@ -260,7 +265,7 @@ export function pinEditorProviderConfig(which, { baseUrl, models }) {
260
265
  isRecommendedForBackgroundComposer: false, supportsPlanMode: true,
261
266
  supportsSandboxing: true, isUserAdded: true, inputboxShortModelName: slotFor(m).label,
262
267
  parameterDefinitions: [], variants: [], legacySlugs: [], idAliases: [],
263
- namedModelSectionIndex: 1, cloudAgentEffortModes: [], modelPickerBadges: [],
268
+ namedModelSectionIndex: 0, cloudAgentEffortModes: [], modelPickerBadges: [],
264
269
  }))));
265
270
  const primary = esc(models[0]);
266
271
  const base = esc(baseUrl);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openzoo",
3
- "version": "0.28.1",
3
+ "version": "0.28.2",
4
4
  "description": "Local x402-paying proxy + MCP server for openzoo.fun — point any OpenAI-compatible harness (Cursor, Claude Code, aider, SDKs) at localhost and it pays per call from a local burner wallet. Solana and Base rails live; Robinhood experimental.",
5
5
  "license": "MIT",
6
6
  "type": "module",