@inkobytes/nexus 1.0.0 → 1.0.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/CHANGELOG.md +6 -0
- package/README.md +28 -0
- package/bin/nexus.js +96 -51
- package/nexus-dashboard/docs/index.html +82 -99
- package/nexus-dashboard/index.html +210 -19
- package/nexus-dashboard/style.css +419 -38
- package/package.json +2 -1
- package/src/commands/completion.js +124 -0
- package/src/commands/dashboard.js +67 -0
|
@@ -60,7 +60,7 @@ body {
|
|
|
60
60
|
|
|
61
61
|
/* Sidebar Navigation */
|
|
62
62
|
.sidebar {
|
|
63
|
-
width:
|
|
63
|
+
width: 200px;
|
|
64
64
|
height: 100vh;
|
|
65
65
|
position: sticky;
|
|
66
66
|
top: 0;
|
|
@@ -120,26 +120,48 @@ body {
|
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
.nav-link {
|
|
123
|
+
position: relative;
|
|
123
124
|
display: flex;
|
|
124
125
|
align-items: center;
|
|
125
126
|
gap: 8px;
|
|
126
|
-
color:
|
|
127
|
+
color: rgba(148, 163, 184, 0.78);
|
|
127
128
|
text-decoration: none;
|
|
128
129
|
font-weight: 500;
|
|
129
130
|
padding: 8px 12px;
|
|
130
131
|
border-radius: 8px;
|
|
131
|
-
|
|
132
|
+
border: 1px solid transparent;
|
|
133
|
+
transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
|
|
132
134
|
}
|
|
133
135
|
|
|
134
136
|
.nav-link:hover,
|
|
135
137
|
.nav-link.active {
|
|
136
|
-
background:
|
|
138
|
+
background:
|
|
139
|
+
linear-gradient(90deg, rgba(14, 165, 233, 0.18), rgba(45, 212, 191, 0.09)),
|
|
140
|
+
var(--bg-accent);
|
|
137
141
|
color: var(--text-main);
|
|
142
|
+
border-color: rgba(14, 165, 233, 0.22);
|
|
143
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 24px rgba(0, 0, 0, 0.16);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.nav-link:hover {
|
|
147
|
+
transform: translateX(2px);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.nav-link.active::before {
|
|
151
|
+
content: "";
|
|
152
|
+
position: absolute;
|
|
153
|
+
left: -10px;
|
|
154
|
+
top: 8px;
|
|
155
|
+
bottom: 8px;
|
|
156
|
+
width: 3px;
|
|
157
|
+
border-radius: 999px;
|
|
158
|
+
background: linear-gradient(180deg, var(--text-accent), var(--agent-codex));
|
|
159
|
+
box-shadow: 0 0 18px rgba(14, 165, 233, 0.45);
|
|
138
160
|
}
|
|
139
161
|
|
|
140
162
|
.nav-link-sub {
|
|
141
|
-
font-size:
|
|
142
|
-
font-weight:
|
|
163
|
+
font-size: 11px;
|
|
164
|
+
font-weight: 400;
|
|
143
165
|
padding: 6px 12px 6px 24px;
|
|
144
166
|
}
|
|
145
167
|
|
|
@@ -147,6 +169,7 @@ body {
|
|
|
147
169
|
width: 15px;
|
|
148
170
|
height: 15px;
|
|
149
171
|
flex-shrink: 0;
|
|
172
|
+
color: rgba(228, 231, 235, 0.92);
|
|
150
173
|
}
|
|
151
174
|
|
|
152
175
|
.nav-divider {
|
|
@@ -266,6 +289,10 @@ h2 {
|
|
|
266
289
|
/* Section sizing overrides */
|
|
267
290
|
.now-section {
|
|
268
291
|
grid-column: span 9;
|
|
292
|
+
background:
|
|
293
|
+
radial-gradient(circle at top left, rgba(88, 199, 255, 0.12), transparent 38%),
|
|
294
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
|
|
295
|
+
var(--bg-card);
|
|
269
296
|
}
|
|
270
297
|
|
|
271
298
|
.ring-section {
|
|
@@ -274,10 +301,38 @@ h2 {
|
|
|
274
301
|
display: flex;
|
|
275
302
|
flex-direction: column;
|
|
276
303
|
align-self: start;
|
|
304
|
+
background:
|
|
305
|
+
radial-gradient(circle at top, rgba(1, 252, 93, 0.1), transparent 44%),
|
|
306
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
|
|
307
|
+
var(--bg-card);
|
|
277
308
|
}
|
|
278
309
|
|
|
279
310
|
.chart-sm {
|
|
280
311
|
grid-column: span 4;
|
|
312
|
+
background:
|
|
313
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
|
|
314
|
+
var(--bg-card);
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
#metrics.chart-sm {
|
|
318
|
+
background:
|
|
319
|
+
radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 42%),
|
|
320
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
|
|
321
|
+
var(--bg-card);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
#cost-split.chart-sm {
|
|
325
|
+
background:
|
|
326
|
+
radial-gradient(circle at top, rgba(234, 179, 8, 0.1), transparent 46%),
|
|
327
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
|
|
328
|
+
var(--bg-card);
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
#by-agent.chart-sm {
|
|
332
|
+
background:
|
|
333
|
+
radial-gradient(circle at top right, rgba(45, 212, 191, 0.14), transparent 40%),
|
|
334
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
|
|
335
|
+
var(--bg-card);
|
|
281
336
|
}
|
|
282
337
|
|
|
283
338
|
/* Locks Section */
|
|
@@ -304,6 +359,9 @@ h2 {
|
|
|
304
359
|
}
|
|
305
360
|
|
|
306
361
|
.lock-group-agent {
|
|
362
|
+
display: inline-flex;
|
|
363
|
+
align-items: center;
|
|
364
|
+
gap: 6px;
|
|
307
365
|
font-family: var(--font-mono);
|
|
308
366
|
font-size: 12px;
|
|
309
367
|
font-weight: 600;
|
|
@@ -313,6 +371,18 @@ h2 {
|
|
|
313
371
|
border-radius: var(--r-pill);
|
|
314
372
|
}
|
|
315
373
|
|
|
374
|
+
.lock-group-agent-icon {
|
|
375
|
+
display: inline-flex;
|
|
376
|
+
align-items: center;
|
|
377
|
+
justify-content: center;
|
|
378
|
+
color: currentColor;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.lock-group-agent-icon .icon {
|
|
382
|
+
width: 13px;
|
|
383
|
+
height: 13px;
|
|
384
|
+
}
|
|
385
|
+
|
|
316
386
|
.lock-group-count {
|
|
317
387
|
font-size: 12px;
|
|
318
388
|
color: var(--text-muted);
|
|
@@ -360,6 +430,31 @@ h2 {
|
|
|
360
430
|
/* Queue Section */
|
|
361
431
|
.queue-section {
|
|
362
432
|
padding: 0;
|
|
433
|
+
background:
|
|
434
|
+
radial-gradient(circle at top left, rgba(99, 102, 241, 0.12), transparent 36%),
|
|
435
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
|
|
436
|
+
var(--bg-card);
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
#standup-section {
|
|
440
|
+
background:
|
|
441
|
+
radial-gradient(circle at top right, rgba(236, 72, 153, 0.1), transparent 40%),
|
|
442
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
|
|
443
|
+
var(--bg-card);
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
#recent-releases {
|
|
447
|
+
background:
|
|
448
|
+
radial-gradient(circle at top left, rgba(249, 115, 22, 0.11), transparent 42%),
|
|
449
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
|
|
450
|
+
var(--bg-card);
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.report-section {
|
|
454
|
+
background:
|
|
455
|
+
radial-gradient(circle at top right, rgba(139, 92, 246, 0.11), transparent 40%),
|
|
456
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
|
|
457
|
+
var(--bg-card);
|
|
363
458
|
}
|
|
364
459
|
|
|
365
460
|
.queue-tabs {
|
|
@@ -516,11 +611,30 @@ h2 {
|
|
|
516
611
|
font-size: 11px;
|
|
517
612
|
}
|
|
518
613
|
|
|
614
|
+
.ledger-agent {
|
|
615
|
+
display: inline-flex;
|
|
616
|
+
align-items: center;
|
|
617
|
+
gap: 6px;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.ledger-agent-icon {
|
|
621
|
+
display: inline-flex;
|
|
622
|
+
align-items: center;
|
|
623
|
+
justify-content: center;
|
|
624
|
+
color: currentColor;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.ledger-agent-icon .icon {
|
|
628
|
+
width: 12px;
|
|
629
|
+
height: 12px;
|
|
630
|
+
}
|
|
631
|
+
|
|
519
632
|
.ledger-commit {
|
|
520
633
|
font-family: var(--font-mono);
|
|
521
634
|
font-size: 12px;
|
|
522
635
|
color: var(--text-muted);
|
|
523
636
|
overflow-wrap: anywhere;
|
|
637
|
+
margin-left: 8px;
|
|
524
638
|
}
|
|
525
639
|
|
|
526
640
|
.ledger-files {
|
|
@@ -540,8 +654,7 @@ h2 {
|
|
|
540
654
|
|
|
541
655
|
.ledger-files code {
|
|
542
656
|
display: block;
|
|
543
|
-
|
|
544
|
-
overflow: auto;
|
|
657
|
+
padding: 8px;
|
|
545
658
|
line-height: 1.6;
|
|
546
659
|
white-space: normal;
|
|
547
660
|
}
|
|
@@ -563,6 +676,7 @@ h2 {
|
|
|
563
676
|
align-items: center;
|
|
564
677
|
justify-content: center;
|
|
565
678
|
flex: 1;
|
|
679
|
+
width: 100%;
|
|
566
680
|
}
|
|
567
681
|
|
|
568
682
|
.chart-list {
|
|
@@ -575,25 +689,51 @@ h2 {
|
|
|
575
689
|
display: flex;
|
|
576
690
|
flex-direction: column;
|
|
577
691
|
gap: 6px;
|
|
692
|
+
padding: 4px 0;
|
|
578
693
|
}
|
|
579
694
|
|
|
580
695
|
.chart-row-header {
|
|
581
696
|
display: flex;
|
|
582
697
|
justify-content: space-between;
|
|
583
698
|
font-size: 12px;
|
|
699
|
+
gap: 12px;
|
|
700
|
+
align-items: center;
|
|
584
701
|
}
|
|
585
702
|
|
|
586
703
|
.chart-bar-track {
|
|
587
|
-
height:
|
|
588
|
-
background:
|
|
704
|
+
height: 10px;
|
|
705
|
+
background: rgba(255, 255, 255, 0.05);
|
|
589
706
|
border-radius: var(--r-pill);
|
|
590
707
|
overflow: hidden;
|
|
708
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.28);
|
|
591
709
|
}
|
|
592
710
|
|
|
593
711
|
.chart-bar-fill {
|
|
594
712
|
height: 100%;
|
|
595
|
-
background:
|
|
713
|
+
background: linear-gradient(90deg, rgba(45, 212, 191, 0.85), rgba(14, 165, 233, 1));
|
|
596
714
|
border-radius: var(--r-pill);
|
|
715
|
+
box-shadow: 0 0 18px rgba(14, 165, 233, 0.22);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.chart-row-note {
|
|
719
|
+
font-size: 11px;
|
|
720
|
+
color: var(--text-muted);
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
.chart-row-rank {
|
|
724
|
+
display: inline-flex;
|
|
725
|
+
align-items: center;
|
|
726
|
+
justify-content: center;
|
|
727
|
+
min-width: 24px;
|
|
728
|
+
height: 24px;
|
|
729
|
+
margin-right: 10px;
|
|
730
|
+
border-radius: 999px;
|
|
731
|
+
background: rgba(14, 165, 233, 0.12);
|
|
732
|
+
border: 1px solid rgba(14, 165, 233, 0.2);
|
|
733
|
+
color: var(--text-accent);
|
|
734
|
+
font-family: var(--font-mono);
|
|
735
|
+
font-size: 10px;
|
|
736
|
+
letter-spacing: 0.02em;
|
|
597
737
|
}
|
|
598
738
|
|
|
599
739
|
.vchart-wrap {
|
|
@@ -613,6 +753,7 @@ h2 {
|
|
|
613
753
|
display: flex;
|
|
614
754
|
flex-direction: column;
|
|
615
755
|
align-items: center;
|
|
756
|
+
gap: 6px;
|
|
616
757
|
}
|
|
617
758
|
|
|
618
759
|
.vchart-spacer {
|
|
@@ -621,36 +762,44 @@ h2 {
|
|
|
621
762
|
|
|
622
763
|
.vchart-bar {
|
|
623
764
|
width: 100%;
|
|
624
|
-
|
|
625
|
-
|
|
765
|
+
min-height: 14px;
|
|
766
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02)), var(--text-accent);
|
|
767
|
+
border-radius: 10px 10px 4px 4px;
|
|
768
|
+
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
|
|
626
769
|
}
|
|
627
770
|
|
|
628
771
|
.vchart-count {
|
|
629
772
|
font-family: var(--font-mono);
|
|
630
773
|
font-size: 12px;
|
|
631
|
-
|
|
774
|
+
color: var(--text-main);
|
|
632
775
|
}
|
|
633
776
|
|
|
634
777
|
.vchart-label {
|
|
635
778
|
font-size: 11px;
|
|
636
779
|
color: var(--text-muted);
|
|
637
780
|
margin-top: 8px;
|
|
781
|
+
text-transform: uppercase;
|
|
782
|
+
letter-spacing: 0.06em;
|
|
638
783
|
}
|
|
639
784
|
|
|
640
785
|
.pie-wrap {
|
|
641
786
|
display: flex;
|
|
642
|
-
|
|
643
|
-
|
|
787
|
+
flex-direction: column;
|
|
788
|
+
align-items: stretch;
|
|
789
|
+
gap: 18px;
|
|
644
790
|
}
|
|
645
791
|
|
|
646
792
|
.pie-svg {
|
|
647
|
-
width:
|
|
793
|
+
width: 100%;
|
|
794
|
+
min-width: 0;
|
|
648
795
|
}
|
|
649
796
|
|
|
650
797
|
.agent-legend {
|
|
651
798
|
display: flex;
|
|
652
799
|
flex-direction: column;
|
|
653
|
-
gap:
|
|
800
|
+
gap: 10px;
|
|
801
|
+
min-width: 0;
|
|
802
|
+
flex: 1;
|
|
654
803
|
}
|
|
655
804
|
|
|
656
805
|
.agent-legend-item {
|
|
@@ -658,12 +807,69 @@ h2 {
|
|
|
658
807
|
align-items: center;
|
|
659
808
|
gap: 8px;
|
|
660
809
|
font-size: 12px;
|
|
810
|
+
padding: 8px 0;
|
|
811
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
661
812
|
}
|
|
662
813
|
|
|
663
814
|
.agent-legend-dot {
|
|
664
815
|
width: 10px;
|
|
665
816
|
height: 10px;
|
|
666
817
|
border-radius: 50%;
|
|
818
|
+
box-shadow: 0 0 6px currentColor;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.agent-legend-item:last-child {
|
|
822
|
+
border-bottom: 0;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.agent-legend-name {
|
|
826
|
+
color: var(--text-main);
|
|
827
|
+
font-weight: 600;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.agent-legend-share {
|
|
831
|
+
margin-left: auto;
|
|
832
|
+
font-family: var(--font-mono);
|
|
833
|
+
font-size: 11px;
|
|
834
|
+
color: var(--text-accent);
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.pie-shell {
|
|
838
|
+
position: relative;
|
|
839
|
+
display: grid;
|
|
840
|
+
place-items: center;
|
|
841
|
+
width: 100%;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.pie-bg {
|
|
845
|
+
fill: none;
|
|
846
|
+
stroke: rgba(255, 255, 255, 0.15);
|
|
847
|
+
stroke-width: 6;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.pie-core {
|
|
851
|
+
fill: rgba(15, 17, 21, 0.96);
|
|
852
|
+
stroke: rgba(255, 255, 255, 0.05);
|
|
853
|
+
stroke-width: 1.5;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.pie-total,
|
|
857
|
+
.pie-sub {
|
|
858
|
+
text-anchor: middle;
|
|
859
|
+
dominant-baseline: middle;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.pie-total {
|
|
863
|
+
font-size: 18px;
|
|
864
|
+
font-weight: 700;
|
|
865
|
+
fill: var(--text-main);
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.pie-sub {
|
|
869
|
+
font-size: 8px;
|
|
870
|
+
letter-spacing: 0.16em;
|
|
871
|
+
text-transform: uppercase;
|
|
872
|
+
fill: var(--text-muted);
|
|
667
873
|
}
|
|
668
874
|
|
|
669
875
|
/* Feed */
|
|
@@ -775,17 +981,85 @@ h2 {
|
|
|
775
981
|
line-height: 1.4;
|
|
776
982
|
}
|
|
777
983
|
|
|
778
|
-
.report-
|
|
779
|
-
|
|
984
|
+
.report-intro {
|
|
985
|
+
font-size: 13px;
|
|
986
|
+
color: var(--text-muted);
|
|
987
|
+
line-height: 1.6;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.report-tabs {
|
|
991
|
+
display: flex;
|
|
992
|
+
flex-wrap: wrap;
|
|
993
|
+
gap: 10px;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.report-panel {
|
|
997
|
+
display: flex;
|
|
998
|
+
flex-direction: column;
|
|
999
|
+
gap: 18px;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.report-month-group {
|
|
1003
|
+
display: flex;
|
|
1004
|
+
flex-direction: column;
|
|
1005
|
+
gap: 10px;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.report-month-group+.report-month-group {
|
|
1009
|
+
padding-top: 18px;
|
|
1010
|
+
border-top: var(--border-subtle);
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.report-month-heading {
|
|
1014
|
+
font-size: 12px;
|
|
1015
|
+
font-weight: 700;
|
|
1016
|
+
letter-spacing: 0.08em;
|
|
1017
|
+
text-transform: uppercase;
|
|
1018
|
+
color: var(--text-accent);
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.report-month-list {
|
|
1022
|
+
display: flex;
|
|
1023
|
+
flex-direction: column;
|
|
1024
|
+
gap: 12px;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
.report-entry {
|
|
780
1028
|
padding: 16px;
|
|
781
1029
|
border-radius: var(--r-card);
|
|
782
1030
|
background: #0b0d10;
|
|
783
1031
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.report-entry-head {
|
|
1035
|
+
display: flex;
|
|
1036
|
+
justify-content: space-between;
|
|
1037
|
+
gap: 12px;
|
|
1038
|
+
align-items: baseline;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.report-entry-target {
|
|
1042
|
+
font-size: 13px;
|
|
1043
|
+
font-weight: 600;
|
|
1044
|
+
color: var(--text-main);
|
|
1045
|
+
overflow-wrap: anywhere;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.report-entry-time {
|
|
1049
|
+
font-family: var(--font-mono);
|
|
1050
|
+
font-size: 11.5px;
|
|
1051
|
+
color: var(--text-muted);
|
|
1052
|
+
white-space: nowrap;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.report-entry-body {
|
|
1056
|
+
margin: 12px 0 0;
|
|
784
1057
|
color: var(--text-muted);
|
|
785
1058
|
font-family: var(--font-mono);
|
|
786
1059
|
font-size: 12px;
|
|
787
1060
|
line-height: 1.6;
|
|
788
1061
|
white-space: pre-wrap;
|
|
1062
|
+
overflow-wrap: anywhere;
|
|
789
1063
|
}
|
|
790
1064
|
|
|
791
1065
|
/* CLI docs */
|
|
@@ -814,15 +1088,20 @@ h2 {
|
|
|
814
1088
|
|
|
815
1089
|
.command-card {
|
|
816
1090
|
scroll-margin-top: 24px;
|
|
817
|
-
padding: 16px;
|
|
1091
|
+
padding: 18px 18px 16px;
|
|
818
1092
|
border-radius: var(--r-card);
|
|
819
1093
|
border: var(--border-subtle);
|
|
820
|
-
background:
|
|
1094
|
+
background:
|
|
1095
|
+
radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 34%),
|
|
1096
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
|
|
1097
|
+
rgba(255, 255, 255, 0.025);
|
|
1098
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
|
|
821
1099
|
}
|
|
822
1100
|
|
|
823
1101
|
.command-card h3 {
|
|
824
|
-
margin: 0 0
|
|
825
|
-
font-size:
|
|
1102
|
+
margin: 0 0 10px;
|
|
1103
|
+
font-size: 15px;
|
|
1104
|
+
line-height: 1.5;
|
|
826
1105
|
}
|
|
827
1106
|
|
|
828
1107
|
.command-card p {
|
|
@@ -832,6 +1111,90 @@ h2 {
|
|
|
832
1111
|
line-height: 1.6;
|
|
833
1112
|
}
|
|
834
1113
|
|
|
1114
|
+
.command-card-top {
|
|
1115
|
+
display: flex;
|
|
1116
|
+
align-items: center;
|
|
1117
|
+
justify-content: space-between;
|
|
1118
|
+
gap: 12px;
|
|
1119
|
+
margin-bottom: 12px;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
.command-name {
|
|
1123
|
+
font-size: 11px;
|
|
1124
|
+
font-weight: 700;
|
|
1125
|
+
letter-spacing: 0.1em;
|
|
1126
|
+
text-transform: uppercase;
|
|
1127
|
+
color: var(--text-accent);
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
.command-tags {
|
|
1131
|
+
display: flex;
|
|
1132
|
+
flex-wrap: wrap;
|
|
1133
|
+
justify-content: flex-end;
|
|
1134
|
+
gap: 6px;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.command-tag {
|
|
1138
|
+
display: inline-flex;
|
|
1139
|
+
align-items: center;
|
|
1140
|
+
min-height: 22px;
|
|
1141
|
+
padding: 0 8px;
|
|
1142
|
+
border-radius: var(--r-pill);
|
|
1143
|
+
background: rgba(255, 255, 255, 0.05);
|
|
1144
|
+
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
1145
|
+
color: var(--text-muted);
|
|
1146
|
+
font-size: 10px;
|
|
1147
|
+
letter-spacing: 0.04em;
|
|
1148
|
+
text-transform: uppercase;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
.command-example-label {
|
|
1152
|
+
margin-top: 14px;
|
|
1153
|
+
margin-bottom: 8px;
|
|
1154
|
+
font-size: 10px;
|
|
1155
|
+
font-weight: 700;
|
|
1156
|
+
letter-spacing: 0.12em;
|
|
1157
|
+
text-transform: uppercase;
|
|
1158
|
+
color: var(--text-muted);
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.command-example {
|
|
1162
|
+
margin: 0;
|
|
1163
|
+
padding: 12px 14px;
|
|
1164
|
+
border-radius: 12px;
|
|
1165
|
+
background: rgba(11, 13, 16, 0.9);
|
|
1166
|
+
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
1167
|
+
overflow-x: auto;
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
.command-example code,
|
|
1171
|
+
.command-card h3 code,
|
|
1172
|
+
.command-card h3 {
|
|
1173
|
+
background: transparent;
|
|
1174
|
+
padding: 0;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
.token-cli {
|
|
1178
|
+
color: #f8fafc;
|
|
1179
|
+
font-weight: 700;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
.token-flag {
|
|
1183
|
+
color: #7dd3fc;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
.token-arg {
|
|
1187
|
+
color: #fcd34d;
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
.token-string {
|
|
1191
|
+
color: #86efac;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
.token-agent {
|
|
1195
|
+
color: #2dd4bf;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
835
1198
|
.docs-toc {
|
|
836
1199
|
position: sticky;
|
|
837
1200
|
top: 0;
|
|
@@ -1158,11 +1521,12 @@ details[open] .lock-chevron {
|
|
|
1158
1521
|
display: flex;
|
|
1159
1522
|
align-items: center;
|
|
1160
1523
|
justify-content: center;
|
|
1524
|
+
width: 100%;
|
|
1161
1525
|
}
|
|
1162
1526
|
|
|
1163
1527
|
.ring-svg {
|
|
1164
|
-
width:
|
|
1165
|
-
height:
|
|
1528
|
+
width: 100%;
|
|
1529
|
+
height: auto;
|
|
1166
1530
|
}
|
|
1167
1531
|
|
|
1168
1532
|
.ring-track {
|
|
@@ -1233,6 +1597,7 @@ details[open] .lock-chevron {
|
|
|
1233
1597
|
display: flex;
|
|
1234
1598
|
flex-direction: column;
|
|
1235
1599
|
gap: 10px;
|
|
1600
|
+
min-height: 0;
|
|
1236
1601
|
}
|
|
1237
1602
|
|
|
1238
1603
|
.chart-row-label {
|
|
@@ -1252,43 +1617,49 @@ details[open] .lock-chevron {
|
|
|
1252
1617
|
}
|
|
1253
1618
|
|
|
1254
1619
|
.chart-bar-fill.clr-done {
|
|
1255
|
-
background:
|
|
1620
|
+
background: linear-gradient(90deg, rgba(1, 252, 93, 0.9), rgba(45, 212, 191, 0.95));
|
|
1256
1621
|
}
|
|
1257
1622
|
|
|
1258
1623
|
.chart-bar-fill.clr-small {
|
|
1259
|
-
background: #
|
|
1624
|
+
background: linear-gradient(180deg, #57e0a4, #2CD485);
|
|
1260
1625
|
}
|
|
1261
1626
|
|
|
1262
1627
|
.chart-bar-fill.clr-medium {
|
|
1263
|
-
background:
|
|
1628
|
+
background: linear-gradient(180deg, #58c7ff, #0ea5e9);
|
|
1264
1629
|
}
|
|
1265
1630
|
|
|
1266
1631
|
.chart-bar-fill.clr-large {
|
|
1267
|
-
background:
|
|
1632
|
+
background: linear-gradient(180deg, #ffd36f, #eab308);
|
|
1268
1633
|
}
|
|
1269
1634
|
|
|
1270
1635
|
.vchart-bar.clr-small {
|
|
1271
|
-
background: #
|
|
1636
|
+
background: linear-gradient(180deg, #57e0a4, #2CD485);
|
|
1272
1637
|
}
|
|
1273
1638
|
|
|
1274
1639
|
.vchart-bar.clr-medium {
|
|
1275
|
-
background:
|
|
1640
|
+
background: linear-gradient(180deg, #58c7ff, #0ea5e9);
|
|
1276
1641
|
}
|
|
1277
1642
|
|
|
1278
1643
|
.vchart-bar.clr-large {
|
|
1279
|
-
background:
|
|
1644
|
+
background: linear-gradient(180deg, #ffd36f, #eab308);
|
|
1280
1645
|
}
|
|
1281
1646
|
|
|
1282
1647
|
.pie-caption {
|
|
1648
|
+
margin-top: auto;
|
|
1649
|
+
padding-top: 12px;
|
|
1650
|
+
border-top: var(--border-subtle);
|
|
1283
1651
|
position: sticky;
|
|
1284
1652
|
bottom: 0;
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1653
|
+
background:
|
|
1654
|
+
linear-gradient(180deg, rgba(23, 26, 31, 0), rgba(23, 26, 31, 0.94) 28%, rgba(23, 26, 31, 1)),
|
|
1655
|
+
transparent;
|
|
1656
|
+
font-size: 11.5px;
|
|
1288
1657
|
color: var(--text-muted);
|
|
1289
1658
|
line-height: 1.5;
|
|
1290
|
-
|
|
1291
|
-
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
.pie-caption strong {
|
|
1662
|
+
color: var(--text-main);
|
|
1292
1663
|
}
|
|
1293
1664
|
|
|
1294
1665
|
/* Queue segments */
|
|
@@ -1451,4 +1822,14 @@ p.muted {
|
|
|
1451
1822
|
.docs-toc {
|
|
1452
1823
|
position: static;
|
|
1453
1824
|
}
|
|
1825
|
+
|
|
1826
|
+
.pie-wrap {
|
|
1827
|
+
flex-direction: column;
|
|
1828
|
+
align-items: stretch;
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
.pie-svg {
|
|
1832
|
+
width: 100%;
|
|
1833
|
+
min-width: 0;
|
|
1834
|
+
}
|
|
1454
1835
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkobytes/nexus",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Multi-agent coordination CLI for coding agents sharing a local repository",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"drills/",
|
|
37
37
|
"skills/",
|
|
38
38
|
"nexus-dashboard/",
|
|
39
|
+
"CHANGELOG.md",
|
|
39
40
|
"LICENSE",
|
|
40
41
|
"README.md"
|
|
41
42
|
]
|