https://github.com/BitteProtocol/make-agent
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.
https://github.com/BitteProtocol/make-agent
agentic-ai agents openapi
Last synced: 5 days ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/BitteProtocol/make-agent
- Owner: BitteProtocol
- Created: 2024-09-03T11:22:43.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-09-03T08:17:02.000Z (10 months ago)
- Last Synced: 2026-04-26T18:06:24.225Z (about 2 months ago)
- Topics: agentic-ai, agents, openapi
- Language: TypeScript
- Homepage: https://docs.bitte.ai/agents/introduction
- Size: 19.4 MB
- Stars: 15
- Watchers: 5
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-bitte - make-agent
README
# Make Agent CLI
**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.

## Quick Start:
### Read the docs:
https://docs.bitte.ai/agents/quick-start
### Next.js Starter project:
https://github.com/BitteProtocol/agent-next-boilerplate
## Usage
### Running the CLI
To run the Make Agent CLI:
```bash
npx make-agent dev -p 3000
```
### Available Commands
Currently, the CLI supports the following command:
1. ### **`dev`**: Make your AI agent discoverable and register the plugin
Usage:
```bash
npx make-agent dev -p
```
Options:
- `-p, --port `: 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.
1. ### **`deploy`**: Register or update your AI agent, making it discoverable as a plugin
Usage:
```bash
npx make-agent deploy [options]
```
Options:
- `-u, --url `: The URL where your agent is hosted (optional)
If no URL is provided, the command will attempt to determine the URL automatically through environment variables.
In particular, see [deployed-url.ts](src/utils/deployed-url.ts) for various deployment configurations.
1. ### **`contract`**: Scaffold a basic agent from a NEAR contract that has an ABI
Usage:
```bash
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
1. ### **`delete`**: Delete your AI agent plugin
Usage:
```bash
npx make-agent delete [options]
```
Options:
- `-u, --url `: Specify the deployment URL (optional)
If no URL is provided, the command will attempt to determine the deployed URL automatically.
1. ### **`verify`**: Request your plugin's verification
Usage:
```bash
npx make-agent verify -u -e -r -v -c [cat1,cat2] -x [chainNum1,chainNum2]
```
Options:
- `-u, --url `: (required) Specify the url of the deployed plugin
- `-e, --email `: (required) Provide an email so we can contact you regarding the verification process
- `-r, --repo `: (required) To verify a plugin we need the url for a public repository containing the plugin's code
- `-v, --version `: (optional) Specify the version of the plugin in case of an update
- `-c, --categories `: (optional) List some categories that describe the type of plugin you're verifying.
- `-x, --chains `: (optional) If your plugin works on specific evm chains, you can specify them so your plugin is easier to find.
These options can also be defined in the agent spec in the `"x-mb"` object.
## Development
Install dependencies
```bash
pnpm install
# Develop agents locally
pnpm run dev
# Deploy agents
pnpm make-agent deploy
```
## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.