buhtig 0.1.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +8 -0
- package/README.md +552 -0
- package/package.json +64 -0
- package/packages/cli/dist/docs/buhtig-review/API.md +486 -0
- package/packages/cli/dist/docs/buhtig-review/BOOTSTRAP.md +36 -0
- package/packages/cli/dist/docs/buhtig-review/FACET_REVIEWER.md +205 -0
- package/packages/cli/dist/docs/buhtig-review/ORCHESTRATOR.md +263 -0
- package/packages/cli/dist/docs/buhtig-review/PROVENANCE.md +119 -0
- package/packages/cli/dist/docs/buhtig-review/SKILL.md +124 -0
- package/packages/cli/dist/index.js +60291 -0
- package/packages/cli/dist/mcp.js +29384 -0
- package/packages/cli/dist/openapi.json +19973 -0
- package/packages/cli/dist/web/assets/index-BVmXlvZB.css +1 -0
- package/packages/cli/dist/web/assets/index-DgFiAR5v.js +890 -0
- package/packages/cli/dist/web/assets/web-BSvOHUC-.js +1 -0
- package/packages/cli/dist/web/assets/web-Bq29swYs.js +1 -0
- package/packages/cli/dist/web/index.html +13 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var a=Object.defineProperty;var n=(s,e)=>a(s,"name",{value:e,configurable:!0});import{W as o}from"./index-DgFiAR5v.js";const t=class t extends o{constructor(){super(),this.handleVisibilityChange=()=>{const e={isActive:document.hidden!==!0};this.notifyListeners("appStateChange",e),document.hidden?this.notifyListeners("pause",null):this.notifyListeners("resume",null)},document.addEventListener("visibilitychange",this.handleVisibilityChange,!1)}exitApp(){throw this.unimplemented("Not implemented on web.")}async getInfo(){throw this.unimplemented("Not implemented on web.")}async getLaunchUrl(){return{url:""}}async getState(){return{isActive:document.hidden!==!0}}async minimizeApp(){throw this.unimplemented("Not implemented on web.")}async toggleBackButtonHandler(){throw this.unimplemented("Not implemented on web.")}async getAppLanguage(){return{value:navigator.language.split("-")[0].toLowerCase()}}};n(t,"AppWeb");let i=t;export{i as AppWeb};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=Object.defineProperty;var o=(t,n)=>e(t,"name",{value:n,configurable:!0});import{W as a}from"./index-DgFiAR5v.js";const l=class l extends a{constructor(){super(),this._lastWindow=null}async open(n){this._lastWindow=window.open(n.url,n.windowName||"_blank")}async close(){return new Promise((n,i)=>{this._lastWindow!=null?(this._lastWindow.close(),this._lastWindow=null,n()):i("No active window to close!")})}};o(l,"BrowserWeb");let s=l;const d=new s;export{d as Browser,s as BrowserWeb};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>buhtig</title>
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-DgFiAR5v.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BVmXlvZB.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|