@aku11i/phantom 6.3.0-2 → 6.3.0-4
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/app/server/{app-BLBOjh4e.mjs → app-DS_9Jsep.mjs} +433 -33
- package/app/server/app-DS_9Jsep.mjs.map +1 -0
- package/app/server/index.mjs +1 -1
- package/app/server/start.mjs +1 -1
- package/app/web/assets/index-CxSrPVaP.css +2 -0
- package/app/web/assets/index-D1nPzGgA.js +52 -0
- package/app/web/icons/apple-touch-icon.png +0 -0
- package/app/web/icons/icon-192.png +0 -0
- package/app/web/icons/icon-512.png +0 -0
- package/app/web/icons/icon.svg +3 -0
- package/app/web/index.html +9 -2
- package/app/web/manifest.webmanifest +25 -0
- package/app/web/sw.js +15 -0
- package/package.json +1 -1
- package/phantom.js +2 -2
- package/app/server/app-BLBOjh4e.mjs.map +0 -1
- package/app/web/assets/index-IcxJQt7a.css +0 -2
- package/app/web/assets/index-iSfjEV4I.js +0 -52
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/app/web/index.html
CHANGED
|
@@ -6,9 +6,16 @@
|
|
|
6
6
|
name="viewport"
|
|
7
7
|
content="width=device-width, initial-scale=1, viewport-fit=cover, interactive-widget=resizes-content"
|
|
8
8
|
/>
|
|
9
|
+
<meta name="theme-color" content="#f0f1f5" />
|
|
10
|
+
<meta name="mobile-web-app-capable" content="yes" />
|
|
11
|
+
<meta name="apple-mobile-web-app-title" content="Phantom" />
|
|
12
|
+
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
13
|
+
<link rel="manifest" href="/manifest.webmanifest" />
|
|
14
|
+
<link rel="icon" href="/icons/icon.svg" type="image/svg+xml" />
|
|
15
|
+
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png" />
|
|
9
16
|
<title>Phantom Serve</title>
|
|
10
|
-
<script type="module" crossorigin src="/assets/index-
|
|
11
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
17
|
+
<script type="module" crossorigin src="/assets/index-D1nPzGgA.js"></script>
|
|
18
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CxSrPVaP.css">
|
|
12
19
|
</head>
|
|
13
20
|
<body>
|
|
14
21
|
<div id="root"></div>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "/",
|
|
3
|
+
"name": "Phantom Serve",
|
|
4
|
+
"short_name": "Phantom",
|
|
5
|
+
"description": "Phantom worktree and agent workspace.",
|
|
6
|
+
"start_url": "/",
|
|
7
|
+
"scope": "/",
|
|
8
|
+
"display": "standalone",
|
|
9
|
+
"background_color": "#f0f1f5",
|
|
10
|
+
"theme_color": "#f0f1f5",
|
|
11
|
+
"icons": [
|
|
12
|
+
{
|
|
13
|
+
"src": "/icons/icon-192.png",
|
|
14
|
+
"sizes": "192x192",
|
|
15
|
+
"type": "image/png",
|
|
16
|
+
"purpose": "any maskable"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"src": "/icons/icon-512.png",
|
|
20
|
+
"sizes": "512x512",
|
|
21
|
+
"type": "image/png",
|
|
22
|
+
"purpose": "any maskable"
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
package/app/web/sw.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
self.addEventListener("install", () => {
|
|
2
|
+
self.skipWaiting();
|
|
3
|
+
});
|
|
4
|
+
|
|
5
|
+
self.addEventListener("activate", (event) => {
|
|
6
|
+
event.waitUntil(self.clients.claim());
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
self.addEventListener("fetch", (event) => {
|
|
10
|
+
if (event.request.method !== "GET") {
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
event.respondWith(fetch(event.request));
|
|
15
|
+
});
|
package/package.json
CHANGED
package/phantom.js
CHANGED
|
@@ -24682,7 +24682,7 @@ var StdioServerTransport = class {
|
|
|
24682
24682
|
};
|
|
24683
24683
|
//#endregion
|
|
24684
24684
|
//#region ../mcp/package.json
|
|
24685
|
-
var version$1 = "6.3.0-
|
|
24685
|
+
var version$1 = "6.3.0-4";
|
|
24686
24686
|
const createWorktreeTool = {
|
|
24687
24687
|
name: "phantom_create_worktree",
|
|
24688
24688
|
description: "Create a new Git worktree (phantom)",
|
|
@@ -25281,7 +25281,7 @@ async function shellHandler(args) {
|
|
|
25281
25281
|
}
|
|
25282
25282
|
//#endregion
|
|
25283
25283
|
//#region package.json
|
|
25284
|
-
var version = "6.3.0-
|
|
25284
|
+
var version = "6.3.0-4";
|
|
25285
25285
|
//#endregion
|
|
25286
25286
|
//#region src/version.ts
|
|
25287
25287
|
function getVersion() {
|