JuliaOS CLI Interface
Overview
The JuliaOS CLI is fully modular and located in /packages/cli/src. All interactive menus, commands, and utilities are implemented as modules in this directory. The root /scripts directory is now reserved for operational/dev scripts only.
Entry Point
Main CLI:
/packages/cli/src/interactive.cjsMenus:
/packages/cli/src/(e.g.,agent_management_menu.js,swarm_management_menu.js, etc.)Utilities:
/packages/cli/src/utils.jsand/packages/cli/src/utils/Commands:
/packages/cli/src/commands/
Usage
To start the CLI:
node packages/cli/src/interactive.cjsStructure
/packages/cli/src/
interactive.cjs # Main CLI entry point
agent_management_menu.js # Agent management menu
swarm_management_menu.js # Swarm management menu
... # Other menus
utils/ # Utility modules
commands/ # Command implementationsExample: Running an Agent
node packages/cli/src/interactive.cjs
# Follow the prompts to create and manage agentsNotes
All CLI logic is now in
/packages/cli/src./scriptsis for operational/dev scripts (e.g., server startup, deployment, etc.).Update your workflow and documentation to use the new CLI locations.
Last updated: [auto-update on major structure change]


