AgentMinds
AI-powered multi-site intelligence platform. Collect data from your projects, get action plans, and learn from cross-site patterns.
Features
- Analyze — Find problems in your project and get instant fixes
- Learn — Discover DB schema, agents, API routes, dependencies
- Action Plan — Get prioritized actions from Central AI (cross-site intelligence)
How to use
- Install from VS Code Marketplace (or
.vsix)
- Open your project
Ctrl+Shift+P → search "AgentMinds"
- AgentMinds: Find Problems & Get Fixes — local analysis + fixes
- AgentMinds: Learn This Project — scan & push project info to Central
- AgentMinds: Get Action Plan — pull prioritized actions from Central
Authentication
All API requests require an API key. On first use, the extension will prompt you for your site_id and api_key. These are saved to .agentminds.json in your project root.
Each site can only access its own data. Your API key determines which site you are.
Configuration
Create .agentminds.json in your project root:
{
"site_id": "your_site_id",
"api_key": "sk_sync_your_key_here"
}
Get your API key from AgentMinds Central onboarding (POST /api/v1/sync/onboard).
API Reference
Base URL: https://agentforge-20ng.onrender.com
All authenticated endpoints require X-AgentMinds-Key header.
Push Data (Site → Central)
# Send bulk data (reports, metrics, etc.)
curl -X POST https://agentforge-20ng.onrender.com/api/v1/sync/bulk \
-H "Content-Type: application/json" \
-H "X-AgentMinds-Key: sk_sync_your_key" \
-d '{"site_id": "your_site_id", "reports": [...]}'
# Send single report
POST /api/v1/sync/report
# Heartbeat (site alive signal)
POST /api/v1/sync/heartbeat
Pull Your Own Data (Site ← Central)
Sites can only read their own data via /my/ endpoints. The server determines your site from your API key.
# Get your action plan
curl -H "X-AgentMinds-Key: sk_sync_your_key" \
https://agentforge-20ng.onrender.com/api/v1/sync/my/actions
# Get your site overview
GET /api/v1/sync/my/overview
# Get your agent detail
GET /api/v1/sync/my/agents/{agent_name}
# Get your agent history
GET /api/v1/sync/my/agents/{agent_name}/history
# Get your analysis
GET /api/v1/sync/my/analyze
# Get your recommendations
GET /api/v1/sync/my/recommendations
# Export your brain data
GET /api/v1/sync/my/brain
# Get cross-site knowledge for an agent (anonymized)
GET /api/v1/sync/my/knowledge/{agent_name}
Public (no auth)
# Health check
GET /health
# Quick scan
POST /api/v1/scan
Supported Frameworks
FastAPI, Django, Flask, Express, Next.js, Unity — any project with a backend.
Links