Added workflows to automatically compile / recompile shaders with antigravity.

Added user story to work on some todos
This commit is contained in:
2026-01-13 21:28:08 -05:00
parent bfd042abbf
commit 98783b7e8f
3 changed files with 82 additions and 0 deletions

17
.agent/workflows/build.md Normal file
View File

@@ -0,0 +1,17 @@
---
description: Build the Juliet project using FastBuild
---
This workflow sets up the Juliet build environment and runs `fbuild`.
1. To build a specific configuration (e.g., msvc-Debug):
// turbo
`cmd /c "misc\shell.bat & fbuild msvc-Debug"`
2. To build the default (msvc):
// turbo
`cmd /c "misc\shell.bat & fbuild msvc"`
3. To see all available targets:
// turbo
`cmd /c "misc\shell.bat & fbuild -targets"`

View File

@@ -0,0 +1,9 @@
---
description: Recompile shaders for the Juliet project
---
This workflow recompiles all shaders using the `recompile_shaders.bat` script.
1. Recompile all shaders:
// turbo
`cmd /c "misc\shell.bat & misc\recompile_shaders.bat"`