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:
-
Usage:
npx make-agent dev -p <port_number>
Options:
-p, --port <number>
: Specify the local port to expose (optional). \
If no port is provided, the command will search for a node instance running in the current directory and assume its port.
-
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.
-
Usage:
npx make-agent register [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.
-
Usage:
npx make-agent update [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.
-
Usage:
npx make-agent contract
You will be prompted to select a contractId, add a description with instructions on how the agent should use the contract and an output directory
-
Usage:
npx make-agent delete [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.
-
Usage:
npx make-agent verify -u <url> -e <email> -r <repoUrl> -v <versionNumber>
Options:
-u, --url <url>
: (required) Specify the url of the deployed plugin-e, --email <email>
: (required) Provide an email so we can contact you regarding the verification process-r, --repo <repoUrl>
: (required) To verify a plugin we need the url for a public repository containing the plugin's code-v, --version <versionNumber>
: (optional) Specify the version of the plugin in case of an update
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.