Documentation | Agent Playground | Ember AI | Support Discord | Ember Telegram | 𝕏
- 📙 Introduction
- 🧬 Repository Organization
- ⚡ Developer Quickstart
- 🎧 Vibe Coding Guide
- 🔌 MCP Explained
- 💰 Contributions & Bounties
Welcome to Vibekit, the polyglot toolkit for vibe coding smart, autonomous DeFi agents that vibe with the blockchain. Whether you're automating trades, managing liquidity, or integrating with on-chain and off-chain data, Vibekit makes it effortless and fun.
At its core, Vibekit uses the Model Context Protocol (MCP) to standardize how agents connect with tools and data. It includes built-in Agent2Agent (A2A) integration, so the agents can easily work together. Vibekit also works smoothly with popular frameworks like Eliza and LangGraph, just add our MCP tools to your existing agents and watch them level up with DeFi superpowers!
Here's an overview of how everything fits together:
Vibekit is structured as a monorepo with TypeScript at its core, with a Rust implementation is on the horizon. Here's how it's organized:
Vibekit/
├── typescript/
| └── clients/
| └── web/
│ └── templates/
│ └── examples/
│----── lib/
│ └── a2a/
│ └── arbitrum-vibekit-core/
│ └── ember-schemas/
│ └── mcp-tools/
│ └── test-utils/
│----── test/
├── CHANGELOG.md
├── CONTRIBUTIONS.md
├── LICENSE
├── README.md
-
clients/
: Clients for front-end interaction with agents. -
templates/
: Vibekit framework agents to use as a starting template to build your own agent. -
examples/
: Agent examples that demonstrate the use of Ember AI's MCP tools. -
lib/
: Core libraries and tools. -
mcp-tools/
: Implementations of MCP tools.
Follow these steps to build and run a DeFi agent:
How you get the code depends on whether you want to simply run the project or contribute to its development. If you just want to run Vibekit locally or explore the codebase, you can clone the repository through command line or your preferred IDE:
git clone https://github.com/EmberAGI/arbitrum-vibekit.git &&
cd arbitrum-vibekit
If you plan to contribute changes to Vibekit, fork the repository on the Github page and clone your fork locally. Replace YOUR_USERNAME
with your GitHub username:
git clone https://github.com/YOUR_USERNAME/arbitrum-vibekit.git &&
cd arbitrum-vibekit
For more detailed contribution steps, please see our Contribution Guidelines.
Let's run the swapping and lending agents. These agents are started by default when the frontend is started. Follow this guide to launch the frontend:
- Prerequisites:
Make sure you have Docker Desktop with Docker Compose v2.24 or greater installed on your system.
Note
If your are on an M-series Mac, you need to install Docker using the dmg package supplied officially by Docker rather than through Homebrew or other means to avoid build issues.
- Configure Environment Variables:
Navigate to the typescript directory and create a .env
file by copying the example template:
cd typescript &&
cp .env.example .env
Make sure to populate the typescript/.env
file with your API keys and configurations.
- Start Services with Docker Compose:
From the typescript directory, run the following command to build and start the frontend and its associated services (including the lending agent, the swapping agent and the database):
docker compose up
Note
If you get a permission denied error
, try running the above command with sudo
:
sudo docker compose up
Warning
If you previously ran docker compose up
with an older version of this repository and encounter frontend errors or database-related errors in the docker service logs
, follow these steps:
- Clear your browser cache.
- Run the following command in your terminal:
docker compose down && docker volume rm typescript_db_data && docker compose build web --no-cache && docker compose up
- Access Vibekit's Web Interface:
Open your web browser and navigate to http://localhost:3000. To be able to chat with the agents, you need to connect your wallet first. Click on "Connect Wallet" to get started:
After setting up your wallet, you can interact with the lending and swapping agents through the chat interface:
-
Integrate Other Agents:
Checkout the examples/ directory to explore other Vibekit agents. To integrate any other example agents into the frontend, refer to this guide.
To build your own agent, we recommend using our Quickstart Agent template. It provides all the necessary boilerplate code so you can start building right away. Follow these steps to integrate and run the Quickstart Agent:
- Enable the Quickstart Agent in the Frontend:
In the agents-config.ts file, uncomment the agent's configuration in two places:
...
{
id: 'quickstart-agent-template' as const,
name: 'Quickstart',
description: 'Quickstart agent',
suggestedActions: [],
},
...
...
['quickstart-agent-template', 'http://quickstart-agent-template:3007/sse'],
...
- Add the Agent to Docker Compose:
In the docker compose file, uncomment the service definition for the Quickstart Agent:
---
quickstart-agent-template:
build:
context: ./
dockerfile: templates/quickstart-agent/Dockerfile
container_name: vibekit-quickstart-agent-template
env_file:
- path: .env
required: true
- path: templates/quickstart-agent/.env
required: false
ports:
- 3007:3007
restart: unless-stopped
- Configure the Agent's Environment:
Navigate to the agent's directory and create a local .env
by copying the.env.example
file. Make sure to populate the .env
file with your API keys and configurations:
cd typescript/templates/quickstart-agent && cp .env.example .env
- Rebuild and Restart Services:
Navigate to the typescript directory, rebuild the web application and restart all services to apply the changes:
cd ../.. &&
docker compose build web --no-cache && docker compose up
The Quickstart Agent is now accessible through the web frontend:
Tip
To learn more about Vibekit's agent configurations, refer to this guide.
Vibe coding is all about teaming up with AI to enhance your development process. Instead of writing every line of code manually, you guide an AI assistant using natural language prompts. The AI understands your project's context (such as folder structures, tools, and data schemas) and provides targeted suggestions to help you build more efficiently.
Vibekit enables you to build and customize DeFi agents through vibe coding. Whether you're creating a swapping agent, a lending agent, or a liquidity provider, you can describe your agent's behavior in natural language and let the AI help you implement it. The framework provides pre-built tools for common DeFi operations, MCP integration for external data, and a structured way to define your agent's capabilities through rules files.
Ready to vibe with some DeFi agents? to run any of the existing agents or vibe code your own, head over to the agent playground.
To make the most of vibe coding, it's important to provide your AI assistant with clear and structured context. In the .cursor/rules
folder, you can define the scope of your project, including its purpose, key components, and any relevant data schemas.
Vibekit's rules files are located in the project's arbitrum-vibekit/.cursor/rules
directory. These files define best practices, workflows, and workspace conventions for building and maintaining agents:
-
createVibekitAgent.mdc
A guide for creating and configuring new agents, including best practices, required dependencies, and setup instructions.
-
vibeCodingWorkflow.mdc
Outlines the step-by-step development workflow for agents, including the Planner/Executor roles, task breakdowns, and conventions for collaborative development.
-
workspaceRules.mdc
Documents workspace-wide guidelines and best practices for the monorepo, such as dependency management, development scripts, and CI/CD standards.
Here's a guidelines for adding or editing rules:
-
Add a New Rule File
Create a new
.mdc
file in.cursor/rules
if you want to introduce a new agent type, workflow, or set of best practices. Follow the structure of the existing files for consistency. -
Update Existing Rules:
- Edit
createVibekitAgent.mdc
to add new agent configuration options, initialization parameters, or tool integrations. - Update
vibeCodingWorkflow.mdc
to refine development workflows, add new patterns, or document troubleshooting steps. - Revise
workspaceRules.mdc
to keep workspace-wide practices and scripts up to date.
- Edit
Keep these files current to ensure your team and agents always follow the latest best practices and workflows.
MCP (Model Context Protocol) makes it easy for on-chain agents to tap into external data and tools. Here's how it works: tools get registered with the MCP server, and agents can plug in to browse what's available, and start calling those tools whenever it makes sense. Agents may decide on their own when and how to use each tool, and they use the results to inform their next actions to enable autonomous decision-making.
Want to dig deeper? Check out the official MCP docs.
Vibekit integrates MCP in three powerful ways:
Vibekit comes with a suite of implemented MCP tools in the mcp-tools directory:
- Access real-time market data and on-chain information
- Interact with DeFi protocols and smart contracts
- Execute complex trading and liquidity operations
- Each tool is designed to be easily integrated with any MCP-compatible agent
Vibekit integrates with popular agent frameworks like Eliza, allowing them to:
- Access standardized tool interfaces through MCP
- Maintain their existing functionality while gaining new capabilities
- Use Vibekit's pre-built tools without modifying their core architecture
Every agent built with Vibekit is itself an MCP server, which means:
- Agents can expose their own capabilities as MCP tools
- Other agents can discover and use these capabilities
- Agents can be both consumers and providers of MCP tools
- This creates a network of interoperable agents
You'll find a collection of ready-to-use MCP tools, along with step-by-step guidelines for creating your own, in our mcp-tools directory.
We welcome contributions from the community! If you'd like to help improve Vibekit, please check out our Contribution Guidelines. These guidelines detail the process for forking the repository, making your changes, and submitting a pull request.
To show our appreciation, we have launched an incentive program that rewards valuable contributions to the Vibekit. Checkout our blog post to learn more!