Page cover

Agent Management (CLI)

JuliaOS provides a powerful framework for creating and managing AI agents. The CLI offers an interactive menu for agent management, allowing you to create, configure, start, stop, and monitor agents easily.

Creating an Agent via CLI

Start the interactive CLI:

node scripts/interactive.cjs

Navigate the menu:

  • Select "👤 Agent Management" -> "Create Agent"

  • Enter a name for your agent (e.g., "MyTradingAgent")

  • Select an agent type (e.g., "Trading")

  • Enter agent configuration as JSON (can use {} for defaults)

Agent Lifecycle

  • Creation: Define the agent's properties, skills, and configuration

  • Initialization: Set up the agent's internal state and connections

  • Execution: Perform tasks and make decisions

  • Monitoring: Track performance and metrics

  • Termination: Gracefully shut down when no longer needed

Example: Creating and Starting an Agent

node scripts/interactive.cjs
# Follow the prompts to create an agent
# After creation, select your agent and choose 'Start Agent' from the menu

Supported Agent Types

  • Trading Agents

  • Arbitrage Agents

  • Monitoring Agents

  • Analysis Agents

  • Portfolio Agents

  • Custom Agents

Tips

  • You can view and manage agent skills and specialization paths directly from the CLI.

  • Use the CLI to monitor agent status, logs, and performance metrics in real time.

For more details on agent concepts and advanced usage, see the Agents and Swarms documentation.