🚀 For Users
To search and install plugins and agents, use the Registry tab in your MindRoot admin interface.
Open Admin Interface
Navigate to /admin in your MindRoot installation and look for the Registry tab.
👩💻 For Developers
Publish your plugins and agents to share with the MindRoot community.
API Documentation
Register Account
Quick Start
# Register and get token
curl -X POST "/register" \
-H "Content-Type: application/json" \
-d '{"username":"your_username","email":"you@example.com","password":"your_password"}'
# Login to get access token
curl -X POST "/token" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "username=your_username&password=your_password"
# Publish a plugin
curl -X POST "/publish" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"title":"My Plugin","description":"A great plugin","category":"plugin",...}'