feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

23
Skills/@be/be/node_modules/glslify/usage.txt generated vendored Normal file
View File

@@ -0,0 +1,23 @@
Usage:
glslify {OPTIONS} < index.glsl
glslify is a Node.js-style module build system, much like
browserify, except for GLSL shaders! It allows you to share
and consume shader code on npm.
Options:
-t, --transform Apply a local GLSL source transform to your bundle.
-o, --output Specify an output file to write your shader to.
-v, --version Output version number
-h, --help Display this message.
Read index.glsl and write to output.glsl:
glslify index.glsl -o output.glsl
Alternatively:
cat index.glsl | glslify > output.glsl
To use the glslify-hex transform:
npm install glslify-hex
glslify index.glsl -t glslify-hex -o output.glsl