Universal Ai Agents banner
monique38-fbg monique38-fbg

Universal Ai Agents

DevOps community

Description

🌊 Multi-agent AI orchestration platform combining Claude, OpenAI, Higgsfield, and other leading AI models. Deploy intelligent swarms of specialized agents that build, create, and automate everything you request.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

🌊 Universal AI Agents Platform

A powerful multi-agent AI orchestration platform that combines the world's leading AI models (Claude, OpenAI, Higgsfield, and more) into an intelligent swarm that builds, creates, and automates everything you request.

🎯 Features

  • Multi-Agent Orchestration: Deploy multiple AI agents simultaneously and leverage their combined intelligence
  • Claude Integration: Access Anthropic's Claude 3.5 Sonnet for advanced reasoning and code generation
  • OpenAI Integration: Harness GPT-4 Turbo for complex problem-solving and creative tasks
  • Higgsfield Integration: Utilize specialized capabilities for automation and intelligence
  • RESTful API: Easy-to-use HTTP endpoints for all agent operations
  • Task Management: Track, manage, and retrieve results from agent tasks
  • Context-Aware Processing: Pass custom context to agents for personalized responses
  • Concurrent Execution: Run multiple agents in parallel for faster results
  • Comprehensive Logging: Track all agent activities and debugging information

🚀 Quick Start

Prerequisites

  • Node.js 18+
  • API keys from at least one of:
    • Anthropic (Claude)
    • OpenAI
    • Higgsfield

Installation

git clone https://github.com/monique38-fbg/universal-ai-agents.git
cd universal-ai-agents
npm install

Configuration

  1. Copy `.env.example` to `.env`:

    cp .env.example .env
  2. Add your API keys:

    CLAUDE_API_KEY=your_claude_key_here
    OPENAI_API_KEY=your_openai_key_here
    HIGGSFIELD_API_KEY=your_higgsfield_key_here
    PORT=3000

Running the Server

npm start          # Production mode
npm run dev        # Development with auto-reload
npm run server     # Start HTTP server

The API will be available at `http://localhost:3000`

📡 API Endpoints

Get Available Agents

GET /api/agents/available

Response:

{
  "agents": ["claude", "openai", "higgsfield"],
  "count"