@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.
Binary file
Binary file
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
+ <rect width="512" height="512" fill="#fff" />
3
+ </svg>
@@ -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-iSfjEV4I.js"></script>
11
- <link rel="stylesheet" crossorigin href="/assets/index-IcxJQt7a.css">
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aku11i/phantom",
3
- "version": "6.3.0-2",
3
+ "version": "6.3.0-4",
4
4
  "description": "A powerful CLI tool for managing Git worktrees for parallel development",
5
5
  "keywords": [
6
6
  "git",
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-2";
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-2";
25284
+ var version = "6.3.0-4";
25285
25285
  //#endregion
25286
25286
  //#region src/version.ts
25287
25287
  function getVersion() {