@link-assistant/hive-mind 0.50.9 → 0.50.11
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/CHANGELOG.md +14 -0
- package/README.md +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @link-assistant/hive-mind
|
|
2
2
|
|
|
3
|
+
## 0.50.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6f51d29: fix: add screen terminal multiplexer to Docker image
|
|
8
|
+
|
|
9
|
+
The screen package is now installed by default in the Docker image, resolving issue #986 where users encountered "command not found" errors when attempting to use screen. Includes comprehensive case study documenting the issue analysis, root cause, and solution evaluation.
|
|
10
|
+
|
|
11
|
+
## 0.50.10
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Test patch release
|
|
16
|
+
|
|
3
17
|
## 0.50.9
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -217,10 +217,12 @@ See [docs/HELM.md](./docs/HELM.md) for detailed Helm configuration options.
|
|
|
217
217
|
--attach-logs
|
|
218
218
|
--verbose
|
|
219
219
|
--no-tool-check
|
|
220
|
+
--auto-continue-on-limit-reset
|
|
220
221
|
TELEGRAM_SOLVE_OVERRIDES:
|
|
221
222
|
--attach-logs
|
|
222
223
|
--verbose
|
|
223
224
|
--no-tool-check
|
|
225
|
+
--auto-continue-on-limit-reset
|
|
224
226
|
TELEGRAM_BOT_VERBOSE: true
|
|
225
227
|
"
|
|
226
228
|
|
|
@@ -242,10 +244,12 @@ See [docs/HELM.md](./docs/HELM.md) for detailed Helm configuration options.
|
|
|
242
244
|
--attach-logs
|
|
243
245
|
--verbose
|
|
244
246
|
--no-tool-check
|
|
247
|
+
--auto-continue-on-limit-reset
|
|
245
248
|
)" --solve-overrides "(
|
|
246
249
|
--attach-logs
|
|
247
250
|
--verbose
|
|
248
251
|
--no-tool-check
|
|
252
|
+
--auto-continue-on-limit-reset
|
|
249
253
|
)" --verbose
|
|
250
254
|
|
|
251
255
|
# Press CTRL + A + D for detach from screen
|