@claude-flow/plugin-gastown-bridge 0.1.1 → 0.1.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/dist/bridges.cjs +1 -1
- package/dist/bridges.d.cts +14 -14
- package/dist/bridges.d.ts +14 -14
- package/dist/bridges.js +1 -1
- package/dist/{chunk-CL5Y5TGX.cjs → chunk-2QQ3FUZF.cjs} +3 -3
- package/dist/{chunk-CL5Y5TGX.cjs.map → chunk-2QQ3FUZF.cjs.map} +1 -1
- package/dist/{chunk-GTFAMI2F.js → chunk-GKNIKJVQ.js} +3 -3
- package/dist/{chunk-GTFAMI2F.js.map → chunk-GKNIKJVQ.js.map} +1 -1
- package/dist/index.cjs +6 -6
- package/dist/index.d.cts +78 -78
- package/dist/index.d.ts +78 -78
- package/dist/index.js +2 -2
- package/dist/wasm-loader.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -399,33 +399,33 @@ declare const BeadSchema: z.ZodObject<{
|
|
|
399
399
|
blockedBy: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
400
400
|
blocks: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
|
402
|
-
description: string;
|
|
403
402
|
id: string;
|
|
403
|
+
title: string;
|
|
404
|
+
description: string;
|
|
404
405
|
status: "open" | "in_progress" | "closed";
|
|
405
|
-
createdAt: Date;
|
|
406
|
-
updatedAt: Date;
|
|
407
406
|
priority: number;
|
|
408
|
-
title: string;
|
|
409
407
|
labels: string[];
|
|
408
|
+
createdAt: Date;
|
|
409
|
+
updatedAt: Date;
|
|
410
|
+
blocks?: string[] | undefined;
|
|
410
411
|
parentId?: string | undefined;
|
|
411
412
|
assignee?: string | undefined;
|
|
412
413
|
rig?: string | undefined;
|
|
413
414
|
blockedBy?: string[] | undefined;
|
|
414
|
-
blocks?: string[] | undefined;
|
|
415
415
|
}, {
|
|
416
|
-
description: string;
|
|
417
416
|
id: string;
|
|
417
|
+
title: string;
|
|
418
|
+
description: string;
|
|
418
419
|
status: "open" | "in_progress" | "closed";
|
|
419
|
-
createdAt: Date;
|
|
420
|
-
updatedAt: Date;
|
|
421
420
|
priority: number;
|
|
422
|
-
title: string;
|
|
423
421
|
labels: string[];
|
|
422
|
+
createdAt: Date;
|
|
423
|
+
updatedAt: Date;
|
|
424
|
+
blocks?: string[] | undefined;
|
|
424
425
|
parentId?: string | undefined;
|
|
425
426
|
assignee?: string | undefined;
|
|
426
427
|
rig?: string | undefined;
|
|
427
428
|
blockedBy?: string[] | undefined;
|
|
428
|
-
blocks?: string[] | undefined;
|
|
429
429
|
}>;
|
|
430
430
|
/**
|
|
431
431
|
* Create bead options schema
|
|
@@ -442,16 +442,16 @@ declare const CreateBeadOptionsSchema$1: z.ZodObject<{
|
|
|
442
442
|
title: string;
|
|
443
443
|
description?: string | undefined;
|
|
444
444
|
priority?: number | undefined;
|
|
445
|
-
assignee?: string | undefined;
|
|
446
445
|
labels?: string[] | undefined;
|
|
446
|
+
assignee?: string | undefined;
|
|
447
447
|
rig?: string | undefined;
|
|
448
448
|
parent?: string | undefined;
|
|
449
449
|
}, {
|
|
450
450
|
title: string;
|
|
451
451
|
description?: string | undefined;
|
|
452
452
|
priority?: number | undefined;
|
|
453
|
-
assignee?: string | undefined;
|
|
454
453
|
labels?: string[] | undefined;
|
|
454
|
+
assignee?: string | undefined;
|
|
455
455
|
rig?: string | undefined;
|
|
456
456
|
parent?: string | undefined;
|
|
457
457
|
}>;
|
|
@@ -471,21 +471,21 @@ declare const StepSchema: z.ZodObject<{
|
|
|
471
471
|
requires: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
472
472
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
473
473
|
}, "strip", z.ZodTypeAny, {
|
|
474
|
-
description: string;
|
|
475
474
|
id: string;
|
|
476
475
|
title: string;
|
|
477
|
-
|
|
476
|
+
description: string;
|
|
478
477
|
needs?: string[] | undefined;
|
|
479
478
|
duration?: number | undefined;
|
|
480
479
|
requires?: string[] | undefined;
|
|
480
|
+
metadata?: Record<string, unknown> | undefined;
|
|
481
481
|
}, {
|
|
482
|
-
description: string;
|
|
483
482
|
id: string;
|
|
484
483
|
title: string;
|
|
485
|
-
|
|
484
|
+
description: string;
|
|
486
485
|
needs?: string[] | undefined;
|
|
487
486
|
duration?: number | undefined;
|
|
488
487
|
requires?: string[] | undefined;
|
|
488
|
+
metadata?: Record<string, unknown> | undefined;
|
|
489
489
|
}>;
|
|
490
490
|
/**
|
|
491
491
|
* Leg schema
|
|
@@ -498,16 +498,16 @@ declare const LegSchema: z.ZodObject<{
|
|
|
498
498
|
agent: z.ZodOptional<z.ZodString>;
|
|
499
499
|
order: z.ZodOptional<z.ZodNumber>;
|
|
500
500
|
}, "strip", z.ZodTypeAny, {
|
|
501
|
-
description: string;
|
|
502
501
|
id: string;
|
|
503
502
|
title: string;
|
|
503
|
+
description: string;
|
|
504
504
|
focus: string;
|
|
505
505
|
agent?: string | undefined;
|
|
506
506
|
order?: number | undefined;
|
|
507
507
|
}, {
|
|
508
|
-
description: string;
|
|
509
508
|
id: string;
|
|
510
509
|
title: string;
|
|
510
|
+
description: string;
|
|
511
511
|
focus: string;
|
|
512
512
|
agent?: string | undefined;
|
|
513
513
|
order?: number | undefined;
|
|
@@ -545,11 +545,11 @@ declare const SynthesisSchema: z.ZodObject<{
|
|
|
545
545
|
format: z.ZodOptional<z.ZodString>;
|
|
546
546
|
description: z.ZodOptional<z.ZodString>;
|
|
547
547
|
}, "strip", z.ZodTypeAny, {
|
|
548
|
-
strategy: "
|
|
548
|
+
strategy: "merge" | "sequential" | "parallel";
|
|
549
549
|
description?: string | undefined;
|
|
550
550
|
format?: string | undefined;
|
|
551
551
|
}, {
|
|
552
|
-
strategy: "
|
|
552
|
+
strategy: "merge" | "sequential" | "parallel";
|
|
553
553
|
description?: string | undefined;
|
|
554
554
|
format?: string | undefined;
|
|
555
555
|
}>;
|
|
@@ -578,13 +578,13 @@ declare const AspectSchema: z.ZodObject<{
|
|
|
578
578
|
advice: z.ZodString;
|
|
579
579
|
type: z.ZodEnum<["before", "after", "around"]>;
|
|
580
580
|
}, "strip", z.ZodTypeAny, {
|
|
581
|
-
name: string;
|
|
582
581
|
type: "before" | "after" | "around";
|
|
582
|
+
name: string;
|
|
583
583
|
pointcut: string;
|
|
584
584
|
advice: string;
|
|
585
585
|
}, {
|
|
586
|
-
name: string;
|
|
587
586
|
type: "before" | "after" | "around";
|
|
587
|
+
name: string;
|
|
588
588
|
pointcut: string;
|
|
589
589
|
advice: string;
|
|
590
590
|
}>;
|
|
@@ -604,16 +604,16 @@ declare const FormulaSchema: z.ZodObject<{
|
|
|
604
604
|
agent: z.ZodOptional<z.ZodString>;
|
|
605
605
|
order: z.ZodOptional<z.ZodNumber>;
|
|
606
606
|
}, "strip", z.ZodTypeAny, {
|
|
607
|
-
description: string;
|
|
608
607
|
id: string;
|
|
609
608
|
title: string;
|
|
609
|
+
description: string;
|
|
610
610
|
focus: string;
|
|
611
611
|
agent?: string | undefined;
|
|
612
612
|
order?: number | undefined;
|
|
613
613
|
}, {
|
|
614
|
-
description: string;
|
|
615
614
|
id: string;
|
|
616
615
|
title: string;
|
|
616
|
+
description: string;
|
|
617
617
|
focus: string;
|
|
618
618
|
agent?: string | undefined;
|
|
619
619
|
order?: number | undefined;
|
|
@@ -623,11 +623,11 @@ declare const FormulaSchema: z.ZodObject<{
|
|
|
623
623
|
format: z.ZodOptional<z.ZodString>;
|
|
624
624
|
description: z.ZodOptional<z.ZodString>;
|
|
625
625
|
}, "strip", z.ZodTypeAny, {
|
|
626
|
-
strategy: "
|
|
626
|
+
strategy: "merge" | "sequential" | "parallel";
|
|
627
627
|
description?: string | undefined;
|
|
628
628
|
format?: string | undefined;
|
|
629
629
|
}, {
|
|
630
|
-
strategy: "
|
|
630
|
+
strategy: "merge" | "sequential" | "parallel";
|
|
631
631
|
description?: string | undefined;
|
|
632
632
|
format?: string | undefined;
|
|
633
633
|
}>>;
|
|
@@ -640,21 +640,21 @@ declare const FormulaSchema: z.ZodObject<{
|
|
|
640
640
|
requires: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
641
641
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
642
642
|
}, "strip", z.ZodTypeAny, {
|
|
643
|
-
description: string;
|
|
644
643
|
id: string;
|
|
645
644
|
title: string;
|
|
646
|
-
|
|
645
|
+
description: string;
|
|
647
646
|
needs?: string[] | undefined;
|
|
648
647
|
duration?: number | undefined;
|
|
649
648
|
requires?: string[] | undefined;
|
|
649
|
+
metadata?: Record<string, unknown> | undefined;
|
|
650
650
|
}, {
|
|
651
|
-
description: string;
|
|
652
651
|
id: string;
|
|
653
652
|
title: string;
|
|
654
|
-
|
|
653
|
+
description: string;
|
|
655
654
|
needs?: string[] | undefined;
|
|
656
655
|
duration?: number | undefined;
|
|
657
656
|
requires?: string[] | undefined;
|
|
657
|
+
metadata?: Record<string, unknown> | undefined;
|
|
658
658
|
}>, "many">>;
|
|
659
659
|
vars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
660
660
|
name: z.ZodString;
|
|
@@ -697,39 +697,45 @@ declare const FormulaSchema: z.ZodObject<{
|
|
|
697
697
|
advice: z.ZodString;
|
|
698
698
|
type: z.ZodEnum<["before", "after", "around"]>;
|
|
699
699
|
}, "strip", z.ZodTypeAny, {
|
|
700
|
-
name: string;
|
|
701
700
|
type: "before" | "after" | "around";
|
|
701
|
+
name: string;
|
|
702
702
|
pointcut: string;
|
|
703
703
|
advice: string;
|
|
704
704
|
}, {
|
|
705
|
-
name: string;
|
|
706
705
|
type: "before" | "after" | "around";
|
|
706
|
+
name: string;
|
|
707
707
|
pointcut: string;
|
|
708
708
|
advice: string;
|
|
709
709
|
}>, "many">>;
|
|
710
710
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
711
711
|
}, "strip", z.ZodTypeAny, {
|
|
712
|
-
name: string;
|
|
713
712
|
description: string;
|
|
714
713
|
type: "convoy" | "workflow" | "expansion" | "aspect";
|
|
714
|
+
name: string;
|
|
715
715
|
version: number;
|
|
716
|
-
|
|
717
|
-
description: string;
|
|
718
|
-
id: string;
|
|
719
|
-
title: string;
|
|
720
|
-
metadata?: Record<string, unknown> | undefined;
|
|
721
|
-
needs?: string[] | undefined;
|
|
722
|
-
duration?: number | undefined;
|
|
723
|
-
requires?: string[] | undefined;
|
|
724
|
-
}[] | undefined;
|
|
716
|
+
metadata?: Record<string, unknown> | undefined;
|
|
725
717
|
legs?: {
|
|
726
|
-
description: string;
|
|
727
718
|
id: string;
|
|
728
719
|
title: string;
|
|
720
|
+
description: string;
|
|
729
721
|
focus: string;
|
|
730
722
|
agent?: string | undefined;
|
|
731
723
|
order?: number | undefined;
|
|
732
724
|
}[] | undefined;
|
|
725
|
+
synthesis?: {
|
|
726
|
+
strategy: "merge" | "sequential" | "parallel";
|
|
727
|
+
description?: string | undefined;
|
|
728
|
+
format?: string | undefined;
|
|
729
|
+
} | undefined;
|
|
730
|
+
steps?: {
|
|
731
|
+
id: string;
|
|
732
|
+
title: string;
|
|
733
|
+
description: string;
|
|
734
|
+
needs?: string[] | undefined;
|
|
735
|
+
duration?: number | undefined;
|
|
736
|
+
requires?: string[] | undefined;
|
|
737
|
+
metadata?: Record<string, unknown> | undefined;
|
|
738
|
+
}[] | undefined;
|
|
733
739
|
vars?: Record<string, {
|
|
734
740
|
name: string;
|
|
735
741
|
description?: string | undefined;
|
|
@@ -738,45 +744,45 @@ declare const FormulaSchema: z.ZodObject<{
|
|
|
738
744
|
pattern?: string | undefined;
|
|
739
745
|
enum?: string[] | undefined;
|
|
740
746
|
}> | undefined;
|
|
741
|
-
metadata?: Record<string, unknown> | undefined;
|
|
742
|
-
synthesis?: {
|
|
743
|
-
strategy: "parallel" | "merge" | "sequential";
|
|
744
|
-
description?: string | undefined;
|
|
745
|
-
format?: string | undefined;
|
|
746
|
-
} | undefined;
|
|
747
747
|
templates?: {
|
|
748
748
|
name: string;
|
|
749
749
|
content: string;
|
|
750
750
|
outputPath?: string | undefined;
|
|
751
751
|
}[] | undefined;
|
|
752
752
|
aspects?: {
|
|
753
|
-
name: string;
|
|
754
753
|
type: "before" | "after" | "around";
|
|
754
|
+
name: string;
|
|
755
755
|
pointcut: string;
|
|
756
756
|
advice: string;
|
|
757
757
|
}[] | undefined;
|
|
758
758
|
}, {
|
|
759
|
-
name: string;
|
|
760
759
|
description: string;
|
|
761
760
|
type: "convoy" | "workflow" | "expansion" | "aspect";
|
|
761
|
+
name: string;
|
|
762
762
|
version: number;
|
|
763
|
-
|
|
764
|
-
description: string;
|
|
765
|
-
id: string;
|
|
766
|
-
title: string;
|
|
767
|
-
metadata?: Record<string, unknown> | undefined;
|
|
768
|
-
needs?: string[] | undefined;
|
|
769
|
-
duration?: number | undefined;
|
|
770
|
-
requires?: string[] | undefined;
|
|
771
|
-
}[] | undefined;
|
|
763
|
+
metadata?: Record<string, unknown> | undefined;
|
|
772
764
|
legs?: {
|
|
773
|
-
description: string;
|
|
774
765
|
id: string;
|
|
775
766
|
title: string;
|
|
767
|
+
description: string;
|
|
776
768
|
focus: string;
|
|
777
769
|
agent?: string | undefined;
|
|
778
770
|
order?: number | undefined;
|
|
779
771
|
}[] | undefined;
|
|
772
|
+
synthesis?: {
|
|
773
|
+
strategy: "merge" | "sequential" | "parallel";
|
|
774
|
+
description?: string | undefined;
|
|
775
|
+
format?: string | undefined;
|
|
776
|
+
} | undefined;
|
|
777
|
+
steps?: {
|
|
778
|
+
id: string;
|
|
779
|
+
title: string;
|
|
780
|
+
description: string;
|
|
781
|
+
needs?: string[] | undefined;
|
|
782
|
+
duration?: number | undefined;
|
|
783
|
+
requires?: string[] | undefined;
|
|
784
|
+
metadata?: Record<string, unknown> | undefined;
|
|
785
|
+
}[] | undefined;
|
|
780
786
|
vars?: Record<string, {
|
|
781
787
|
name: string;
|
|
782
788
|
description?: string | undefined;
|
|
@@ -785,20 +791,14 @@ declare const FormulaSchema: z.ZodObject<{
|
|
|
785
791
|
pattern?: string | undefined;
|
|
786
792
|
enum?: string[] | undefined;
|
|
787
793
|
}> | undefined;
|
|
788
|
-
metadata?: Record<string, unknown> | undefined;
|
|
789
|
-
synthesis?: {
|
|
790
|
-
strategy: "parallel" | "merge" | "sequential";
|
|
791
|
-
description?: string | undefined;
|
|
792
|
-
format?: string | undefined;
|
|
793
|
-
} | undefined;
|
|
794
794
|
templates?: {
|
|
795
795
|
name: string;
|
|
796
796
|
content: string;
|
|
797
797
|
outputPath?: string | undefined;
|
|
798
798
|
}[] | undefined;
|
|
799
799
|
aspects?: {
|
|
800
|
-
name: string;
|
|
801
800
|
type: "before" | "after" | "around";
|
|
801
|
+
name: string;
|
|
802
802
|
pointcut: string;
|
|
803
803
|
advice: string;
|
|
804
804
|
}[] | undefined;
|
|
@@ -855,9 +855,9 @@ declare const ConvoySchema: z.ZodObject<{
|
|
|
855
855
|
formula: z.ZodOptional<z.ZodString>;
|
|
856
856
|
description: z.ZodOptional<z.ZodString>;
|
|
857
857
|
}, "strip", z.ZodTypeAny, {
|
|
858
|
-
name: string;
|
|
859
858
|
id: string;
|
|
860
859
|
status: "active" | "landed" | "failed" | "paused";
|
|
860
|
+
name: string;
|
|
861
861
|
trackedIssues: string[];
|
|
862
862
|
startedAt: Date;
|
|
863
863
|
progress: {
|
|
@@ -870,9 +870,9 @@ declare const ConvoySchema: z.ZodObject<{
|
|
|
870
870
|
completedAt?: Date | undefined;
|
|
871
871
|
formula?: string | undefined;
|
|
872
872
|
}, {
|
|
873
|
-
name: string;
|
|
874
873
|
id: string;
|
|
875
874
|
status: "active" | "landed" | "failed" | "paused";
|
|
875
|
+
name: string;
|
|
876
876
|
trackedIssues: string[];
|
|
877
877
|
startedAt: Date;
|
|
878
878
|
progress: {
|
|
@@ -894,13 +894,13 @@ declare const CreateConvoyOptionsSchema$1: z.ZodObject<{
|
|
|
894
894
|
description: z.ZodOptional<z.ZodString>;
|
|
895
895
|
formula: z.ZodOptional<z.ZodString>;
|
|
896
896
|
}, "strip", z.ZodTypeAny, {
|
|
897
|
-
name: string;
|
|
898
897
|
issues: string[];
|
|
898
|
+
name: string;
|
|
899
899
|
description?: string | undefined;
|
|
900
900
|
formula?: string | undefined;
|
|
901
901
|
}, {
|
|
902
|
-
name: string;
|
|
903
902
|
issues: string[];
|
|
903
|
+
name: string;
|
|
904
904
|
description?: string | undefined;
|
|
905
905
|
formula?: string | undefined;
|
|
906
906
|
}>;
|
|
@@ -949,9 +949,9 @@ declare const GasTownConfigSchema: z.ZodObject<{
|
|
|
949
949
|
guppCheckInterval: z.ZodDefault<z.ZodNumber>;
|
|
950
950
|
cliTimeout: z.ZodDefault<z.ZodNumber>;
|
|
951
951
|
}, "strip", z.ZodTypeAny, {
|
|
952
|
-
syncInterval: number;
|
|
953
952
|
townRoot: string;
|
|
954
953
|
enableBeadsSync: boolean;
|
|
954
|
+
syncInterval: number;
|
|
955
955
|
nativeFormulas: boolean;
|
|
956
956
|
enableConvoys: boolean;
|
|
957
957
|
autoCreateBeads: boolean;
|
|
@@ -959,9 +959,9 @@ declare const GasTownConfigSchema: z.ZodObject<{
|
|
|
959
959
|
guppCheckInterval: number;
|
|
960
960
|
cliTimeout: number;
|
|
961
961
|
}, {
|
|
962
|
-
syncInterval?: number | undefined;
|
|
963
962
|
townRoot?: string | undefined;
|
|
964
963
|
enableBeadsSync?: boolean | undefined;
|
|
964
|
+
syncInterval?: number | undefined;
|
|
965
965
|
nativeFormulas?: boolean | undefined;
|
|
966
966
|
enableConvoys?: boolean | undefined;
|
|
967
967
|
autoCreateBeads?: boolean | undefined;
|
|
@@ -4100,8 +4100,8 @@ declare const CreateBeadOptionsSchema: z.ZodObject<{
|
|
|
4100
4100
|
rig: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>>;
|
|
4101
4101
|
assignee: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4102
4102
|
}, "strip", z.ZodTypeAny, {
|
|
4103
|
-
priority: number;
|
|
4104
4103
|
title: string;
|
|
4104
|
+
priority: number;
|
|
4105
4105
|
labels: string[];
|
|
4106
4106
|
description?: string | undefined;
|
|
4107
4107
|
assignee?: string | undefined;
|
|
@@ -4111,8 +4111,8 @@ declare const CreateBeadOptionsSchema: z.ZodObject<{
|
|
|
4111
4111
|
title: string;
|
|
4112
4112
|
description?: string | undefined;
|
|
4113
4113
|
priority?: number | undefined;
|
|
4114
|
-
assignee?: string | undefined;
|
|
4115
4114
|
labels?: string[] | undefined;
|
|
4115
|
+
assignee?: string | undefined;
|
|
4116
4116
|
rig?: string | undefined;
|
|
4117
4117
|
parent?: string | undefined;
|
|
4118
4118
|
}>;
|
|
@@ -4125,13 +4125,13 @@ declare const CreateConvoyOptionsSchema: z.ZodObject<{
|
|
|
4125
4125
|
description: z.ZodOptional<z.ZodString>;
|
|
4126
4126
|
formula: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>>;
|
|
4127
4127
|
}, "strip", z.ZodTypeAny, {
|
|
4128
|
-
name: string;
|
|
4129
4128
|
issues: string[];
|
|
4129
|
+
name: string;
|
|
4130
4130
|
description?: string | undefined;
|
|
4131
4131
|
formula?: string | undefined;
|
|
4132
4132
|
}, {
|
|
4133
|
-
name: string;
|
|
4134
4133
|
issues: string[];
|
|
4134
|
+
name: string;
|
|
4135
4135
|
description?: string | undefined;
|
|
4136
4136
|
formula?: string | undefined;
|
|
4137
4137
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {a,c,b,d,e,p,w,D as D$1}from'./chunk-
|
|
2
|
-
* @claude-flow/plugin-gastown-bridge v0.1.
|
|
1
|
+
import {a,c,b,d,e,p,w,D as D$1}from'./chunk-GKNIKJVQ.js';export{k as AddressSchema,A as AgentDBEntrySchema,t as BdArgumentSchema,v as BdBridge,u as BdBridgeError,q as BeadIdSchema,s as CliBeadSchema,r as CliBeadTypeSchema,y as CliSyncDirectionSchema,x as ConflictStrategySchema,i as GasLimitSchema,h as GasPriceSchema,m as GtArgumentSchema,o as GtBridge,n as GtBridgeError,g as GtIdentifierSchema,f as GtSafeStringSchema,l as NetworkSchema,C as SyncBridge,B as SyncBridgeError,z as SyncStatusSchema,j as TxHashSchema,w as createBdBridge,p as createGtBridge,D as createSyncBridge}from'./chunk-GKNIKJVQ.js';import {EventEmitter}from'events';import {z}from'zod';import {randomUUID}from'crypto';import {v4}from'uuid';/**
|
|
2
|
+
* @claude-flow/plugin-gastown-bridge v0.1.2
|
|
3
3
|
*
|
|
4
4
|
* WASM-accelerated Gas Town orchestration for Claude Flow V3
|
|
5
5
|
* Bundle optimized: <100KB gzipped total
|
package/dist/wasm-loader.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/plugin-gastown-bridge",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Gas Town orchestrator integration for Claude Flow V3 with WASM-accelerated formula parsing and graph analysis",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"node": ">=20.0.0"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"@claude-flow/memory": ">=3.0.0"
|
|
83
|
+
"@claude-flow/memory": ">=3.0.0-alpha.1"
|
|
84
84
|
},
|
|
85
85
|
"peerDependenciesMeta": {
|
|
86
86
|
"@claude-flow/memory": {
|