viveworker 0.8.1 → 0.8.2
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/README.md +59 -0
- package/package.json +1 -1
- package/plugins/viveworker-control-plane/.codex-plugin/plugin.json +1 -1
- package/plugins/viveworker-control-plane/DISTRIBUTION.md +96 -0
- package/scripts/a2a-executor.mjs +261 -7
- package/scripts/a2a-handler.mjs +88 -0
- package/scripts/a2a-relay-client.mjs +6 -0
- package/scripts/viveworker-bridge.mjs +1113 -65
- package/web/app.css +114 -1
- package/web/app.js +1129 -115
- package/web/build-id.js +1 -1
- package/web/i18n.js +123 -15
- package/web/index.html +1 -1
- package/web/remote-pairing/api-router.js +84 -0
- package/web/remote-pairing/transport.js +67 -2
- package/web/sw.js +14 -4
package/web/app.css
CHANGED
|
@@ -1068,6 +1068,48 @@ pre code {
|
|
|
1068
1068
|
word-break: break-all;
|
|
1069
1069
|
}
|
|
1070
1070
|
|
|
1071
|
+
.settings-external-link {
|
|
1072
|
+
max-width: 100%;
|
|
1073
|
+
display: inline-flex;
|
|
1074
|
+
align-items: center;
|
|
1075
|
+
justify-content: flex-end;
|
|
1076
|
+
gap: 0.32rem;
|
|
1077
|
+
color: rgba(121, 196, 255, 0.9);
|
|
1078
|
+
text-decoration: none;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.settings-external-link:hover,
|
|
1082
|
+
.settings-external-link:focus-visible {
|
|
1083
|
+
color: rgba(176, 222, 255, 0.98);
|
|
1084
|
+
text-decoration: none;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.settings-external-link:focus-visible {
|
|
1088
|
+
outline: 1px solid rgba(121, 196, 255, 0.42);
|
|
1089
|
+
outline-offset: 3px;
|
|
1090
|
+
border-radius: 6px;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.settings-external-link__label {
|
|
1094
|
+
min-width: 0;
|
|
1095
|
+
overflow: hidden;
|
|
1096
|
+
text-overflow: ellipsis;
|
|
1097
|
+
white-space: nowrap;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.settings-external-link__icon {
|
|
1101
|
+
width: 0.86rem;
|
|
1102
|
+
height: 0.86rem;
|
|
1103
|
+
flex: 0 0 auto;
|
|
1104
|
+
opacity: 0.72;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
.settings-external-link__icon svg {
|
|
1108
|
+
width: 100%;
|
|
1109
|
+
height: 100%;
|
|
1110
|
+
display: block;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1071
1113
|
.settings-row__chevron {
|
|
1072
1114
|
width: 0.95rem;
|
|
1073
1115
|
height: 0.95rem;
|
|
@@ -2622,6 +2664,11 @@ pre code {
|
|
|
2622
2664
|
line-height: 1.38;
|
|
2623
2665
|
}
|
|
2624
2666
|
|
|
2667
|
+
.timeline-entry--kind-command-event .timeline-entry__title {
|
|
2668
|
+
font-size: 0.94rem;
|
|
2669
|
+
line-height: 1.38;
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2625
2672
|
.timeline-entry__summary {
|
|
2626
2673
|
color: var(--muted);
|
|
2627
2674
|
line-height: 1.5;
|
|
@@ -2649,6 +2696,52 @@ pre code {
|
|
|
2649
2696
|
line-height: 1.3;
|
|
2650
2697
|
}
|
|
2651
2698
|
|
|
2699
|
+
.timeline-entry__command {
|
|
2700
|
+
width: 100%;
|
|
2701
|
+
margin: 0;
|
|
2702
|
+
padding: 0.62rem 0.72rem;
|
|
2703
|
+
border-radius: 0.85rem;
|
|
2704
|
+
border: 1px solid rgba(156, 181, 197, 0.14);
|
|
2705
|
+
background:
|
|
2706
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
|
|
2707
|
+
rgba(3, 9, 12, 0.62);
|
|
2708
|
+
color: rgba(236, 248, 255, 0.88);
|
|
2709
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
|
2710
|
+
font-size: 0.78rem;
|
|
2711
|
+
line-height: 1.45;
|
|
2712
|
+
overflow-x: auto;
|
|
2713
|
+
white-space: pre-wrap;
|
|
2714
|
+
overflow-wrap: anywhere;
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
.timeline-entry__command code {
|
|
2718
|
+
font: inherit;
|
|
2719
|
+
color: inherit;
|
|
2720
|
+
}
|
|
2721
|
+
|
|
2722
|
+
.detail-command-block {
|
|
2723
|
+
width: 100%;
|
|
2724
|
+
margin: 0;
|
|
2725
|
+
padding: 0.82rem 0.88rem;
|
|
2726
|
+
border-radius: 1rem;
|
|
2727
|
+
border: 1px solid rgba(156, 181, 197, 0.15);
|
|
2728
|
+
background:
|
|
2729
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
|
|
2730
|
+
rgba(3, 9, 12, 0.68);
|
|
2731
|
+
color: rgba(236, 248, 255, 0.9);
|
|
2732
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
|
2733
|
+
font-size: 0.86rem;
|
|
2734
|
+
line-height: 1.55;
|
|
2735
|
+
overflow-x: auto;
|
|
2736
|
+
white-space: pre-wrap;
|
|
2737
|
+
overflow-wrap: anywhere;
|
|
2738
|
+
}
|
|
2739
|
+
|
|
2740
|
+
.detail-command-block code {
|
|
2741
|
+
font: inherit;
|
|
2742
|
+
color: inherit;
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2652
2745
|
.timeline-entry__footer {
|
|
2653
2746
|
display: flex;
|
|
2654
2747
|
align-items: center;
|
|
@@ -2934,8 +3027,17 @@ pre code {
|
|
|
2934
3027
|
padding: 0.42rem 0.62rem;
|
|
2935
3028
|
text-align: left;
|
|
2936
3029
|
vertical-align: top;
|
|
3030
|
+
/* Wrap plain text at natural boundaries, but only break long unbreakable
|
|
3031
|
+
* runs as a last resort (instead of every column being forced narrow by
|
|
3032
|
+
* the previous `word-break: break-word`). The table itself already has
|
|
3033
|
+
* `overflow-x: auto`, so any cell that legitimately needs more width
|
|
3034
|
+
* triggers horizontal scroll on the whole table. */
|
|
2937
3035
|
white-space: normal;
|
|
2938
|
-
word-break:
|
|
3036
|
+
word-break: normal;
|
|
3037
|
+
overflow-wrap: anywhere;
|
|
3038
|
+
/* Keep cells from collapsing to a single character per line under the
|
|
3039
|
+
* pressure of a wide inline `<code>` element. */
|
|
3040
|
+
min-width: 4rem;
|
|
2939
3041
|
}
|
|
2940
3042
|
|
|
2941
3043
|
.detail-body.markdown table th {
|
|
@@ -2953,6 +3055,11 @@ pre code {
|
|
|
2953
3055
|
padding: 0.05rem 0.32rem;
|
|
2954
3056
|
border-radius: 6px;
|
|
2955
3057
|
font-size: 0.86em;
|
|
3058
|
+
/* Inline code never breaks mid-token — keeps `npx viveworker enable mcp …`
|
|
3059
|
+
* legible on one line and lets the surrounding cell widen the table.
|
|
3060
|
+
* The phone reader gets horizontal scroll instead of the previous
|
|
3061
|
+
* char-per-line stack. */
|
|
3062
|
+
white-space: nowrap;
|
|
2956
3063
|
}
|
|
2957
3064
|
|
|
2958
3065
|
.detail-card {
|
|
@@ -3073,6 +3180,12 @@ pre code {
|
|
|
3073
3180
|
padding: 0.72rem;
|
|
3074
3181
|
}
|
|
3075
3182
|
|
|
3183
|
+
.detail-card--command {
|
|
3184
|
+
margin-top: 0.24rem;
|
|
3185
|
+
gap: 0.72rem;
|
|
3186
|
+
padding: 0.72rem;
|
|
3187
|
+
}
|
|
3188
|
+
|
|
3076
3189
|
.detail-card--diff-thread {
|
|
3077
3190
|
margin-top: 0.24rem;
|
|
3078
3191
|
gap: 0.72rem;
|