HiAi Open Source Software

MIT Licensed - Self-Hosted Core

HiAi.gg OSS

HiAi builds focused tools for working with AI agents: shared knowledge, multi-agent development, portable plugins, observability, and reusable application infrastructure.

hiai-docs

The lightest self-hosted AI-native knowledge vault.

RAG-ready knowledge base built for speed, full data ownership, and seamless AI agent integration. Generates vector embeddings on save, supports hybrid semantic search, and provides a simple REST API.

BunSvelte 5ElysiaPostgreSQLpgvectorTailwind v4

hiai-observe

All-in-one lightweight observability platform.

Replaces error tracking (Sentry), uptime checking (Uptime Kuma), server metrics (Beszel), logs (Dozzle), and LLM tracing in a single container running in under 512MB RAM. Includes built-in MCP server.

BunOTLP / OpenTelemetrySentry SDKSvelte 5Drizzle

hiai-admin

Central admin panel for the HiAi SaaS platform.

Universal control center for tenant management, user administration, billing, analytics, and platform settings. Fully extensible, secure, and RAG-ready, designed for multi-tenant applications.

BunElysiaSvelteKitDrizzleBetter AuthStripe

hiai-bobcode

Bob's coding agent scaffold.

The bootstrap kit that turns Bob into your in-house senior engineer. Includes the project scaffolder, prompt library, and tool definitions used by the Bob department.

BunElysiaAI SDKMastraDrizzle

hiai-kit

Meta-tool & scaffolder for HiAi projects.

The kit Bob uses to scaffold new apps, agents, and modules in the HiAi ecosystem. CLI + web UI, declarative project templates, and conventions used by every HiAi department.

BunTypeScriptZodMastraSvelteKit

Our OSS Philosophy

100% Permissive (MIT)

No SaaS blockades, no AGPL traps, no commercial usage lock-ins. Use, modify, and deploy our projects in commercial, private, or education environments freely.

AI-Native Out of the Box

All tools ship with integrated Model Context Protocol (MCP) servers, clean CLI APIs, and TypeScript SDKs. AI agents like Cursor or Claude Code can control them natively.

Lightweight & Efficient

Built for the modern serverless/VPS era. Uses Bun runtime, Elysia, and highly optimized Svelte 5. All three apps can run comfortably together in less than 1GB RAM.

One-Click Launch

Spin up the full open-source knowledge & observability stack in seconds.

docker-compose.yml YAML
services:
  hiai-docs:
    image: hiai/docs:latest
    ports:
      - "50300:50300"
    environment:
      - DATABASE_URL=postgresql://user:pass@postgres:5432/hiai
      - OPENAI_API_KEY=your-key-here
    depends_on:
      - postgres

  hiai-observe:
    image: hiai/observe:latest
    ports:
      - "50400:50400"
    environment:
      - OTLP_PORT=4318
      - REDIS_URL=redis://redis:6379

  postgres:
    image: postgres:18-alpine
    environment:
      - POSTGRES_PASSWORD=pass
      - POSTGRES_DB=hiai
    volumes:
      - pgdata:/var/lib/postgresql/data

volumes:
  pgdata: