Quick Start

Deploy and edit your own transaction building agents

Fork Our Template Repo

  1. Click one of the above agent options (Ref or CoinGecko)

  2. Click Deploy. This will fork our repo to your GitHub and deploy to a host url

  3. Go to your GitHub and clone the newly created repo locally

Setting up Your Local

Add make-agent, this will fire up you local agent and allow you to test in the playground

pnpm i -D make-agent

Add package.json under scripts.

"dev:make-agent": "next dev & pnpm make-agent dev -p 3000",

It should look like this

  "scripts": {
    "dev": "next dev",
    "dev:make-agent": "next dev & pnpm make-agent dev -p 3000",
    "build": "next build",
    "start": "next start",
    "lint": "next lint"
  },

Run the Agent in the terminal

pnpm run dev:make-agent

Playground Boots Up

The window should boot up, and you can now edit locally and see it update live in the wallet.

Check out the file /public/.well-known/ai-plugin.json

This is the Manifest that details how our plugin works

Last updated

Logo