Skip to content

Commit 9099e0f

Browse files
NianJiuZstclaude
andcommitted
feat: register text repl command in command registry
Wire the text repl command into the CLI's command trie so it is discoverable via `mmx text repl` and shown in help output under `mmx text --help`. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8018c37 commit 9099e0f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/registry.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import authStatus from './commands/auth/status';
88
import authRefresh from './commands/auth/refresh';
99
import authLogout from './commands/auth/logout';
1010
import textChat from './commands/text/chat';
11+
import textRepl from './commands/text/repl';
1112
import speechSynthesize from './commands/speech/synthesize';
1213
import speechVoices from './commands/speech/voices';
1314
import imageGenerate from './commands/image/generate';
@@ -284,6 +285,7 @@ export const registry = new CommandRegistry({
284285
'auth refresh': authRefresh,
285286
'auth logout': authLogout,
286287
'text chat': textChat,
288+
'text repl': textRepl,
287289
'speech synthesize': speechSynthesize,
288290
'speech generate': speechSynthesize,
289291
'speech voices': speechVoices,

0 commit comments

Comments
 (0)