agent-switchboard 0.1.25 → 0.1.27
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 +169 -229
- package/dist/commands/library.d.ts +1 -1
- package/dist/commands/library.js +4 -5
- package/dist/commands/library.js.map +1 -1
- package/dist/config/paths.d.ts +6 -0
- package/dist/config/paths.js +9 -0
- package/dist/config/paths.js.map +1 -1
- package/dist/config/schemas.d.ts +305 -21
- package/dist/config/schemas.js +10 -4
- package/dist/config/schemas.js.map +1 -1
- package/dist/index.js +198 -103
- package/dist/index.js.map +1 -1
- package/dist/library/sources.d.ts +72 -0
- package/dist/library/sources.js +279 -0
- package/dist/library/sources.js.map +1 -0
- package/dist/rules/agents.d.ts +6 -2
- package/dist/rules/agents.js +11 -2
- package/dist/rules/agents.js.map +1 -1
- package/dist/rules/distribution.d.ts +2 -1
- package/dist/rules/distribution.js +55 -4
- package/dist/rules/distribution.js.map +1 -1
- package/dist/rules/library.d.ts +1 -1
- package/dist/rules/library.js +4 -5
- package/dist/rules/library.js.map +1 -1
- package/dist/skills/library.d.ts +1 -1
- package/dist/skills/library.js +4 -5
- package/dist/skills/library.js.map +1 -1
- package/dist/subagents/library.d.ts +1 -1
- package/dist/subagents/library.js +4 -5
- package/dist/subagents/library.js.map +1 -1
- package/package.json +1 -1
- package/dist/library/subscriptions.d.ts +0 -42
- package/dist/library/subscriptions.js +0 -116
- package/dist/library/subscriptions.js.map +0 -1
package/dist/config/schemas.d.ts
CHANGED
|
@@ -344,12 +344,78 @@ export declare const uiSectionSchema: z.ZodObject<{} & {
|
|
|
344
344
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{} & {
|
|
345
345
|
page_size: z.ZodDefault<z.ZodNumber>;
|
|
346
346
|
}, z.ZodTypeAny, "passthrough">>;
|
|
347
|
+
/**
|
|
348
|
+
* Library configuration schema
|
|
349
|
+
* - sources: Record of namespace -> local path or remote git source
|
|
350
|
+
*/
|
|
351
|
+
export declare const remoteSourceSchema: z.ZodObject<{
|
|
352
|
+
url: z.ZodString;
|
|
353
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
354
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
355
|
+
}, "strip", z.ZodTypeAny, {
|
|
356
|
+
url: string;
|
|
357
|
+
ref?: string | undefined;
|
|
358
|
+
subdir?: string | undefined;
|
|
359
|
+
}, {
|
|
360
|
+
url: string;
|
|
361
|
+
ref?: string | undefined;
|
|
362
|
+
subdir?: string | undefined;
|
|
363
|
+
}>;
|
|
364
|
+
export declare const sourceValueSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
365
|
+
url: z.ZodString;
|
|
366
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
367
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
368
|
+
}, "strip", z.ZodTypeAny, {
|
|
369
|
+
url: string;
|
|
370
|
+
ref?: string | undefined;
|
|
371
|
+
subdir?: string | undefined;
|
|
372
|
+
}, {
|
|
373
|
+
url: string;
|
|
374
|
+
ref?: string | undefined;
|
|
375
|
+
subdir?: string | undefined;
|
|
376
|
+
}>]>;
|
|
347
377
|
export declare const librarySectionSchema: z.ZodObject<{} & {
|
|
348
|
-
|
|
378
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
379
|
+
url: z.ZodString;
|
|
380
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
381
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
382
|
+
}, "strip", z.ZodTypeAny, {
|
|
383
|
+
url: string;
|
|
384
|
+
ref?: string | undefined;
|
|
385
|
+
subdir?: string | undefined;
|
|
386
|
+
}, {
|
|
387
|
+
url: string;
|
|
388
|
+
ref?: string | undefined;
|
|
389
|
+
subdir?: string | undefined;
|
|
390
|
+
}>]>>>;
|
|
349
391
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{} & {
|
|
350
|
-
|
|
392
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
393
|
+
url: z.ZodString;
|
|
394
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
395
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
396
|
+
}, "strip", z.ZodTypeAny, {
|
|
397
|
+
url: string;
|
|
398
|
+
ref?: string | undefined;
|
|
399
|
+
subdir?: string | undefined;
|
|
400
|
+
}, {
|
|
401
|
+
url: string;
|
|
402
|
+
ref?: string | undefined;
|
|
403
|
+
subdir?: string | undefined;
|
|
404
|
+
}>]>>>;
|
|
351
405
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{} & {
|
|
352
|
-
|
|
406
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
407
|
+
url: z.ZodString;
|
|
408
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
409
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
410
|
+
}, "strip", z.ZodTypeAny, {
|
|
411
|
+
url: string;
|
|
412
|
+
ref?: string | undefined;
|
|
413
|
+
subdir?: string | undefined;
|
|
414
|
+
}, {
|
|
415
|
+
url: string;
|
|
416
|
+
ref?: string | undefined;
|
|
417
|
+
subdir?: string | undefined;
|
|
418
|
+
}>]>>>;
|
|
353
419
|
}, z.ZodTypeAny, "passthrough">>;
|
|
354
420
|
/**
|
|
355
421
|
* Schema for Agent Switchboard configuration file (~/.agent-switchboard/config.toml)
|
|
@@ -415,11 +481,47 @@ export declare const switchboardConfigSchema: z.ZodObject<{
|
|
|
415
481
|
page_size: z.ZodDefault<z.ZodNumber>;
|
|
416
482
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
417
483
|
library: z.ZodDefault<z.ZodObject<{} & {
|
|
418
|
-
|
|
484
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
485
|
+
url: z.ZodString;
|
|
486
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
487
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
488
|
+
}, "strip", z.ZodTypeAny, {
|
|
489
|
+
url: string;
|
|
490
|
+
ref?: string | undefined;
|
|
491
|
+
subdir?: string | undefined;
|
|
492
|
+
}, {
|
|
493
|
+
url: string;
|
|
494
|
+
ref?: string | undefined;
|
|
495
|
+
subdir?: string | undefined;
|
|
496
|
+
}>]>>>;
|
|
419
497
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{} & {
|
|
420
|
-
|
|
498
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
499
|
+
url: z.ZodString;
|
|
500
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
501
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
502
|
+
}, "strip", z.ZodTypeAny, {
|
|
503
|
+
url: string;
|
|
504
|
+
ref?: string | undefined;
|
|
505
|
+
subdir?: string | undefined;
|
|
506
|
+
}, {
|
|
507
|
+
url: string;
|
|
508
|
+
ref?: string | undefined;
|
|
509
|
+
subdir?: string | undefined;
|
|
510
|
+
}>]>>>;
|
|
421
511
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{} & {
|
|
422
|
-
|
|
512
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
513
|
+
url: z.ZodString;
|
|
514
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
515
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
516
|
+
}, "strip", z.ZodTypeAny, {
|
|
517
|
+
url: string;
|
|
518
|
+
ref?: string | undefined;
|
|
519
|
+
subdir?: string | undefined;
|
|
520
|
+
}, {
|
|
521
|
+
url: string;
|
|
522
|
+
ref?: string | undefined;
|
|
523
|
+
subdir?: string | undefined;
|
|
524
|
+
}>]>>>;
|
|
423
525
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
424
526
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
425
527
|
agents: z.ZodDefault<z.ZodObject<{
|
|
@@ -482,11 +584,47 @@ export declare const switchboardConfigSchema: z.ZodObject<{
|
|
|
482
584
|
page_size: z.ZodDefault<z.ZodNumber>;
|
|
483
585
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
484
586
|
library: z.ZodDefault<z.ZodObject<{} & {
|
|
485
|
-
|
|
587
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
588
|
+
url: z.ZodString;
|
|
589
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
590
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
591
|
+
}, "strip", z.ZodTypeAny, {
|
|
592
|
+
url: string;
|
|
593
|
+
ref?: string | undefined;
|
|
594
|
+
subdir?: string | undefined;
|
|
595
|
+
}, {
|
|
596
|
+
url: string;
|
|
597
|
+
ref?: string | undefined;
|
|
598
|
+
subdir?: string | undefined;
|
|
599
|
+
}>]>>>;
|
|
486
600
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{} & {
|
|
487
|
-
|
|
601
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
602
|
+
url: z.ZodString;
|
|
603
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
604
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
605
|
+
}, "strip", z.ZodTypeAny, {
|
|
606
|
+
url: string;
|
|
607
|
+
ref?: string | undefined;
|
|
608
|
+
subdir?: string | undefined;
|
|
609
|
+
}, {
|
|
610
|
+
url: string;
|
|
611
|
+
ref?: string | undefined;
|
|
612
|
+
subdir?: string | undefined;
|
|
613
|
+
}>]>>>;
|
|
488
614
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{} & {
|
|
489
|
-
|
|
615
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
616
|
+
url: z.ZodString;
|
|
617
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
618
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
619
|
+
}, "strip", z.ZodTypeAny, {
|
|
620
|
+
url: string;
|
|
621
|
+
ref?: string | undefined;
|
|
622
|
+
subdir?: string | undefined;
|
|
623
|
+
}, {
|
|
624
|
+
url: string;
|
|
625
|
+
ref?: string | undefined;
|
|
626
|
+
subdir?: string | undefined;
|
|
627
|
+
}>]>>>;
|
|
490
628
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
491
629
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
492
630
|
agents: z.ZodDefault<z.ZodObject<{
|
|
@@ -549,11 +687,47 @@ export declare const switchboardConfigSchema: z.ZodObject<{
|
|
|
549
687
|
page_size: z.ZodDefault<z.ZodNumber>;
|
|
550
688
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
551
689
|
library: z.ZodDefault<z.ZodObject<{} & {
|
|
552
|
-
|
|
690
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
691
|
+
url: z.ZodString;
|
|
692
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
693
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
694
|
+
}, "strip", z.ZodTypeAny, {
|
|
695
|
+
url: string;
|
|
696
|
+
ref?: string | undefined;
|
|
697
|
+
subdir?: string | undefined;
|
|
698
|
+
}, {
|
|
699
|
+
url: string;
|
|
700
|
+
ref?: string | undefined;
|
|
701
|
+
subdir?: string | undefined;
|
|
702
|
+
}>]>>>;
|
|
553
703
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{} & {
|
|
554
|
-
|
|
704
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
705
|
+
url: z.ZodString;
|
|
706
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
707
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
708
|
+
}, "strip", z.ZodTypeAny, {
|
|
709
|
+
url: string;
|
|
710
|
+
ref?: string | undefined;
|
|
711
|
+
subdir?: string | undefined;
|
|
712
|
+
}, {
|
|
713
|
+
url: string;
|
|
714
|
+
ref?: string | undefined;
|
|
715
|
+
subdir?: string | undefined;
|
|
716
|
+
}>]>>>;
|
|
555
717
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{} & {
|
|
556
|
-
|
|
718
|
+
sources: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
719
|
+
url: z.ZodString;
|
|
720
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
721
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
722
|
+
}, "strip", z.ZodTypeAny, {
|
|
723
|
+
url: string;
|
|
724
|
+
ref?: string | undefined;
|
|
725
|
+
subdir?: string | undefined;
|
|
726
|
+
}, {
|
|
727
|
+
url: string;
|
|
728
|
+
ref?: string | undefined;
|
|
729
|
+
subdir?: string | undefined;
|
|
730
|
+
}>]>>>;
|
|
557
731
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
558
732
|
}, z.ZodTypeAny, "passthrough">>;
|
|
559
733
|
/**
|
|
@@ -623,11 +797,47 @@ export declare const switchboardConfigLayerSchema: z.ZodObject<{
|
|
|
623
797
|
page_size: z.ZodOptional<z.ZodNumber>;
|
|
624
798
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
625
799
|
library: z.ZodOptional<z.ZodObject<{
|
|
626
|
-
|
|
800
|
+
sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
801
|
+
url: z.ZodString;
|
|
802
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
803
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
804
|
+
}, "strip", z.ZodTypeAny, {
|
|
805
|
+
url: string;
|
|
806
|
+
ref?: string | undefined;
|
|
807
|
+
subdir?: string | undefined;
|
|
808
|
+
}, {
|
|
809
|
+
url: string;
|
|
810
|
+
ref?: string | undefined;
|
|
811
|
+
subdir?: string | undefined;
|
|
812
|
+
}>]>>>;
|
|
627
813
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
628
|
-
|
|
814
|
+
sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
815
|
+
url: z.ZodString;
|
|
816
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
817
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
818
|
+
}, "strip", z.ZodTypeAny, {
|
|
819
|
+
url: string;
|
|
820
|
+
ref?: string | undefined;
|
|
821
|
+
subdir?: string | undefined;
|
|
822
|
+
}, {
|
|
823
|
+
url: string;
|
|
824
|
+
ref?: string | undefined;
|
|
825
|
+
subdir?: string | undefined;
|
|
826
|
+
}>]>>>;
|
|
629
827
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
630
|
-
|
|
828
|
+
sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
829
|
+
url: z.ZodString;
|
|
830
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
831
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
832
|
+
}, "strip", z.ZodTypeAny, {
|
|
833
|
+
url: string;
|
|
834
|
+
ref?: string | undefined;
|
|
835
|
+
subdir?: string | undefined;
|
|
836
|
+
}, {
|
|
837
|
+
url: string;
|
|
838
|
+
ref?: string | undefined;
|
|
839
|
+
subdir?: string | undefined;
|
|
840
|
+
}>]>>>;
|
|
631
841
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
632
842
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
633
843
|
agents: z.ZodOptional<z.ZodObject<{
|
|
@@ -693,11 +903,47 @@ export declare const switchboardConfigLayerSchema: z.ZodObject<{
|
|
|
693
903
|
page_size: z.ZodOptional<z.ZodNumber>;
|
|
694
904
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
695
905
|
library: z.ZodOptional<z.ZodObject<{
|
|
696
|
-
|
|
906
|
+
sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
907
|
+
url: z.ZodString;
|
|
908
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
909
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
910
|
+
}, "strip", z.ZodTypeAny, {
|
|
911
|
+
url: string;
|
|
912
|
+
ref?: string | undefined;
|
|
913
|
+
subdir?: string | undefined;
|
|
914
|
+
}, {
|
|
915
|
+
url: string;
|
|
916
|
+
ref?: string | undefined;
|
|
917
|
+
subdir?: string | undefined;
|
|
918
|
+
}>]>>>;
|
|
697
919
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
698
|
-
|
|
920
|
+
sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
921
|
+
url: z.ZodString;
|
|
922
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
923
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
924
|
+
}, "strip", z.ZodTypeAny, {
|
|
925
|
+
url: string;
|
|
926
|
+
ref?: string | undefined;
|
|
927
|
+
subdir?: string | undefined;
|
|
928
|
+
}, {
|
|
929
|
+
url: string;
|
|
930
|
+
ref?: string | undefined;
|
|
931
|
+
subdir?: string | undefined;
|
|
932
|
+
}>]>>>;
|
|
699
933
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
700
|
-
|
|
934
|
+
sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
935
|
+
url: z.ZodString;
|
|
936
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
937
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
938
|
+
}, "strip", z.ZodTypeAny, {
|
|
939
|
+
url: string;
|
|
940
|
+
ref?: string | undefined;
|
|
941
|
+
subdir?: string | undefined;
|
|
942
|
+
}, {
|
|
943
|
+
url: string;
|
|
944
|
+
ref?: string | undefined;
|
|
945
|
+
subdir?: string | undefined;
|
|
946
|
+
}>]>>>;
|
|
701
947
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
702
948
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
703
949
|
agents: z.ZodOptional<z.ZodObject<{
|
|
@@ -763,11 +1009,47 @@ export declare const switchboardConfigLayerSchema: z.ZodObject<{
|
|
|
763
1009
|
page_size: z.ZodOptional<z.ZodNumber>;
|
|
764
1010
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
765
1011
|
library: z.ZodOptional<z.ZodObject<{
|
|
766
|
-
|
|
1012
|
+
sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1013
|
+
url: z.ZodString;
|
|
1014
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
1015
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
1016
|
+
}, "strip", z.ZodTypeAny, {
|
|
1017
|
+
url: string;
|
|
1018
|
+
ref?: string | undefined;
|
|
1019
|
+
subdir?: string | undefined;
|
|
1020
|
+
}, {
|
|
1021
|
+
url: string;
|
|
1022
|
+
ref?: string | undefined;
|
|
1023
|
+
subdir?: string | undefined;
|
|
1024
|
+
}>]>>>;
|
|
767
1025
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
768
|
-
|
|
1026
|
+
sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1027
|
+
url: z.ZodString;
|
|
1028
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
1029
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
1030
|
+
}, "strip", z.ZodTypeAny, {
|
|
1031
|
+
url: string;
|
|
1032
|
+
ref?: string | undefined;
|
|
1033
|
+
subdir?: string | undefined;
|
|
1034
|
+
}, {
|
|
1035
|
+
url: string;
|
|
1036
|
+
ref?: string | undefined;
|
|
1037
|
+
subdir?: string | undefined;
|
|
1038
|
+
}>]>>>;
|
|
769
1039
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
770
|
-
|
|
1040
|
+
sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1041
|
+
url: z.ZodString;
|
|
1042
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
1043
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
1044
|
+
}, "strip", z.ZodTypeAny, {
|
|
1045
|
+
url: string;
|
|
1046
|
+
ref?: string | undefined;
|
|
1047
|
+
subdir?: string | undefined;
|
|
1048
|
+
}, {
|
|
1049
|
+
url: string;
|
|
1050
|
+
ref?: string | undefined;
|
|
1051
|
+
subdir?: string | undefined;
|
|
1052
|
+
}>]>>>;
|
|
771
1053
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
772
1054
|
}, z.ZodTypeAny, "passthrough">>;
|
|
773
1055
|
/**
|
|
@@ -783,6 +1065,8 @@ export type RulesSection = z.infer<typeof rulesSectionSchema>;
|
|
|
783
1065
|
export type DistributionSection = z.infer<typeof distributionSectionSchema>;
|
|
784
1066
|
export type UiSection = z.infer<typeof uiSectionSchema>;
|
|
785
1067
|
export type LibrarySection = z.infer<typeof librarySectionSchema>;
|
|
1068
|
+
export type RemoteSource = z.infer<typeof remoteSourceSchema>;
|
|
1069
|
+
export type SourceValue = z.infer<typeof sourceValueSchema>;
|
|
786
1070
|
export type SwitchboardConfig = z.infer<typeof switchboardConfigSchema>;
|
|
787
1071
|
export type SwitchboardConfigLayer = z.infer<typeof switchboardConfigLayerSchema>;
|
|
788
1072
|
export {};
|
package/dist/config/schemas.js
CHANGED
|
@@ -126,16 +126,22 @@ export const uiSectionSchema = uiSectionBaseSchema
|
|
|
126
126
|
.passthrough();
|
|
127
127
|
/**
|
|
128
128
|
* Library configuration schema
|
|
129
|
-
* -
|
|
129
|
+
* - sources: Record of namespace -> local path or remote git source
|
|
130
130
|
*/
|
|
131
|
+
export const remoteSourceSchema = z.object({
|
|
132
|
+
url: z.string().min(1),
|
|
133
|
+
ref: z.string().optional(),
|
|
134
|
+
subdir: z.string().optional(),
|
|
135
|
+
});
|
|
136
|
+
export const sourceValueSchema = z.union([z.string().trim().min(1), remoteSourceSchema]);
|
|
131
137
|
const librarySectionBaseSchema = z
|
|
132
138
|
.object({
|
|
133
|
-
|
|
139
|
+
sources: z.record(z.string().trim().min(1), sourceValueSchema).optional(),
|
|
134
140
|
})
|
|
135
141
|
.passthrough();
|
|
136
142
|
export const librarySectionSchema = librarySectionBaseSchema
|
|
137
143
|
.extend({
|
|
138
|
-
|
|
144
|
+
sources: z.record(z.string().trim().min(1), sourceValueSchema).default({}),
|
|
139
145
|
})
|
|
140
146
|
.passthrough();
|
|
141
147
|
/**
|
|
@@ -151,7 +157,7 @@ export const switchboardConfigSchema = z
|
|
|
151
157
|
rules: rulesSectionSchema.default({ active: [], includeDelimiters: false }),
|
|
152
158
|
distribution: distributionSectionSchema.default({ use_agents_dir: false }),
|
|
153
159
|
ui: uiSectionSchema.default({ pageSize: 20 }),
|
|
154
|
-
library: librarySectionSchema.default({
|
|
160
|
+
library: librarySectionSchema.default({ sources: {} }),
|
|
155
161
|
})
|
|
156
162
|
.passthrough();
|
|
157
163
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../src/config/schemas.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;;;GAIG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC;KAC7B,MAAM,CAAC;IACN,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACpC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACpC,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IAChC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,QAAQ,EAAE;CAClD,CAAC;KACD,WAAW,EAAE,CAAC,CAAC,uBAAuB;AAEzC;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,UAAU,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,eAAe,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;CAC9D,CAAC,CAAC;AAEH;;GAEG;AACH,MAAM,0BAA0B,GAAG,CAAC;KACjC,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;CACrD,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,sBAAsB,GAAG,0BAA0B;KAC7D,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;CACtD,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB;;;;;GAKG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC;KACxC,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACpD,GAAG,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACjD,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;CACrD,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,MAAM,sBAAsB,GAAG,0BAA0B,CAAC,MAAM,CAAC;IAC/D,iBAAiB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AAEH;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC;KACvC,MAAM,CAAC;IACN,GAAG,EAAE,0BAA0B,CAAC,QAAQ,EAAE;IAC1C,QAAQ,EAAE,0BAA0B,CAAC,QAAQ,EAAE;IAC/C,SAAS,EAAE,0BAA0B,CAAC,QAAQ,EAAE;IAChD,MAAM,EAAE,0BAA0B,CAAC,QAAQ,EAAE;IAC7C,KAAK,EAAE,sBAAsB,CAAC,QAAQ,EAAE;CACzC,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB;;;;;;;;;;;GAWG;AACH,MAAM,uBAAuB,GAAG,CAAC;KAC9B,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;CACrD,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,MAAM,mBAAmB,GAAG,CAAC;KAC1B,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;CACtD,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,MAAM,sBAAsB,GAAG,0BAA0B,CAAC,MAAM,CAAC;IAC/D,iBAAiB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,kBAAkB,GAAG,sBAAsB;KACrD,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;IACrD,iBAAiB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;CAC9C,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB;;;;;GAKG;AACH,MAAM,6BAA6B,GAAG,CAAC;KACpC,MAAM,CAAC;IACN,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACvC,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,yBAAyB,GAAG,6BAA6B;KACnE,MAAM,CAAC;IACN,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;CAC3C,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB;;GAEG;AACH,MAAM,mBAAmB,GAAG,CAAC;KAC1B,MAAM,CAAC;IACN,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;CACtD,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB,MAAM,CAAC,MAAM,eAAe,GAAG,mBAAmB;KAC/C,MAAM,CAAC;IACN,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;CACvD,CAAC;KACD,WAAW,EAAE,CAAC;AAEjB;;;GAGG;AACH,MAAM,
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../src/config/schemas.ts"],"names":[],"mappings":"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"}
|