viveworker 0.8.1 → 0.8.3
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 +64 -4
- 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/com.viveworker.moltbook-scout.plist.sample +2 -2
- package/scripts/moltbook-api.mjs +178 -2
- package/scripts/moltbook-cli.mjs +134 -8
- package/scripts/moltbook-scout-auto.sh +100 -10
- package/scripts/moltbook-watcher.mjs +10 -0
- package/scripts/viveworker-bridge.mjs +1909 -183
- package/web/app.css +147 -1
- package/web/app.js +1205 -131
- package/web/build-id.js +1 -1
- package/web/i18n.js +147 -17
- package/web/index.html +1 -1
- package/web/remote-pairing/api-router.js +250 -13
- 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;
|
|
@@ -2662,6 +2755,39 @@ pre code {
|
|
|
2662
2755
|
color: rgba(236, 248, 255, 0.66);
|
|
2663
2756
|
}
|
|
2664
2757
|
|
|
2758
|
+
.timeline-entry--activity {
|
|
2759
|
+
cursor: default;
|
|
2760
|
+
border-color: rgba(121, 196, 255, 0.18);
|
|
2761
|
+
background:
|
|
2762
|
+
linear-gradient(180deg, rgba(121, 196, 255, 0.11), rgba(20, 31, 40, 0.94)),
|
|
2763
|
+
var(--card);
|
|
2764
|
+
}
|
|
2765
|
+
|
|
2766
|
+
.timeline-entry__activity-pulse {
|
|
2767
|
+
width: 0.58rem;
|
|
2768
|
+
height: 0.58rem;
|
|
2769
|
+
flex: 0 0 auto;
|
|
2770
|
+
border-radius: 999px;
|
|
2771
|
+
background: rgba(121, 196, 255, 0.9);
|
|
2772
|
+
box-shadow: 0 0 0 0 rgba(121, 196, 255, 0.26);
|
|
2773
|
+
animation: timeline-activity-pulse 1.6s ease-out infinite;
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2776
|
+
@keyframes timeline-activity-pulse {
|
|
2777
|
+
0% {
|
|
2778
|
+
box-shadow: 0 0 0 0 rgba(121, 196, 255, 0.26);
|
|
2779
|
+
opacity: 0.95;
|
|
2780
|
+
}
|
|
2781
|
+
70% {
|
|
2782
|
+
box-shadow: 0 0 0 0.56rem rgba(121, 196, 255, 0);
|
|
2783
|
+
opacity: 0.72;
|
|
2784
|
+
}
|
|
2785
|
+
100% {
|
|
2786
|
+
box-shadow: 0 0 0 0 rgba(121, 196, 255, 0);
|
|
2787
|
+
opacity: 0.95;
|
|
2788
|
+
}
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2665
2791
|
.timeline-entry--message .timeline-entry__title {
|
|
2666
2792
|
font-size: 1.03rem;
|
|
2667
2793
|
line-height: 1.55;
|
|
@@ -2934,8 +3060,17 @@ pre code {
|
|
|
2934
3060
|
padding: 0.42rem 0.62rem;
|
|
2935
3061
|
text-align: left;
|
|
2936
3062
|
vertical-align: top;
|
|
3063
|
+
/* Wrap plain text at natural boundaries, but only break long unbreakable
|
|
3064
|
+
* runs as a last resort (instead of every column being forced narrow by
|
|
3065
|
+
* the previous `word-break: break-word`). The table itself already has
|
|
3066
|
+
* `overflow-x: auto`, so any cell that legitimately needs more width
|
|
3067
|
+
* triggers horizontal scroll on the whole table. */
|
|
2937
3068
|
white-space: normal;
|
|
2938
|
-
word-break:
|
|
3069
|
+
word-break: normal;
|
|
3070
|
+
overflow-wrap: anywhere;
|
|
3071
|
+
/* Keep cells from collapsing to a single character per line under the
|
|
3072
|
+
* pressure of a wide inline `<code>` element. */
|
|
3073
|
+
min-width: 4rem;
|
|
2939
3074
|
}
|
|
2940
3075
|
|
|
2941
3076
|
.detail-body.markdown table th {
|
|
@@ -2953,6 +3088,11 @@ pre code {
|
|
|
2953
3088
|
padding: 0.05rem 0.32rem;
|
|
2954
3089
|
border-radius: 6px;
|
|
2955
3090
|
font-size: 0.86em;
|
|
3091
|
+
/* Inline code never breaks mid-token — keeps `npx viveworker enable mcp …`
|
|
3092
|
+
* legible on one line and lets the surrounding cell widen the table.
|
|
3093
|
+
* The phone reader gets horizontal scroll instead of the previous
|
|
3094
|
+
* char-per-line stack. */
|
|
3095
|
+
white-space: nowrap;
|
|
2956
3096
|
}
|
|
2957
3097
|
|
|
2958
3098
|
.detail-card {
|
|
@@ -3073,6 +3213,12 @@ pre code {
|
|
|
3073
3213
|
padding: 0.72rem;
|
|
3074
3214
|
}
|
|
3075
3215
|
|
|
3216
|
+
.detail-card--command {
|
|
3217
|
+
margin-top: 0.24rem;
|
|
3218
|
+
gap: 0.72rem;
|
|
3219
|
+
padding: 0.72rem;
|
|
3220
|
+
}
|
|
3221
|
+
|
|
3076
3222
|
.detail-card--diff-thread {
|
|
3077
3223
|
margin-top: 0.24rem;
|
|
3078
3224
|
gap: 0.72rem;
|