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

BIN
Skills/@be/node_modules/ffprobe/test/fixtures/test.jpg generated vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

47
Skills/@be/node_modules/ffprobe/test/index.js generated vendored Normal file
View File

@@ -0,0 +1,47 @@
var ffprobeStatic = require('ffprobe-static'),
expect = require('expect.js'),
path = require('path'),
util = require('util'),
ffprobe = require('..');
function fixture(fileName) {
return path.join(__dirname, 'fixtures', fileName);
}
describe('ffprobe', function() {
it('should be able to list info as JSON', function(done) {
ffprobe(fixture('test.jpg'), { path: ffprobeStatic.path }, function (err, info) {
if (err) return done(err);
expect(info.streams[0].codec_name).to.equal('mjpeg');
expect(info.streams[0].width).to.equal(175);
expect(info.streams[0].height).to.equal(174);
done();
});
});
it('should also export a Promise API (success)', function(done) {
ffprobe(fixture('test.jpg'), { path: ffprobeStatic.path })
.then(function (info) {
expect(info.streams[0].codec_name).to.equal('mjpeg');
expect(info.streams[0].width).to.equal(175);
expect(info.streams[0].height).to.equal(174);
done();
})
.catch(function (err) {
setImmediate(function () {
done(err);
});
});
});
it('should also export a Promise API (failure)', function(done) {
ffprobe(fixture('not-here.jpg'), { path: ffprobeStatic.path })
.then(function (info) {
done(new Error('Unexpected info: ' + JSON.stringify(info)));
})
.catch(function (err) {
expect(err.message).to.contain('No such file or directory');
done();
});
});
});