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

8
Skills/@be/node_modules/blob-to-buffer/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,8 @@
language: node_js
node_js:
- 'node'
sudo: false
env:
global:
- secure: We1Gbm4rAT9LrVz3hNoVQtUajjaDxEsLjCFFXvXVr90bMi4oeYwRy0nECJieI+ezsjgi4ymZABev5vhIyXx0yOEEGdTOJUdOXf4fjAQx0z5ps0BUx9R4F7V9WPfu1ClGp92bdmeGPvvbDgrls9YB8K4dn1ulB4DuPaJHrisn/Tc=
- secure: gnyyKCi3ZR4ImCvcOeFUED0Ks0PcdnQUL43SBqWU6Af23N/krKDPPmrwwP2n+ynywjysMfOIrjWUJZIcP8Yr6gEQ1TxH/kBizdoOMEWG844MhCsluuZ1wlHYe9+Mmb1UZ0ccWEjhN3DSagGbXA41CcIotxEsw9pwOnv5Aa7cXpk=

18
Skills/@be/node_modules/blob-to-buffer/.zuul.yml generated vendored Normal file
View File

@@ -0,0 +1,18 @@
ui: tape
browsers:
- name: chrome
version: latest
- name: firefox
version: latest
- name: safari
version: latest
- name: ie
version: latest
- name: microsoftedge
version: latest
- name: iphone
version: latest
- name: ipad
version: latest
- name: android
version: latest

20
Skills/@be/node_modules/blob-to-buffer/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,20 @@
The MIT License (MIT)
Copyright (c) Feross Aboukhadijeh
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

50
Skills/@be/node_modules/blob-to-buffer/README.md generated vendored Normal file
View File

@@ -0,0 +1,50 @@
# blob-to-buffer [![Build Status][travis-image]][travis-url] [![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url]
#### Convert a Blob to a [Buffer](https://github.com/feross/buffer).
[![Sauce Test Status](https://saucelabs.com/browser-matrix/blob-to-buffer.svg)](https://saucelabs.com/u/blob-to-buffer)
Say you're using the ['buffer'](https://github.com/feross/buffer) module on npm, or
[browserify](http://browserify.org/) and you're working with lots of binary data.
Unfortunately, sometimes the browser or someone else's API gives you a `Blob`. Silly
browser. How do you convert it to a `Buffer`?
Something with a goofy `FileReader` thingy... Time to Google for it yet again... There must be a better way!
***There is! Simply use this module!***
Works in the browser. This module is used by [WebTorrent](http://webtorrent.io)!
### install
```
npm install blob-to-buffer
```
### usage
```js
var toBuffer = require('blob-to-buffer')
// Get a Blob somehow...
var blob = new Blob([ new Uint8Array([1, 2, 3]) ], { type: 'application/octet-binary' })
var buffer = toBuffer(blob, function (err, buffer) {
if (err) throw err
buffer[0] // => 1
buffer.readUInt8(1) // => 2
})
```
### license
MIT. Copyright (c) [Feross Aboukhadijeh](http://feross.org).
[travis-image]: https://img.shields.io/travis/feross/blob-to-buffer/master.svg
[travis-url]: https://travis-ci.org/feross/blob-to-buffer
[npm-image]: https://img.shields.io/npm/v/blob-to-buffer.svg
[npm-url]: https://npmjs.org/package/blob-to-buffer
[downloads-image]: https://img.shields.io/npm/dm/blob-to-buffer.svg
[downloads-url]: https://npmjs.org/package/blob-to-buffer

21
Skills/@be/node_modules/blob-to-buffer/index.js generated vendored Normal file
View File

@@ -0,0 +1,21 @@
/* global Blob, FileReader */
module.exports = function blobToBuffer (blob, cb) {
if (typeof Blob === 'undefined' || !(blob instanceof Blob)) {
throw new Error('first argument must be a Blob')
}
if (typeof cb !== 'function') {
throw new Error('second argument must be a function')
}
var reader = new FileReader()
function onLoadEnd (e) {
reader.removeEventListener('loadend', onLoadEnd, false)
if (e.error) cb(e.error)
else cb(null, new Buffer(reader.result))
}
reader.addEventListener('loadend', onLoadEnd, false)
reader.readAsArrayBuffer(blob)
}

34
Skills/@be/node_modules/blob-to-buffer/package.json generated vendored Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "blob-to-buffer",
"description": "Convert a Blob to a Buffer",
"version": "1.2.6",
"author": "Feross Aboukhadijeh <feross@feross.org> (http://feross.org/)",
"bugs": {
"url": "https://github.com/feross/blob-to-buffer/issues"
},
"dependencies": {},
"devDependencies": {
"standard": "^6.0.4",
"tape": "^4.0.0",
"zuul": "^3.8.0"
},
"homepage": "https://github.com/feross/blob-to-buffer",
"keywords": [
"convert",
"blob",
"buffer",
"browserify",
"filereader"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/blob-to-buffer.git"
},
"scripts": {
"test": "standard && npm run test-browser",
"test-browser": "zuul -- test/*.js",
"test-browser-local": "zuul --local -- test/*.js"
}
}

24
Skills/@be/node_modules/blob-to-buffer/test/basic.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
/* global Blob */
var toBuffer = require('../')
var test = require('tape')
var blob = new Blob([ new Uint8Array([1, 2, 3]) ], { type: 'application/octet-binary' })
test('Basic tests', function (t) {
toBuffer(blob, function (err, buffer) {
if (err) throw err
t.deepEqual(buffer, new Buffer([1, 2, 3]))
t.end()
})
})
test('Callback error on invalid arguments', function (t) {
t.throws(function () {
toBuffer({ blah: 1 }, function () {})
})
t.throws(function () {
toBuffer(blob)
})
t.end()
})