axon install
Install a module into an agent.
axon install <id> # install into the current agent
axon install <id> --agent <name> # install into a specific agent
axon uninstall <id> # remove an installed module
<id> is the registry identifier — @scope/name or bare name.
Installing copies the module source into modules/<name>/, merges its npm dependencies
into the agent's package.json, and runs bun install. Nested module dependencies are
resolved and merged automatically.
If the module declares environment variable requirements, the CLI prompts for values and
writes them to .env.
axon install @acme/github
# → copies source to modules/github/
# → merges dependencies
# → prompts: GITHUB_TOKEN (required)
See Modules for the module authoring reference.