|
1 | 1 | # Make Agent CLI |
2 | 2 |
|
| 3 | +**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. |
3 | 4 |
|
4 | | -**The swiss army knife for multi-chain AI agents** |
| 5 | +## Docs Quick Start |
5 | 6 |
|
6 | | -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. |
| 7 | +[https://docs.bitte.ai/agents/quick-start](https://docs.bitte.ai/agents/quick-start) |
7 | 8 |
|
| 9 | +### Next.js Starter project |
8 | 10 |
|
9 | | -## Quick Start: |
10 | | - |
11 | | -### Read the docs: |
12 | | - |
13 | | -https://docs.bitte.ai/agents/quick-start |
14 | | - |
15 | | -### Next.js Starter project: |
16 | | -https://github.com/BitteProtocol/agent-next-boilerplate |
| 11 | +[https://github.com/BitteProtocol/agent-next-boilerplate](https://github.com/BitteProtocol/agent-next-boilerplate) |
17 | 12 |
|
18 | 13 | ## Usage |
19 | 14 |
|
@@ -56,7 +51,20 @@ Currently, the CLI supports the following command: |
56 | 51 | If no URL is provided, the command will attempt to determine the URL automatically through environment variables. |
57 | 52 | In particular, see [deployed-url.ts](src/utils/deployed-url.ts) for various deployment configurations. |
58 | 53 |
|
| 54 | +1. ### **`validate`**: Validate an agent spec using a local json file or a remote url (for testing purposes) |
| 55 | + |
| 56 | + Usage: |
| 57 | + |
| 58 | + ```bash |
| 59 | + npx make-agent validate [source] |
| 60 | + |
| 61 | + # Example: |
| 62 | + npx make-agent validate ./ai-plugin.json |
| 63 | + npx make-agent validate https://coingecko-demo.vercel.app/.well-known/ai-plugin.json |
| 64 | + ``` |
| 65 | + |
59 | 66 | 1. ### **`contract`**: Scaffold a basic agent from a NEAR contract that has an ABI |
| 67 | + |
60 | 68 | Usage: |
61 | 69 |
|
62 | 70 | ```bash |
@@ -94,11 +102,9 @@ Currently, the CLI supports the following command: |
94 | 102 | - `-r, --repo <repoUrl>`: (required) To verify a plugin we need the url for a public repository containing the plugin's code |
95 | 103 | - `-v, --version <versionNumber>`: (optional) Specify the version of the plugin in case of an update |
96 | 104 | - `-c, --categories <categories>`: (optional) List some categories that describe the type of plugin you're verifying. |
97 | | - - `-x, --chains <chainIds>`: (optional) If your plugin works on specific evm chains, you can specify them so your plugin is easier to find. |
98 | | - |
99 | | - These options can also be defined in the agent spec in the `"x-mb"` object. |
100 | | - |
| 105 | + - `-x, --chains <chainIds>`: (optional) If your plugin works on specific evm chains, you can specify them so your plugin is easier to find. |
101 | 106 |
|
| 107 | + These options can also be defined in the agent spec in the `"x-mb"` object. |
102 | 108 |
|
103 | 109 | ## Development |
104 | 110 |
|
|
0 commit comments