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

34
Skills/@be/be/index.html Normal file
View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<title>Be</title>
<style>
body {
margin: 0;
overflow: hidden;
background: #000;
}
#splash{
background-image:url('./resources/JiboSplash.png');
width: 1280px;
height: 720px;
}
#face {
width: 1280px;
height: 720px;
}
</style>
</head>
<body>
<div id="face"></div>
<script>
const Be = require("./index");
let be = new Be();
be.init(()=>{
// @if DEBUG
be.log.info("Finished running Be init");
// @endif
});
</script>
</body>
</html>