@rankcli/agent-runtime 0.0.7 → 0.0.9

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 CHANGED
@@ -3147,7 +3147,13 @@ declare function applyFixes(fixes: GeneratedFix[], options: {
3147
3147
  /**
3148
3148
  * Framework-Specific SEO Fix Generators
3149
3149
  *
3150
- * Generates proper code snippets for each framework's meta tag patterns.
3150
+ * Industry-leading SEO implementations for each framework including:
3151
+ * - Dynamic meta tags with full OG/Twitter support
3152
+ * - JSON-LD structured data
3153
+ * - Robots.txt and sitemap generation
3154
+ * - Performance optimizations (preconnect, preload)
3155
+ * - Canonical URL handling
3156
+ * - Internationalization support
3151
3157
  */
3152
3158
 
3153
3159
  interface MetaFixOptions {
@@ -3156,6 +3162,8 @@ interface MetaFixOptions {
3156
3162
  title?: string;
3157
3163
  description?: string;
3158
3164
  image?: string;
3165
+ twitterHandle?: string;
3166
+ locale?: string;
3159
3167
  }
3160
3168
  interface GeneratedCode {
3161
3169
  file: string;
@@ -3163,25 +3171,932 @@ interface GeneratedCode {
3163
3171
  explanation: string;
3164
3172
  installCommands?: string[];
3165
3173
  imports?: string[];
3174
+ additionalFiles?: {
3175
+ file: string;
3176
+ code: string;
3177
+ explanation: string;
3178
+ }[];
3166
3179
  }
3167
3180
  declare function generateReactSEOHead(options: MetaFixOptions): GeneratedCode;
3168
- declare function generateReactAppWrapper(): GeneratedCode;
3169
3181
  declare function generateNextJsAppRouterMetadata(options: MetaFixOptions): GeneratedCode;
3170
- declare function generateNextJsPageMetadata(options: MetaFixOptions & {
3171
- pageName: string;
3172
- }): GeneratedCode;
3173
- declare function generateNextJsDynamicMetadata(): GeneratedCode;
3174
- declare function generateNextJsRobots(siteUrl: string): GeneratedCode;
3175
- declare function generateNextJsSitemap(siteUrl: string): GeneratedCode;
3176
- declare function generateNextJsPagesRouterHead(options: MetaFixOptions): GeneratedCode;
3177
3182
  declare function generateNuxtSEOHead(options: MetaFixOptions): GeneratedCode;
3178
- declare function generateNuxtPageExample(): GeneratedCode;
3179
3183
  declare function generateVueSEOHead(options: MetaFixOptions): GeneratedCode;
3180
3184
  declare function generateAstroBaseHead(options: MetaFixOptions): GeneratedCode;
3181
- declare function generateAstroLayout(siteName: string): GeneratedCode;
3182
3185
  declare function generateSvelteKitSEOHead(options: MetaFixOptions): GeneratedCode;
3183
3186
  declare function generateAngularSEOService(options: MetaFixOptions): GeneratedCode;
3184
3187
  declare function getFrameworkSpecificFix(framework: FrameworkInfo$1, options: MetaFixOptions): GeneratedCode;
3188
+ declare function generateNextJsPagesRouterHead(options: MetaFixOptions): GeneratedCode;
3189
+
3190
+ /**
3191
+ * World-Class JSON-LD Schema Generators
3192
+ *
3193
+ * Comprehensive schema.org structured data for all major content types.
3194
+ * Follows Google's structured data guidelines for rich results.
3195
+ */
3196
+ interface OrganizationSchema {
3197
+ name: string;
3198
+ url: string;
3199
+ logo?: string;
3200
+ description?: string;
3201
+ foundingDate?: string;
3202
+ founders?: {
3203
+ name: string;
3204
+ url?: string;
3205
+ }[];
3206
+ address?: AddressSchema;
3207
+ contactPoint?: ContactPointSchema[];
3208
+ sameAs?: string[];
3209
+ }
3210
+ interface AddressSchema {
3211
+ streetAddress: string;
3212
+ addressLocality: string;
3213
+ addressRegion: string;
3214
+ postalCode: string;
3215
+ addressCountry: string;
3216
+ }
3217
+ interface ContactPointSchema {
3218
+ telephone: string;
3219
+ contactType: 'customer service' | 'technical support' | 'sales' | 'billing';
3220
+ availableLanguage?: string[];
3221
+ areaServed?: string[];
3222
+ }
3223
+ declare function generateOrganizationSchema(data: OrganizationSchema): {
3224
+ '@context': string;
3225
+ '@type': string;
3226
+ name: string;
3227
+ url: string;
3228
+ logo: string | undefined;
3229
+ description: string | undefined;
3230
+ foundingDate: string | undefined;
3231
+ founder: {
3232
+ '@type': string;
3233
+ name: string;
3234
+ url: string | undefined;
3235
+ }[] | undefined;
3236
+ address: {
3237
+ '@type': string;
3238
+ streetAddress: string;
3239
+ addressLocality: string;
3240
+ addressRegion: string;
3241
+ postalCode: string;
3242
+ addressCountry: string;
3243
+ } | undefined;
3244
+ contactPoint: {
3245
+ '@type': string;
3246
+ telephone: string;
3247
+ contactType: "sales" | "customer service" | "technical support" | "billing";
3248
+ availableLanguage: string[] | undefined;
3249
+ areaServed: string[] | undefined;
3250
+ }[] | undefined;
3251
+ sameAs: string[] | undefined;
3252
+ };
3253
+ interface WebSiteSchema {
3254
+ name: string;
3255
+ url: string;
3256
+ description?: string;
3257
+ publisher?: string;
3258
+ potentialAction?: {
3259
+ target: string;
3260
+ queryInput: string;
3261
+ };
3262
+ }
3263
+ declare function generateWebSiteSchema(data: WebSiteSchema): {
3264
+ '@context': string;
3265
+ '@type': string;
3266
+ name: string;
3267
+ url: string;
3268
+ description: string | undefined;
3269
+ publisher: {
3270
+ '@type': string;
3271
+ name: string;
3272
+ } | undefined;
3273
+ potentialAction: {
3274
+ '@type': string;
3275
+ target: {
3276
+ '@type': string;
3277
+ urlTemplate: string;
3278
+ };
3279
+ 'query-input': string;
3280
+ } | undefined;
3281
+ };
3282
+ interface ArticleSchema {
3283
+ headline: string;
3284
+ description: string;
3285
+ image: string | string[];
3286
+ datePublished: string;
3287
+ dateModified?: string;
3288
+ author: PersonSchema | PersonSchema[];
3289
+ publisher: {
3290
+ name: string;
3291
+ logo: string;
3292
+ };
3293
+ mainEntityOfPage?: string;
3294
+ wordCount?: number;
3295
+ articleSection?: string;
3296
+ keywords?: string[];
3297
+ }
3298
+ interface PersonSchema {
3299
+ name: string;
3300
+ url?: string;
3301
+ image?: string;
3302
+ jobTitle?: string;
3303
+ sameAs?: string[];
3304
+ }
3305
+ declare function generateArticleSchema(data: ArticleSchema): {
3306
+ '@context': string;
3307
+ '@type': string;
3308
+ headline: string;
3309
+ description: string;
3310
+ image: string | string[];
3311
+ datePublished: string;
3312
+ dateModified: string;
3313
+ author: {
3314
+ '@type': string;
3315
+ name: string;
3316
+ url: string | undefined;
3317
+ image: string | undefined;
3318
+ jobTitle: string | undefined;
3319
+ sameAs: string[] | undefined;
3320
+ }[];
3321
+ publisher: {
3322
+ '@type': string;
3323
+ name: string;
3324
+ logo: {
3325
+ '@type': string;
3326
+ url: string;
3327
+ };
3328
+ };
3329
+ mainEntityOfPage: {
3330
+ '@type': string;
3331
+ '@id': string;
3332
+ } | undefined;
3333
+ wordCount: number | undefined;
3334
+ articleSection: string | undefined;
3335
+ keywords: string | undefined;
3336
+ };
3337
+ declare function generateBlogPostingSchema(data: ArticleSchema): {
3338
+ '@type': string;
3339
+ '@context': string;
3340
+ headline: string;
3341
+ description: string;
3342
+ image: string | string[];
3343
+ datePublished: string;
3344
+ dateModified: string;
3345
+ author: {
3346
+ '@type': string;
3347
+ name: string;
3348
+ url: string | undefined;
3349
+ image: string | undefined;
3350
+ jobTitle: string | undefined;
3351
+ sameAs: string[] | undefined;
3352
+ }[];
3353
+ publisher: {
3354
+ '@type': string;
3355
+ name: string;
3356
+ logo: {
3357
+ '@type': string;
3358
+ url: string;
3359
+ };
3360
+ };
3361
+ mainEntityOfPage: {
3362
+ '@type': string;
3363
+ '@id': string;
3364
+ } | undefined;
3365
+ wordCount: number | undefined;
3366
+ articleSection: string | undefined;
3367
+ keywords: string | undefined;
3368
+ };
3369
+ declare function generateNewsArticleSchema(data: ArticleSchema & {
3370
+ dateline?: string;
3371
+ }): {
3372
+ '@type': string;
3373
+ dateline: string | undefined;
3374
+ '@context': string;
3375
+ headline: string;
3376
+ description: string;
3377
+ image: string | string[];
3378
+ datePublished: string;
3379
+ dateModified: string;
3380
+ author: {
3381
+ '@type': string;
3382
+ name: string;
3383
+ url: string | undefined;
3384
+ image: string | undefined;
3385
+ jobTitle: string | undefined;
3386
+ sameAs: string[] | undefined;
3387
+ }[];
3388
+ publisher: {
3389
+ '@type': string;
3390
+ name: string;
3391
+ logo: {
3392
+ '@type': string;
3393
+ url: string;
3394
+ };
3395
+ };
3396
+ mainEntityOfPage: {
3397
+ '@type': string;
3398
+ '@id': string;
3399
+ } | undefined;
3400
+ wordCount: number | undefined;
3401
+ articleSection: string | undefined;
3402
+ keywords: string | undefined;
3403
+ };
3404
+ interface ProductSchema {
3405
+ name: string;
3406
+ description: string;
3407
+ image: string | string[];
3408
+ sku?: string;
3409
+ mpn?: string;
3410
+ gtin?: string;
3411
+ brand?: string;
3412
+ offers: OfferSchema | OfferSchema[];
3413
+ aggregateRating?: AggregateRatingSchema;
3414
+ review?: ReviewSchema[];
3415
+ category?: string;
3416
+ }
3417
+ interface OfferSchema {
3418
+ price: number | string;
3419
+ priceCurrency?: string;
3420
+ availability?: 'InStock' | 'OutOfStock' | 'PreOrder' | 'SoldOut' | 'BackOrder';
3421
+ priceValidUntil?: string;
3422
+ url?: string;
3423
+ seller?: string;
3424
+ itemCondition?: 'NewCondition' | 'UsedCondition' | 'RefurbishedCondition';
3425
+ }
3426
+ interface AggregateRatingSchema {
3427
+ ratingValue: number;
3428
+ reviewCount?: number;
3429
+ ratingCount?: number;
3430
+ bestRating?: number;
3431
+ worstRating?: number;
3432
+ }
3433
+ interface ReviewSchema {
3434
+ author: string;
3435
+ datePublished: string;
3436
+ reviewBody: string;
3437
+ reviewRating: {
3438
+ ratingValue: number;
3439
+ bestRating?: number;
3440
+ };
3441
+ }
3442
+ declare function generateProductSchema(data: ProductSchema): {
3443
+ '@context': string;
3444
+ '@type': string;
3445
+ name: string;
3446
+ description: string;
3447
+ image: string | string[];
3448
+ sku: string | undefined;
3449
+ mpn: string | undefined;
3450
+ gtin: string | undefined;
3451
+ brand: {
3452
+ '@type': string;
3453
+ name: string;
3454
+ } | undefined;
3455
+ category: string | undefined;
3456
+ offers: {
3457
+ '@type': string;
3458
+ price: string | number;
3459
+ priceCurrency: string;
3460
+ availability: string;
3461
+ priceValidUntil: string | undefined;
3462
+ url: string | undefined;
3463
+ seller: {
3464
+ '@type': string;
3465
+ name: string;
3466
+ } | undefined;
3467
+ itemCondition: string | undefined;
3468
+ }[];
3469
+ aggregateRating: {
3470
+ '@type': string;
3471
+ ratingValue: number;
3472
+ reviewCount: number | undefined;
3473
+ ratingCount: number | undefined;
3474
+ bestRating: number;
3475
+ worstRating: number;
3476
+ } | undefined;
3477
+ review: {
3478
+ '@type': string;
3479
+ author: {
3480
+ '@type': string;
3481
+ name: string;
3482
+ };
3483
+ datePublished: string;
3484
+ reviewBody: string;
3485
+ reviewRating: {
3486
+ '@type': string;
3487
+ ratingValue: number;
3488
+ bestRating: number;
3489
+ };
3490
+ }[] | undefined;
3491
+ };
3492
+ interface SoftwareApplicationSchema {
3493
+ name: string;
3494
+ description: string;
3495
+ applicationCategory: 'BusinessApplication' | 'DeveloperApplication' | 'EducationalApplication' | 'GameApplication' | 'LifestyleApplication' | 'MultimediaApplication' | 'SocialNetworkingApplication' | 'UtilitiesApplication';
3496
+ operatingSystem?: string;
3497
+ offers: OfferSchema | OfferSchema[];
3498
+ aggregateRating?: AggregateRatingSchema;
3499
+ screenshot?: string | string[];
3500
+ featureList?: string[];
3501
+ }
3502
+ declare function generateSoftwareApplicationSchema(data: SoftwareApplicationSchema): {
3503
+ '@context': string;
3504
+ '@type': string;
3505
+ name: string;
3506
+ description: string;
3507
+ applicationCategory: "BusinessApplication" | "DeveloperApplication" | "EducationalApplication" | "GameApplication" | "LifestyleApplication" | "MultimediaApplication" | "SocialNetworkingApplication" | "UtilitiesApplication";
3508
+ operatingSystem: string;
3509
+ offers: {
3510
+ '@type': string;
3511
+ price: string | number;
3512
+ priceCurrency: string;
3513
+ }[];
3514
+ aggregateRating: {
3515
+ '@type': string;
3516
+ ratingValue: number;
3517
+ reviewCount: number | undefined;
3518
+ bestRating: number;
3519
+ } | undefined;
3520
+ screenshot: string | string[] | undefined;
3521
+ featureList: string[] | undefined;
3522
+ };
3523
+ interface FAQSchema {
3524
+ questions: {
3525
+ question: string;
3526
+ answer: string;
3527
+ }[];
3528
+ }
3529
+ declare function generateFAQSchema$1(data: FAQSchema): {
3530
+ '@context': string;
3531
+ '@type': string;
3532
+ mainEntity: {
3533
+ '@type': string;
3534
+ name: string;
3535
+ acceptedAnswer: {
3536
+ '@type': string;
3537
+ text: string;
3538
+ };
3539
+ }[];
3540
+ };
3541
+ interface HowToSchema {
3542
+ name: string;
3543
+ description: string;
3544
+ image?: string;
3545
+ totalTime?: string;
3546
+ estimatedCost?: {
3547
+ currency: string;
3548
+ value: number;
3549
+ };
3550
+ supply?: string[];
3551
+ tool?: string[];
3552
+ steps: {
3553
+ name: string;
3554
+ text: string;
3555
+ image?: string;
3556
+ url?: string;
3557
+ }[];
3558
+ }
3559
+ declare function generateHowToSchema(data: HowToSchema): {
3560
+ '@context': string;
3561
+ '@type': string;
3562
+ name: string;
3563
+ description: string;
3564
+ image: string | undefined;
3565
+ totalTime: string | undefined;
3566
+ estimatedCost: {
3567
+ '@type': string;
3568
+ currency: string;
3569
+ value: number;
3570
+ } | undefined;
3571
+ supply: {
3572
+ '@type': string;
3573
+ name: string;
3574
+ }[] | undefined;
3575
+ tool: {
3576
+ '@type': string;
3577
+ name: string;
3578
+ }[] | undefined;
3579
+ step: {
3580
+ '@type': string;
3581
+ position: number;
3582
+ name: string;
3583
+ text: string;
3584
+ image: string | undefined;
3585
+ url: string | undefined;
3586
+ }[];
3587
+ };
3588
+ interface VideoSchema {
3589
+ name: string;
3590
+ description: string;
3591
+ thumbnailUrl: string | string[];
3592
+ uploadDate: string;
3593
+ duration?: string;
3594
+ contentUrl?: string;
3595
+ embedUrl?: string;
3596
+ interactionStatistic?: {
3597
+ watchCount?: number;
3598
+ likeCount?: number;
3599
+ commentCount?: number;
3600
+ };
3601
+ publication?: {
3602
+ isLiveBroadcast: boolean;
3603
+ startDate?: string;
3604
+ endDate?: string;
3605
+ };
3606
+ }
3607
+ declare function generateVideoSchema(data: VideoSchema): {
3608
+ '@context': string;
3609
+ '@type': string;
3610
+ name: string;
3611
+ description: string;
3612
+ thumbnailUrl: string | string[];
3613
+ uploadDate: string;
3614
+ duration: string | undefined;
3615
+ contentUrl: string | undefined;
3616
+ embedUrl: string | undefined;
3617
+ interactionStatistic: ({
3618
+ '@type': string;
3619
+ interactionType: {
3620
+ '@type': string;
3621
+ };
3622
+ userInteractionCount: number;
3623
+ } | null)[] | undefined;
3624
+ publication: {
3625
+ '@type': string;
3626
+ isLiveBroadcast: boolean;
3627
+ startDate: string | undefined;
3628
+ endDate: string | undefined;
3629
+ } | undefined;
3630
+ };
3631
+ interface EventSchema {
3632
+ name: string;
3633
+ description: string;
3634
+ startDate: string;
3635
+ endDate?: string;
3636
+ location: {
3637
+ type: 'Place' | 'VirtualLocation';
3638
+ name?: string;
3639
+ address?: AddressSchema;
3640
+ url?: string;
3641
+ };
3642
+ image?: string | string[];
3643
+ performer?: {
3644
+ name: string;
3645
+ url?: string;
3646
+ }[];
3647
+ organizer?: {
3648
+ name: string;
3649
+ url?: string;
3650
+ };
3651
+ offers?: OfferSchema[];
3652
+ eventStatus?: 'EventScheduled' | 'EventCancelled' | 'EventPostponed' | 'EventRescheduled';
3653
+ eventAttendanceMode?: 'OfflineEventAttendanceMode' | 'OnlineEventAttendanceMode' | 'MixedEventAttendanceMode';
3654
+ }
3655
+ declare function generateEventSchema(data: EventSchema): {
3656
+ '@context': string;
3657
+ '@type': string;
3658
+ name: string;
3659
+ description: string;
3660
+ startDate: string;
3661
+ endDate: string | undefined;
3662
+ image: string | string[] | undefined;
3663
+ eventStatus: string | undefined;
3664
+ eventAttendanceMode: string | undefined;
3665
+ location: {
3666
+ '@type': string;
3667
+ url: string | undefined;
3668
+ name?: undefined;
3669
+ address?: undefined;
3670
+ } | {
3671
+ '@type': string;
3672
+ name: string | undefined;
3673
+ address: {
3674
+ streetAddress: string;
3675
+ addressLocality: string;
3676
+ addressRegion: string;
3677
+ postalCode: string;
3678
+ addressCountry: string;
3679
+ '@type': string;
3680
+ } | undefined;
3681
+ url?: undefined;
3682
+ };
3683
+ performer: {
3684
+ '@type': string;
3685
+ name: string;
3686
+ url: string | undefined;
3687
+ }[] | undefined;
3688
+ organizer: {
3689
+ '@type': string;
3690
+ name: string;
3691
+ url: string | undefined;
3692
+ } | undefined;
3693
+ offers: {
3694
+ '@type': string;
3695
+ price: string | number;
3696
+ priceCurrency: string;
3697
+ availability: string;
3698
+ url: string | undefined;
3699
+ validFrom: string | undefined;
3700
+ }[] | undefined;
3701
+ };
3702
+ interface LocalBusinessSchema {
3703
+ name: string;
3704
+ description: string;
3705
+ url: string;
3706
+ telephone: string;
3707
+ address: AddressSchema;
3708
+ geo?: {
3709
+ latitude: number;
3710
+ longitude: number;
3711
+ };
3712
+ openingHours?: string[];
3713
+ priceRange?: string;
3714
+ image?: string | string[];
3715
+ servesCuisine?: string[];
3716
+ menu?: string;
3717
+ aggregateRating?: AggregateRatingSchema;
3718
+ review?: ReviewSchema[];
3719
+ }
3720
+ declare function generateLocalBusinessSchema(data: LocalBusinessSchema): {
3721
+ '@context': string;
3722
+ '@type': string;
3723
+ name: string;
3724
+ description: string;
3725
+ url: string;
3726
+ telephone: string;
3727
+ image: string | string[] | undefined;
3728
+ priceRange: string | undefined;
3729
+ servesCuisine: string[] | undefined;
3730
+ menu: string | undefined;
3731
+ address: {
3732
+ '@type': string;
3733
+ streetAddress: string;
3734
+ addressLocality: string;
3735
+ addressRegion: string;
3736
+ postalCode: string;
3737
+ addressCountry: string;
3738
+ };
3739
+ geo: {
3740
+ '@type': string;
3741
+ latitude: number;
3742
+ longitude: number;
3743
+ } | undefined;
3744
+ openingHoursSpecification: ({
3745
+ '@type': string;
3746
+ dayOfWeek: string[];
3747
+ opens: string;
3748
+ closes: string;
3749
+ } | null)[] | undefined;
3750
+ aggregateRating: {
3751
+ '@type': string;
3752
+ ratingValue: number;
3753
+ reviewCount: number | undefined;
3754
+ bestRating: number;
3755
+ } | undefined;
3756
+ review: {
3757
+ '@type': string;
3758
+ author: {
3759
+ '@type': string;
3760
+ name: string;
3761
+ };
3762
+ datePublished: string;
3763
+ reviewBody: string;
3764
+ reviewRating: {
3765
+ '@type': string;
3766
+ ratingValue: number;
3767
+ };
3768
+ }[] | undefined;
3769
+ };
3770
+ interface BreadcrumbSchema {
3771
+ items: {
3772
+ name: string;
3773
+ url: string;
3774
+ }[];
3775
+ }
3776
+ declare function generateBreadcrumbSchema(data: BreadcrumbSchema): {
3777
+ '@context': string;
3778
+ '@type': string;
3779
+ itemListElement: {
3780
+ '@type': string;
3781
+ position: number;
3782
+ name: string;
3783
+ item: string;
3784
+ }[];
3785
+ };
3786
+ interface JobPostingSchema {
3787
+ title: string;
3788
+ description: string;
3789
+ datePosted: string;
3790
+ validThrough?: string;
3791
+ employmentType?: ('FULL_TIME' | 'PART_TIME' | 'CONTRACTOR' | 'TEMPORARY' | 'INTERN')[];
3792
+ hiringOrganization: {
3793
+ name: string;
3794
+ url?: string;
3795
+ logo?: string;
3796
+ };
3797
+ jobLocation?: {
3798
+ address: AddressSchema;
3799
+ };
3800
+ jobLocationType?: 'TELECOMMUTE';
3801
+ baseSalary?: {
3802
+ value: {
3803
+ minValue: number;
3804
+ maxValue: number;
3805
+ } | number;
3806
+ currency: string;
3807
+ unitText: 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'YEAR';
3808
+ };
3809
+ experienceRequirements?: string;
3810
+ educationRequirements?: string;
3811
+ skills?: string[];
3812
+ }
3813
+ declare function generateJobPostingSchema(data: JobPostingSchema): {
3814
+ '@context': string;
3815
+ '@type': string;
3816
+ title: string;
3817
+ description: string;
3818
+ datePosted: string;
3819
+ validThrough: string | undefined;
3820
+ employmentType: ("FULL_TIME" | "PART_TIME" | "CONTRACTOR" | "TEMPORARY" | "INTERN")[] | undefined;
3821
+ hiringOrganization: {
3822
+ '@type': string;
3823
+ name: string;
3824
+ sameAs: string | undefined;
3825
+ logo: string | undefined;
3826
+ };
3827
+ jobLocation: {
3828
+ '@type': string;
3829
+ address: {
3830
+ streetAddress: string;
3831
+ addressLocality: string;
3832
+ addressRegion: string;
3833
+ postalCode: string;
3834
+ addressCountry: string;
3835
+ '@type': string;
3836
+ };
3837
+ } | undefined;
3838
+ jobLocationType: "TELECOMMUTE" | undefined;
3839
+ baseSalary: {
3840
+ '@type': string;
3841
+ currency: string;
3842
+ value: {
3843
+ '@type': string;
3844
+ value: number;
3845
+ unitText: "HOUR" | "DAY" | "WEEK" | "MONTH" | "YEAR";
3846
+ minValue?: undefined;
3847
+ maxValue?: undefined;
3848
+ } | {
3849
+ '@type': string;
3850
+ minValue: number;
3851
+ maxValue: number;
3852
+ unitText: "HOUR" | "DAY" | "WEEK" | "MONTH" | "YEAR";
3853
+ value?: undefined;
3854
+ };
3855
+ } | undefined;
3856
+ experienceRequirements: string | undefined;
3857
+ educationRequirements: {
3858
+ '@type': string;
3859
+ credentialCategory: string;
3860
+ } | undefined;
3861
+ skills: string[] | undefined;
3862
+ };
3863
+ interface CourseSchema {
3864
+ name: string;
3865
+ description: string;
3866
+ provider: {
3867
+ name: string;
3868
+ url?: string;
3869
+ };
3870
+ offers?: OfferSchema;
3871
+ coursePrerequisites?: string[];
3872
+ educationalLevel?: string;
3873
+ timeRequired?: string;
3874
+ image?: string;
3875
+ aggregateRating?: AggregateRatingSchema;
3876
+ }
3877
+ declare function generateCourseSchema(data: CourseSchema): {
3878
+ '@context': string;
3879
+ '@type': string;
3880
+ name: string;
3881
+ description: string;
3882
+ provider: {
3883
+ '@type': string;
3884
+ name: string;
3885
+ sameAs: string | undefined;
3886
+ };
3887
+ offers: {
3888
+ '@type': string;
3889
+ price: string | number;
3890
+ priceCurrency: string;
3891
+ availability: string;
3892
+ } | undefined;
3893
+ coursePrerequisites: string[] | undefined;
3894
+ educationalLevel: string | undefined;
3895
+ timeRequired: string | undefined;
3896
+ image: string | undefined;
3897
+ aggregateRating: {
3898
+ '@type': string;
3899
+ ratingValue: number;
3900
+ reviewCount: number | undefined;
3901
+ } | undefined;
3902
+ };
3903
+ interface RecipeSchema {
3904
+ name: string;
3905
+ description: string;
3906
+ image: string | string[];
3907
+ author: {
3908
+ name: string;
3909
+ url?: string;
3910
+ };
3911
+ datePublished: string;
3912
+ prepTime?: string;
3913
+ cookTime?: string;
3914
+ totalTime?: string;
3915
+ recipeYield?: string;
3916
+ recipeCategory?: string;
3917
+ recipeCuisine?: string;
3918
+ recipeIngredient: string[];
3919
+ recipeInstructions: {
3920
+ name?: string;
3921
+ text: string;
3922
+ }[];
3923
+ nutrition?: {
3924
+ calories?: string;
3925
+ fatContent?: string;
3926
+ proteinContent?: string;
3927
+ carbohydrateContent?: string;
3928
+ };
3929
+ aggregateRating?: AggregateRatingSchema;
3930
+ video?: VideoSchema;
3931
+ }
3932
+ declare function generateRecipeSchema(data: RecipeSchema): {
3933
+ '@context': string;
3934
+ '@type': string;
3935
+ name: string;
3936
+ description: string;
3937
+ image: string | string[];
3938
+ author: {
3939
+ '@type': string;
3940
+ name: string;
3941
+ url: string | undefined;
3942
+ };
3943
+ datePublished: string;
3944
+ prepTime: string | undefined;
3945
+ cookTime: string | undefined;
3946
+ totalTime: string | undefined;
3947
+ recipeYield: string | undefined;
3948
+ recipeCategory: string | undefined;
3949
+ recipeCuisine: string | undefined;
3950
+ recipeIngredient: string[];
3951
+ recipeInstructions: {
3952
+ '@type': string;
3953
+ position: number;
3954
+ name: string | undefined;
3955
+ text: string;
3956
+ }[];
3957
+ nutrition: {
3958
+ '@type': string;
3959
+ calories: string | undefined;
3960
+ fatContent: string | undefined;
3961
+ proteinContent: string | undefined;
3962
+ carbohydrateContent: string | undefined;
3963
+ } | undefined;
3964
+ aggregateRating: {
3965
+ '@type': string;
3966
+ ratingValue: number;
3967
+ reviewCount: number | undefined;
3968
+ } | undefined;
3969
+ video: {
3970
+ '@context': string;
3971
+ '@type': string;
3972
+ name: string;
3973
+ description: string;
3974
+ thumbnailUrl: string | string[];
3975
+ uploadDate: string;
3976
+ duration: string | undefined;
3977
+ contentUrl: string | undefined;
3978
+ embedUrl: string | undefined;
3979
+ interactionStatistic: ({
3980
+ '@type': string;
3981
+ interactionType: {
3982
+ '@type': string;
3983
+ };
3984
+ userInteractionCount: number;
3985
+ } | null)[] | undefined;
3986
+ publication: {
3987
+ '@type': string;
3988
+ isLiveBroadcast: boolean;
3989
+ startDate: string | undefined;
3990
+ endDate: string | undefined;
3991
+ } | undefined;
3992
+ } | undefined;
3993
+ };
3994
+ interface BookSchema {
3995
+ name: string;
3996
+ description: string;
3997
+ author: {
3998
+ name: string;
3999
+ url?: string;
4000
+ } | {
4001
+ name: string;
4002
+ url?: string;
4003
+ }[];
4004
+ isbn?: string;
4005
+ numberOfPages?: number;
4006
+ bookFormat?: 'Hardcover' | 'Paperback' | 'EBook' | 'AudioBook';
4007
+ publisher?: string;
4008
+ datePublished?: string;
4009
+ image?: string;
4010
+ inLanguage?: string;
4011
+ aggregateRating?: AggregateRatingSchema;
4012
+ offers?: OfferSchema;
4013
+ }
4014
+ declare function generateBookSchema(data: BookSchema): {
4015
+ '@context': string;
4016
+ '@type': string;
4017
+ name: string;
4018
+ description: string;
4019
+ author: {
4020
+ '@type': string;
4021
+ name: string;
4022
+ url: string | undefined;
4023
+ }[];
4024
+ isbn: string | undefined;
4025
+ numberOfPages: number | undefined;
4026
+ bookFormat: string | undefined;
4027
+ publisher: {
4028
+ '@type': string;
4029
+ name: string;
4030
+ } | undefined;
4031
+ datePublished: string | undefined;
4032
+ image: string | undefined;
4033
+ inLanguage: string | undefined;
4034
+ aggregateRating: {
4035
+ '@type': string;
4036
+ ratingValue: number;
4037
+ reviewCount: number | undefined;
4038
+ } | undefined;
4039
+ offers: {
4040
+ '@type': string;
4041
+ price: string | number;
4042
+ priceCurrency: string;
4043
+ availability: string;
4044
+ } | undefined;
4045
+ };
4046
+ interface SpeakableSchema {
4047
+ url: string;
4048
+ cssSelector?: string[];
4049
+ xpath?: string[];
4050
+ }
4051
+ declare function generateSpeakableSchema(data: SpeakableSchema): {
4052
+ '@context': string;
4053
+ '@type': string;
4054
+ speakable: {
4055
+ '@type': string;
4056
+ cssSelector: string[] | undefined;
4057
+ xpath: string[] | undefined;
4058
+ };
4059
+ url: string;
4060
+ };
4061
+ interface SitelinksSearchboxSchema {
4062
+ url: string;
4063
+ searchUrl: string;
4064
+ queryInput?: string;
4065
+ }
4066
+ declare function generateSitelinksSearchboxSchema(data: SitelinksSearchboxSchema): {
4067
+ '@context': string;
4068
+ '@type': string;
4069
+ url: string;
4070
+ potentialAction: {
4071
+ '@type': string;
4072
+ target: {
4073
+ '@type': string;
4074
+ urlTemplate: string;
4075
+ };
4076
+ 'query-input': string;
4077
+ };
4078
+ };
4079
+ declare const Schemas: {
4080
+ organization: typeof generateOrganizationSchema;
4081
+ webSite: typeof generateWebSiteSchema;
4082
+ article: typeof generateArticleSchema;
4083
+ blogPosting: typeof generateBlogPostingSchema;
4084
+ newsArticle: typeof generateNewsArticleSchema;
4085
+ product: typeof generateProductSchema;
4086
+ softwareApplication: typeof generateSoftwareApplicationSchema;
4087
+ faq: typeof generateFAQSchema$1;
4088
+ howTo: typeof generateHowToSchema;
4089
+ video: typeof generateVideoSchema;
4090
+ event: typeof generateEventSchema;
4091
+ localBusiness: typeof generateLocalBusinessSchema;
4092
+ breadcrumb: typeof generateBreadcrumbSchema;
4093
+ jobPosting: typeof generateJobPostingSchema;
4094
+ course: typeof generateCourseSchema;
4095
+ recipe: typeof generateRecipeSchema;
4096
+ book: typeof generateBookSchema;
4097
+ speakable: typeof generateSpeakableSchema;
4098
+ sitelinksSearchbox: typeof generateSitelinksSearchboxSchema;
4099
+ };
3185
4100
 
3186
4101
  declare function crawlUrl(params: {
3187
4102
  url: string;
@@ -4097,4 +5012,4 @@ interface SyncAuditResult {
4097
5012
  */
4098
5013
  declare function runSyncAudit(url: string, html: string, checksLimit: number): SyncAuditResult;
4099
5014
 
4100
- export { type AIContentConfig, type AIKeywordResearchOptions, type AgentDefinition, type AgentTool, type AlertChannel, type AlertConfig, type AlertMessage, type AlertResult, type AlertSeverity, type AlertType, type AuditAlertPayload, type AuditIssue, type AuditIssueData, type AuditOptions, type AuditPRResult, type AuditReport, type AuditReportData, type AuditRunnerOptions, type AuditRunnerResult, type AuditSchedule, type BlogPostConfig, type BrandConfig, type CIAction, type CIKeywordOptions, type CIKeywordResult, COMMIT_TYPES, type ChangelogConfig, type ChangelogResult, type CitationCheckOptions, type CommitConfig, type ComparisonConfig, type ComparisonRow, type CompetitiveInsight, type CompetitiveSearchOptions, type CompetitiveSearchResult, type CompetitorComparison, type CompetitorKeywordResult, type CompetitorOverlap, type CompetitorTool, type ContentElements, type ContentGeneratorOptions, type ContentRecommendation, type ConventionalCommit, type CrawlResult, type CrawlStats, type CrawledPage, type CreateAuditPROptions, type CreatePROptions, type DataForSEOCredentials, type DiscoveredPage, type EnhancedToolIdea, type ExecOptions, type ExecuteOptions, type ExecutionResult, type FAQItem, type FAQSchemaOptions, type FeaturedSnippetAnalysis, type Fix, type FixFile, type FixGeneratorOptions, type FixResult, type FrameworkInfo$1 as FrameworkInfo, type FreeKeywordResult, type FreeToolIdea, type GA4Config, type GEOAlert, type GEOAlertType, type GEOHistory, type GEOHistoryOptions, type GEOQuery, type GEOReport, type GEOResult, type GEOTrend, type GSCConfig, type GSCCredentials, type GSCPerformanceData, type GSCQueryData, type GSCQueryResult, type GeneratedCode, type GeneratedContent, type GeneratedFix, type HeadingStructure, type HeadlineAnalysis, type HealthScore, ISSUE_DEFINITIONS, type ImageInfo$1 as ImageInfo, type InjectionResult, type IntentAnalysis, type IssueCategory, type IssueDefinition, type IssueSeverity, type KeyFact, type KeyFactsOptions, type KeywordAction, type KeywordCluster, type KeywordData, type KeywordDensityAnalysis, type KeywordOpportunity, type KeywordRecommendation, type KeywordResearchOptions, type KeywordResearchResult, type KeywordStats, type KeywordTopic, type LLMCitationResult, type LLMJudgeOptions, type LLMProvider, LOCATION_CODES, type LSIKeyword, type LinkInfo, type Mention, type MentionType, type MetaData, type MetaFixOptions, type NGram, type NLPAnalysisResult, OG_IMAGE_SPECS, type OptimizeOptions, type PRConfig, type PRDescription, PRIORITY_WEIGHTS, type PRResult, type PageAudit, type PageData, type PageMeta, type PaidKeywordResult, type ParsedResponse, type PlanTier, type ProviderStats, type QuickWin, type ReadabilityResult, type ReadmeConfig, type ReadmeResult, type ReportBranding, type ReportConfig, type ReportData, type ReportPageData, type RouteInfo, type SEOAnalysisResult, type SEOFixCommit, type SEOFixSummary, type SEOIssue, type SEORecommendation, type SEOScore, SEO_SCOPES, SITE_PROFILE_QUESTIONS, type ScheduledAuditConfig, type ScheduledAuditResult, type SchemaData, type SearchIntent, type Sentiment, type SiteCrawlResult, type SiteProfile, type SiteSummary, type SnippetRecommendation, type SnippetType, type SocialMetaConfig, type SocialMetaFix, type SummarizerOptions, type TFIDFResult, type ToolFeasibilityScore, type ToolFunction, type ToolResult, type TopicClusterResult, type TopicModel, type TrackingOptions, type TrendDirection, type UncertaintyAssessment, type WizardQuestion, type WizardResponse, type WizardResult, type WizardSession, type WorkflowConfig, addTrackingResult, analyzeAnchorText, analyzeCanonicalAdvanced, analyzeClientRendering, analyzeContentFreshness, analyzeConversionElements, analyzeDOMStructure, analyzeEntitySEO, analyzeFeaturedSnippetPotential, analyzeFreshnessSignals, analyzeFunnelIntent, analyzeHeadings, analyzeHeadline, analyzeHreflang, analyzeImages, analyzeInteractiveTools, analyzeKeywordDensity, analyzeKeywordPlacement, analyzeKeywords, analyzeLinks, analyzeLocalSEO, analyzeMobile, analyzeModernImages, analyzeNavBoostSignals, analyzeOnPage, analyzePagination, analyzePerformance, analyzePlatformPresence, analyzeReadability, analyzeRedirectChain, analyzeRedirects, analyzeResponsiveImages, analyzeSERPPreview, analyzeSecurity, analyzeSecurityHeaders, analyzeSocialMeta, analyzeStructuredData, analyzeTopicalClusters, analyzeTrackerBloat, analyzeUrl, analyzeUrlSafety, applyFixes, buildGSCApiRequest, buildGSCRequest, calculateAIVisibilityScore, calculateBM25, calculateTFIDF$1 as calculateKeywordTFIDF, calculateNextRun, calculateTFIDF, checkAIBotBlocking, checkAMP, checkAdsTxt, checkAppleTouchIcon, checkBalance, checkCertificate, checkDMARC, checkGitHubCLI, checkInternalRedirects, checkJSRenderingRatio, checkLLMCitations, checkLlmsTxt, checkMobileResources, checkPlaintextEmails, checkRedirects, checkRobots, checkRobotsTxt, checkSPF, checkSitemap, classifyIntent, classifyIntents, clusterKeywordsByEmbedding, compareCompetitorVisibility, comparePeriods, completeWizard, crawlSite, crawlUrl, createAuditPR, createFallbackSummary, createGEOHistory, createPullRequest, createSEOCommit, createSEOCommits, detectDuplicates, detectFramework$1 as detectFramework, detectGitHubPages, detectMentions, detectSoft404, detectTechnologies, detectVisibilityChanges, discoverCompetitorKeywords, discoverPagesFromLinks, discoverRoutesFromRepo, enhanceSummaryWithCompetitors, enhanceToolIdea, enrichKeywordsWithEstimates, ensureGitRepo, evaluateAndEnhanceToolIdeas, evaluateToolFeasibility, executeAgent, extractContentHash, extractEntityPhrases, extractImages, extractKeyPhrases, extractLinks, extractMeta, extractNgrams, extractSchema, extractSeedKeywords, extractTopics, fetchCoreWebVitals, findAlmostPage1Keywords, findCTROpportunities, findHtmlEntry, findLSIKeywords, findPageFiles, findTopPerformers, formatAlertMessage, formatCIResult, formatCompetitorReport, formatConventionalCommit, formatFeaturedSnippetReport, formatHeadlineReport, formatIntentReport, formatKeywordDensityReport, formatKeywordReport, formatPRBody, formatPRTitle, formatReadabilityReport, formatReport, formatSEOCommitMessage, formatTopicReport, formatWizardProgress, index as frameworks, generateAICitableContent, generateAllFixes, generateAngularSEOService, generateAstroBaseHead, generateAstroLayout, generateAstroMeta, generateBlogPost, generateBranchName, generateChangelog, generateCommitSummary, generateComparisonTable, generateCompleteSocialMetaSetup, generateDuplicateIssues, generateFAQSchema, generateFixes, generateGA4EnvTemplate, generateGA4ReactComponent, generateGA4Script, generateGA4ViteScript, generateGEOReport, generateGSCVerificationTag, generateGitHubActionSetup, generateHTMLReport, generateHTMLSocialMeta, generateHeadlineVariations, generateJsonReport, generateKeyFacts, generateMarkdownReport, generateNextAppMetadata, generateNextJsAppRouterMetadata, generateNextJsDynamicMetadata, generateNextJsPageMetadata, generateNextJsPagesRouterHead, generateNextJsRobots, generateNextJsSitemap, generateNextPagesHead, generateNuxtPageExample, generateNuxtSEOHead, generatePDFReport, generatePRDescription, generateReactAppWrapper, generateReactHelmetSocialMeta, generateReactSEOHead, generateRecommendationQueries, generateRemixMeta, generateSecretsDoc, generateSocialMetaFix, generateSvelteKitMeta, generateSvelteKitSEOHead, generateUncertaintyQuestions, generateVueSEOHead, generateWizardQuestions, generateWorkflow, getAIVisibilitySummary, getAutocompleteSuggestions, getDateRange, getExpandedSuggestions, getFrameworkSpecificFix, getGSCSetupInstructions, getGitUser, getKeywordData, getKeywordSuggestions, getMaxKdThreshold, getNextQuestion, getRelatedKeywords, getVisibilityTrend, groupKeywordsByTopic, identifyQuickWins, injectGA4, injectGSCVerification, interpolatePrompt, isGitRepo, listFiles, loadAgent, loadAgentByName, mergePages, optimizeForAI, optimizeReadme, parseGEOResponse, parseGSCResponse, parseSitemap, prioritizeKeywords, processWizardResponse, readFile, routesToUrls, runAIKeywordResearch, runAIReadinessChecks, runAdditionalChecks, runAuditWithFixes, runCIKeywordResearch, runCrawlabilityChecks, runDirectAnalysis, runFullAudit, runKeywordResearch, runNLPAnalysis, runScheduledAudit, runSyncAudit, scoreContentSEO, scoreMention, searchCompetitors, searchFormatConverters, searchHackerNews, sendAlert, sendAlerts, sendDiscordAlert, sendSlackAlert, shouldRunAudit, shouldSendAlert, startWizardSession, suggestSchemaTypes, summarizeSite, tokenize, tools, trackLLMVisibility, transformGSCData, urlSafetyDatabase, wizardResponsesToContext, writeFile, writeGitHubActionFiles };
5015
+ export { type AIContentConfig, type AIKeywordResearchOptions, type AgentDefinition, type AgentTool, type AlertChannel, type AlertConfig, type AlertMessage, type AlertResult, type AlertSeverity, type AlertType, type AuditAlertPayload, type AuditIssue, type AuditIssueData, type AuditOptions, type AuditPRResult, type AuditReport, type AuditReportData, type AuditRunnerOptions, type AuditRunnerResult, type AuditSchedule, type BlogPostConfig, type BrandConfig, type CIAction, type CIKeywordOptions, type CIKeywordResult, COMMIT_TYPES, type ChangelogConfig, type ChangelogResult, type CitationCheckOptions, type CommitConfig, type ComparisonConfig, type ComparisonRow, type CompetitiveInsight, type CompetitiveSearchOptions, type CompetitiveSearchResult, type CompetitorComparison, type CompetitorKeywordResult, type CompetitorOverlap, type CompetitorTool, type ContentElements, type ContentGeneratorOptions, type ContentRecommendation, type ConventionalCommit, type CrawlResult, type CrawlStats, type CrawledPage, type CreateAuditPROptions, type CreatePROptions, type DataForSEOCredentials, type DiscoveredPage, type EnhancedToolIdea, type ExecOptions, type ExecuteOptions, type ExecutionResult, type FAQItem, type FAQSchemaOptions, type FeaturedSnippetAnalysis, type Fix, type FixFile, type FixGeneratorOptions, type FixResult, type FrameworkInfo$1 as FrameworkInfo, type FreeKeywordResult, type FreeToolIdea, type GA4Config, type GEOAlert, type GEOAlertType, type GEOHistory, type GEOHistoryOptions, type GEOQuery, type GEOReport, type GEOResult, type GEOTrend, type GSCConfig, type GSCCredentials, type GSCPerformanceData, type GSCQueryData, type GSCQueryResult, type GeneratedCode, type GeneratedContent, type GeneratedFix, type HeadingStructure, type HeadlineAnalysis, type HealthScore, ISSUE_DEFINITIONS, type ImageInfo$1 as ImageInfo, type InjectionResult, type IntentAnalysis, type IssueCategory, type IssueDefinition, type IssueSeverity, type KeyFact, type KeyFactsOptions, type KeywordAction, type KeywordCluster, type KeywordData, type KeywordDensityAnalysis, type KeywordOpportunity, type KeywordRecommendation, type KeywordResearchOptions, type KeywordResearchResult, type KeywordStats, type KeywordTopic, type LLMCitationResult, type LLMJudgeOptions, type LLMProvider, LOCATION_CODES, type LSIKeyword, type LinkInfo, type Mention, type MentionType, type MetaData, type MetaFixOptions, type NGram, type NLPAnalysisResult, OG_IMAGE_SPECS, type OptimizeOptions, type PRConfig, type PRDescription, PRIORITY_WEIGHTS, type PRResult, type PageAudit, type PageData, type PageMeta, type PaidKeywordResult, type ParsedResponse, type PlanTier, type ProviderStats, type QuickWin, type ReadabilityResult, type ReadmeConfig, type ReadmeResult, type ReportBranding, type ReportConfig, type ReportData, type ReportPageData, type RouteInfo, type SEOAnalysisResult, type SEOFixCommit, type SEOFixSummary, type SEOIssue, type SEORecommendation, type SEOScore, SEO_SCOPES, SITE_PROFILE_QUESTIONS, type ScheduledAuditConfig, type ScheduledAuditResult, type SchemaData, Schemas, type SearchIntent, type Sentiment, type SiteCrawlResult, type SiteProfile, type SiteSummary, type SnippetRecommendation, type SnippetType, type SocialMetaConfig, type SocialMetaFix, type SummarizerOptions, type TFIDFResult, type ToolFeasibilityScore, type ToolFunction, type ToolResult, type TopicClusterResult, type TopicModel, type TrackingOptions, type TrendDirection, type UncertaintyAssessment, type WizardQuestion, type WizardResponse, type WizardResult, type WizardSession, type WorkflowConfig, addTrackingResult, analyzeAnchorText, analyzeCanonicalAdvanced, analyzeClientRendering, analyzeContentFreshness, analyzeConversionElements, analyzeDOMStructure, analyzeEntitySEO, analyzeFeaturedSnippetPotential, analyzeFreshnessSignals, analyzeFunnelIntent, analyzeHeadings, analyzeHeadline, analyzeHreflang, analyzeImages, analyzeInteractiveTools, analyzeKeywordDensity, analyzeKeywordPlacement, analyzeKeywords, analyzeLinks, analyzeLocalSEO, analyzeMobile, analyzeModernImages, analyzeNavBoostSignals, analyzeOnPage, analyzePagination, analyzePerformance, analyzePlatformPresence, analyzeReadability, analyzeRedirectChain, analyzeRedirects, analyzeResponsiveImages, analyzeSERPPreview, analyzeSecurity, analyzeSecurityHeaders, analyzeSocialMeta, analyzeStructuredData, analyzeTopicalClusters, analyzeTrackerBloat, analyzeUrl, analyzeUrlSafety, applyFixes, buildGSCApiRequest, buildGSCRequest, calculateAIVisibilityScore, calculateBM25, calculateTFIDF$1 as calculateKeywordTFIDF, calculateNextRun, calculateTFIDF, checkAIBotBlocking, checkAMP, checkAdsTxt, checkAppleTouchIcon, checkBalance, checkCertificate, checkDMARC, checkGitHubCLI, checkInternalRedirects, checkJSRenderingRatio, checkLLMCitations, checkLlmsTxt, checkMobileResources, checkPlaintextEmails, checkRedirects, checkRobots, checkRobotsTxt, checkSPF, checkSitemap, classifyIntent, classifyIntents, clusterKeywordsByEmbedding, compareCompetitorVisibility, comparePeriods, completeWizard, crawlSite, crawlUrl, createAuditPR, createFallbackSummary, createGEOHistory, createPullRequest, createSEOCommit, createSEOCommits, detectDuplicates, detectFramework$1 as detectFramework, detectGitHubPages, detectMentions, detectSoft404, detectTechnologies, detectVisibilityChanges, discoverCompetitorKeywords, discoverPagesFromLinks, discoverRoutesFromRepo, enhanceSummaryWithCompetitors, enhanceToolIdea, enrichKeywordsWithEstimates, ensureGitRepo, evaluateAndEnhanceToolIdeas, evaluateToolFeasibility, executeAgent, extractContentHash, extractEntityPhrases, extractImages, extractKeyPhrases, extractLinks, extractMeta, extractNgrams, extractSchema, extractSeedKeywords, extractTopics, fetchCoreWebVitals, findAlmostPage1Keywords, findCTROpportunities, findHtmlEntry, findLSIKeywords, findPageFiles, findTopPerformers, formatAlertMessage, formatCIResult, formatCompetitorReport, formatConventionalCommit, formatFeaturedSnippetReport, formatHeadlineReport, formatIntentReport, formatKeywordDensityReport, formatKeywordReport, formatPRBody, formatPRTitle, formatReadabilityReport, formatReport, formatSEOCommitMessage, formatTopicReport, formatWizardProgress, index as frameworks, generateAICitableContent, generateAllFixes, generateAngularSEOService, generateAstroBaseHead, generateAstroMeta, generateBlogPost, generateBranchName, generateChangelog, generateCommitSummary, generateComparisonTable, generateCompleteSocialMetaSetup, generateDuplicateIssues, generateFAQSchema, generateFixes, generateGA4EnvTemplate, generateGA4ReactComponent, generateGA4Script, generateGA4ViteScript, generateGEOReport, generateGSCVerificationTag, generateGitHubActionSetup, generateHTMLReport, generateHTMLSocialMeta, generateHeadlineVariations, generateJsonReport, generateKeyFacts, generateMarkdownReport, generateNextAppMetadata, generateNextJsAppRouterMetadata, generateNextJsPagesRouterHead, generateNextPagesHead, generateNuxtSEOHead, generatePDFReport, generatePRDescription, generateReactHelmetSocialMeta, generateReactSEOHead, generateRecommendationQueries, generateRemixMeta, generateSecretsDoc, generateSocialMetaFix, generateSvelteKitMeta, generateSvelteKitSEOHead, generateUncertaintyQuestions, generateVueSEOHead, generateWizardQuestions, generateWorkflow, getAIVisibilitySummary, getAutocompleteSuggestions, getDateRange, getExpandedSuggestions, getFrameworkSpecificFix, getGSCSetupInstructions, getGitUser, getKeywordData, getKeywordSuggestions, getMaxKdThreshold, getNextQuestion, getRelatedKeywords, getVisibilityTrend, groupKeywordsByTopic, identifyQuickWins, injectGA4, injectGSCVerification, interpolatePrompt, isGitRepo, listFiles, loadAgent, loadAgentByName, mergePages, optimizeForAI, optimizeReadme, parseGEOResponse, parseGSCResponse, parseSitemap, prioritizeKeywords, processWizardResponse, readFile, routesToUrls, runAIKeywordResearch, runAIReadinessChecks, runAdditionalChecks, runAuditWithFixes, runCIKeywordResearch, runCrawlabilityChecks, runDirectAnalysis, runFullAudit, runKeywordResearch, runNLPAnalysis, runScheduledAudit, runSyncAudit, scoreContentSEO, scoreMention, searchCompetitors, searchFormatConverters, searchHackerNews, sendAlert, sendAlerts, sendDiscordAlert, sendSlackAlert, shouldRunAudit, shouldSendAlert, startWizardSession, suggestSchemaTypes, summarizeSite, tokenize, tools, trackLLMVisibility, transformGSCData, urlSafetyDatabase, wizardResponsesToContext, writeFile, writeGitHubActionFiles };