@love-moon/conductor-cli 0.2.10 → 0.2.12
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/bin/conductor-config.js +17 -26
- package/bin/conductor-fire.js +823 -161
- package/bin/conductor-update.js +307 -0
- package/bin/conductor.js +8 -4
- package/package.json +3 -3
- package/src/daemon.js +83 -2
- package/src/fire/history.js +109 -0
package/bin/conductor-config.js
CHANGED
|
@@ -27,34 +27,24 @@ const DEFAULT_CLIs = {
|
|
|
27
27
|
},
|
|
28
28
|
copilot: {
|
|
29
29
|
command: "copilot",
|
|
30
|
-
execArgs: "--allow-all-paths --allow-all-tools
|
|
30
|
+
execArgs: "--allow-all-paths --allow-all-tools",
|
|
31
31
|
description: "GitHub Copilot CLI"
|
|
32
32
|
},
|
|
33
|
-
gemini: {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
},
|
|
38
|
-
opencode: {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
},
|
|
43
|
-
kimi: {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
},
|
|
48
|
-
aider: {
|
|
49
|
-
command: "aider",
|
|
50
|
-
execArgs: "",
|
|
51
|
-
description: "Aider AI Pair Programming"
|
|
52
|
-
},
|
|
53
|
-
goose: {
|
|
54
|
-
command: "goose",
|
|
55
|
-
execArgs: "",
|
|
56
|
-
description: "Goose AI Agent CLI"
|
|
57
|
-
},
|
|
33
|
+
// gemini: {
|
|
34
|
+
// command: "gemini",
|
|
35
|
+
// execArgs: "",
|
|
36
|
+
// description: "Google Gemini CLI"
|
|
37
|
+
// },
|
|
38
|
+
// opencode: {
|
|
39
|
+
// command: "opencode",
|
|
40
|
+
// execArgs: "",
|
|
41
|
+
// description: "OpenCode CLI"
|
|
42
|
+
// },
|
|
43
|
+
// kimi: {
|
|
44
|
+
// command: "kimi",
|
|
45
|
+
// execArgs: "--yolo --print --prompt",
|
|
46
|
+
// description: "Kimi CLI"
|
|
47
|
+
// },
|
|
58
48
|
};
|
|
59
49
|
|
|
60
50
|
const backendUrl =
|
|
@@ -168,6 +158,7 @@ async function main() {
|
|
|
168
158
|
`agent_token: ${yamlQuote(token)}`,
|
|
169
159
|
`backend_url: ${yamlQuote(backendUrl)}`,
|
|
170
160
|
"log_level: debug",
|
|
161
|
+
"workspace: '~/ws/fires'",
|
|
171
162
|
"",
|
|
172
163
|
"# Allowed coding CLIs",
|
|
173
164
|
"allow_cli_list:"
|