• v0.0.0 171228587a

    v0.0.0 Stable

    x released this 2026-02-15 13:05:20 +00:00 | 6 commits to main since this release

    Signed by x
    GPG key ID: A14ACA8AB45A9C27

    VSKI v0.0.0

    Features

    • New standalone binary with embedded web frontend
    • Multi-tenant SQLite support
    • Real-time WebSocket gateway
    • Distributed workflow orchestration
    • Vector similarity search with sqlite-vec
    • Full-text search with FTS5
    • Rule-based security engine
    • JWT and API key authentication
    • Official Docker image with multi-stage builds

    Installation

    Binary

    Download the binary for your platform:

    # Linux (standalone with embedded UI)
    wget https://git.vski.sh/x/platform/releases/download/v0.0.0/vski-standalone
    chmod +x vski-standalone
    ./vski-standalone
    
    # Linux (API-only)
    wget https://git.vski.sh/x/platform/releases/download/v0.0.0/vski
    chmod +x vski
    ./vski
    

    Docker

    Pull and run the official Docker image:

    # Pull latest version
    docker pull git.vski.sh/x/vski:latest
    
    # Pull specific version
    docker pull git.vski.sh/x/vski:v0.0.0
    
    # Run with default configuration
    docker run -p 3000:3000 -v $(pwd)/data:/app/data git.vski.sh/x/vski:latest
    
    # Run with custom environment variables
    docker run -p 3000:3000 \
      -v $(pwd)/data:/app/data \
      -e SERVER_PORT=3000 \
      -e DATA_DIR=/app/data \
      git.vski.sh/x/vski:latest
    

    Configuration

    Create a .env file:

    DATA_DIR=./data
    SERVER_PORT=3000
    JWT_SECRET=your-secret-key
    

    Documentation

    Full documentation available at: https://git.vski.sh/x/platform

    Downloads