{"id":28826525,"url":"https://github.com/adam-aimoscloud/agent-connector","last_synced_at":"2026-05-17T19:35:00.737Z","repository":{"id":298922362,"uuid":"1000773698","full_name":"adam-aimoscloud/Agent-Connector","owner":"adam-aimoscloud","description":"A comprehensive AI agent management platform with React frontend and Go backend, supporting multiple AI service providers with unified interfaces, load balancing, and rate limiting.","archived":false,"fork":false,"pushed_at":"2025-06-13T15:35:58.000Z","size":241,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-13T16:51:21.763Z","etag":null,"topics":["agent-management","dify","openai","rate-limiting","unified-access-gateway"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adam-aimoscloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-12T09:50:30.000Z","updated_at":"2025-06-13T15:36:02.000Z","dependencies_parsed_at":"2025-06-13T17:02:44.972Z","dependency_job_id":null,"html_url":"https://github.com/adam-aimoscloud/Agent-Connector","commit_stats":null,"previous_names":["adam-aimoscloud/agent-connector"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/adam-aimoscloud/Agent-Connector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adam-aimoscloud%2FAgent-Connector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adam-aimoscloud%2FAgent-Connector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adam-aimoscloud%2FAgent-Connector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adam-aimoscloud%2FAgent-Connector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adam-aimoscloud","download_url":"https://codeload.github.com/adam-aimoscloud/Agent-Connector/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adam-aimoscloud%2FAgent-Connector/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260676937,"owners_count":23045115,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent-management","dify","openai","rate-limiting","unified-access-gateway"],"created_at":"2025-06-19T03:04:56.371Z","updated_at":"2025-10-26T13:19:29.760Z","avatar_url":"https://github.com/adam-aimoscloud.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Agent-Connector\n\n\u003e **⚠️ DEVELOPMENT VERSION WARNING ⚠️**\n\u003e \n\u003e **🚧 This project is currently in active development and NOT ready for production use.**\n\u003e \n\u003e - Some features are still under testing and may not work as expected\n\u003e - APIs and configurations may change without notice\n\u003e - Data loss or system instability may occur\n\u003e - Security features are not fully implemented\n\u003e \n\u003e **Please use this only for development, testing, and evaluation purposes.**\n\u003e \n\u003e ---\n\nA comprehensive AI agent management platform with React frontend and Go backend, supporting multiple AI service providers with unified interfaces, load balancing, and rate limiting.\n\n## Project Structure\n\n```\nAgent-Connector/\n├── frontend/                    # React TypeScript frontend\n│   └── agent-connector-dashboard/\n├── backend/                     # Go backend services\n│   ├── cmd/                    # Application entry points\n│   ├── api/                    # API handlers and routes\n│   ├── internal/               # Internal packages\n│   ├── pkg/                    # Reusable packages\n│   └── config/                 # Configuration management\n├── .gitignore                  # Git ignore rules\n└── README.md                   # This file\n```\n\n## Features\n\n\u003e **📋 Feature Status**: Some features are still in development or testing phase. See individual feature documentation for current status.\n\n### Frontend (React Dashboard)\n- **User Management**: Role-based access control and user administration\n- **Agent Configuration**: Multi-provider AI agent setup (OpenAI, Dify, Custom)\n- **Rate Limiting**: Comprehensive rate limiting configuration and monitoring\n- **System Monitoring**: Real-time system status and performance metrics\n- **Responsive Design**: Modern UI with Ant Design components\n\n### Backend (Go Services)\n- **Authentication API** (Port 8083): User authentication and management\n- **Control Flow API** (Port 8081): Agent configuration and management\n- **Data Flow API** (Port 8082): Rate limiting and data flow control\n- **Unified Configuration**: Environment-based configuration management\n- **Health Monitoring**: Built-in health checks and metrics\n\n## Quick Start\n\n\u003e **⚠️ REMINDER**: This is a development version. Do not use in production environments.\n\n### Prerequisites\n- **Frontend**: Node.js 16+, npm 8+\n- **Backend**: Go 1.21+, MySQL 8.0+, Redis 6.0+\n\n### Development Setup\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/adam-aimoscloud/Agent-Connector.git\n   cd Agent-Connector\n   ```\n\n2. **Database Setup**\n   ```bash\n   # Start MySQL and Redis (using Docker)\n   docker run -d --name mysql-agent \\\n     -e MYSQL_ROOT_PASSWORD=123456 \\\n     -e MYSQL_DATABASE=agent_connector \\\n     -p 3306:3306 mysql:8.0\n   \n   docker run -d --name redis-agent \\\n     -p 6379:6379 redis:7-alpine\n   ```\n\n3. **Backend Setup**\n   ```bash\n   cd backend\n   \n   # Copy and configure environment variables\n   cp .env.example .env\n   # Edit .env file with your database and Redis configurations\n   \n   # Download dependencies\n   go mod download\n   \n   # Build all services\n   go build -o bin/auth-api ./cmd/auth-api/\n   go build -o bin/control-flow-api ./cmd/control-flow-api/\n   go build -o bin/dataflow-api ./cmd/dataflow-api/\n   ```\n\n4. **Start Backend Services**\n   \n   **Option 1: Start all services using scripts**\n   ```bash\n   # Make scripts executable\n   chmod +x scripts/*.sh\n   \n   # Start all services\n   ./scripts/start-all.sh\n   ```\n   \n   **Option 2: Start services individually**\n   ```bash\n   # Terminal 1: Start Authentication API\n   go run cmd/auth-api/main.go\n   # or\n   ./bin/auth-api\n   \n   # Terminal 2: Start Control Flow API\n   go run cmd/control-flow-api/main.go\n   # or\n   ./bin/control-flow-api\n   \n   # Terminal 3: Start Data Flow API\n   go run cmd/dataflow-api/main.go\n   # or\n   ./bin/dataflow-api\n   ```\n   \n   **Option 3: Start services in background**\n   ```bash\n   # Start all services in background\n   nohup ./bin/auth-api \u003e logs/auth-api.log 2\u003e\u00261 \u0026\n   nohup ./bin/control-flow-api \u003e logs/control-flow-api.log 2\u003e\u00261 \u0026\n   nohup ./bin/dataflow-api \u003e logs/dataflow-api.log 2\u003e\u00261 \u0026\n   \n   # Check if services are running\n   ps aux | grep -E \"(auth-api|control-flow-api|dataflow-api)\"\n   ```\n\n5. **Frontend Setup**\n   ```bash\n   cd frontend/agent-connector-dashboard\n   \n   # Install dependencies\n   npm install\n   \n   # Copy and configure environment variables\n   cp .env.example .env\n   # Edit .env file if needed\n   \n   # Start development server\n   npm start\n   ```\n\n6. **Verify Services**\n   ```bash\n   # Check backend services health\n   curl http://localhost:8083/health  # Auth API\n   curl http://localhost:8081/health  # Control Flow API\n   curl http://localhost:8082/health  # Data Flow API\n   \n   # Frontend should be available at http://localhost:3000\n   ```\n\n7. **Access the application**\n   - **Frontend Dashboard**: http://localhost:3000\n   - **Auth API**: http://localhost:8083\n   - **Control Flow API**: http://localhost:8081\n   - **Data Flow API**: http://localhost:8082\n\n### Default Login\n- **Username**: admin\n- **Password**: admin123\n\n### Stop Services\n```bash\n# Stop all backend services\ncd backend\n./scripts/stop-all.sh\n\n# Or kill individual processes\npkill -f auth-api\npkill -f control-flow-api\npkill -f dataflow-api\n\n# Stop frontend (Ctrl+C in the terminal where npm start is running)\n```\n\n## Configuration\n\n### Environment Variables\nThe project uses environment variables for configuration. See:\n- Backend: `backend/.env.example`\n- Frontend: `frontend/agent-connector-dashboard/.env.example`\n\n### Service Ports\n- **Auth API**: 8083\n- **Control Flow API**: 8081  \n- **Data Flow API**: 8082\n- **Frontend Dev Server**: 3000\n\n## Documentation\n\n- [Frontend Documentation](frontend/agent-connector-dashboard/README.md)\n- [Backend Configuration](backend/config/README.md)\n- [API Configuration](frontend/agent-connector-dashboard/src/config/README.md)\n- [Git Commit Guidelines](git-commit-guidelines.md)\n\n## Development\n\n### Git Workflow\nThis project includes a comprehensive `.gitignore` file that handles:\n- Go binaries and build artifacts\n- Node.js dependencies and build outputs\n- Environment variables and secrets\n- IDE and editor files\n- Operating system specific files\n- Log files and temporary data\n\n### Code Structure\n- **Frontend**: React + TypeScript + Ant Design\n- **Backend**: Go with clean architecture\n- **Database**: MySQL for persistent data\n- **Cache**: Redis for session and rate limiting\n- **Configuration**: Environment-based with validation\n\n## Known Issues \u0026 Limitations\n\n\u003e **⚠️ IMPORTANT**: This section lists current limitations and known issues.\n\n### Current Development Status\n- **🔄 Active Development**: Core features are being actively developed and tested\n- **🧪 Testing Phase**: Many features require additional testing before production readiness\n- **📝 Documentation**: Some documentation may be incomplete or outdated\n\n### Known Limitations\n- **Security**: Authentication and authorization systems are not production-ready\n- **Performance**: No performance optimization has been done for high-load scenarios\n- **Error Handling**: Error handling and recovery mechanisms are incomplete\n- **Data Validation**: Input validation and sanitization need improvement\n- **Logging**: Comprehensive logging and monitoring are not fully implemented\n- **Testing**: Unit tests and integration tests coverage is incomplete\n\n### Features Under Development\n- **Rate Limiting**: Advanced rate limiting algorithms and configurations\n- **Load Balancing**: Intelligent load balancing across multiple agents\n- **Monitoring**: Real-time monitoring and alerting systems\n- **API Versioning**: Proper API versioning and backward compatibility\n- **Data Migration**: Database migration and backup systems\n\n### Recommended Use Cases\n- ✅ **Development and Testing**: Perfect for development and testing environments\n- ✅ **Proof of Concept**: Suitable for demonstrating AI agent management concepts\n- ✅ **Learning**: Great for learning about microservices and AI agent architectures\n- ❌ **Production**: NOT recommended for production environments\n- ❌ **Critical Systems**: Should not be used for business-critical applications\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Add tests if applicable\n5. Submit a pull request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details. ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadam-aimoscloud%2Fagent-connector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadam-aimoscloud%2Fagent-connector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadam-aimoscloud%2Fagent-connector/lists"}