@truenine/memory-sync-cli 2026.10328.106 → 2026.10329.110
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/index.d.mts +303 -79
- package/dist/index.mjs +58 -66
- package/dist/plugin-runtime.mjs +57 -65
- package/dist/tnmsc.schema.json +20 -0
- package/package.json +18 -13
package/dist/index.d.mts
CHANGED
|
@@ -3379,8 +3379,8 @@ declare module 'hast' {
|
|
|
3379
3379
|
* Metadata source type
|
|
3380
3380
|
*/
|
|
3381
3381
|
//#endregion
|
|
3382
|
-
//#region src/plugins/plugin-core/
|
|
3383
|
-
declare const AINDEX_PROJECT_SERIES_NAMES: readonly ["app", "ext", "arch"];
|
|
3382
|
+
//#region src/plugins/plugin-core/AindexConfigDefaults.d.ts
|
|
3383
|
+
declare const AINDEX_PROJECT_SERIES_NAMES: readonly ["app", "ext", "arch", "softwares"];
|
|
3384
3384
|
type AindexProjectSeriesName = (typeof AINDEX_PROJECT_SERIES_NAMES)[number];
|
|
3385
3385
|
//#endregion
|
|
3386
3386
|
//#region src/plugins/plugin-core/ConfigTypes.schema.d.ts
|
|
@@ -3389,7 +3389,6 @@ type AindexProjectSeriesName = (typeof AINDEX_PROJECT_SERIES_NAMES)[number];
|
|
|
3389
3389
|
* All paths are relative to <workspaceDir>/<aindex.dir>.
|
|
3390
3390
|
*/
|
|
3391
3391
|
declare const ZAindexConfig: z.ZodObject<{
|
|
3392
|
-
dir: z.ZodDefault<z.ZodString>;
|
|
3393
3392
|
skills: z.ZodObject<{
|
|
3394
3393
|
src: z.ZodString;
|
|
3395
3394
|
dist: z.ZodString;
|
|
@@ -3399,7 +3398,16 @@ declare const ZAindexConfig: z.ZodObject<{
|
|
|
3399
3398
|
}, {
|
|
3400
3399
|
src: string;
|
|
3401
3400
|
dist: string;
|
|
3402
|
-
}
|
|
3401
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3402
|
+
src: z.ZodString;
|
|
3403
|
+
dist: z.ZodString;
|
|
3404
|
+
}, "strip", z.ZodTypeAny, {
|
|
3405
|
+
src: string;
|
|
3406
|
+
dist: string;
|
|
3407
|
+
}, {
|
|
3408
|
+
src: string;
|
|
3409
|
+
dist: string;
|
|
3410
|
+
}>>;
|
|
3403
3411
|
commands: z.ZodObject<{
|
|
3404
3412
|
src: z.ZodString;
|
|
3405
3413
|
dist: z.ZodString;
|
|
@@ -3409,7 +3417,16 @@ declare const ZAindexConfig: z.ZodObject<{
|
|
|
3409
3417
|
}, {
|
|
3410
3418
|
src: string;
|
|
3411
3419
|
dist: string;
|
|
3412
|
-
}
|
|
3420
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3421
|
+
src: z.ZodString;
|
|
3422
|
+
dist: z.ZodString;
|
|
3423
|
+
}, "strip", z.ZodTypeAny, {
|
|
3424
|
+
src: string;
|
|
3425
|
+
dist: string;
|
|
3426
|
+
}, {
|
|
3427
|
+
src: string;
|
|
3428
|
+
dist: string;
|
|
3429
|
+
}>>;
|
|
3413
3430
|
subAgents: z.ZodObject<{
|
|
3414
3431
|
src: z.ZodString;
|
|
3415
3432
|
dist: z.ZodString;
|
|
@@ -3419,7 +3436,16 @@ declare const ZAindexConfig: z.ZodObject<{
|
|
|
3419
3436
|
}, {
|
|
3420
3437
|
src: string;
|
|
3421
3438
|
dist: string;
|
|
3422
|
-
}
|
|
3439
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3440
|
+
src: z.ZodString;
|
|
3441
|
+
dist: z.ZodString;
|
|
3442
|
+
}, "strip", z.ZodTypeAny, {
|
|
3443
|
+
src: string;
|
|
3444
|
+
dist: string;
|
|
3445
|
+
}, {
|
|
3446
|
+
src: string;
|
|
3447
|
+
dist: string;
|
|
3448
|
+
}>>;
|
|
3423
3449
|
rules: z.ZodObject<{
|
|
3424
3450
|
src: z.ZodString;
|
|
3425
3451
|
dist: z.ZodString;
|
|
@@ -3429,7 +3455,16 @@ declare const ZAindexConfig: z.ZodObject<{
|
|
|
3429
3455
|
}, {
|
|
3430
3456
|
src: string;
|
|
3431
3457
|
dist: string;
|
|
3432
|
-
}
|
|
3458
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3459
|
+
src: z.ZodString;
|
|
3460
|
+
dist: z.ZodString;
|
|
3461
|
+
}, "strip", z.ZodTypeAny, {
|
|
3462
|
+
src: string;
|
|
3463
|
+
dist: string;
|
|
3464
|
+
}, {
|
|
3465
|
+
src: string;
|
|
3466
|
+
dist: string;
|
|
3467
|
+
}>>;
|
|
3433
3468
|
globalPrompt: z.ZodObject<{
|
|
3434
3469
|
src: z.ZodString;
|
|
3435
3470
|
dist: z.ZodString;
|
|
@@ -3439,7 +3474,16 @@ declare const ZAindexConfig: z.ZodObject<{
|
|
|
3439
3474
|
}, {
|
|
3440
3475
|
src: string;
|
|
3441
3476
|
dist: string;
|
|
3442
|
-
}
|
|
3477
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3478
|
+
src: z.ZodString;
|
|
3479
|
+
dist: z.ZodString;
|
|
3480
|
+
}, "strip", z.ZodTypeAny, {
|
|
3481
|
+
src: string;
|
|
3482
|
+
dist: string;
|
|
3483
|
+
}, {
|
|
3484
|
+
src: string;
|
|
3485
|
+
dist: string;
|
|
3486
|
+
}>>;
|
|
3443
3487
|
workspacePrompt: z.ZodObject<{
|
|
3444
3488
|
src: z.ZodString;
|
|
3445
3489
|
dist: z.ZodString;
|
|
@@ -3449,7 +3493,16 @@ declare const ZAindexConfig: z.ZodObject<{
|
|
|
3449
3493
|
}, {
|
|
3450
3494
|
src: string;
|
|
3451
3495
|
dist: string;
|
|
3452
|
-
}
|
|
3496
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3497
|
+
src: z.ZodString;
|
|
3498
|
+
dist: z.ZodString;
|
|
3499
|
+
}, "strip", z.ZodTypeAny, {
|
|
3500
|
+
src: string;
|
|
3501
|
+
dist: string;
|
|
3502
|
+
}, {
|
|
3503
|
+
src: string;
|
|
3504
|
+
dist: string;
|
|
3505
|
+
}>>;
|
|
3453
3506
|
app: z.ZodObject<{
|
|
3454
3507
|
src: z.ZodString;
|
|
3455
3508
|
dist: z.ZodString;
|
|
@@ -3459,7 +3512,16 @@ declare const ZAindexConfig: z.ZodObject<{
|
|
|
3459
3512
|
}, {
|
|
3460
3513
|
src: string;
|
|
3461
3514
|
dist: string;
|
|
3462
|
-
}
|
|
3515
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3516
|
+
src: z.ZodString;
|
|
3517
|
+
dist: z.ZodString;
|
|
3518
|
+
}, "strip", z.ZodTypeAny, {
|
|
3519
|
+
src: string;
|
|
3520
|
+
dist: string;
|
|
3521
|
+
}, {
|
|
3522
|
+
src: string;
|
|
3523
|
+
dist: string;
|
|
3524
|
+
}>>;
|
|
3463
3525
|
ext: z.ZodObject<{
|
|
3464
3526
|
src: z.ZodString;
|
|
3465
3527
|
dist: z.ZodString;
|
|
@@ -3469,7 +3531,16 @@ declare const ZAindexConfig: z.ZodObject<{
|
|
|
3469
3531
|
}, {
|
|
3470
3532
|
src: string;
|
|
3471
3533
|
dist: string;
|
|
3472
|
-
}
|
|
3534
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3535
|
+
src: z.ZodString;
|
|
3536
|
+
dist: z.ZodString;
|
|
3537
|
+
}, "strip", z.ZodTypeAny, {
|
|
3538
|
+
src: string;
|
|
3539
|
+
dist: string;
|
|
3540
|
+
}, {
|
|
3541
|
+
src: string;
|
|
3542
|
+
dist: string;
|
|
3543
|
+
}>>;
|
|
3473
3544
|
arch: z.ZodObject<{
|
|
3474
3545
|
src: z.ZodString;
|
|
3475
3546
|
dist: z.ZodString;
|
|
@@ -3479,7 +3550,36 @@ declare const ZAindexConfig: z.ZodObject<{
|
|
|
3479
3550
|
}, {
|
|
3480
3551
|
src: string;
|
|
3481
3552
|
dist: string;
|
|
3482
|
-
}
|
|
3553
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3554
|
+
src: z.ZodString;
|
|
3555
|
+
dist: z.ZodString;
|
|
3556
|
+
}, "strip", z.ZodTypeAny, {
|
|
3557
|
+
src: string;
|
|
3558
|
+
dist: string;
|
|
3559
|
+
}, {
|
|
3560
|
+
src: string;
|
|
3561
|
+
dist: string;
|
|
3562
|
+
}>>;
|
|
3563
|
+
softwares: z.ZodObject<{
|
|
3564
|
+
src: z.ZodString;
|
|
3565
|
+
dist: z.ZodString;
|
|
3566
|
+
}, "strip", z.ZodTypeAny, {
|
|
3567
|
+
src: string;
|
|
3568
|
+
dist: string;
|
|
3569
|
+
}, {
|
|
3570
|
+
src: string;
|
|
3571
|
+
dist: string;
|
|
3572
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3573
|
+
src: z.ZodString;
|
|
3574
|
+
dist: z.ZodString;
|
|
3575
|
+
}, "strip", z.ZodTypeAny, {
|
|
3576
|
+
src: string;
|
|
3577
|
+
dist: string;
|
|
3578
|
+
}, {
|
|
3579
|
+
src: string;
|
|
3580
|
+
dist: string;
|
|
3581
|
+
}>>;
|
|
3582
|
+
dir: z.ZodDefault<z.ZodString>;
|
|
3483
3583
|
}, "strip", z.ZodTypeAny, {
|
|
3484
3584
|
dir: string;
|
|
3485
3585
|
skills: {
|
|
@@ -3518,44 +3618,52 @@ declare const ZAindexConfig: z.ZodObject<{
|
|
|
3518
3618
|
src: string;
|
|
3519
3619
|
dist: string;
|
|
3520
3620
|
};
|
|
3521
|
-
|
|
3522
|
-
skills: {
|
|
3621
|
+
softwares: {
|
|
3523
3622
|
src: string;
|
|
3524
3623
|
dist: string;
|
|
3525
3624
|
};
|
|
3526
|
-
|
|
3625
|
+
}, {
|
|
3626
|
+
dir?: string | undefined;
|
|
3627
|
+
skills?: {
|
|
3527
3628
|
src: string;
|
|
3528
3629
|
dist: string;
|
|
3529
|
-
};
|
|
3530
|
-
|
|
3630
|
+
} | undefined;
|
|
3631
|
+
commands?: {
|
|
3531
3632
|
src: string;
|
|
3532
3633
|
dist: string;
|
|
3533
|
-
};
|
|
3534
|
-
|
|
3634
|
+
} | undefined;
|
|
3635
|
+
subAgents?: {
|
|
3535
3636
|
src: string;
|
|
3536
3637
|
dist: string;
|
|
3537
|
-
};
|
|
3538
|
-
|
|
3638
|
+
} | undefined;
|
|
3639
|
+
rules?: {
|
|
3539
3640
|
src: string;
|
|
3540
3641
|
dist: string;
|
|
3541
|
-
};
|
|
3542
|
-
|
|
3642
|
+
} | undefined;
|
|
3643
|
+
globalPrompt?: {
|
|
3543
3644
|
src: string;
|
|
3544
3645
|
dist: string;
|
|
3545
|
-
};
|
|
3546
|
-
|
|
3646
|
+
} | undefined;
|
|
3647
|
+
workspacePrompt?: {
|
|
3547
3648
|
src: string;
|
|
3548
3649
|
dist: string;
|
|
3549
|
-
};
|
|
3550
|
-
|
|
3650
|
+
} | undefined;
|
|
3651
|
+
app?: {
|
|
3551
3652
|
src: string;
|
|
3552
3653
|
dist: string;
|
|
3553
|
-
};
|
|
3554
|
-
|
|
3654
|
+
} | undefined;
|
|
3655
|
+
ext?: {
|
|
3555
3656
|
src: string;
|
|
3556
3657
|
dist: string;
|
|
3557
|
-
};
|
|
3558
|
-
|
|
3658
|
+
} | undefined;
|
|
3659
|
+
arch?: {
|
|
3660
|
+
src: string;
|
|
3661
|
+
dist: string;
|
|
3662
|
+
} | undefined;
|
|
3663
|
+
softwares?: {
|
|
3664
|
+
src: string;
|
|
3665
|
+
dist: string;
|
|
3666
|
+
} | undefined;
|
|
3559
3667
|
}>;
|
|
3560
3668
|
/**
|
|
3561
3669
|
* Zod schema for command series configuration options.
|
|
@@ -3697,7 +3805,6 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
3697
3805
|
version: z.ZodOptional<z.ZodString>;
|
|
3698
3806
|
workspaceDir: z.ZodOptional<z.ZodString>;
|
|
3699
3807
|
aindex: z.ZodOptional<z.ZodObject<{
|
|
3700
|
-
dir: z.ZodDefault<z.ZodString>;
|
|
3701
3808
|
skills: z.ZodObject<{
|
|
3702
3809
|
src: z.ZodString;
|
|
3703
3810
|
dist: z.ZodString;
|
|
@@ -3707,7 +3814,16 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
3707
3814
|
}, {
|
|
3708
3815
|
src: string;
|
|
3709
3816
|
dist: string;
|
|
3710
|
-
}
|
|
3817
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3818
|
+
src: z.ZodString;
|
|
3819
|
+
dist: z.ZodString;
|
|
3820
|
+
}, "strip", z.ZodTypeAny, {
|
|
3821
|
+
src: string;
|
|
3822
|
+
dist: string;
|
|
3823
|
+
}, {
|
|
3824
|
+
src: string;
|
|
3825
|
+
dist: string;
|
|
3826
|
+
}>>;
|
|
3711
3827
|
commands: z.ZodObject<{
|
|
3712
3828
|
src: z.ZodString;
|
|
3713
3829
|
dist: z.ZodString;
|
|
@@ -3717,7 +3833,16 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
3717
3833
|
}, {
|
|
3718
3834
|
src: string;
|
|
3719
3835
|
dist: string;
|
|
3720
|
-
}
|
|
3836
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3837
|
+
src: z.ZodString;
|
|
3838
|
+
dist: z.ZodString;
|
|
3839
|
+
}, "strip", z.ZodTypeAny, {
|
|
3840
|
+
src: string;
|
|
3841
|
+
dist: string;
|
|
3842
|
+
}, {
|
|
3843
|
+
src: string;
|
|
3844
|
+
dist: string;
|
|
3845
|
+
}>>;
|
|
3721
3846
|
subAgents: z.ZodObject<{
|
|
3722
3847
|
src: z.ZodString;
|
|
3723
3848
|
dist: z.ZodString;
|
|
@@ -3727,7 +3852,16 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
3727
3852
|
}, {
|
|
3728
3853
|
src: string;
|
|
3729
3854
|
dist: string;
|
|
3730
|
-
}
|
|
3855
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3856
|
+
src: z.ZodString;
|
|
3857
|
+
dist: z.ZodString;
|
|
3858
|
+
}, "strip", z.ZodTypeAny, {
|
|
3859
|
+
src: string;
|
|
3860
|
+
dist: string;
|
|
3861
|
+
}, {
|
|
3862
|
+
src: string;
|
|
3863
|
+
dist: string;
|
|
3864
|
+
}>>;
|
|
3731
3865
|
rules: z.ZodObject<{
|
|
3732
3866
|
src: z.ZodString;
|
|
3733
3867
|
dist: z.ZodString;
|
|
@@ -3737,7 +3871,16 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
3737
3871
|
}, {
|
|
3738
3872
|
src: string;
|
|
3739
3873
|
dist: string;
|
|
3740
|
-
}
|
|
3874
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3875
|
+
src: z.ZodString;
|
|
3876
|
+
dist: z.ZodString;
|
|
3877
|
+
}, "strip", z.ZodTypeAny, {
|
|
3878
|
+
src: string;
|
|
3879
|
+
dist: string;
|
|
3880
|
+
}, {
|
|
3881
|
+
src: string;
|
|
3882
|
+
dist: string;
|
|
3883
|
+
}>>;
|
|
3741
3884
|
globalPrompt: z.ZodObject<{
|
|
3742
3885
|
src: z.ZodString;
|
|
3743
3886
|
dist: z.ZodString;
|
|
@@ -3747,7 +3890,16 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
3747
3890
|
}, {
|
|
3748
3891
|
src: string;
|
|
3749
3892
|
dist: string;
|
|
3750
|
-
}
|
|
3893
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3894
|
+
src: z.ZodString;
|
|
3895
|
+
dist: z.ZodString;
|
|
3896
|
+
}, "strip", z.ZodTypeAny, {
|
|
3897
|
+
src: string;
|
|
3898
|
+
dist: string;
|
|
3899
|
+
}, {
|
|
3900
|
+
src: string;
|
|
3901
|
+
dist: string;
|
|
3902
|
+
}>>;
|
|
3751
3903
|
workspacePrompt: z.ZodObject<{
|
|
3752
3904
|
src: z.ZodString;
|
|
3753
3905
|
dist: z.ZodString;
|
|
@@ -3757,7 +3909,16 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
3757
3909
|
}, {
|
|
3758
3910
|
src: string;
|
|
3759
3911
|
dist: string;
|
|
3760
|
-
}
|
|
3912
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3913
|
+
src: z.ZodString;
|
|
3914
|
+
dist: z.ZodString;
|
|
3915
|
+
}, "strip", z.ZodTypeAny, {
|
|
3916
|
+
src: string;
|
|
3917
|
+
dist: string;
|
|
3918
|
+
}, {
|
|
3919
|
+
src: string;
|
|
3920
|
+
dist: string;
|
|
3921
|
+
}>>;
|
|
3761
3922
|
app: z.ZodObject<{
|
|
3762
3923
|
src: z.ZodString;
|
|
3763
3924
|
dist: z.ZodString;
|
|
@@ -3767,7 +3928,16 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
3767
3928
|
}, {
|
|
3768
3929
|
src: string;
|
|
3769
3930
|
dist: string;
|
|
3770
|
-
}
|
|
3931
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3932
|
+
src: z.ZodString;
|
|
3933
|
+
dist: z.ZodString;
|
|
3934
|
+
}, "strip", z.ZodTypeAny, {
|
|
3935
|
+
src: string;
|
|
3936
|
+
dist: string;
|
|
3937
|
+
}, {
|
|
3938
|
+
src: string;
|
|
3939
|
+
dist: string;
|
|
3940
|
+
}>>;
|
|
3771
3941
|
ext: z.ZodObject<{
|
|
3772
3942
|
src: z.ZodString;
|
|
3773
3943
|
dist: z.ZodString;
|
|
@@ -3777,7 +3947,16 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
3777
3947
|
}, {
|
|
3778
3948
|
src: string;
|
|
3779
3949
|
dist: string;
|
|
3780
|
-
}
|
|
3950
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3951
|
+
src: z.ZodString;
|
|
3952
|
+
dist: z.ZodString;
|
|
3953
|
+
}, "strip", z.ZodTypeAny, {
|
|
3954
|
+
src: string;
|
|
3955
|
+
dist: string;
|
|
3956
|
+
}, {
|
|
3957
|
+
src: string;
|
|
3958
|
+
dist: string;
|
|
3959
|
+
}>>;
|
|
3781
3960
|
arch: z.ZodObject<{
|
|
3782
3961
|
src: z.ZodString;
|
|
3783
3962
|
dist: z.ZodString;
|
|
@@ -3787,7 +3966,36 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
3787
3966
|
}, {
|
|
3788
3967
|
src: string;
|
|
3789
3968
|
dist: string;
|
|
3790
|
-
}
|
|
3969
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3970
|
+
src: z.ZodString;
|
|
3971
|
+
dist: z.ZodString;
|
|
3972
|
+
}, "strip", z.ZodTypeAny, {
|
|
3973
|
+
src: string;
|
|
3974
|
+
dist: string;
|
|
3975
|
+
}, {
|
|
3976
|
+
src: string;
|
|
3977
|
+
dist: string;
|
|
3978
|
+
}>>;
|
|
3979
|
+
softwares: z.ZodObject<{
|
|
3980
|
+
src: z.ZodString;
|
|
3981
|
+
dist: z.ZodString;
|
|
3982
|
+
}, "strip", z.ZodTypeAny, {
|
|
3983
|
+
src: string;
|
|
3984
|
+
dist: string;
|
|
3985
|
+
}, {
|
|
3986
|
+
src: string;
|
|
3987
|
+
dist: string;
|
|
3988
|
+
}> | z.ZodDefault<z.ZodObject<{
|
|
3989
|
+
src: z.ZodString;
|
|
3990
|
+
dist: z.ZodString;
|
|
3991
|
+
}, "strip", z.ZodTypeAny, {
|
|
3992
|
+
src: string;
|
|
3993
|
+
dist: string;
|
|
3994
|
+
}, {
|
|
3995
|
+
src: string;
|
|
3996
|
+
dist: string;
|
|
3997
|
+
}>>;
|
|
3998
|
+
dir: z.ZodDefault<z.ZodString>;
|
|
3791
3999
|
}, "strip", z.ZodTypeAny, {
|
|
3792
4000
|
dir: string;
|
|
3793
4001
|
skills: {
|
|
@@ -3826,44 +4034,52 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
3826
4034
|
src: string;
|
|
3827
4035
|
dist: string;
|
|
3828
4036
|
};
|
|
3829
|
-
|
|
3830
|
-
skills: {
|
|
4037
|
+
softwares: {
|
|
3831
4038
|
src: string;
|
|
3832
4039
|
dist: string;
|
|
3833
4040
|
};
|
|
3834
|
-
|
|
4041
|
+
}, {
|
|
4042
|
+
dir?: string | undefined;
|
|
4043
|
+
skills?: {
|
|
3835
4044
|
src: string;
|
|
3836
4045
|
dist: string;
|
|
3837
|
-
};
|
|
3838
|
-
|
|
4046
|
+
} | undefined;
|
|
4047
|
+
commands?: {
|
|
3839
4048
|
src: string;
|
|
3840
4049
|
dist: string;
|
|
3841
|
-
};
|
|
3842
|
-
|
|
4050
|
+
} | undefined;
|
|
4051
|
+
subAgents?: {
|
|
3843
4052
|
src: string;
|
|
3844
4053
|
dist: string;
|
|
3845
|
-
};
|
|
3846
|
-
|
|
4054
|
+
} | undefined;
|
|
4055
|
+
rules?: {
|
|
3847
4056
|
src: string;
|
|
3848
4057
|
dist: string;
|
|
3849
|
-
};
|
|
3850
|
-
|
|
4058
|
+
} | undefined;
|
|
4059
|
+
globalPrompt?: {
|
|
3851
4060
|
src: string;
|
|
3852
4061
|
dist: string;
|
|
3853
|
-
};
|
|
3854
|
-
|
|
4062
|
+
} | undefined;
|
|
4063
|
+
workspacePrompt?: {
|
|
3855
4064
|
src: string;
|
|
3856
4065
|
dist: string;
|
|
3857
|
-
};
|
|
3858
|
-
|
|
4066
|
+
} | undefined;
|
|
4067
|
+
app?: {
|
|
3859
4068
|
src: string;
|
|
3860
4069
|
dist: string;
|
|
3861
|
-
};
|
|
3862
|
-
|
|
4070
|
+
} | undefined;
|
|
4071
|
+
ext?: {
|
|
3863
4072
|
src: string;
|
|
3864
4073
|
dist: string;
|
|
3865
|
-
};
|
|
3866
|
-
|
|
4074
|
+
} | undefined;
|
|
4075
|
+
arch?: {
|
|
4076
|
+
src: string;
|
|
4077
|
+
dist: string;
|
|
4078
|
+
} | undefined;
|
|
4079
|
+
softwares?: {
|
|
4080
|
+
src: string;
|
|
4081
|
+
dist: string;
|
|
4082
|
+
} | undefined;
|
|
3867
4083
|
}>>;
|
|
3868
4084
|
logLevel: z.ZodOptional<z.ZodEnum<["trace", "debug", "info", "warn", "error"]>>;
|
|
3869
4085
|
commandSeriesOptions: z.ZodOptional<z.ZodObject<{
|
|
@@ -4046,6 +4262,10 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
4046
4262
|
src: string;
|
|
4047
4263
|
dist: string;
|
|
4048
4264
|
};
|
|
4265
|
+
softwares: {
|
|
4266
|
+
src: string;
|
|
4267
|
+
dist: string;
|
|
4268
|
+
};
|
|
4049
4269
|
} | undefined;
|
|
4050
4270
|
logLevel?: "trace" | "debug" | "info" | "warn" | "error" | undefined;
|
|
4051
4271
|
commandSeriesOptions?: {
|
|
@@ -4091,43 +4311,47 @@ declare const ZUserConfigFile: z.ZodObject<{
|
|
|
4091
4311
|
version?: string | undefined;
|
|
4092
4312
|
workspaceDir?: string | undefined;
|
|
4093
4313
|
aindex?: {
|
|
4094
|
-
|
|
4314
|
+
dir?: string | undefined;
|
|
4315
|
+
skills?: {
|
|
4095
4316
|
src: string;
|
|
4096
4317
|
dist: string;
|
|
4097
|
-
};
|
|
4098
|
-
commands
|
|
4318
|
+
} | undefined;
|
|
4319
|
+
commands?: {
|
|
4099
4320
|
src: string;
|
|
4100
4321
|
dist: string;
|
|
4101
|
-
};
|
|
4102
|
-
subAgents
|
|
4322
|
+
} | undefined;
|
|
4323
|
+
subAgents?: {
|
|
4103
4324
|
src: string;
|
|
4104
4325
|
dist: string;
|
|
4105
|
-
};
|
|
4106
|
-
rules
|
|
4326
|
+
} | undefined;
|
|
4327
|
+
rules?: {
|
|
4107
4328
|
src: string;
|
|
4108
4329
|
dist: string;
|
|
4109
|
-
};
|
|
4110
|
-
globalPrompt
|
|
4330
|
+
} | undefined;
|
|
4331
|
+
globalPrompt?: {
|
|
4111
4332
|
src: string;
|
|
4112
4333
|
dist: string;
|
|
4113
|
-
};
|
|
4114
|
-
workspacePrompt
|
|
4334
|
+
} | undefined;
|
|
4335
|
+
workspacePrompt?: {
|
|
4115
4336
|
src: string;
|
|
4116
4337
|
dist: string;
|
|
4117
|
-
};
|
|
4118
|
-
app
|
|
4338
|
+
} | undefined;
|
|
4339
|
+
app?: {
|
|
4119
4340
|
src: string;
|
|
4120
4341
|
dist: string;
|
|
4121
|
-
};
|
|
4122
|
-
ext
|
|
4342
|
+
} | undefined;
|
|
4343
|
+
ext?: {
|
|
4123
4344
|
src: string;
|
|
4124
4345
|
dist: string;
|
|
4125
|
-
};
|
|
4126
|
-
arch
|
|
4346
|
+
} | undefined;
|
|
4347
|
+
arch?: {
|
|
4127
4348
|
src: string;
|
|
4128
4349
|
dist: string;
|
|
4129
|
-
};
|
|
4130
|
-
|
|
4350
|
+
} | undefined;
|
|
4351
|
+
softwares?: {
|
|
4352
|
+
src: string;
|
|
4353
|
+
dist: string;
|
|
4354
|
+
} | undefined;
|
|
4131
4355
|
} | undefined;
|
|
4132
4356
|
logLevel?: "trace" | "debug" | "info" | "warn" | "error" | undefined;
|
|
4133
4357
|
commandSeriesOptions?: {
|