@love-moon/conductor-cli 0.3.1 → 0.3.2
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 +11 -0
- package/package.json +5 -5
- package/src/daemon.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @love-moon/conductor-cli
|
|
2
2
|
|
|
3
|
+
## 0.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8e1d4a8: Prefer the bundled Copilot platform executable before the JS entrypoint so Node
|
|
8
|
+
20 installs do not fail with `ERR_UNKNOWN_BUILTIN_MODULE: node:sqlite`.
|
|
9
|
+
- Updated dependencies [8e1d4a8]
|
|
10
|
+
- @love-moon/ai-sdk@0.3.2
|
|
11
|
+
- @love-moon/ai-manager@0.3.2
|
|
12
|
+
- @love-moon/conductor-sdk@0.3.2
|
|
13
|
+
|
|
3
14
|
## 0.3.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@love-moon/conductor-cli",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"gitCommitId": "
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"gitCommitId": "519f104",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/lovemoon-ai/conductor.git"
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"test": "node --test test/*.test.js"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@love-moon/ai-manager": "0.3.
|
|
27
|
-
"@love-moon/ai-sdk": "0.3.
|
|
28
|
-
"@love-moon/conductor-sdk": "0.3.
|
|
26
|
+
"@love-moon/ai-manager": "0.3.2",
|
|
27
|
+
"@love-moon/ai-sdk": "0.3.2",
|
|
28
|
+
"@love-moon/conductor-sdk": "0.3.2",
|
|
29
29
|
"@github/copilot-sdk": "^0.2.2",
|
|
30
30
|
"chrome-launcher": "^1.2.1",
|
|
31
31
|
"chrome-remote-interface": "^0.33.0",
|
package/src/daemon.js
CHANGED
|
@@ -4221,6 +4221,7 @@ export function startDaemon(config = {}, deps = {}) {
|
|
|
4221
4221
|
repoRoot: null,
|
|
4222
4222
|
worktreeBranch: null,
|
|
4223
4223
|
lastCommit: null,
|
|
4224
|
+
lastCommitAt: null,
|
|
4224
4225
|
fileCount: null,
|
|
4225
4226
|
error: null,
|
|
4226
4227
|
errorCode: null,
|
|
@@ -4263,6 +4264,10 @@ export function startDaemon(config = {}, deps = {}) {
|
|
|
4263
4264
|
typeof snapshot?.lastCommit === "string" && snapshot.lastCommit.trim()
|
|
4264
4265
|
? snapshot.lastCommit.trim()
|
|
4265
4266
|
: null,
|
|
4267
|
+
lastCommitAt:
|
|
4268
|
+
typeof snapshot?.lastCommitAt === "string" && snapshot.lastCommitAt.trim()
|
|
4269
|
+
? snapshot.lastCommitAt.trim()
|
|
4270
|
+
: null,
|
|
4266
4271
|
gitRemoteUrl:
|
|
4267
4272
|
typeof snapshot?.gitRemoteUrl === "string" && snapshot.gitRemoteUrl.trim()
|
|
4268
4273
|
? snapshot.gitRemoteUrl.trim()
|
|
@@ -4291,6 +4296,7 @@ export function startDaemon(config = {}, deps = {}) {
|
|
|
4291
4296
|
repo_root: result.repoRoot,
|
|
4292
4297
|
worktree_branch: result.worktreeBranch,
|
|
4293
4298
|
last_commit: result.lastCommit,
|
|
4299
|
+
last_commit_at: result.lastCommitAt,
|
|
4294
4300
|
git_remote_url: result.gitRemoteUrl,
|
|
4295
4301
|
file_count: result.fileCount,
|
|
4296
4302
|
error: result.error,
|