{"id":50342524,"url":"https://github.com/BitteProtocol/make-agent","last_synced_at":"2026-06-15T09:01:04.760Z","repository":{"id":256380296,"uuid":"851588930","full_name":"BitteProtocol/make-agent","owner":"BitteProtocol","description":"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.","archived":false,"fork":false,"pushed_at":"2025-09-03T08:17:02.000Z","size":20329,"stargazers_count":15,"open_issues_count":2,"forks_count":5,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-04-26T18:06:24.225Z","etag":null,"topics":["agentic-ai","agents","openapi"],"latest_commit_sha":null,"homepage":"https://docs.bitte.ai/agents/introduction","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BitteProtocol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-03T11:22:43.000Z","updated_at":"2026-02-22T12:57:18.000Z","dependencies_parsed_at":"2024-10-03T13:55:14.939Z","dependency_job_id":"0133388b-ea96-406a-9c91-51a6f2420ab9","html_url":"https://github.com/BitteProtocol/make-agent","commit_stats":null,"previous_names":["mintbase/bitte-cli","mintbase/make-agent"],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/BitteProtocol/make-agent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BitteProtocol%2Fmake-agent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BitteProtocol%2Fmake-agent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BitteProtocol%2Fmake-agent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BitteProtocol%2Fmake-agent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BitteProtocol","download_url":"https://codeload.github.com/BitteProtocol/make-agent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BitteProtocol%2Fmake-agent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34355156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agentic-ai","agents","openapi"],"created_at":"2026-05-29T18:00:25.258Z","updated_at":"2026-06-15T09:01:04.753Z","avatar_url":"https://github.com/BitteProtocol.png","language":"TypeScript","funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"# Make Agent CLI\n\n\n**The swiss army knife for multi-chain AI agents**\n\nMake 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.\n\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://img.shields.io/github/v/release/BitteProtocol/make-agent\" /\u003e\n\u003cimg src=\"https://img.shields.io/github/release-date/BitteProtocol/make-agent\" /\u003e\n \u003cimg src=\"https://img.shields.io/npm/l/make-agent\"/\u003e\n\u003cimg src=\"https://img.shields.io/github/commit-activity/m/BitteProtocol/make-agent\" /\u003e\n\n\u003cimg src='https://img.shields.io/npm/dw/make-agent' /\u003e\n\u003c/p\u003e\n\n\n## Quick Start:\n\n### Read the docs:\n\nhttps://docs.bitte.ai/agents/quick-start\n\n### Next.js Starter project:\nhttps://github.com/BitteProtocol/agent-next-boilerplate\n\n## Usage\n\n### Running the CLI\n\nTo run the Make Agent CLI:\n\n```bash\nnpx make-agent dev -p 3000\n```\n\n### Available Commands\n\nCurrently, the CLI supports the following command:\n\n1. ### **`dev`**: Make your AI agent discoverable and register the plugin\n\n   Usage:\n\n   ```bash\n   npx make-agent dev -p \u003cport_number\u003e\n   ```\n\n   Options:\n   - `-p, --port \u003cnumber\u003e`: Specify the local port to expose (optional).\n\n   If no port is provided, the command will search for a node instance running in the current directory and assume its port.\n\n1. ### **`deploy`**: Register or update your AI agent, making it discoverable as a plugin\n\n   Usage:\n\n   ```bash\n   npx make-agent deploy [options]\n   ```\n\n   Options:\n   - `-u, --url \u003curl\u003e`: The URL where your agent is hosted (optional)\n\n   If no URL is provided, the command will attempt to determine the URL automatically through environment variables.\n   In particular, see [deployed-url.ts](src/utils/deployed-url.ts) for various deployment configurations.\n\n1. ### **`contract`**: Scaffold a basic agent from a NEAR contract that has an ABI\n   Usage:\n\n   ```bash\n   npx make-agent contract\n   ```\n\n   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\n\n1. ### **`delete`**: Delete your AI agent plugin\n\n   Usage:\n\n   ```bash\n   npx make-agent delete [options]\n   ```\n\n   Options:\n\n   - `-u, --url \u003curl\u003e`: Specify the deployment URL (optional)\n\n   If no URL is provided, the command will attempt to determine the deployed URL automatically.\n\n1. ### **`verify`**: Request your plugin's verification\n\n   Usage:\n\n   ```bash\n   npx make-agent verify -u \u003curl\u003e -e \u003cemail\u003e -r \u003crepoUrl\u003e -v \u003cversionNumber\u003e -c [cat1,cat2] -x [chainNum1,chainNum2]\n   ```\n\n   Options:\n\n   - `-u, --url \u003curl\u003e`: (required) Specify the url of the deployed plugin\n   - `-e, --email \u003cemail\u003e`: (required) Provide an email so we can contact you regarding the verification process\n   - `-r, --repo \u003crepoUrl\u003e`: (required) To verify a plugin we need the url for a public repository containing the plugin's code\n   - `-v, --version \u003cversionNumber\u003e`: (optional) Specify the version of the plugin in case of an update\n   - `-c, --categories \u003ccategories\u003e`: (optional) List some categories that describe the type of plugin you're verifying.\n   - `-x, --chains \u003cchainIds\u003e`: (optional) If your plugin works on specific evm chains, you can specify them so your plugin is easier to find. \n   \n   These options can also be defined in the agent spec in the `\"x-mb\"` object.\n   \n\n\n## Development\n\nInstall dependencies\n\n```bash\npnpm install\n\n# Develop agents locally\npnpm run dev\n\n# Deploy agents\npnpm make-agent deploy\n```\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FBitteProtocol%2Fmake-agent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FBitteProtocol%2Fmake-agent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FBitteProtocol%2Fmake-agent/lists"}