feat: Integrate Project Genie continuous building simulation#112
feat: Integrate Project Genie continuous building simulation#112Igor Holt (igor-holt) wants to merge 2 commits into
Conversation
- Added Project Genie inspired textual directives to \`scripts/genesis.cjs\` for procedural 3D generation. - Merged \`ecosystem.genie.config.cjs\` into \`ecosystem.config.cjs\` to orchestrate \`genesis.cjs\` continuously via PM2. - Added a fallback path for \`genesis_journal.jsonl\` logging when root \`/home/yenn/.yennefer\` lacks permissions. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
yennefer | 29ebbbe | Commit Preview URL | Jun 20 2026, 07:45 AM |
There was a problem hiding this comment.
Code Review
This pull request introduces a new PM2 process configuration for project-genie and implements a robust journal-writing wrapper, writeJournal, in scripts/genesis.cjs to gracefully handle file system errors. It also expands the available mutation directives and adds auto-generated React Three Fiber components. The review feedback highlights two key improvements: ensuring the path module is imported (or required inline) to prevent a potential ReferenceError in the fallback logic, and replacing the hardcoded absolute script path in the PM2 configuration with a relative path to ensure environment portability.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| fs.appendFileSync(PATHS.journal, entryStr); | ||
| } catch (e) { | ||
| if (e.code === 'ENOENT' || e.code === 'EACCES') { | ||
| const fallbackPath = path.join(__dirname, 'genesis_journal.jsonl'); |
There was a problem hiding this comment.
| }, | ||
| { | ||
| name: 'project-genie', | ||
| script: '/home/yenn/scripts/genesis.cjs', |
- rename workers/index.js to workers/index.mjs - update wrangler.toml to use index.mjs, compat date 2024-04-01, and remove placement section. - modify wrangler.toml build step to run in yennefer-observatory and install with --legacy-peer-deps - update root package.json build script to satisfy worker build without error. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
Integrates Google Project Genie inspired 3D environment generation by injecting text directives into Yennefer's genesis cycle, and merges the continuous generation process into the main PM2 ecosystem block. Fixed a permission logging issue in
genesis.cjs.PR created automatically by Jules for task 511553420625939194 started by Igor Holt (@igor-holt)