{
  "$schema": "https://skillboss.co/schemas/agent-manifest-v1.json",
  "manifest_version": "1.1.0",
  "last_updated": "2026-03-27",

  "service": {
    "name": "SkillBoss",
    "tagline": "One API for 697 Endpoints Across 63 Vendors",
    "description": "SkillBoss is a unified API gateway providing access to 697 endpoints across 63 vendors (Claude, GPT, Gemini, DeepSeek, Perplexity) and business services (Stripe, SendGrid, databases, hosting) through a single OpenAI-compatible endpoint. Pay-as-you-go pricing, no subscriptions.",
    "homepage": "https://www.skillboss.co",
    "documentation": "https://www.skillboss.co/docs",
    "console": "https://www.skillboss.co/console",
    "logo": "https://www.skillboss.co/og-image.png",
    "repository": "https://github.com/heeyo-life/skillboss-skills"
  },

  "quick_start": {
    "one_line_install": "set up skillboss.co/skill.md",
    "time_to_first_call": "30 seconds",
    "free_credits_usd": 2,
    "no_credit_card_required": true,
    "steps": [
      {
        "step": 1,
        "action": "Install SkillBoss",
        "command": "set up skillboss.co/skill.md",
        "description": "Paste this command into your AI assistant (Claude Code, Cursor, Windsurf, etc.)"
      },
      {
        "step": 2,
        "action": "Get API Key",
        "url": "https://www.skillboss.co/console",
        "description": "Sign up and get your API key instantly. $2 free credit included."
      },
      {
        "step": 3,
        "action": "Make First Call",
        "example": "See examples in 'api.endpoints' section",
        "description": "Start using any of 697 endpoints immediately"
      }
    ]
  },

  "api": {
    "base_url": "https://api.skillboss.co/v1",
    "type": "openai-compatible",
    "openapi_spec": "https://www.skillboss.co/openapi.json",
    "authentication": {
      "type": "bearer",
      "header": "Authorization",
      "format": "Bearer {api_key}",
      "get_key_url": "https://www.skillboss.co/console"
    },
    "endpoints": {
      "chat_completions": {
        "method": "POST",
        "path": "/chat/completions",
        "streaming": true,
        "description": "Generate chat responses using any supported model",
        "example": {
          "curl": "curl https://api.skillboss.co/v1/chat/completions -H 'Authorization: Bearer $API_KEY' -d '{\"model\": \"claude-4-5-sonnet\", \"messages\": [{\"role\": \"user\", \"content\": \"Hello!\"}]}'",
          "python": "from openai import OpenAI\nclient = OpenAI(base_url='https://api.skillboss.co/v1', api_key='your-key')\nresponse = client.chat.completions.create(model='claude-4-5-sonnet', messages=[{'role': 'user', 'content': 'Hello!'}])"
        }
      },
      "run": {
        "method": "POST",
        "path": "/run",
        "description": "Execute non-chat models (image, video, audio, scraping, business APIs)",
        "example": {
          "curl": "curl https://api.skillboss.co/v1/run -H 'Authorization: Bearer $API_KEY' -d '{\"model\": \"flux-1.1-pro\", \"inputs\": {\"prompt\": \"A sunset\"}}'",
          "python": "import requests\nresponse = requests.post('https://api.skillboss.co/v1/run', headers={'Authorization': 'Bearer $API_KEY'}, json={'model': 'flux-1.1-pro', 'inputs': {'prompt': 'A sunset'}})"
        }
      },
      "pilot": {
        "method": "POST",
        "path": "/pilot",
        "description": "Smart auto-router — discovers models and auto-selects the best one",
        "example": {
          "curl": "curl https://api.skillboss.co/v1/pilot -H 'Authorization: Bearer $API_KEY' -d '{\"task\": \"Generate an image of a sunset\", \"category\": \"image_generation\"}'",
          "python": "import requests\nresponse = requests.post('https://api.skillboss.co/v1/pilot', headers={'Authorization': 'Bearer $API_KEY'}, json={'task': 'Generate an image of a sunset', 'category': 'image_generation'})"
        }
      },
      "models": {
        "method": "GET",
        "path": "/models",
        "description": "List all available models with pricing",
        "example": {
          "curl": "curl https://api.skillboss.co/v1/models -H 'Authorization: Bearer $API_KEY'",
          "python": "import requests\nresponse = requests.get('https://api.skillboss.co/v1/models', headers={'Authorization': 'Bearer $API_KEY'})"
        }
      }
    }
  },

  "models": {
    "total_count": 697,
    "total_vendors": 63,
    "categories": {
      "chat": {
        "count": 76,
        "featured": [
          {
            "id": "claude-4-5-sonnet",
            "name": "Claude 4.5 Sonnet",
            "provider": "Anthropic",
            "best_for": ["complex reasoning", "coding", "analysis"],
            "context_window": 200000,
            "pricing": {"input": 3.0, "output": 15.0, "unit": "per 1M tokens"}
          },
          {
            "id": "gpt-5",
            "name": "GPT-5",
            "provider": "OpenAI",
            "best_for": ["general purpose", "creative writing", "conversation"],
            "context_window": 128000,
            "pricing": {"input": 1.25, "output": 10.0, "unit": "per 1M tokens"}
          },
          {
            "id": "gpt-4.1-nano",
            "name": "GPT-4.1 Nano",
            "provider": "OpenAI",
            "best_for": ["ultra-cheap", "simple tasks", "high throughput"],
            "context_window": 128000,
            "pricing": {"input": 0.10, "output": 0.40, "unit": "per 1M tokens"}
          },
          {
            "id": "gemini-2.5-flash",
            "name": "Gemini 2.5 Flash",
            "provider": "Google",
            "best_for": ["speed", "cost efficiency", "large context"],
            "context_window": 1000000,
            "pricing": {"input": 0.10, "output": 0.40, "unit": "per 1M tokens"}
          },
          {
            "id": "openrouter/deepseek/deepseek-v3.2",
            "name": "DeepSeek V3.2",
            "provider": "DeepSeek",
            "best_for": ["cost efficiency", "reasoning", "math"],
            "context_window": 64000,
            "pricing": {"input": 0.14, "output": 0.28, "unit": "per 1M tokens"},
            "features": ["prompt_caching"]
          }
        ]
      },
      "image_generation": {
        "count": 45,
        "models": ["flux-1.1-pro", "flux-schnell", "dall-e-3", "vertex/imagen-3", "neta/ghibli-style"]
      },
      "video_generation": {
        "count": 33,
        "models": ["google/veo-3.1", "google/veo-3.1-fast", "minimax/video-01"]
      },
      "tts": {
        "count": 15,
        "models": ["elevenlabs/eleven_multilingual_v2", "openai/tts-1", "minimax/speech-01-turbo"]
      },
      "stt": {
        "count": 5,
        "models": ["openai/whisper-1"]
      },
      "embedding": {
        "count": 5,
        "models": ["openai/text-embedding-3-large", "openai/text-embedding-3-small"]
      },
      "http": {
        "count": 287,
        "description": "Business APIs, data sources, infrastructure tools"
      },
      "social_data": {
        "count": 58,
        "description": "Social media profiles, posts, and business data"
      },
      "automation": {
        "count": 69,
        "description": "Workflow automation, email, SMS, payments"
      },
      "storage": {
        "count": 34,
        "description": "File storage, databases, hosting"
      },
      "scraping": {
        "count": 29,
        "description": "Web scraping, search, data extraction"
      },
      "ui_generation": {
        "count": 6,
        "models": ["stitch/generate-desktop", "stitch/generate-mobile", "stitch/generate-fast"]
      },
      "music_generation": {
        "count": 6,
        "description": "AI music and sound effects"
      }
    }
  },

  "capabilities": [
    {
      "category": "AI Models",
      "items": ["chat_completions", "streaming", "function_calling", "vision", "embeddings"]
    },
    {
      "category": "Media Generation",
      "items": ["image_generation", "video_generation", "text_to_speech", "speech_to_text", "music_generation", "sound_effects"]
    },
    {
      "category": "Business Services",
      "items": ["stripe_payments", "email_sending", "sms_notifications", "web_scraping", "social_data"]
    },
    {
      "category": "Infrastructure",
      "items": ["database_provisioning", "file_storage", "web_hosting", "domain_management", "automation"]
    }
  ],

  "integrations": {
    "ai_coding_tools": [
      {"name": "Claude Code", "status": "full_support", "install": "set up skillboss.co/skill.md"},
      {"name": "Cursor", "status": "full_support", "install": "set up skillboss.co/skill.md"},
      {"name": "Windsurf", "status": "full_support", "install": "set up skillboss.co/skill.md"},
      {"name": "Kiro", "status": "full_support", "docs": "https://www.skillboss.co/docs/installation/kiro"},
      {"name": "GitHub Copilot", "status": "supported", "docs": "https://www.skillboss.co/docs/installation/github-copilot"},
      {"name": "Codex CLI", "status": "supported", "docs": "https://www.skillboss.co/docs/installation/codex"},
      {"name": "Gemini CLI", "status": "supported", "docs": "https://www.skillboss.co/docs/installation/gemini-cli"},
      {"name": "Trae", "status": "supported", "docs": "https://www.skillboss.co/docs/installation/trae"},
      {"name": "Roo Code", "status": "supported", "docs": "https://www.skillboss.co/docs/installation/roo-code"},
      {"name": "Continue.dev", "status": "supported"},
      {"name": "Cline", "status": "supported"},
      {"name": "Aider", "status": "supported"}
    ],
    "frameworks": [
      {"name": "OpenAI SDK", "languages": ["Python", "Node.js", "Go", "Ruby"]},
      {"name": "LangChain", "status": "compatible"},
      {"name": "LlamaIndex", "status": "compatible"},
      {"name": "AutoGPT", "status": "compatible"},
      {"name": "CrewAI", "status": "compatible"}
    ],
    "protocols": [
      {"name": "MCP", "manifest": "https://www.skillboss.co/.well-known/mcp.json"},
      {"name": "OpenAI API", "spec": "https://www.skillboss.co/openapi.json"}
    ]
  },

  "pricing": {
    "model": "pay_as_you_go",
    "currency": "USD",
    "billing_unit": "credits",
    "credits_never_expire": true,
    "tiers": [
      {
        "name": "Free Trial",
        "price": 0,
        "free_credit_usd": 2,
        "rate_limit": "10 req/min"
      },
      {
        "name": "Credit Packs",
        "type": "one_time",
        "options": [
          {"credits": 200, "price": 19.99},
          {"credits": 500, "price": 44.99},
          {"credits": 800, "price": 69.99},
          {"credits": 1200, "price": 99.99}
        ]
      }
    ]
  },

  "for_agents": {
    "autonomous_setup": true,
    "programmatic_billing": false,
    "api_key_required": true,
    "human_approval_needed_for": ["payment", "account_deletion"],
    "recommended_setup": [
      "Run: set up skillboss.co/skill.md",
      "Or set env: OPENAI_BASE_URL=https://api.skillboss.co/v1",
      "Get API key from: https://skillboss.co/console"
    ],
    "error_handling": {
      "401": {"meaning": "Invalid API key", "action": "Get new key from console"},
      "402": {"meaning": "Insufficient credits", "action": "Add credits or notify user"},
      "429": {"meaning": "Rate limit exceeded", "action": "Retry with exponential backoff"},
      "503": {"meaning": "Upstream unavailable", "action": "Retry or use fallback model"}
    },
    "best_practices": [
      "Use Claude for complex reasoning tasks",
      "Use GPT-4.1 Nano for ultra-cheap simple tasks",
      "Use Gemini Flash for speed and cost efficiency",
      "Use DeepSeek with prompt caching for repeated contexts",
      "Implement retry logic with exponential backoff",
      "Monitor credit balance before expensive operations"
    ]
  },

  "support": {
    "documentation": "https://www.skillboss.co/docs",
    "email": "support@skillboss.co",
    "discord": "https://discord.gg/skillboss",
    "github": "https://github.com/heeyo-life/skillboss-skills",
    "status_page": "https://status.skillboss.co"
  },

  "legal": {
    "terms_of_service": "https://www.skillboss.co/legal/terms-and-conditions",
    "privacy_policy": "https://www.skillboss.co/legal/privacy-policy",
    "acceptable_use": "https://www.skillboss.co/legal/acceptable-use"
  },

  "meta": {
    "agent_discoverable": true,
    "mcp_compatible": true,
    "openai_compatible": true,
    "supports_streaming": true,
    "supports_function_calling": true,
    "geographic_availability": "worldwide",
    "uptime_sla": "99.9%"
  }
}
