@agentoffernetwork/cli
v0.0.2
Published
AON CLI — install and manage AON Skills for Claude and other MCP hosts
Downloads
495
Readme
@agentoffernetwork/cli
CLI tool for installing and managing AON Skills on Claude and other MCP-compatible AI hosts.
Install
npm install -g @agentoffernetwork/cliCommands
aon skill install <package>
Install an AON Skill and register it as an MCP server.
# Install to current project (.mcp.json)
aon skill install @agentoffernetwork/skill
# Install to Claude Desktop (global config)
aon skill install @agentoffernetwork/skill --global
# Install a Python skill
aon skill install agentoffernetwork --runtime python
# Force overwrite existing entry
aon skill install @agentoffernetwork/skill --force
# Install from local directory
aon skill install ./my-skill --localHow it works:
- Downloads the package from npm (or PyPI for
--runtime python) - Reads the
aonmanifest frompackage.json(or--manifestCLI output) - Auto-detects the target config file (
.mcp.jsonor Claude Desktop global config) - Writes the MCP server entry
aon skill remove <name>
Remove an installed skill from the MCP config.
aon skill remove agentoffernetwork-skillaon skill list
List all installed MCP servers.
aon skill listaon skill info <package>
Show skill metadata (name, tools, SDK version requirement).
aon skill info @agentoffernetwork/skillConfig Targets
The CLI auto-detects where to write based on context:
| Flag | Target | Config file |
|------|--------|-------------|
| (default) | Claude Code (project) | Nearest .mcp.json walking up from cwd |
| --global | Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) |
| --target <path> | Custom | Any path you specify |
License
MIT
