config_manage
Manage configuration data by reading/writing INI ConfigFile entries, parsing/generating JSON, and evaluating expressions.
Instructions
ConfigFile, JSON, and Expression Utilities.
Ops:
config_read(file_path, section="", key="") Read values or entire sections from an INI ConfigFile.
config_write(file_path, section, key, value) Write a section and key value into an INI ConfigFile.
json_parse(json_string) Parse a JSON string into Godot Variant data structure.
json_generate(data, indent="") Serialize data into a formatted JSON string.
expression_eval(expression_string, input_names=[], input_values=[]) Evaluate a mathematical or logic expression via Godot Expression.
Canonical call shape: {"op": "<verb>", "params": {...}}. Flat op parameters are accepted as a compatibility alias when the client transmits them; op and session_id remain top-level.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| op | Yes | ||
| params | No | ||
| session_id | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||