Skip to content
fr

A generative creation studio that runs on your own machine

AI Desktop Studio

AI Desktop Studio is a desktop generative creation studio built solo by Alban Pasquelin: 310 MCP actions across 26 families, seven workspaces covering image, video, 3D, audio, materials and skyboxes, in Electron, React 19, Three.js, PixiJS and SQLite.

import { Electron, React19, Threejs, PixiJS } from '@/stack'
export function (workspace: Workspace): GenerativeSession {

A desktop application where you generate and rework images, video, 3D scenes, audio, materials and skyboxes without leaving the window. Models can run locally, on your own machine, rather than in a remote service.

const studio = new DesktopStudio({ workspaces: 7, catalogue: sqlite })

It is also drivable by an agent: 310 actions exposed over the MCP protocol, grouped into 26 families. An AI can open a project, generate a texture, apply it to a 3D object and export the result, with no human touching the mouse.

mcp.expose(studio.actions) /** 310 actions across 26 families **/

The hard part of an AI product is never the model call. It is the ninety percent around it: the indexed catalogue, the image editor, a video timeline that actually decodes, recovery when something fails.

const texture = await model.generate(prompt); viewport.apply(texture)
return {
agentDrivableActions: 310, /** agent-drivable actions **/
actionFamilies: 26, /** action families **/
workspaces: 7, /** workspaces **/
}
}
310 actions, 26 familiesEach point is an action an agent can trigger, grouped by family. The cyan trace is an agent chaining actions: open, generate, apply, export.

Projects