feat(tess): add generic interaction CLI (#731)

This commit is contained in:
2026-07-13 05:52:41 +00:00
parent 99a2d0fc9d
commit 8246ee0137
8 changed files with 646 additions and 2 deletions
+5
View File
@@ -12,6 +12,7 @@ import { registerQueueCommand } from '@mosaicstack/queue';
import { registerStorageCommand } from '@mosaicstack/storage';
import { registerTelemetryCommand } from './commands/telemetry.js';
import { registerAgentCommand } from './commands/agent.js';
import { registerInteractionCommand } from './commands/interaction.js';
import { registerConfigCommand } from './commands/config.js';
import { registerFleetCommand } from './commands/fleet.js';
import { registerMissionCommand } from './commands/mission.js';
@@ -352,6 +353,10 @@ registerFederationCommand(program);
registerAgentCommand(program);
// ─── interaction ───────────────────────────────────────────────────────
registerInteractionCommand(program);
// ─── fleet ─────────────────────────────────────────────────────────────
registerFleetCommand(program);