hybrid
v1.4.5
Published
This package is part of the Hybrid monorepo.
Maintainers
Readme
hybrid
This package is part of the Hybrid monorepo.
Hybrid makes it easy for developers to create intelligent agents that can understand natural language, process messages, and respond through XMTP's decentralized messaging protocol.
See hybrid.dev for more information.
📦 Quickstart
Getting started with Hybrid is simple:
1. Initialize your project
npm create hybrid my-agent
cd my-agentThis creates all the necessary files and configuration for your agent.
2. Get your OpenRouter API key
Visit OpenRouter, create an account and generate an API key
Add it to your .env file:
OPENROUTER_API_KEY=your_openrouter_api_key_here3. Generate XMTP keys
hybrid keysor automatically add it to your .env file:
hybrid keys --write4. Register your wallet with XMTP
hybrid registerThis generates secure wallet and encryption keys for your XMTP agent.
5. Start developing
hybrid devYour agent will start listening for XMTP messages and you're ready to build!
