mirror of
https://github.com/mudler/LocalAGI.git
synced 2026-07-23 10:45:41 -04:00
dc21ee83bc
* feat: implement 'agent run' CLI command (#448) - Add 'local-agi agent run' command supporting agent name or config file - Support 'local-agi agent run <name>' to run agent from registry (pool.json) - Support 'local-agi agent run --config <file.json>' to run from JSON config - Extract web server into 'local-agi serve' subcommand - Implement agent name lookup from registry - Add JSON config file parsing and validation - Create standalone agent execution logic - Add proper error handling for invalid inputs - Reuse existing service factories (actions, connectors, filters, skills) - Environment variable fallback for config values - No web server - agent runs in foreground with clean SIGINT/SIGTERM handling References: https://github.com/mudler/LocalAGI/issues/448 * refactor(cmd): use pool to start agent instead of duplicating logic Replace ~220 lines of duplicated agent initialization code in startStandaloneAgent() with a call to pool.StartAgentStandalone(). The new pool method delegates to the existing startAgentWithConfig(), eliminating code duplication between the CLI and the pool. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: add default help command to root * fix: default to serve command when no subcommand provided The e2e tests fail because when the container starts with no arguments, the root command shows help instead of starting the web server. Changed the root command to call serveCmd.RunE() directly when no subcommand is provided, ensuring the web server starts by default. This fixes the CI e2e test failure where the web server wasn't starting. * fix: add serve subcommand to Dockerfile ENTRYPOINT * refactor: remove unused GetRAGProvider function * refactor: centralize env var setup in cmd/env.go --------- Co-authored-by: localai-bot <localai-bot@noreply.github.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>