environment_memory
Manage local environment variables stored in ~/.local_file_operations/.env file. Read, update, or get specific variables to configure system settings for local operations.
Instructions
环境记忆:读取、更新和获取环境变量。环境变量存储在 ~/.local_file_operations/.env 文件中。
示例:读取全部 { "operation": "read", "output_format": "json" } 示例:设置变量 { "operation": "update", "key": "PROJECT_PATH", "value": "/project" }
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | 操作:read(读取全部)、update(更新/新增)、get(获取指定) | |
| key | No | 环境变量键名 | |
| value | No | 环境变量值 | |
| output_format | No | 输出格式:text(纯文本)、json(结构化JSON)、both(两者兼有) |