The swiss army knife for multi-chain AI agents
Make Agent CLI is a powerful command-line tool designed to streamline the management and deployment of AI agents across multiple chains. This tool simplifies the process of making your AI agents discoverable and registering them as plugins.
To run the Make Agent CLI:
npx make-agent dev -p 3000
Currently, the CLI supports the following command:
-
dev: Make your AI agent discoverable and register the plugin
Usage:
npx make-agent dev -p <port_number>
Options:
-p, --port <number>
: Specify the local port to expose (required)
-
deploy: Deploy your AI agent, making it discoverable and registering it as a plugin
Usage:
npx make-agent deploy [options]
Options:
-u, --url <url>
: Specify the deployment URL (optional)
If no URL is provided, the command will attempt to determine the deployed URL automatically.
The CLI is designed to support additional commands in the future, such as:
register
: For registering AI agentsupdate
: For updating existing AI agentsdelete
: For removing AI agents
These commands are currently commented out in the code and will be implemented in future versions.
This project was created using bun init
in Bun v1.1.20. To start developing:
- Clone the repository
- Run
bun install
to install dependencies - Modify the code in the
commands
andservices
directories as needed
Contributions are welcome! Please feel free to submit a Pull Request.