You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,18 +116,20 @@ npm run build
116
116
Then start the TUI or run one Turn:
117
117
118
118
```sh
119
-
npm --workspace maka-agent exec -- maka
120
-
npm --workspace maka-agent exec -- maka run "Summarize this repository and identify its most important risk"
121
-
npm --workspace maka-agent exec -- maka run --graph "Implement two independent slices, integrate them, then review the result"
122
-
npm --workspace maka-agent exec -- maka --help
119
+
npm run cli:dev
120
+
npm run cli:dev -- run "Summarize this repository and identify its most important risk"
121
+
npm run cli:dev -- run --graph "Implement two independent slices, integrate them, then review the result"
122
+
npm run cli:dev -- --help
123
123
```
124
124
125
125
The TUI also accepts `/graph on`, `/graph off`, and `/graph <task>`. Non-interactive
126
126
`--graph` runs wait for the durable Graph to finish before printing the final
127
127
supervisor output. Graph implementation operators use isolated Git worktrees, so
128
128
the source project must be a clean Git worktree.
129
129
130
-
The CLI reads the same model connections and workspace configuration written by Desktop. Evaluation specs and adapters live in [`packages/eval`](./packages/eval).
130
+
The repository CLI uses the same `Maka Dev` profile as a development Desktop build. The
131
+
released `maka` binary continues to use the `Maka` profile; the two profiles are not copied or
132
+
synchronized automatically. Evaluation specs and adapters live in [`packages/eval`](./packages/eval).
0 commit comments