openzoo 0.23.0 → 0.23.1

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 +6 -0
  2. package/package.json +1 -1
package/lib/cursorcfg.js CHANGED
@@ -109,6 +109,12 @@ const DEFAULT_SLOTS = {
109
109
  };
110
110
 
111
111
  export function slotFor(id) {
112
+ // KILL SWITCH: if a custom label ever makes the editor treat a row as
113
+ // unavailable, OPENZOO_NO_LABELS=1 puts the bland id back as the label. The
114
+ // mapping (which zoo model answers) is unaffected — only the text changes.
115
+ if (process.env.OPENZOO_NO_LABELS === '1') {
116
+ return { served: (DEFAULT_SLOTS[id] || {}).served || id, label: id };
117
+ }
112
118
  const env = process.env.OPENZOO_EDITOR_MAP;
113
119
  if (env) {
114
120
  for (const part of env.split(',')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openzoo",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
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",