You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -375,11 +375,11 @@ Set a single setting key at sandbox or global scope.
375
375
openshell settings set my-sandbox --key ocsf_json_enabled --value true
376
376
377
377
# Global (requires confirmation)
378
-
openshell settings set --global --key use_providers_v2 --value true
378
+
openshell settings set --global --key providers_v2_enabled --value true
379
379
openshell settings set --global --key ocsf_json_enabled --value true
380
380
381
381
# Skip confirmation
382
-
openshell settings set --global --key use_providers_v2 --value true --yes
382
+
openshell settings set --global --key providers_v2_enabled --value true --yes
383
383
```
384
384
385
385
Value parsing is type-aware: bool keys accept `true/false/yes/no/1/0/on/off` via `parse_bool_like()`. Int keys parse as base-10 `i64`. String keys accept any value.
@@ -390,7 +390,7 @@ Delete a setting key from the specified scope.
-`parse_cli_setting_value("use_providers_v2", "true")` -- looks up `SettingValueKind::Bool` in the registry, wraps as `SettingValue { bool_value: true }`
506
+
-`parse_cli_setting_value("providers_v2_enabled", "true")` -- looks up `SettingValueKind::Bool` in the registry, wraps as `SettingValue { bool_value: true }`
507
507
-`confirm_global_setting_takeover()` -- skipped because `--yes`
0 commit comments