@mickaelroger78/opencode-manager 0.1.7 → 0.1.8

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.
package/README.md CHANGED
@@ -100,6 +100,7 @@ Example:
100
100
  workspaceRoot: /home/user/.local/share/opencode-manager
101
101
  runtime: docker
102
102
  useLocalOpenCodeAuth: false
103
+ logLevel: warning
103
104
  baseImage:
104
105
  name: debian:stable-slim
105
106
  packages:
@@ -117,6 +118,11 @@ Set `useLocalOpenCodeAuth: true` to mount the host file
117
118
  `~/.local/share/opencode/auth.json` read-write into the same path in each
118
119
  workspace container. The default `false` keeps auth isolated from the host.
119
120
 
121
+ `logLevel` controls how much is written to the log file. It must be one of
122
+ `debug`, `info`, `warning` (default), or `error`. Logs are appended to
123
+ `~/.local/share/opencode-manager/logs/opencode-manager.log` rather than printed
124
+ to the terminal, so they never interfere with the TUI.
125
+
120
126
  Generated workspace images always include `brew`, `npx`, `uvx`, `git`, `ripgrep`, and `jq`. Add project-specific extras with `baseImage.packages` and `baseImage.commands`.
121
127
 
122
128
  `opencode-manager` builds a managed base image from the `baseImage` definition and reuses it while that definition stays unchanged. Changing `baseImage.name`, `baseImage.packages`, or `baseImage.commands` produces a new managed base image tag.
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mickaelroger78/opencode-manager",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "TUI for managing isolated OpenCode workspaces.",
5
5
  "license": "MIT",
6
6
  "repository": {