@agentarium-ai/daemon
v0.1.2
Published
Local daemon for Agentarium. It connects to an Agentarium backend, starts local agent runtimes, and proxies workspace file operations for those runtimes.
Readme
Agentarium Daemon
Local daemon for Agentarium. It connects to an Agentarium backend, starts local agent runtimes, and proxies workspace file operations for those runtimes.
Run With npx
npx --yes --package=@agentarium-ai/daemon@latest \
agentarium \
--server-url http://101.132.58.61:31711 \
--api-key <daemon-api-key>Connect to Zeabur
AGENTARIUM_SERVER_URL=http://101.132.58.61:31711 \
AGENTARIUM_DAEMON_API_KEY=<daemon-api-key> \
npx --yes --package=@agentarium-ai/daemon@latest agentariumConnect to a Local Backend
AGENTARIUM_SERVER_URL=http://127.0.0.1:8787 \
AGENTARIUM_DAEMON_API_KEY=dev-key \
npx --yes --package=@agentarium-ai/daemon@latest agentariumYou can also pass the same values as flags:
npx --yes --package=@agentarium-ai/daemon@latest \
agentarium --server-url http://127.0.0.1:8787 --api-key dev-key