#!/usr/bin/env node /** * argent CLI — globally-installed entry point. * * This dispatcher is intentionally minimal: it parses the top-level command, * lazy-imports the matching bundle, and forwards arguments. The actual * subcommand implementations live in sibling workspace packages and ship as * pre-bundled CJS files in dist/ alongside this dispatcher. * * Usage: * argent mcp Start the MCP stdio server (used by editors) * argent init Set up argent in a workspace (MCP + skills + rules) * argent install Alias for init * argent update Check for updates, refresh configuration * argent uninstall Remove argent from a workspace * argent remove Alias for uninstall * argent tools List tools exposed by the tool-server * argent tools describe Show one tool's flags * argent run [flags] Invoke a tool by name * argent server start [flags] Spawn a long-lived tool-server (foreground by default) * argent server status|stop|logs Manage the shared tool-server * argent link [flags] Route client requests to a remote tool-server * argent unlink Remove the persisted remote link * argent enable Enable a feature flag (global by default) * argent disable Disable a feature flag (global by default) * argent flags Show current feature-flag state */ export {};