gemini-to-roblox-pipeline

Installation
SKILL.md

Gemini → Roblox Pipeline

Automated workflow for generating complete Roblox games:

  1. Gemini generates conceptual images (maps, model reference sheets)
  2. Claude Code reads images and builds Lua code

Quick Start

1. Generate Images (TypeScript)

// gemini-generator/src/index.ts
import { GoogleGenerativeAI } from "@google/generative-ai";

const API_KEY = process.env.GEMINI_API_KEY!;
const genAI = new GoogleGenerativeAI(API_KEY);
const model = genAI.getGenerativeModel({ model: "gemini-3-pro-image-preview" });
Installs
1
First Seen
Jan 30, 2026
gemini-to-roblox-pipeline — taozhuo/game-dev-skills