#!/usr/bin/env node /** * Supen CLI * * Usage: * supen bootstrap First-time setup (interactive) * supen start Start the Supen service * supen stop Stop the Supen service * supen status Show service state + detected CLIs * supen codex [args...] Open Codex through Supen's native stream bridge * supen bridge stdio Relay app-server stdio to Supen's bridge (Desktop SSH) * supen update Update the installed daemon and restart it * supen chat Send a chat message * supen skills list List available skills * supen skills install Install a skill * supen skills enable Enable a skill * supen skills disable Disable a skill * supen skills auth status Check skill auth status * supen skills auth login Authenticate a skill * supen backend list List coding backends * supen backend set Set active coding backend * supen model list List available models * supen model set Set active model * supen config list Show all configuration * supen config get Get config value * supen config set Set config value * supen config delete Delete config key * supen doctor Run diagnostics * supen doctor list List diagnostic checks * supen daemon status Check daemon status * supen daemon restart Restart daemon * supen daemon logs [--lines N] Tail daemon logs * supen daemon config Show daemon config * supen verify [name] Verify the current mounted plugin * supen evolve [focus] Evolve the current knowledge context * supen plugin list List mounted plugins * supen plugin verify Verify a mounted plugin * supen computer list List computers from the gateway * supen computer templates List Hub templates * supen computer launch Launch a computer through the gateway * supen agent list List agents * supen agent create Create agent * supen agent delete Delete agent * supen agent info Show agent details * supen thread list List threads * supen thread show Show thread runtime state and history * supen pairing pair [code] Choose an agent/channel and approve a pairing code * supen pair Quick-approve a pairing code via gateway * supen pairing list List pairings * supen pairing approve Approve pairing * supen pairing unbind Unbind chat identity * supen mcp list List MCP servers * supen mcp add Add MCP server * supen mcp remove Remove MCP server * supen mcp status Show MCP status */ export {};