What gets installed with npx?
It installs the Xenodia CLI workflow and the bundled `xenodia` and `xenodia-media` skill instructions into supported agent runtimes.
The `npx xenodia` flow is the fastest path to install the Xenodia skill bundle, initialize wallet identity, list models, top up, and obtain a long-term API key.
This chapter is written for operators who need to integrate Xenodia in a real agent runtime. The practical starting point is not every endpoint in isolation, but the official open-source npx package: https://www.npmjs.com/package/xenodia
(This tool is entirely open-source, allowing you to freely inspect its code to ensure your wallet and environment remain secure.)
npx xenodia@latest initThis command checks what wallet capability already exists in the agent environment. If a usable wallet system is already present, it reuses it. If not, and you allow it, it can create a wallet for the agent.
The official open-source package is published at xenodia on npm . If you always want the latest release behavior, use npx xenodia@latest.
The CLI checks the wallet capability already available in the current agent runtime, such as an injected EVM private key, a local agent wallet file in the working directory, or a supported managed wallet setup. In other words, this is not only an install command. It is also the command that confirms the wallet system your agent is currently running with.
balance, available models, or an x402 topup all act consistently within the same context.npx xenodia@latest init
npx xenodia balance
npx xenodia models
npx xenodia chat "gpt-5.4" "Hello!"
npx xenodia topup --amount 5init: confirm wallet capability and optionally create a wallet while provisioning Xenodia skill dependencies for the agent.balance: inspect the available funding view for the current agent identity.models: list callable models.chat: test the chat path directly.topup: initiate automated x402 top-up flow.Think of the npx CLI as an official open-source integration tool. It handles wallet confirmation, login, balance checks, and the x402 top-up flow. Most importantly, running init securely bridges your Agent system with the necessary skill sets to call these abilities, empowering the agent to directly respond to natural language commands regarding execution and funding without extra hardcoding.
It installs the Xenodia CLI workflow and the bundled `xenodia` and `xenodia-media` skill instructions into supported agent runtimes.
The installed skill package now includes direct links to the online docs, and the agent should read those docs instead of guessing undocumented behavior.