@otto-code/cli 0.7.4 → 0.7.5
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/dist/cli.js +3 -0
- package/package.json +6 -5
package/dist/cli.js
CHANGED
|
@@ -10,6 +10,7 @@ import { createSpeechCommand } from "./commands/speech/index.js";
|
|
|
10
10
|
import { createTerminalCommand } from "./commands/terminal/index.js";
|
|
11
11
|
import { createWorktreeCommand } from "./commands/worktree/index.js";
|
|
12
12
|
import { createHooksCommand } from "./commands/hooks.js";
|
|
13
|
+
import { createBrainCommand } from "@otto-code/brain";
|
|
13
14
|
import { startCommand as daemonStartCommand } from "./commands/daemon/start.js";
|
|
14
15
|
import { runStatusCommand as runDaemonStatusCommand } from "./commands/daemon/status.js";
|
|
15
16
|
import { runRestartCommand as runDaemonRestartCommand } from "./commands/daemon/restart.js";
|
|
@@ -108,6 +109,8 @@ export function createCli() {
|
|
|
108
109
|
program.addCommand(createSpeechCommand());
|
|
109
110
|
// Worktree commands
|
|
110
111
|
program.addCommand(createWorktreeCommand());
|
|
112
|
+
// Local AI (otto-brain)
|
|
113
|
+
program.addCommand(createBrainCommand());
|
|
111
114
|
return program;
|
|
112
115
|
}
|
|
113
116
|
//# sourceMappingURL=cli.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@otto-code/cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.5",
|
|
4
4
|
"description": "Otto CLI - control your AI coding agents from the command line",
|
|
5
5
|
"license": "AGPL-3.0-or-later",
|
|
6
6
|
"bin": {
|
|
@@ -28,14 +28,15 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@clack/prompts": "^1.0.0",
|
|
31
|
-
"@otto-code/
|
|
32
|
-
"@otto-code/
|
|
33
|
-
"@otto-code/
|
|
31
|
+
"@otto-code/brain": "0.7.5",
|
|
32
|
+
"@otto-code/client": "0.7.5",
|
|
33
|
+
"@otto-code/protocol": "0.7.5",
|
|
34
|
+
"@otto-code/server": "0.7.5",
|
|
34
35
|
"chalk": "^5.3.0",
|
|
35
36
|
"commander": "^12.0.0",
|
|
36
37
|
"mime-types": "^2.1.35",
|
|
37
38
|
"tree-kill": "^1.2.2",
|
|
38
|
-
"ws": "^8.
|
|
39
|
+
"ws": "^8.21.0",
|
|
39
40
|
"yaml": "^2.8.4"
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|