u/EzzElDin176

Scene Doctor Studio — experimenting with AI-driven DCC workflows
▲ 0 r/Maya

Scene Doctor Studio — experimenting with AI-driven DCC workflows

I’ve been working on an AI-powered desktop app called Scene Doctor Studio.

The idea started with a simple question:

Why are artists still doing everything manually inside DCCs in 2026?

Scene Doctor Studio connects directly with tools like Maya and Blender to analyze scenes, assist workflows, generate code/tools, and help technical artists work faster.

Current features:

  • Scene diagnostics
  • AI-generated fixes/tools
  • Live DCC communication
  • Screenshot analysis
  • Artifact generation
  • Workflow automation
  • Real-time AI streaming
  • Multi-agent architecture

This is still Version 1, but the vision is much bigger than “just another script.”

I’d genuinely love feedback from Blender/Maya artists, TDs, pipeline devs, and technical artists here.

GitHub:
https://github.com/EzzEl-Din/Scene-Doctor-Studio

Demo video attached below 👇

https://reddit.com/link/1tc57lv/video/ry5jkf3xnx0h1/player

reddit.com
u/EzzElDin176 — 9 days ago

https://preview.redd.it/p788orcabfzg1.png?width=1920&format=png&auto=webp&s=09e4177d420089ac3c99cfdc9bf3dc4e3ffaada4

I’ve been working on a small tool inside Maya to help with scene cleanup — basically something I got tired of doing manually before every render or handoff.

The idea is simple:
It scans the scene (meshes, materials, textures, rigs, lights, render settings…)
Then shows issues (Critical / Warning / Info) and explains what’s wrong.

It also has a chat system where you can:

  • ask about issues
  • send viewport screenshots
  • get suggested fixes (with Maya Python code you can review and run)

Still very early (Beta), but I’m trying to turn it into something like an AI assistant for Maya workflows.

Would really appreciate feedback from anyone who wants to try it 🙌

Download:
https://github.com/EzzEl-Din/Scene_Doctor_3D

reddit.com
u/EzzElDin176 — 17 days ago

https://preview.redd.it/yt60cpikbzyg1.png?width=1730&format=png&auto=webp&s=d3c901bb4c8f7cf1eb06a90b10ce4bb3ec61e106

If you've ever worked with Arabic text alongside English in a browser, you've probably seen this — words get visually reversed due to the Unicode Bidirectional Algorithm. Even Claude and ChatGPT suffer from it.

Instead of just slapping `dir="rtl"` on elements, I built a real **BiDi tokenizer** that:

  1. Splits text into runs: `arabic` | `ltr` | `neutral`
  2. Wraps every English word in `<bdi dir="ltr">` to isolate it from the Arabic context
  3. Handles streaming sites (Claude.ai, ChatGPT) with a 300ms debounce on the MutationObserver

```

"مرحبا API tools بتاعك"

↓ tokenizer

[arabic] [ltr: "API"] [ltr: "tools"] [arabic]

↓ renderer

مرحبا <bdi dir="ltr">API</bdi> <bdi dir="ltr">tools</bdi> بتاعك

```

**Features:**

- Works on any website automatically

- Fixes inputs while typing

- Supports dynamic sites (React, Vue, SPAs)

- Per-site toggle + keyboard shortcut (Alt+R)

- Zero servers, zero tracking — fully local

**Open source:**

👉 https://github.com/EzzEl-Din/arabic-rtl-fixer

Feedback welcome — especially if it breaks on a specific site!

reddit.com
u/EzzElDin176 — 19 days ago
▲ 0 r/vfx+1 crossposts

https://preview.redd.it/yqjcs61x7lyg1.png?width=1920&format=png&auto=webp&s=ace2420cddb415a1766e40092b947a164e55a9d8

I’ve been working on a small tool inside Maya to help with scene cleanup — basically something I got tired of doing manually before every render or handoff.

The idea is simple:
It scans the scene (meshes, materials, textures, rigs, lights, render settings…)
Then shows issues (Critical / Warning / Info) and explains what’s wrong.

It also has a chat system where you can:

  • ask about issues
  • send viewport screenshots
  • get suggested fixes (with Maya Python code you can review and run)

Still very early (Beta), but I’m trying to turn it into something like an AI assistant for Maya workflows.

Would really appreciate feedback from anyone who wants to try it 🙌

Download:
https://github.com/EzzEl-Din/Scene_Doctor_3D

reddit.com
u/EzzElDin176 — 21 days ago