@love-moon/conductor-cli 0.7.6 → 0.7.7
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 +23 -0
- package/package.json +5 -5
- package/src/daemon.js +927 -64
- package/src/handoff-log-mask.js +43 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @love-moon/conductor-cli
|
|
2
2
|
|
|
3
|
+
## 0.7.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 400f3a7: Report a terminal task status when a stop request finds no active process, so a
|
|
8
|
+
task whose Fire already died converges instead of sitting in `killing` forever.
|
|
9
|
+
|
|
10
|
+
Drop queued terminal status events before an in-place restart reuses a working
|
|
11
|
+
directory. The durable upstream outbox lives inside that directory, so an
|
|
12
|
+
undelivered `KILLED` from the previous run was flushed on startup and killed the
|
|
13
|
+
task that had just finished resuming.
|
|
14
|
+
|
|
15
|
+
- 67498dc: Report a Fire that dies inside its tmux session instead of leaving the task
|
|
16
|
+
hanging. In tmux mode the daemon's child is the short-lived `tmux new-session`
|
|
17
|
+
client, not the Fire, so an abnormal death (crash, OOM, SIGKILL) went unreported
|
|
18
|
+
and the task sat at `running` until reconcile relabelled it as a user stop. The
|
|
19
|
+
Fire now records its own exit code into its log under a per-launch nonce, and the
|
|
20
|
+
liveness reaper classifies the death from that marker and publishes a terminal
|
|
21
|
+
status with the real cause.
|
|
22
|
+
- Updated dependencies [400f3a7]
|
|
23
|
+
- @love-moon/conductor-sdk@0.7.7
|
|
24
|
+
- @love-moon/ai-sdk@0.7.7
|
|
25
|
+
|
|
3
26
|
## 0.7.6
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@love-moon/conductor-cli",
|
|
3
|
-
"version": "0.7.
|
|
4
|
-
"gitCommitId": "
|
|
3
|
+
"version": "0.7.7",
|
|
4
|
+
"gitCommitId": "26b2dbb",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/lovemoon-ai/conductor.git"
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"test": "node --test test/*.test.js"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@love-moon/ai-sdk": "0.7.
|
|
28
|
-
"@love-moon/conductor-sdk": "0.7.
|
|
27
|
+
"@love-moon/ai-sdk": "0.7.7",
|
|
28
|
+
"@love-moon/conductor-sdk": "0.7.7",
|
|
29
29
|
"@github/copilot-sdk": "^0.3.0",
|
|
30
30
|
"chrome-launcher": "^1.2.1",
|
|
31
31
|
"chrome-remote-interface": "^0.33.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"optionalDependencies": {
|
|
40
40
|
"@roamhq/wrtc": "^0.10.0",
|
|
41
|
-
"@love-moon/chat-web": "0.7.
|
|
41
|
+
"@love-moon/chat-web": "0.7.7"
|
|
42
42
|
},
|
|
43
43
|
"pnpm": {
|
|
44
44
|
"onlyBuiltDependencies": [
|