Initial commit — jibo-cli v3.0.7 with bundled node_modules

This commit is contained in:
pasketti
2026-04-05 18:40:18 -04:00
commit b2569b4ce4
10488 changed files with 1631271 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>error service</title>
</head>
<script src="https://fb.me/react-with-addons-15.2.1.js"></script>
<script src="https://fb.me/react-dom-15.2.1.js"></script>
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-bootstrap/0.29.5/react-bootstrap.min.js"></script>
<script src="index.js"></script>
<body>
<div id="error-service">
</div>
</body>
</html>

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,9 @@
tbody td.time {
color: #666;
font-size: 12px;
padding-top: 8px;
}
.desc {
width:100%;
}

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Performance</title>
</head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="index.css">
<script src="https://fb.me/react-with-addons-15.2.1.js"></script>
<script src="https://fb.me/react-dom-15.2.1.js"></script>
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-bootstrap/0.29.5/react-bootstrap.min.js"></script>
<script src="index.js"></script>
<body>
<div id="grid">
</div>
</body>
</html>

View File

@@ -0,0 +1,9 @@
/**
* skills-service-manager - Skills Services Manager
* @version v4.0.6
* @license Copyright (c) 2017, Jibo, Inc. All rights reserved.
* All use of the Jibo SDK is subject to the Jibo SDK End User License Agreement (EULA)
* distributed herewith. If you did not receive a copy of the EULA, you may view a
* copy at https://developers.jibo.com/license.
*/
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.index=e()}}(function(){return function e(t,n,r){function a(s,c){if(!n[s]){if(!t[s]){var o="function"==typeof require&&require;if(!c&&o)return o(s,!0);if(i)return i(s,!0);var l=new Error("Cannot find module '"+s+"'");throw l.code="MODULE_NOT_FOUND",l}var f=n[s]={exports:{}};t[s][0].call(f.exports,function(e){var n=t[s][1][e];return a(n?n:e)},f,f.exports,e,t,n,r)}return n[s].exports}for(var i="function"==typeof require&&require,s=0;s<r.length;s++)a(r[s]);return a}({1:[function(e,t,n){var r=React.createClass({getInitialState:function(){var e=location.origin.replace("http://","ws://");return this.socket=new WebSocket(e),this.socket.addEventListener("message",this.onMessage),{entries:[]}},onMessage:function(e){var t=JSON.parse(e.data);this.startTime||(this.startTime=t.time),this.state.entries.push(t),this.setState({entries:this.state.entries})},format:function(e,t){for(var n=String(e);n.length<t;)n="0"+n;return n},render:function(){var e=this,t=[];return this.state.entries.forEach(function(n,r){var a=new Date(n.time),i=e.format(a.getHours(),2),s=e.format(a.getMinutes(),2),c=e.format(a.getSeconds(),2),o=e.format(a.getMilliseconds(),3),l=i+":"+s+":"+c+":"+o;t.push(React.createElement("tr",{key:r},React.createElement("td",{className:"time"},React.createElement("samp",null,l)),React.createElement("td",{className:"type"},React.createElement("code",null,n.type)),React.createElement("td",{className:"desc"},n.description)))}),React.createElement("table",{className:"table table-striped table-condensed"},React.createElement("thead",null,React.createElement("tr",null,React.createElement("th",{className:"time"},"Time"),React.createElement("th",{className:"type"},"Type"),React.createElement("th",{className:"desc"},"Description"))),React.createElement("tbody",null,t))}});$(document).ready(function(){ReactDOM.render(React.createElement(r,null),document.getElementById("grid"))})},{}]},{},[1])(1)});

View File

@@ -0,0 +1,12 @@
.running {
width:100%;
}
.running button {
width:50%;
}
h1 .version {
color:#999;
font-size: 60%;
}

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Skills Service</title>
</head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="index.css">
<script src="https://fb.me/react-with-addons-15.2.1.js"></script>
<script src="https://fb.me/react-dom-15.2.1.js"></script>
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-bootstrap/0.29.5/react-bootstrap.min.js"></script>
<script src="index.js"></script>
<body>
<div id="grid" class="container">
</div>
</body>
</html>

View File

@@ -0,0 +1,9 @@
/**
* skills-service-manager - Skills Services Manager
* @version v4.0.6
* @license Copyright (c) 2017, Jibo, Inc. All rights reserved.
* All use of the Jibo SDK is subject to the Jibo SDK End User License Agreement (EULA)
* distributed herewith. If you did not receive a copy of the EULA, you may view a
* copy at https://developers.jibo.com/license.
*/
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.index=e()}}(function(){return function e(t,n,a){function o(c,s){if(!n[c]){if(!t[c]){var i="function"==typeof require&&require;if(!s&&i)return i(c,!0);if(l)return l(c,!0);var r=new Error("Cannot find module '"+c+"'");throw r.code="MODULE_NOT_FOUND",r}var u=n[c]={exports:{}};t[c][0].call(u.exports,function(e){var n=t[c][1][e];return o(n?n:e)},u,u.exports,e,t,n,a)}return n[c].exports}for(var l="function"==typeof require&&require,c=0;c<a.length;c++)o(a[c]);return o}({1:[function(e,t,n){var a=React.createClass({getInitialState:function(){return{skills:[],version:""}},onListSkills:function(){var e=this;$.getJSON("http://"+location.host+"/version",function(t){e.setState({version:t.version})}),$.getJSON("http://"+location.host+"/skill/list",function(t){e.setState({skills:t.skills})})},onLaunch:function(e){var t=this,n=JSON.stringify({command:e.name});$.post("http://"+location.host+"/launch-dev",n,function(e){t.onListSkills()})},onStop:function(e){var t=this,n=JSON.stringify({command:e.name});$.post("http://"+location.host+"/terminate",n,function(e){t.onListSkills()})},launchConsole:function(){$.getJSON("http://"+location.host+"/devtools",function(e){var t=e[0].devtoolsFrontendUrl.replace("127.0.0.1",location.hostname);window.open("http://"+location.hostname+":9191"+t,"_blank")})},launchSSMConsole:function(){$.getJSON("http://"+location.host+"/ssm-devtools",function(e){var t=e[0].devtoolsFrontendUrl.replace("127.0.0.1",location.hostname);window.open("http://"+location.hostname+":12345"+t,"_blank")})},componentDidMount:function(){this.onListSkills()},render:function(){var e=this,t=[];return this.state.skills.forEach(function(n){n.running?t.push(React.createElement(ReactBootstrap.ListGroupItem,null,React.createElement("div",{className:"row"},React.createElement("div",{className:"col-xs-6 col-sm-8 col-md-10"},React.createElement("h4",null,n.name," ",React.createElement("small",null,"v",n.version))),React.createElement("div",{className:"col-xs-6 col-sm-4 col-md-2"},React.createElement(ReactBootstrap.ButtonGroup,{className:"running"},React.createElement(ReactBootstrap.Button,{bsStyle:"danger",onClick:function(){e.onStop(n)}},React.createElement("span",{className:"glyphicon glyphicon-stop"})," "),React.createElement(ReactBootstrap.Button,{bsStyle:"default",onClick:e.launchConsole},React.createElement("span",{className:"glyphicon glyphicon-cog"})," ")))))):t.push(React.createElement(ReactBootstrap.ListGroupItem,null,React.createElement("div",{className:"row"},React.createElement("div",{className:"col-xs-6 col-sm-8 col-md-10"},React.createElement("h4",null,n.name," ",React.createElement("small",null,"v",n.version))),React.createElement("div",{className:"col-xs-6 col-sm-4 col-md-2"},React.createElement(ReactBootstrap.Button,{bsStyle:"success",className:"btn-block",onClick:function(){e.onLaunch(n)}},React.createElement("span",{className:"glyphicon glyphicon-play"})," ",React.createElement("span",null,"Launch"))))))}),React.createElement("div",{className:"row"},React.createElement("div",{className:"col-sm-12"},React.createElement("h1",{className:"pull-left",style:{marginBottom:20}},"Skills Manager ",React.createElement("span",{className:"version"},"v",this.state.version)),React.createElement("div",{className:"pull-right",style:{paddingTop:20}},React.createElement(ReactBootstrap.ButtonGroup,null,React.createElement(ReactBootstrap.Button,{bsStyle:"default",onClick:this.onListSkills},React.createElement("span",{className:"glyphicon glyphicon-refresh"})," ",React.createElement("span",null,"Refresh")),React.createElement(ReactBootstrap.Button,{bsStyle:"default",onClick:this.launchSSMConsole},React.createElement("span",{className:"glyphicon glyphicon-cog"})," ",React.createElement("span",null,"Debug")))),React.createElement("div",{className:"clearfix"}),React.createElement(ReactBootstrap.ListGroup,null,t)))}});$(document).ready(function(){ReactDOM.render(React.createElement(a,null),document.getElementById("grid"))})},{}]},{},[1])(1)});