make-agent
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.
Running the CLI
To run the Make Agent CLI:
Available Commands
Currently, the CLI supports the following commands:
dev: Make your AI agent discoverable and register the plugin
Options:
-p, --port <number>
: Specify the local port to expose (required)
register: Register a new plugin with a URL
Options:
-u, --url <url>
: Specify the plugin URL (required)
deploy: Deploy your AI agent, making it discoverable and registering it as a plugin
Options:
-u, --url <url>
: Specify the deployment URL (optional)
If no URL is provided, the command will attempt to determine the deployed URL automatically.
update: Update an existing AI agent plugin
Options:
-u, --url <url>
: Specify the updated plugin URL (required)-i, --id <id>
: Specify the plugin ID to update (required)
contract: Scaffold a basic agent from a NEAR contract that has an ABI
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
delete: Delete your AI agent plugin
Options:
-i, --id <id>
: Specify the plugin ID to delete (required)
For more information about any command, you can use:
Example Usage
Development
This project was created using bun init
in Bun v1.1.20. To start developing:
Clone the repository
Run
bun install
to install dependenciesModify the code in the
commands
andservices
directories as needed
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Last updated