Developer Resources
Everything you need to build and deploy edge agents on the MINDR network
Getting Started
MINDR provides a comprehensive framework for developing, deploying, and managing edge agents. Follow these steps to start building with MINDR:
Install the MINDR SDK
npm install @mindr/sdk
The MINDR SDK provides all the tools you need to create, test, and deploy edge agents.
Create Your First Agent
npx mindr create my-first-agent
This command creates a new agent project with all the necessary files and configurations.
Test Locally
cd my-first-agent && npm run dev
Test your agent in a local development environment before deploying to the network.
Deploy to MINDR Network
npm run deploy
Deploy your agent to the MINDR network where it can run persistently and autonomously.
Sample Projects
Personal Assistant Agent
A customizable personal assistant that can manage tasks, answer questions, and learn user preferences.
Data Processing Agent
An agent that processes and analyzes data streams from IoT devices at the network edge.
Multi-Agent Collaboration
A system of multiple agents that work together to solve complex problems through communication and coordination.