viveworker 0.8.0 → 0.8.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/.agents/plugins/marketplace.json +20 -0
- package/README.md +82 -0
- package/package.json +7 -1
- package/plugins/viveworker-control-plane/.codex-plugin/plugin.json +49 -0
- package/plugins/viveworker-control-plane/.mcp.json +11 -0
- package/plugins/viveworker-control-plane/assets/viveworker-logo-v2.png +0 -0
- package/plugins/viveworker-control-plane/assets/viveworker-logo-v2.svg +39 -0
- package/plugins/viveworker-control-plane/skills/viveworker-control-plane/SKILL.md +83 -0
- package/scripts/lib/markdown-render.mjs +128 -1
- package/scripts/mcp-server.mjs +891 -0
- package/scripts/stats-cli.mjs +683 -0
- package/scripts/viveworker-bridge.mjs +350 -22
- package/scripts/viveworker.mjs +262 -1
- package/skills/viveworker-control-plane/SKILL.md +104 -0
- package/skills/viveworker-control-plane/agents/openai.yaml +12 -0
- package/templates/CLAUDE.viveworker.md +67 -0
- package/web/app.css +49 -0
- package/web/app.js +51 -2
- package/web/build-id.js +1 -0
- package/web/icons/apple-touch-icon.png +0 -0
- package/web/icons/viveworker-icon-192.png +0 -0
- package/web/icons/viveworker-icon-512.png +0 -0
- package/web/icons/viveworker-v-pulse.svg +16 -1
- package/web/index.html +1 -1
- package/web/sw.js +2 -2
- package/web/icons/viveworker-beacon-v.svg +0 -19
- package/web/icons/viveworker-icon-1024.png +0 -0
- package/web/icons/viveworker-v-check.svg +0 -19
|
@@ -9,16 +9,31 @@
|
|
|
9
9
|
<stop stop-color="#5ED6FF" stop-opacity="0.34"/>
|
|
10
10
|
<stop offset="1" stop-color="#5ED6FF" stop-opacity="0"/>
|
|
11
11
|
</radialGradient>
|
|
12
|
+
<linearGradient id="vFill" x1="264" y1="286" x2="778" y2="776" gradientUnits="userSpaceOnUse">
|
|
13
|
+
<stop stop-color="#FFFFFF"/>
|
|
14
|
+
<stop offset="0.5" stop-color="#F5FBFF"/>
|
|
15
|
+
<stop offset="1" stop-color="#E7F4F8"/>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
<radialGradient id="vShade" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(512 674) rotate(90) scale(196 292)">
|
|
18
|
+
<stop stop-color="#CFEAF5" stop-opacity="0.46"/>
|
|
19
|
+
<stop offset="1" stop-color="#CFEAF5" stop-opacity="0"/>
|
|
20
|
+
</radialGradient>
|
|
12
21
|
<filter id="soft" x="557" y="90" width="320" height="320" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
13
22
|
<feGaussianBlur stdDeviation="24"/>
|
|
14
23
|
</filter>
|
|
24
|
+
<filter id="vShadow" x="190" y="240" width="650" height="630" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
25
|
+
<feDropShadow dx="0" dy="24" stdDeviation="30" flood-color="#5ED6FF" flood-opacity="0.14"/>
|
|
26
|
+
</filter>
|
|
15
27
|
</defs>
|
|
16
28
|
<rect width="1024" height="1024" rx="224" fill="url(#bg)"/>
|
|
17
29
|
<circle cx="717" cy="250" r="112" fill="url(#glow)"/>
|
|
18
30
|
<g filter="url(#soft)">
|
|
19
31
|
<circle cx="717" cy="250" r="58" fill="#7DD3FC" fill-opacity="0.36"/>
|
|
20
32
|
</g>
|
|
21
|
-
<
|
|
33
|
+
<g filter="url(#vShadow)">
|
|
34
|
+
<path d="M270 292C235 304 220 342 237 376L421 729C458 800 566 800 603 729L787 376C804 342 789 304 754 292C719 280 684 301 670 335L534 657C525 679 499 679 490 657L354 335C340 301 305 280 270 292Z" fill="url(#vFill)"/>
|
|
35
|
+
<path d="M270 292C235 304 220 342 237 376L421 729C458 800 566 800 603 729L787 376C804 342 789 304 754 292C719 280 684 301 670 335L534 657C525 679 499 679 490 657L354 335C340 301 305 280 270 292Z" fill="url(#vShade)"/>
|
|
36
|
+
</g>
|
|
22
37
|
<path d="M697 180C748 180 789 221 789 272" stroke="#7DD3FC" stroke-width="40" stroke-linecap="round"/>
|
|
23
38
|
<path d="M667 120C752 120 821 189 821 274" stroke="#7DD3FC" stroke-width="28" stroke-linecap="round" opacity="0.92"/>
|
|
24
39
|
</svg>
|
package/web/index.html
CHANGED
|
@@ -126,6 +126,6 @@
|
|
|
126
126
|
if (splash) splash.setAttribute("aria-label", `viveworker ${message}`);
|
|
127
127
|
})();
|
|
128
128
|
</script>
|
|
129
|
-
<script type="module" src="/app.js?v=
|
|
129
|
+
<script type="module" src="/app.js?v=__VIVEWORKER_APP_BUILD_ID__"></script>
|
|
130
130
|
</body>
|
|
131
131
|
</html>
|
package/web/sw.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
const
|
|
2
|
-
const
|
|
1
|
+
const APP_BUILD_ID = "__VIVEWORKER_APP_BUILD_ID__";
|
|
2
|
+
const CACHE_NAME = `viveworker-${APP_BUILD_ID}`;
|
|
3
3
|
const APP_SCRIPT_URL = `/app.js?v=${APP_BUILD_ID}`;
|
|
4
4
|
const API_ROUTER_URL = `/remote-pairing/api-router.js?v=${APP_BUILD_ID}`;
|
|
5
5
|
const NOTIFICATION_INTENT_CACHE = "viveworker-notification-intent-v1";
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<svg width="1024" height="1024" viewBox="0 0 1024 1024" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<defs>
|
|
3
|
-
<radialGradient id="bg" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(524 120) rotate(90) scale(920 834)">
|
|
4
|
-
<stop stop-color="#132432"/>
|
|
5
|
-
<stop offset="0.45" stop-color="#0C151C"/>
|
|
6
|
-
<stop offset="1" stop-color="#091016"/>
|
|
7
|
-
</radialGradient>
|
|
8
|
-
<radialGradient id="signal" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(512 244) rotate(90) scale(182 244)">
|
|
9
|
-
<stop stop-color="#84CBFF" stop-opacity="0.3"/>
|
|
10
|
-
<stop offset="1" stop-color="#84CBFF" stop-opacity="0"/>
|
|
11
|
-
</radialGradient>
|
|
12
|
-
</defs>
|
|
13
|
-
<rect width="1024" height="1024" rx="224" fill="url(#bg)"/>
|
|
14
|
-
<ellipse cx="512" cy="246" rx="184" ry="132" fill="url(#signal)"/>
|
|
15
|
-
<path d="M322 370L477 718C493 754 531 754 547 718L702 370" stroke="#F4FAFF" stroke-width="96" stroke-linecap="round" stroke-linejoin="round"/>
|
|
16
|
-
<circle cx="512" cy="228" r="28" fill="#8CCBFF"/>
|
|
17
|
-
<path d="M438 216C438 175 471 142 512 142C553 142 586 175 586 216" stroke="#8CCBFF" stroke-width="30" stroke-linecap="round"/>
|
|
18
|
-
<path d="M384 220C384 149 441 92 512 92C583 92 640 149 640 220" stroke="#8CCBFF" stroke-width="20" stroke-linecap="round" opacity="0.95"/>
|
|
19
|
-
</svg>
|
|
Binary file
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<svg width="1024" height="1024" viewBox="0 0 1024 1024" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<defs>
|
|
3
|
-
<linearGradient id="bg" x1="188" y1="122" x2="841" y2="931" gradientUnits="userSpaceOnUse">
|
|
4
|
-
<stop stop-color="#16222B"/>
|
|
5
|
-
<stop offset="0.48" stop-color="#0D141A"/>
|
|
6
|
-
<stop offset="1" stop-color="#0A1116"/>
|
|
7
|
-
</linearGradient>
|
|
8
|
-
<radialGradient id="accent" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(780 252) rotate(128.783) scale(251.649)">
|
|
9
|
-
<stop stop-color="#8BE9C1" stop-opacity="0.34"/>
|
|
10
|
-
<stop offset="1" stop-color="#8BE9C1" stop-opacity="0"/>
|
|
11
|
-
</radialGradient>
|
|
12
|
-
</defs>
|
|
13
|
-
<rect width="1024" height="1024" rx="224" fill="url(#bg)"/>
|
|
14
|
-
<circle cx="781" cy="254" r="120" fill="url(#accent)"/>
|
|
15
|
-
<path d="M286 300L468 730C486 772 538 772 556 730L738 300" stroke="#F8FBFE" stroke-width="108" stroke-linecap="round" stroke-linejoin="round"/>
|
|
16
|
-
<circle cx="760" cy="276" r="116" fill="#8BE9C1"/>
|
|
17
|
-
<circle cx="760" cy="276" r="94" fill="#132028" fill-opacity="0.2"/>
|
|
18
|
-
<path d="M707 277L741 312L815 238" stroke="#0C161C" stroke-width="42" stroke-linecap="round" stroke-linejoin="round"/>
|
|
19
|
-
</svg>
|