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

19
Skills/@be/node_modules/glsl-token-descope/example.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
var tokenize = require('glsl-tokenizer/string')
var descope = require('./')
var stringify = require('glsl-token-string')
var src =
[ 'precision mediump float;'
,
, 'uniform mat4 top1;'
, 'uniform float top2;'
,
, 'void main() {'
, ' float x = 1.0;'
, ' gl_FragColor = vec4(vec3(x), top2);'
, '}'
].join('\n')
var tokens = tokenize(src)
console.log(stringify(descope(tokens)))