feat: add minimal companion client CLI command

This commit is contained in:
William Valentin
2026-02-18 11:02:21 -08:00
parent 7ca5d5bff5
commit 59c1033da0
6 changed files with 366 additions and 2 deletions
+2
View File
@@ -29,6 +29,7 @@ import { registerZaiAuthCommand } from './zai-auth.js';
import { registerAnthropicAuthCommand } from './anthropic-auth.js';
import { registerSkillsCommand } from './skills.js';
import { registerBackupCommand } from './backup.js';
import { registerCompanionCommand } from './companion.js';
export function createProgram(): Command {
const program = new Command();
@@ -58,6 +59,7 @@ export function createProgram(): Command {
registerAnthropicAuthCommand(program);
registerSkillsCommand(program);
registerBackupCommand(program);
registerCompanionCommand(program);
return program;
}