@emblemvault/hustle-react 1.4.3 → 1.4.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.
@@ -1751,6 +1751,15 @@ Executors run in the browser context with full access to:
1751
1751
  - **window.__hustleListPlugins()** - List all installed plugins
1752
1752
  - **window.__hustleGetPlugin(name)** - Get a specific plugin by name
1753
1753
 
1754
+ ### Hustle Settings Globals (Read/Write)
1755
+ - **window.__hustleGetModel()** - Get the current model override (empty string = server default)
1756
+ - **window.__hustleSetModel(model)** - Set the model override (e.g., "anthropic/claude-3-opus")
1757
+ - **window.__hustleGetSystemPrompt()** - Get the current system prompt override
1758
+ - **window.__hustleSetSystemPrompt(prompt)** - Set the system prompt override
1759
+ - **window.__hustleGetSkipServerPrompt()** - Get whether server prompt is skipped (boolean)
1760
+ - **window.__hustleSetSkipServerPrompt(skip)** - Set whether to skip server prompt
1761
+ - **window.__hustleGetModels()** - Get list of available models (read-only)
1762
+
1754
1763
  ### DOM Manipulation Examples
1755
1764
  Create a modal: document.createElement('div'), style it, append to document.body
1756
1765
  Add event listeners: element.addEventListener('click', handler)