@hol-org/rb-client 0.1.174 → 0.1.176
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.cjs +308 -1
- package/dist/index.d.cts +3074 -186
- package/dist/index.d.ts +3074 -186
- package/dist/index.js +308 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -32338,7 +32338,7 @@ declare const skillPublisherMetadataSchema: z.ZodObject<{
|
|
|
32338
32338
|
command: z.ZodString;
|
|
32339
32339
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32340
32340
|
}, z.ZodTypeAny, "passthrough">>;
|
|
32341
|
-
declare const skillTrustTierSchema: z.ZodEnum<["unpublished", "published", "verified", "hardened"]>;
|
|
32341
|
+
declare const skillTrustTierSchema: z.ZodEnum<["unpublished", "unclaimed", "validated", "published", "verified", "hardened"]>;
|
|
32342
32342
|
declare const skillStatusChecksSchema: z.ZodObject<{
|
|
32343
32343
|
repoCommitIntegrity: z.ZodBoolean;
|
|
32344
32344
|
manifestIntegrity: z.ZodBoolean;
|
|
@@ -32353,32 +32353,2006 @@ declare const skillStatusChecksSchema: z.ZodObject<{
|
|
|
32353
32353
|
domainProof: z.ZodBoolean;
|
|
32354
32354
|
}, z.ZodTypeAny, "passthrough">>;
|
|
32355
32355
|
declare const skillStatusNextStepSchema: z.ZodObject<{
|
|
32356
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
32357
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
32356
32358
|
id: z.ZodString;
|
|
32357
32359
|
label: z.ZodString;
|
|
32358
32360
|
description: z.ZodString;
|
|
32361
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32359
32362
|
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32360
32363
|
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32361
32364
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32365
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
32366
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
32362
32367
|
id: z.ZodString;
|
|
32363
32368
|
label: z.ZodString;
|
|
32364
32369
|
description: z.ZodString;
|
|
32370
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32365
32371
|
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32366
32372
|
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32367
32373
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32374
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
32375
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
32368
32376
|
id: z.ZodString;
|
|
32369
32377
|
label: z.ZodString;
|
|
32370
32378
|
description: z.ZodString;
|
|
32379
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32371
32380
|
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32372
32381
|
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32373
32382
|
}, z.ZodTypeAny, "passthrough">>;
|
|
32374
|
-
declare const
|
|
32383
|
+
declare const skillPreviewSuggestedNextStepSchema: z.ZodObject<{
|
|
32384
|
+
id: z.ZodString;
|
|
32385
|
+
label: z.ZodString;
|
|
32386
|
+
description: z.ZodString;
|
|
32387
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32388
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32389
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32390
|
+
id: z.ZodString;
|
|
32391
|
+
label: z.ZodString;
|
|
32392
|
+
description: z.ZodString;
|
|
32393
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32394
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32395
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32396
|
+
id: z.ZodString;
|
|
32397
|
+
label: z.ZodString;
|
|
32398
|
+
description: z.ZodString;
|
|
32399
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32400
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32401
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
32402
|
+
declare const skillPreviewReportSchema: z.ZodObject<{
|
|
32403
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32404
|
+
tool_version: z.ZodString;
|
|
32405
|
+
preview_id: z.ZodString;
|
|
32406
|
+
repo_url: z.ZodString;
|
|
32407
|
+
repo_owner: z.ZodString;
|
|
32408
|
+
repo_name: z.ZodString;
|
|
32409
|
+
default_branch: z.ZodString;
|
|
32410
|
+
commit_sha: z.ZodString;
|
|
32411
|
+
ref: z.ZodString;
|
|
32412
|
+
event_name: z.ZodString;
|
|
32413
|
+
workflow_run_url: z.ZodString;
|
|
32414
|
+
skill_dir: z.ZodString;
|
|
32415
|
+
name: z.ZodString;
|
|
32416
|
+
version: z.ZodString;
|
|
32417
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32418
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32419
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32420
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32421
|
+
id: z.ZodString;
|
|
32422
|
+
label: z.ZodString;
|
|
32423
|
+
description: z.ZodString;
|
|
32424
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32425
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32426
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32427
|
+
id: z.ZodString;
|
|
32428
|
+
label: z.ZodString;
|
|
32429
|
+
description: z.ZodString;
|
|
32430
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32431
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32432
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32433
|
+
id: z.ZodString;
|
|
32434
|
+
label: z.ZodString;
|
|
32435
|
+
description: z.ZodString;
|
|
32436
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32437
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32438
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32439
|
+
generated_at: z.ZodString;
|
|
32440
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32441
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32442
|
+
tool_version: z.ZodString;
|
|
32443
|
+
preview_id: z.ZodString;
|
|
32444
|
+
repo_url: z.ZodString;
|
|
32445
|
+
repo_owner: z.ZodString;
|
|
32446
|
+
repo_name: z.ZodString;
|
|
32447
|
+
default_branch: z.ZodString;
|
|
32448
|
+
commit_sha: z.ZodString;
|
|
32449
|
+
ref: z.ZodString;
|
|
32450
|
+
event_name: z.ZodString;
|
|
32451
|
+
workflow_run_url: z.ZodString;
|
|
32452
|
+
skill_dir: z.ZodString;
|
|
32453
|
+
name: z.ZodString;
|
|
32454
|
+
version: z.ZodString;
|
|
32455
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32456
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32457
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32458
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32459
|
+
id: z.ZodString;
|
|
32460
|
+
label: z.ZodString;
|
|
32461
|
+
description: z.ZodString;
|
|
32462
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32463
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32464
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32465
|
+
id: z.ZodString;
|
|
32466
|
+
label: z.ZodString;
|
|
32467
|
+
description: z.ZodString;
|
|
32468
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32469
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32470
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32471
|
+
id: z.ZodString;
|
|
32472
|
+
label: z.ZodString;
|
|
32473
|
+
description: z.ZodString;
|
|
32474
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32475
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32476
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32477
|
+
generated_at: z.ZodString;
|
|
32478
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32479
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32480
|
+
tool_version: z.ZodString;
|
|
32481
|
+
preview_id: z.ZodString;
|
|
32482
|
+
repo_url: z.ZodString;
|
|
32483
|
+
repo_owner: z.ZodString;
|
|
32484
|
+
repo_name: z.ZodString;
|
|
32485
|
+
default_branch: z.ZodString;
|
|
32486
|
+
commit_sha: z.ZodString;
|
|
32487
|
+
ref: z.ZodString;
|
|
32488
|
+
event_name: z.ZodString;
|
|
32489
|
+
workflow_run_url: z.ZodString;
|
|
32490
|
+
skill_dir: z.ZodString;
|
|
32491
|
+
name: z.ZodString;
|
|
32492
|
+
version: z.ZodString;
|
|
32493
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32494
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32495
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32496
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32497
|
+
id: z.ZodString;
|
|
32498
|
+
label: z.ZodString;
|
|
32499
|
+
description: z.ZodString;
|
|
32500
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32501
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32502
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32503
|
+
id: z.ZodString;
|
|
32504
|
+
label: z.ZodString;
|
|
32505
|
+
description: z.ZodString;
|
|
32506
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32507
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32508
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32509
|
+
id: z.ZodString;
|
|
32510
|
+
label: z.ZodString;
|
|
32511
|
+
description: z.ZodString;
|
|
32512
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32513
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32514
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32515
|
+
generated_at: z.ZodString;
|
|
32516
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
32517
|
+
declare const skillPreviewRecordSchema: z.ZodObject<{
|
|
32518
|
+
id: z.ZodString;
|
|
32519
|
+
previewId: z.ZodString;
|
|
32520
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
32521
|
+
report: z.ZodObject<{
|
|
32522
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32523
|
+
tool_version: z.ZodString;
|
|
32524
|
+
preview_id: z.ZodString;
|
|
32525
|
+
repo_url: z.ZodString;
|
|
32526
|
+
repo_owner: z.ZodString;
|
|
32527
|
+
repo_name: z.ZodString;
|
|
32528
|
+
default_branch: z.ZodString;
|
|
32529
|
+
commit_sha: z.ZodString;
|
|
32530
|
+
ref: z.ZodString;
|
|
32531
|
+
event_name: z.ZodString;
|
|
32532
|
+
workflow_run_url: z.ZodString;
|
|
32533
|
+
skill_dir: z.ZodString;
|
|
32534
|
+
name: z.ZodString;
|
|
32535
|
+
version: z.ZodString;
|
|
32536
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32537
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32538
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32539
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32540
|
+
id: z.ZodString;
|
|
32541
|
+
label: z.ZodString;
|
|
32542
|
+
description: z.ZodString;
|
|
32543
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32544
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32545
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32546
|
+
id: z.ZodString;
|
|
32547
|
+
label: z.ZodString;
|
|
32548
|
+
description: z.ZodString;
|
|
32549
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32550
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32551
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32552
|
+
id: z.ZodString;
|
|
32553
|
+
label: z.ZodString;
|
|
32554
|
+
description: z.ZodString;
|
|
32555
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32556
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32557
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32558
|
+
generated_at: z.ZodString;
|
|
32559
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32560
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32561
|
+
tool_version: z.ZodString;
|
|
32562
|
+
preview_id: z.ZodString;
|
|
32563
|
+
repo_url: z.ZodString;
|
|
32564
|
+
repo_owner: z.ZodString;
|
|
32565
|
+
repo_name: z.ZodString;
|
|
32566
|
+
default_branch: z.ZodString;
|
|
32567
|
+
commit_sha: z.ZodString;
|
|
32568
|
+
ref: z.ZodString;
|
|
32569
|
+
event_name: z.ZodString;
|
|
32570
|
+
workflow_run_url: z.ZodString;
|
|
32571
|
+
skill_dir: z.ZodString;
|
|
32572
|
+
name: z.ZodString;
|
|
32573
|
+
version: z.ZodString;
|
|
32574
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32575
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32576
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32577
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32578
|
+
id: z.ZodString;
|
|
32579
|
+
label: z.ZodString;
|
|
32580
|
+
description: z.ZodString;
|
|
32581
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32582
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32583
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32584
|
+
id: z.ZodString;
|
|
32585
|
+
label: z.ZodString;
|
|
32586
|
+
description: z.ZodString;
|
|
32587
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32588
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32589
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32590
|
+
id: z.ZodString;
|
|
32591
|
+
label: z.ZodString;
|
|
32592
|
+
description: z.ZodString;
|
|
32593
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32594
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32595
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32596
|
+
generated_at: z.ZodString;
|
|
32597
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32598
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32599
|
+
tool_version: z.ZodString;
|
|
32600
|
+
preview_id: z.ZodString;
|
|
32601
|
+
repo_url: z.ZodString;
|
|
32602
|
+
repo_owner: z.ZodString;
|
|
32603
|
+
repo_name: z.ZodString;
|
|
32604
|
+
default_branch: z.ZodString;
|
|
32605
|
+
commit_sha: z.ZodString;
|
|
32606
|
+
ref: z.ZodString;
|
|
32607
|
+
event_name: z.ZodString;
|
|
32608
|
+
workflow_run_url: z.ZodString;
|
|
32609
|
+
skill_dir: z.ZodString;
|
|
32610
|
+
name: z.ZodString;
|
|
32611
|
+
version: z.ZodString;
|
|
32612
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32613
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32614
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32615
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32616
|
+
id: z.ZodString;
|
|
32617
|
+
label: z.ZodString;
|
|
32618
|
+
description: z.ZodString;
|
|
32619
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32620
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32621
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32622
|
+
id: z.ZodString;
|
|
32623
|
+
label: z.ZodString;
|
|
32624
|
+
description: z.ZodString;
|
|
32625
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32626
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32627
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32628
|
+
id: z.ZodString;
|
|
32629
|
+
label: z.ZodString;
|
|
32630
|
+
description: z.ZodString;
|
|
32631
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32632
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32633
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32634
|
+
generated_at: z.ZodString;
|
|
32635
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
32636
|
+
generatedAt: z.ZodString;
|
|
32637
|
+
expiresAt: z.ZodString;
|
|
32638
|
+
statusUrl: z.ZodString;
|
|
32639
|
+
authoritative: z.ZodBoolean;
|
|
32640
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32641
|
+
id: z.ZodString;
|
|
32642
|
+
previewId: z.ZodString;
|
|
32643
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
32644
|
+
report: z.ZodObject<{
|
|
32645
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32646
|
+
tool_version: z.ZodString;
|
|
32647
|
+
preview_id: z.ZodString;
|
|
32648
|
+
repo_url: z.ZodString;
|
|
32649
|
+
repo_owner: z.ZodString;
|
|
32650
|
+
repo_name: z.ZodString;
|
|
32651
|
+
default_branch: z.ZodString;
|
|
32652
|
+
commit_sha: z.ZodString;
|
|
32653
|
+
ref: z.ZodString;
|
|
32654
|
+
event_name: z.ZodString;
|
|
32655
|
+
workflow_run_url: z.ZodString;
|
|
32656
|
+
skill_dir: z.ZodString;
|
|
32657
|
+
name: z.ZodString;
|
|
32658
|
+
version: z.ZodString;
|
|
32659
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32660
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32661
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32662
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32663
|
+
id: z.ZodString;
|
|
32664
|
+
label: z.ZodString;
|
|
32665
|
+
description: z.ZodString;
|
|
32666
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32667
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32668
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32669
|
+
id: z.ZodString;
|
|
32670
|
+
label: z.ZodString;
|
|
32671
|
+
description: z.ZodString;
|
|
32672
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32673
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32674
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32675
|
+
id: z.ZodString;
|
|
32676
|
+
label: z.ZodString;
|
|
32677
|
+
description: z.ZodString;
|
|
32678
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32679
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32680
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32681
|
+
generated_at: z.ZodString;
|
|
32682
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32683
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32684
|
+
tool_version: z.ZodString;
|
|
32685
|
+
preview_id: z.ZodString;
|
|
32686
|
+
repo_url: z.ZodString;
|
|
32687
|
+
repo_owner: z.ZodString;
|
|
32688
|
+
repo_name: z.ZodString;
|
|
32689
|
+
default_branch: z.ZodString;
|
|
32690
|
+
commit_sha: z.ZodString;
|
|
32691
|
+
ref: z.ZodString;
|
|
32692
|
+
event_name: z.ZodString;
|
|
32693
|
+
workflow_run_url: z.ZodString;
|
|
32694
|
+
skill_dir: z.ZodString;
|
|
32695
|
+
name: z.ZodString;
|
|
32696
|
+
version: z.ZodString;
|
|
32697
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32698
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32699
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32700
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32701
|
+
id: z.ZodString;
|
|
32702
|
+
label: z.ZodString;
|
|
32703
|
+
description: z.ZodString;
|
|
32704
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32705
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32706
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32707
|
+
id: z.ZodString;
|
|
32708
|
+
label: z.ZodString;
|
|
32709
|
+
description: z.ZodString;
|
|
32710
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32711
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32712
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32713
|
+
id: z.ZodString;
|
|
32714
|
+
label: z.ZodString;
|
|
32715
|
+
description: z.ZodString;
|
|
32716
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32717
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32718
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32719
|
+
generated_at: z.ZodString;
|
|
32720
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32721
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32722
|
+
tool_version: z.ZodString;
|
|
32723
|
+
preview_id: z.ZodString;
|
|
32724
|
+
repo_url: z.ZodString;
|
|
32725
|
+
repo_owner: z.ZodString;
|
|
32726
|
+
repo_name: z.ZodString;
|
|
32727
|
+
default_branch: z.ZodString;
|
|
32728
|
+
commit_sha: z.ZodString;
|
|
32729
|
+
ref: z.ZodString;
|
|
32730
|
+
event_name: z.ZodString;
|
|
32731
|
+
workflow_run_url: z.ZodString;
|
|
32732
|
+
skill_dir: z.ZodString;
|
|
32733
|
+
name: z.ZodString;
|
|
32734
|
+
version: z.ZodString;
|
|
32735
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32736
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32737
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32738
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32739
|
+
id: z.ZodString;
|
|
32740
|
+
label: z.ZodString;
|
|
32741
|
+
description: z.ZodString;
|
|
32742
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32743
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32744
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32745
|
+
id: z.ZodString;
|
|
32746
|
+
label: z.ZodString;
|
|
32747
|
+
description: z.ZodString;
|
|
32748
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32749
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32750
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32751
|
+
id: z.ZodString;
|
|
32752
|
+
label: z.ZodString;
|
|
32753
|
+
description: z.ZodString;
|
|
32754
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32755
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32756
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32757
|
+
generated_at: z.ZodString;
|
|
32758
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
32759
|
+
generatedAt: z.ZodString;
|
|
32760
|
+
expiresAt: z.ZodString;
|
|
32761
|
+
statusUrl: z.ZodString;
|
|
32762
|
+
authoritative: z.ZodBoolean;
|
|
32763
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32764
|
+
id: z.ZodString;
|
|
32765
|
+
previewId: z.ZodString;
|
|
32766
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
32767
|
+
report: z.ZodObject<{
|
|
32768
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32769
|
+
tool_version: z.ZodString;
|
|
32770
|
+
preview_id: z.ZodString;
|
|
32771
|
+
repo_url: z.ZodString;
|
|
32772
|
+
repo_owner: z.ZodString;
|
|
32773
|
+
repo_name: z.ZodString;
|
|
32774
|
+
default_branch: z.ZodString;
|
|
32775
|
+
commit_sha: z.ZodString;
|
|
32776
|
+
ref: z.ZodString;
|
|
32777
|
+
event_name: z.ZodString;
|
|
32778
|
+
workflow_run_url: z.ZodString;
|
|
32779
|
+
skill_dir: z.ZodString;
|
|
32780
|
+
name: z.ZodString;
|
|
32781
|
+
version: z.ZodString;
|
|
32782
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32783
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32784
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32785
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32786
|
+
id: z.ZodString;
|
|
32787
|
+
label: z.ZodString;
|
|
32788
|
+
description: z.ZodString;
|
|
32789
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32790
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32791
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32792
|
+
id: z.ZodString;
|
|
32793
|
+
label: z.ZodString;
|
|
32794
|
+
description: z.ZodString;
|
|
32795
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32796
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32797
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32798
|
+
id: z.ZodString;
|
|
32799
|
+
label: z.ZodString;
|
|
32800
|
+
description: z.ZodString;
|
|
32801
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32802
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32803
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32804
|
+
generated_at: z.ZodString;
|
|
32805
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32806
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32807
|
+
tool_version: z.ZodString;
|
|
32808
|
+
preview_id: z.ZodString;
|
|
32809
|
+
repo_url: z.ZodString;
|
|
32810
|
+
repo_owner: z.ZodString;
|
|
32811
|
+
repo_name: z.ZodString;
|
|
32812
|
+
default_branch: z.ZodString;
|
|
32813
|
+
commit_sha: z.ZodString;
|
|
32814
|
+
ref: z.ZodString;
|
|
32815
|
+
event_name: z.ZodString;
|
|
32816
|
+
workflow_run_url: z.ZodString;
|
|
32817
|
+
skill_dir: z.ZodString;
|
|
32818
|
+
name: z.ZodString;
|
|
32819
|
+
version: z.ZodString;
|
|
32820
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32821
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32822
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32823
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32824
|
+
id: z.ZodString;
|
|
32825
|
+
label: z.ZodString;
|
|
32826
|
+
description: z.ZodString;
|
|
32827
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32828
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32829
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32830
|
+
id: z.ZodString;
|
|
32831
|
+
label: z.ZodString;
|
|
32832
|
+
description: z.ZodString;
|
|
32833
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32834
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32835
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32836
|
+
id: z.ZodString;
|
|
32837
|
+
label: z.ZodString;
|
|
32838
|
+
description: z.ZodString;
|
|
32839
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32840
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32841
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32842
|
+
generated_at: z.ZodString;
|
|
32843
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32844
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32845
|
+
tool_version: z.ZodString;
|
|
32846
|
+
preview_id: z.ZodString;
|
|
32847
|
+
repo_url: z.ZodString;
|
|
32848
|
+
repo_owner: z.ZodString;
|
|
32849
|
+
repo_name: z.ZodString;
|
|
32850
|
+
default_branch: z.ZodString;
|
|
32851
|
+
commit_sha: z.ZodString;
|
|
32852
|
+
ref: z.ZodString;
|
|
32853
|
+
event_name: z.ZodString;
|
|
32854
|
+
workflow_run_url: z.ZodString;
|
|
32855
|
+
skill_dir: z.ZodString;
|
|
32856
|
+
name: z.ZodString;
|
|
32857
|
+
version: z.ZodString;
|
|
32858
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32859
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32860
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32861
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32862
|
+
id: z.ZodString;
|
|
32863
|
+
label: z.ZodString;
|
|
32864
|
+
description: z.ZodString;
|
|
32865
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32866
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32867
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32868
|
+
id: z.ZodString;
|
|
32869
|
+
label: z.ZodString;
|
|
32870
|
+
description: z.ZodString;
|
|
32871
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32872
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32873
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32874
|
+
id: z.ZodString;
|
|
32875
|
+
label: z.ZodString;
|
|
32876
|
+
description: z.ZodString;
|
|
32877
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32878
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32879
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32880
|
+
generated_at: z.ZodString;
|
|
32881
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
32882
|
+
generatedAt: z.ZodString;
|
|
32883
|
+
expiresAt: z.ZodString;
|
|
32884
|
+
statusUrl: z.ZodString;
|
|
32885
|
+
authoritative: z.ZodBoolean;
|
|
32886
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
32887
|
+
declare const skillPreviewLookupResponseSchema: z.ZodObject<{
|
|
32888
|
+
found: z.ZodBoolean;
|
|
32889
|
+
authoritative: z.ZodBoolean;
|
|
32890
|
+
preview: z.ZodNullable<z.ZodObject<{
|
|
32891
|
+
id: z.ZodString;
|
|
32892
|
+
previewId: z.ZodString;
|
|
32893
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
32894
|
+
report: z.ZodObject<{
|
|
32895
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32896
|
+
tool_version: z.ZodString;
|
|
32897
|
+
preview_id: z.ZodString;
|
|
32898
|
+
repo_url: z.ZodString;
|
|
32899
|
+
repo_owner: z.ZodString;
|
|
32900
|
+
repo_name: z.ZodString;
|
|
32901
|
+
default_branch: z.ZodString;
|
|
32902
|
+
commit_sha: z.ZodString;
|
|
32903
|
+
ref: z.ZodString;
|
|
32904
|
+
event_name: z.ZodString;
|
|
32905
|
+
workflow_run_url: z.ZodString;
|
|
32906
|
+
skill_dir: z.ZodString;
|
|
32907
|
+
name: z.ZodString;
|
|
32908
|
+
version: z.ZodString;
|
|
32909
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32910
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32911
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32912
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32913
|
+
id: z.ZodString;
|
|
32914
|
+
label: z.ZodString;
|
|
32915
|
+
description: z.ZodString;
|
|
32916
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32917
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32918
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32919
|
+
id: z.ZodString;
|
|
32920
|
+
label: z.ZodString;
|
|
32921
|
+
description: z.ZodString;
|
|
32922
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32923
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32924
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32925
|
+
id: z.ZodString;
|
|
32926
|
+
label: z.ZodString;
|
|
32927
|
+
description: z.ZodString;
|
|
32928
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32929
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32930
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32931
|
+
generated_at: z.ZodString;
|
|
32932
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32933
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32934
|
+
tool_version: z.ZodString;
|
|
32935
|
+
preview_id: z.ZodString;
|
|
32936
|
+
repo_url: z.ZodString;
|
|
32937
|
+
repo_owner: z.ZodString;
|
|
32938
|
+
repo_name: z.ZodString;
|
|
32939
|
+
default_branch: z.ZodString;
|
|
32940
|
+
commit_sha: z.ZodString;
|
|
32941
|
+
ref: z.ZodString;
|
|
32942
|
+
event_name: z.ZodString;
|
|
32943
|
+
workflow_run_url: z.ZodString;
|
|
32944
|
+
skill_dir: z.ZodString;
|
|
32945
|
+
name: z.ZodString;
|
|
32946
|
+
version: z.ZodString;
|
|
32947
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32948
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32949
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32950
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32951
|
+
id: z.ZodString;
|
|
32952
|
+
label: z.ZodString;
|
|
32953
|
+
description: z.ZodString;
|
|
32954
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32955
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32956
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32957
|
+
id: z.ZodString;
|
|
32958
|
+
label: z.ZodString;
|
|
32959
|
+
description: z.ZodString;
|
|
32960
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32961
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32962
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32963
|
+
id: z.ZodString;
|
|
32964
|
+
label: z.ZodString;
|
|
32965
|
+
description: z.ZodString;
|
|
32966
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32967
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32968
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32969
|
+
generated_at: z.ZodString;
|
|
32970
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32971
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
32972
|
+
tool_version: z.ZodString;
|
|
32973
|
+
preview_id: z.ZodString;
|
|
32974
|
+
repo_url: z.ZodString;
|
|
32975
|
+
repo_owner: z.ZodString;
|
|
32976
|
+
repo_name: z.ZodString;
|
|
32977
|
+
default_branch: z.ZodString;
|
|
32978
|
+
commit_sha: z.ZodString;
|
|
32979
|
+
ref: z.ZodString;
|
|
32980
|
+
event_name: z.ZodString;
|
|
32981
|
+
workflow_run_url: z.ZodString;
|
|
32982
|
+
skill_dir: z.ZodString;
|
|
32983
|
+
name: z.ZodString;
|
|
32984
|
+
version: z.ZodString;
|
|
32985
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
32986
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
32987
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
32988
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
32989
|
+
id: z.ZodString;
|
|
32990
|
+
label: z.ZodString;
|
|
32991
|
+
description: z.ZodString;
|
|
32992
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32993
|
+
href: z.ZodOptional<z.ZodString>;
|
|
32994
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32995
|
+
id: z.ZodString;
|
|
32996
|
+
label: z.ZodString;
|
|
32997
|
+
description: z.ZodString;
|
|
32998
|
+
command: z.ZodOptional<z.ZodString>;
|
|
32999
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33000
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33001
|
+
id: z.ZodString;
|
|
33002
|
+
label: z.ZodString;
|
|
33003
|
+
description: z.ZodString;
|
|
33004
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33005
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33006
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33007
|
+
generated_at: z.ZodString;
|
|
33008
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
33009
|
+
generatedAt: z.ZodString;
|
|
33010
|
+
expiresAt: z.ZodString;
|
|
33011
|
+
statusUrl: z.ZodString;
|
|
33012
|
+
authoritative: z.ZodBoolean;
|
|
33013
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33014
|
+
id: z.ZodString;
|
|
33015
|
+
previewId: z.ZodString;
|
|
33016
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
33017
|
+
report: z.ZodObject<{
|
|
33018
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33019
|
+
tool_version: z.ZodString;
|
|
33020
|
+
preview_id: z.ZodString;
|
|
33021
|
+
repo_url: z.ZodString;
|
|
33022
|
+
repo_owner: z.ZodString;
|
|
33023
|
+
repo_name: z.ZodString;
|
|
33024
|
+
default_branch: z.ZodString;
|
|
33025
|
+
commit_sha: z.ZodString;
|
|
33026
|
+
ref: z.ZodString;
|
|
33027
|
+
event_name: z.ZodString;
|
|
33028
|
+
workflow_run_url: z.ZodString;
|
|
33029
|
+
skill_dir: z.ZodString;
|
|
33030
|
+
name: z.ZodString;
|
|
33031
|
+
version: z.ZodString;
|
|
33032
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33033
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33034
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33035
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33036
|
+
id: z.ZodString;
|
|
33037
|
+
label: z.ZodString;
|
|
33038
|
+
description: z.ZodString;
|
|
33039
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33040
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33041
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33042
|
+
id: z.ZodString;
|
|
33043
|
+
label: z.ZodString;
|
|
33044
|
+
description: z.ZodString;
|
|
33045
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33046
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33047
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33048
|
+
id: z.ZodString;
|
|
33049
|
+
label: z.ZodString;
|
|
33050
|
+
description: z.ZodString;
|
|
33051
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33052
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33053
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33054
|
+
generated_at: z.ZodString;
|
|
33055
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33056
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33057
|
+
tool_version: z.ZodString;
|
|
33058
|
+
preview_id: z.ZodString;
|
|
33059
|
+
repo_url: z.ZodString;
|
|
33060
|
+
repo_owner: z.ZodString;
|
|
33061
|
+
repo_name: z.ZodString;
|
|
33062
|
+
default_branch: z.ZodString;
|
|
33063
|
+
commit_sha: z.ZodString;
|
|
33064
|
+
ref: z.ZodString;
|
|
33065
|
+
event_name: z.ZodString;
|
|
33066
|
+
workflow_run_url: z.ZodString;
|
|
33067
|
+
skill_dir: z.ZodString;
|
|
33068
|
+
name: z.ZodString;
|
|
33069
|
+
version: z.ZodString;
|
|
33070
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33071
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33072
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33073
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33074
|
+
id: z.ZodString;
|
|
33075
|
+
label: z.ZodString;
|
|
33076
|
+
description: z.ZodString;
|
|
33077
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33078
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33079
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33080
|
+
id: z.ZodString;
|
|
33081
|
+
label: z.ZodString;
|
|
33082
|
+
description: z.ZodString;
|
|
33083
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33084
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33085
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33086
|
+
id: z.ZodString;
|
|
33087
|
+
label: z.ZodString;
|
|
33088
|
+
description: z.ZodString;
|
|
33089
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33090
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33091
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33092
|
+
generated_at: z.ZodString;
|
|
33093
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33094
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33095
|
+
tool_version: z.ZodString;
|
|
33096
|
+
preview_id: z.ZodString;
|
|
33097
|
+
repo_url: z.ZodString;
|
|
33098
|
+
repo_owner: z.ZodString;
|
|
33099
|
+
repo_name: z.ZodString;
|
|
33100
|
+
default_branch: z.ZodString;
|
|
33101
|
+
commit_sha: z.ZodString;
|
|
33102
|
+
ref: z.ZodString;
|
|
33103
|
+
event_name: z.ZodString;
|
|
33104
|
+
workflow_run_url: z.ZodString;
|
|
33105
|
+
skill_dir: z.ZodString;
|
|
33106
|
+
name: z.ZodString;
|
|
33107
|
+
version: z.ZodString;
|
|
33108
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33109
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33110
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33111
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33112
|
+
id: z.ZodString;
|
|
33113
|
+
label: z.ZodString;
|
|
33114
|
+
description: z.ZodString;
|
|
33115
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33116
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33117
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33118
|
+
id: z.ZodString;
|
|
33119
|
+
label: z.ZodString;
|
|
33120
|
+
description: z.ZodString;
|
|
33121
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33122
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33123
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33124
|
+
id: z.ZodString;
|
|
33125
|
+
label: z.ZodString;
|
|
33126
|
+
description: z.ZodString;
|
|
33127
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33128
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33129
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33130
|
+
generated_at: z.ZodString;
|
|
33131
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
33132
|
+
generatedAt: z.ZodString;
|
|
33133
|
+
expiresAt: z.ZodString;
|
|
33134
|
+
statusUrl: z.ZodString;
|
|
33135
|
+
authoritative: z.ZodBoolean;
|
|
33136
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33137
|
+
id: z.ZodString;
|
|
33138
|
+
previewId: z.ZodString;
|
|
33139
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
33140
|
+
report: z.ZodObject<{
|
|
33141
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33142
|
+
tool_version: z.ZodString;
|
|
33143
|
+
preview_id: z.ZodString;
|
|
33144
|
+
repo_url: z.ZodString;
|
|
33145
|
+
repo_owner: z.ZodString;
|
|
33146
|
+
repo_name: z.ZodString;
|
|
33147
|
+
default_branch: z.ZodString;
|
|
33148
|
+
commit_sha: z.ZodString;
|
|
33149
|
+
ref: z.ZodString;
|
|
33150
|
+
event_name: z.ZodString;
|
|
33151
|
+
workflow_run_url: z.ZodString;
|
|
33152
|
+
skill_dir: z.ZodString;
|
|
33153
|
+
name: z.ZodString;
|
|
33154
|
+
version: z.ZodString;
|
|
33155
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33156
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33157
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33158
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33159
|
+
id: z.ZodString;
|
|
33160
|
+
label: z.ZodString;
|
|
33161
|
+
description: z.ZodString;
|
|
33162
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33163
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33164
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33165
|
+
id: z.ZodString;
|
|
33166
|
+
label: z.ZodString;
|
|
33167
|
+
description: z.ZodString;
|
|
33168
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33169
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33170
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33171
|
+
id: z.ZodString;
|
|
33172
|
+
label: z.ZodString;
|
|
33173
|
+
description: z.ZodString;
|
|
33174
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33175
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33176
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33177
|
+
generated_at: z.ZodString;
|
|
33178
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33179
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33180
|
+
tool_version: z.ZodString;
|
|
33181
|
+
preview_id: z.ZodString;
|
|
33182
|
+
repo_url: z.ZodString;
|
|
33183
|
+
repo_owner: z.ZodString;
|
|
33184
|
+
repo_name: z.ZodString;
|
|
33185
|
+
default_branch: z.ZodString;
|
|
33186
|
+
commit_sha: z.ZodString;
|
|
33187
|
+
ref: z.ZodString;
|
|
33188
|
+
event_name: z.ZodString;
|
|
33189
|
+
workflow_run_url: z.ZodString;
|
|
33190
|
+
skill_dir: z.ZodString;
|
|
33191
|
+
name: z.ZodString;
|
|
33192
|
+
version: z.ZodString;
|
|
33193
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33194
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33195
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33196
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33197
|
+
id: z.ZodString;
|
|
33198
|
+
label: z.ZodString;
|
|
33199
|
+
description: z.ZodString;
|
|
33200
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33201
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33202
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33203
|
+
id: z.ZodString;
|
|
33204
|
+
label: z.ZodString;
|
|
33205
|
+
description: z.ZodString;
|
|
33206
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33207
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33208
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33209
|
+
id: z.ZodString;
|
|
33210
|
+
label: z.ZodString;
|
|
33211
|
+
description: z.ZodString;
|
|
33212
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33213
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33214
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33215
|
+
generated_at: z.ZodString;
|
|
33216
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33217
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33218
|
+
tool_version: z.ZodString;
|
|
33219
|
+
preview_id: z.ZodString;
|
|
33220
|
+
repo_url: z.ZodString;
|
|
33221
|
+
repo_owner: z.ZodString;
|
|
33222
|
+
repo_name: z.ZodString;
|
|
33223
|
+
default_branch: z.ZodString;
|
|
33224
|
+
commit_sha: z.ZodString;
|
|
33225
|
+
ref: z.ZodString;
|
|
33226
|
+
event_name: z.ZodString;
|
|
33227
|
+
workflow_run_url: z.ZodString;
|
|
33228
|
+
skill_dir: z.ZodString;
|
|
33229
|
+
name: z.ZodString;
|
|
33230
|
+
version: z.ZodString;
|
|
33231
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33232
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33233
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33234
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33235
|
+
id: z.ZodString;
|
|
33236
|
+
label: z.ZodString;
|
|
33237
|
+
description: z.ZodString;
|
|
33238
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33239
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33240
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33241
|
+
id: z.ZodString;
|
|
33242
|
+
label: z.ZodString;
|
|
33243
|
+
description: z.ZodString;
|
|
33244
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33245
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33246
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33247
|
+
id: z.ZodString;
|
|
33248
|
+
label: z.ZodString;
|
|
33249
|
+
description: z.ZodString;
|
|
33250
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33251
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33252
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33253
|
+
generated_at: z.ZodString;
|
|
33254
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
33255
|
+
generatedAt: z.ZodString;
|
|
33256
|
+
expiresAt: z.ZodString;
|
|
33257
|
+
statusUrl: z.ZodString;
|
|
33258
|
+
authoritative: z.ZodBoolean;
|
|
33259
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
33260
|
+
statusUrl: z.ZodNullable<z.ZodString>;
|
|
33261
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
33262
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33263
|
+
found: z.ZodBoolean;
|
|
33264
|
+
authoritative: z.ZodBoolean;
|
|
33265
|
+
preview: z.ZodNullable<z.ZodObject<{
|
|
33266
|
+
id: z.ZodString;
|
|
33267
|
+
previewId: z.ZodString;
|
|
33268
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
33269
|
+
report: z.ZodObject<{
|
|
33270
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33271
|
+
tool_version: z.ZodString;
|
|
33272
|
+
preview_id: z.ZodString;
|
|
33273
|
+
repo_url: z.ZodString;
|
|
33274
|
+
repo_owner: z.ZodString;
|
|
33275
|
+
repo_name: z.ZodString;
|
|
33276
|
+
default_branch: z.ZodString;
|
|
33277
|
+
commit_sha: z.ZodString;
|
|
33278
|
+
ref: z.ZodString;
|
|
33279
|
+
event_name: z.ZodString;
|
|
33280
|
+
workflow_run_url: z.ZodString;
|
|
33281
|
+
skill_dir: z.ZodString;
|
|
33282
|
+
name: z.ZodString;
|
|
33283
|
+
version: z.ZodString;
|
|
33284
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33285
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33286
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33287
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33288
|
+
id: z.ZodString;
|
|
33289
|
+
label: z.ZodString;
|
|
33290
|
+
description: z.ZodString;
|
|
33291
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33292
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33293
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33294
|
+
id: z.ZodString;
|
|
33295
|
+
label: z.ZodString;
|
|
33296
|
+
description: z.ZodString;
|
|
33297
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33298
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33299
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33300
|
+
id: z.ZodString;
|
|
33301
|
+
label: z.ZodString;
|
|
33302
|
+
description: z.ZodString;
|
|
33303
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33304
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33305
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33306
|
+
generated_at: z.ZodString;
|
|
33307
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33308
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33309
|
+
tool_version: z.ZodString;
|
|
33310
|
+
preview_id: z.ZodString;
|
|
33311
|
+
repo_url: z.ZodString;
|
|
33312
|
+
repo_owner: z.ZodString;
|
|
33313
|
+
repo_name: z.ZodString;
|
|
33314
|
+
default_branch: z.ZodString;
|
|
33315
|
+
commit_sha: z.ZodString;
|
|
33316
|
+
ref: z.ZodString;
|
|
33317
|
+
event_name: z.ZodString;
|
|
33318
|
+
workflow_run_url: z.ZodString;
|
|
33319
|
+
skill_dir: z.ZodString;
|
|
33320
|
+
name: z.ZodString;
|
|
33321
|
+
version: z.ZodString;
|
|
33322
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33323
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33324
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33325
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33326
|
+
id: z.ZodString;
|
|
33327
|
+
label: z.ZodString;
|
|
33328
|
+
description: z.ZodString;
|
|
33329
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33330
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33331
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33332
|
+
id: z.ZodString;
|
|
33333
|
+
label: z.ZodString;
|
|
33334
|
+
description: z.ZodString;
|
|
33335
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33336
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33337
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33338
|
+
id: z.ZodString;
|
|
33339
|
+
label: z.ZodString;
|
|
33340
|
+
description: z.ZodString;
|
|
33341
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33342
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33343
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33344
|
+
generated_at: z.ZodString;
|
|
33345
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33346
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33347
|
+
tool_version: z.ZodString;
|
|
33348
|
+
preview_id: z.ZodString;
|
|
33349
|
+
repo_url: z.ZodString;
|
|
33350
|
+
repo_owner: z.ZodString;
|
|
33351
|
+
repo_name: z.ZodString;
|
|
33352
|
+
default_branch: z.ZodString;
|
|
33353
|
+
commit_sha: z.ZodString;
|
|
33354
|
+
ref: z.ZodString;
|
|
33355
|
+
event_name: z.ZodString;
|
|
33356
|
+
workflow_run_url: z.ZodString;
|
|
33357
|
+
skill_dir: z.ZodString;
|
|
33358
|
+
name: z.ZodString;
|
|
33359
|
+
version: z.ZodString;
|
|
33360
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33361
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33362
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33363
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33364
|
+
id: z.ZodString;
|
|
33365
|
+
label: z.ZodString;
|
|
33366
|
+
description: z.ZodString;
|
|
33367
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33368
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33369
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33370
|
+
id: z.ZodString;
|
|
33371
|
+
label: z.ZodString;
|
|
33372
|
+
description: z.ZodString;
|
|
33373
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33374
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33375
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33376
|
+
id: z.ZodString;
|
|
33377
|
+
label: z.ZodString;
|
|
33378
|
+
description: z.ZodString;
|
|
33379
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33380
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33381
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33382
|
+
generated_at: z.ZodString;
|
|
33383
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
33384
|
+
generatedAt: z.ZodString;
|
|
33385
|
+
expiresAt: z.ZodString;
|
|
33386
|
+
statusUrl: z.ZodString;
|
|
33387
|
+
authoritative: z.ZodBoolean;
|
|
33388
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33389
|
+
id: z.ZodString;
|
|
33390
|
+
previewId: z.ZodString;
|
|
33391
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
33392
|
+
report: z.ZodObject<{
|
|
33393
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33394
|
+
tool_version: z.ZodString;
|
|
33395
|
+
preview_id: z.ZodString;
|
|
33396
|
+
repo_url: z.ZodString;
|
|
33397
|
+
repo_owner: z.ZodString;
|
|
33398
|
+
repo_name: z.ZodString;
|
|
33399
|
+
default_branch: z.ZodString;
|
|
33400
|
+
commit_sha: z.ZodString;
|
|
33401
|
+
ref: z.ZodString;
|
|
33402
|
+
event_name: z.ZodString;
|
|
33403
|
+
workflow_run_url: z.ZodString;
|
|
33404
|
+
skill_dir: z.ZodString;
|
|
33405
|
+
name: z.ZodString;
|
|
33406
|
+
version: z.ZodString;
|
|
33407
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33408
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33409
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33410
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33411
|
+
id: z.ZodString;
|
|
33412
|
+
label: z.ZodString;
|
|
33413
|
+
description: z.ZodString;
|
|
33414
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33415
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33416
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33417
|
+
id: z.ZodString;
|
|
33418
|
+
label: z.ZodString;
|
|
33419
|
+
description: z.ZodString;
|
|
33420
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33421
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33422
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33423
|
+
id: z.ZodString;
|
|
33424
|
+
label: z.ZodString;
|
|
33425
|
+
description: z.ZodString;
|
|
33426
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33427
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33428
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33429
|
+
generated_at: z.ZodString;
|
|
33430
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33431
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33432
|
+
tool_version: z.ZodString;
|
|
33433
|
+
preview_id: z.ZodString;
|
|
33434
|
+
repo_url: z.ZodString;
|
|
33435
|
+
repo_owner: z.ZodString;
|
|
33436
|
+
repo_name: z.ZodString;
|
|
33437
|
+
default_branch: z.ZodString;
|
|
33438
|
+
commit_sha: z.ZodString;
|
|
33439
|
+
ref: z.ZodString;
|
|
33440
|
+
event_name: z.ZodString;
|
|
33441
|
+
workflow_run_url: z.ZodString;
|
|
33442
|
+
skill_dir: z.ZodString;
|
|
33443
|
+
name: z.ZodString;
|
|
33444
|
+
version: z.ZodString;
|
|
33445
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33446
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33447
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33448
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33449
|
+
id: z.ZodString;
|
|
33450
|
+
label: z.ZodString;
|
|
33451
|
+
description: z.ZodString;
|
|
33452
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33453
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33454
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33455
|
+
id: z.ZodString;
|
|
33456
|
+
label: z.ZodString;
|
|
33457
|
+
description: z.ZodString;
|
|
33458
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33459
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33460
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33461
|
+
id: z.ZodString;
|
|
33462
|
+
label: z.ZodString;
|
|
33463
|
+
description: z.ZodString;
|
|
33464
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33465
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33466
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33467
|
+
generated_at: z.ZodString;
|
|
33468
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33469
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33470
|
+
tool_version: z.ZodString;
|
|
33471
|
+
preview_id: z.ZodString;
|
|
33472
|
+
repo_url: z.ZodString;
|
|
33473
|
+
repo_owner: z.ZodString;
|
|
33474
|
+
repo_name: z.ZodString;
|
|
33475
|
+
default_branch: z.ZodString;
|
|
33476
|
+
commit_sha: z.ZodString;
|
|
33477
|
+
ref: z.ZodString;
|
|
33478
|
+
event_name: z.ZodString;
|
|
33479
|
+
workflow_run_url: z.ZodString;
|
|
33480
|
+
skill_dir: z.ZodString;
|
|
33481
|
+
name: z.ZodString;
|
|
33482
|
+
version: z.ZodString;
|
|
33483
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33484
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33485
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33486
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33487
|
+
id: z.ZodString;
|
|
33488
|
+
label: z.ZodString;
|
|
33489
|
+
description: z.ZodString;
|
|
33490
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33491
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33492
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33493
|
+
id: z.ZodString;
|
|
33494
|
+
label: z.ZodString;
|
|
33495
|
+
description: z.ZodString;
|
|
33496
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33497
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33498
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33499
|
+
id: z.ZodString;
|
|
33500
|
+
label: z.ZodString;
|
|
33501
|
+
description: z.ZodString;
|
|
33502
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33503
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33504
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33505
|
+
generated_at: z.ZodString;
|
|
33506
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
33507
|
+
generatedAt: z.ZodString;
|
|
33508
|
+
expiresAt: z.ZodString;
|
|
33509
|
+
statusUrl: z.ZodString;
|
|
33510
|
+
authoritative: z.ZodBoolean;
|
|
33511
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33512
|
+
id: z.ZodString;
|
|
33513
|
+
previewId: z.ZodString;
|
|
33514
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
33515
|
+
report: z.ZodObject<{
|
|
33516
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33517
|
+
tool_version: z.ZodString;
|
|
33518
|
+
preview_id: z.ZodString;
|
|
33519
|
+
repo_url: z.ZodString;
|
|
33520
|
+
repo_owner: z.ZodString;
|
|
33521
|
+
repo_name: z.ZodString;
|
|
33522
|
+
default_branch: z.ZodString;
|
|
33523
|
+
commit_sha: z.ZodString;
|
|
33524
|
+
ref: z.ZodString;
|
|
33525
|
+
event_name: z.ZodString;
|
|
33526
|
+
workflow_run_url: z.ZodString;
|
|
33527
|
+
skill_dir: z.ZodString;
|
|
33528
|
+
name: z.ZodString;
|
|
33529
|
+
version: z.ZodString;
|
|
33530
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33531
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33532
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33533
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33534
|
+
id: z.ZodString;
|
|
33535
|
+
label: z.ZodString;
|
|
33536
|
+
description: z.ZodString;
|
|
33537
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33538
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33539
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33540
|
+
id: z.ZodString;
|
|
33541
|
+
label: z.ZodString;
|
|
33542
|
+
description: z.ZodString;
|
|
33543
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33544
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33545
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33546
|
+
id: z.ZodString;
|
|
33547
|
+
label: z.ZodString;
|
|
33548
|
+
description: z.ZodString;
|
|
33549
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33550
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33551
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33552
|
+
generated_at: z.ZodString;
|
|
33553
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33554
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33555
|
+
tool_version: z.ZodString;
|
|
33556
|
+
preview_id: z.ZodString;
|
|
33557
|
+
repo_url: z.ZodString;
|
|
33558
|
+
repo_owner: z.ZodString;
|
|
33559
|
+
repo_name: z.ZodString;
|
|
33560
|
+
default_branch: z.ZodString;
|
|
33561
|
+
commit_sha: z.ZodString;
|
|
33562
|
+
ref: z.ZodString;
|
|
33563
|
+
event_name: z.ZodString;
|
|
33564
|
+
workflow_run_url: z.ZodString;
|
|
33565
|
+
skill_dir: z.ZodString;
|
|
33566
|
+
name: z.ZodString;
|
|
33567
|
+
version: z.ZodString;
|
|
33568
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33569
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33570
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33571
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33572
|
+
id: z.ZodString;
|
|
33573
|
+
label: z.ZodString;
|
|
33574
|
+
description: z.ZodString;
|
|
33575
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33576
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33577
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33578
|
+
id: z.ZodString;
|
|
33579
|
+
label: z.ZodString;
|
|
33580
|
+
description: z.ZodString;
|
|
33581
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33582
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33583
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33584
|
+
id: z.ZodString;
|
|
33585
|
+
label: z.ZodString;
|
|
33586
|
+
description: z.ZodString;
|
|
33587
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33588
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33589
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33590
|
+
generated_at: z.ZodString;
|
|
33591
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33592
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33593
|
+
tool_version: z.ZodString;
|
|
33594
|
+
preview_id: z.ZodString;
|
|
33595
|
+
repo_url: z.ZodString;
|
|
33596
|
+
repo_owner: z.ZodString;
|
|
33597
|
+
repo_name: z.ZodString;
|
|
33598
|
+
default_branch: z.ZodString;
|
|
33599
|
+
commit_sha: z.ZodString;
|
|
33600
|
+
ref: z.ZodString;
|
|
33601
|
+
event_name: z.ZodString;
|
|
33602
|
+
workflow_run_url: z.ZodString;
|
|
33603
|
+
skill_dir: z.ZodString;
|
|
33604
|
+
name: z.ZodString;
|
|
33605
|
+
version: z.ZodString;
|
|
33606
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33607
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33608
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33609
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33610
|
+
id: z.ZodString;
|
|
33611
|
+
label: z.ZodString;
|
|
33612
|
+
description: z.ZodString;
|
|
33613
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33614
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33615
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33616
|
+
id: z.ZodString;
|
|
33617
|
+
label: z.ZodString;
|
|
33618
|
+
description: z.ZodString;
|
|
33619
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33620
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33621
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33622
|
+
id: z.ZodString;
|
|
33623
|
+
label: z.ZodString;
|
|
33624
|
+
description: z.ZodString;
|
|
33625
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33626
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33627
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33628
|
+
generated_at: z.ZodString;
|
|
33629
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
33630
|
+
generatedAt: z.ZodString;
|
|
33631
|
+
expiresAt: z.ZodString;
|
|
33632
|
+
statusUrl: z.ZodString;
|
|
33633
|
+
authoritative: z.ZodBoolean;
|
|
33634
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
33635
|
+
statusUrl: z.ZodNullable<z.ZodString>;
|
|
33636
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
33637
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33638
|
+
found: z.ZodBoolean;
|
|
33639
|
+
authoritative: z.ZodBoolean;
|
|
33640
|
+
preview: z.ZodNullable<z.ZodObject<{
|
|
33641
|
+
id: z.ZodString;
|
|
33642
|
+
previewId: z.ZodString;
|
|
33643
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
33644
|
+
report: z.ZodObject<{
|
|
33645
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33646
|
+
tool_version: z.ZodString;
|
|
33647
|
+
preview_id: z.ZodString;
|
|
33648
|
+
repo_url: z.ZodString;
|
|
33649
|
+
repo_owner: z.ZodString;
|
|
33650
|
+
repo_name: z.ZodString;
|
|
33651
|
+
default_branch: z.ZodString;
|
|
33652
|
+
commit_sha: z.ZodString;
|
|
33653
|
+
ref: z.ZodString;
|
|
33654
|
+
event_name: z.ZodString;
|
|
33655
|
+
workflow_run_url: z.ZodString;
|
|
33656
|
+
skill_dir: z.ZodString;
|
|
33657
|
+
name: z.ZodString;
|
|
33658
|
+
version: z.ZodString;
|
|
33659
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33660
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33661
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33662
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33663
|
+
id: z.ZodString;
|
|
33664
|
+
label: z.ZodString;
|
|
33665
|
+
description: z.ZodString;
|
|
33666
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33667
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33668
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33669
|
+
id: z.ZodString;
|
|
33670
|
+
label: z.ZodString;
|
|
33671
|
+
description: z.ZodString;
|
|
33672
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33673
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33674
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33675
|
+
id: z.ZodString;
|
|
33676
|
+
label: z.ZodString;
|
|
33677
|
+
description: z.ZodString;
|
|
33678
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33679
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33680
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33681
|
+
generated_at: z.ZodString;
|
|
33682
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33683
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33684
|
+
tool_version: z.ZodString;
|
|
33685
|
+
preview_id: z.ZodString;
|
|
33686
|
+
repo_url: z.ZodString;
|
|
33687
|
+
repo_owner: z.ZodString;
|
|
33688
|
+
repo_name: z.ZodString;
|
|
33689
|
+
default_branch: z.ZodString;
|
|
33690
|
+
commit_sha: z.ZodString;
|
|
33691
|
+
ref: z.ZodString;
|
|
33692
|
+
event_name: z.ZodString;
|
|
33693
|
+
workflow_run_url: z.ZodString;
|
|
33694
|
+
skill_dir: z.ZodString;
|
|
33695
|
+
name: z.ZodString;
|
|
33696
|
+
version: z.ZodString;
|
|
33697
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33698
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33699
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33700
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33701
|
+
id: z.ZodString;
|
|
33702
|
+
label: z.ZodString;
|
|
33703
|
+
description: z.ZodString;
|
|
33704
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33705
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33706
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33707
|
+
id: z.ZodString;
|
|
33708
|
+
label: z.ZodString;
|
|
33709
|
+
description: z.ZodString;
|
|
33710
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33711
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33712
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33713
|
+
id: z.ZodString;
|
|
33714
|
+
label: z.ZodString;
|
|
33715
|
+
description: z.ZodString;
|
|
33716
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33717
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33718
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33719
|
+
generated_at: z.ZodString;
|
|
33720
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33721
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33722
|
+
tool_version: z.ZodString;
|
|
33723
|
+
preview_id: z.ZodString;
|
|
33724
|
+
repo_url: z.ZodString;
|
|
33725
|
+
repo_owner: z.ZodString;
|
|
33726
|
+
repo_name: z.ZodString;
|
|
33727
|
+
default_branch: z.ZodString;
|
|
33728
|
+
commit_sha: z.ZodString;
|
|
33729
|
+
ref: z.ZodString;
|
|
33730
|
+
event_name: z.ZodString;
|
|
33731
|
+
workflow_run_url: z.ZodString;
|
|
33732
|
+
skill_dir: z.ZodString;
|
|
33733
|
+
name: z.ZodString;
|
|
33734
|
+
version: z.ZodString;
|
|
33735
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33736
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33737
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33738
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33739
|
+
id: z.ZodString;
|
|
33740
|
+
label: z.ZodString;
|
|
33741
|
+
description: z.ZodString;
|
|
33742
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33743
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33744
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33745
|
+
id: z.ZodString;
|
|
33746
|
+
label: z.ZodString;
|
|
33747
|
+
description: z.ZodString;
|
|
33748
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33749
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33750
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33751
|
+
id: z.ZodString;
|
|
33752
|
+
label: z.ZodString;
|
|
33753
|
+
description: z.ZodString;
|
|
33754
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33755
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33756
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33757
|
+
generated_at: z.ZodString;
|
|
33758
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
33759
|
+
generatedAt: z.ZodString;
|
|
33760
|
+
expiresAt: z.ZodString;
|
|
33761
|
+
statusUrl: z.ZodString;
|
|
33762
|
+
authoritative: z.ZodBoolean;
|
|
33763
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33764
|
+
id: z.ZodString;
|
|
33765
|
+
previewId: z.ZodString;
|
|
33766
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
33767
|
+
report: z.ZodObject<{
|
|
33768
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33769
|
+
tool_version: z.ZodString;
|
|
33770
|
+
preview_id: z.ZodString;
|
|
33771
|
+
repo_url: z.ZodString;
|
|
33772
|
+
repo_owner: z.ZodString;
|
|
33773
|
+
repo_name: z.ZodString;
|
|
33774
|
+
default_branch: z.ZodString;
|
|
33775
|
+
commit_sha: z.ZodString;
|
|
33776
|
+
ref: z.ZodString;
|
|
33777
|
+
event_name: z.ZodString;
|
|
33778
|
+
workflow_run_url: z.ZodString;
|
|
33779
|
+
skill_dir: z.ZodString;
|
|
33780
|
+
name: z.ZodString;
|
|
33781
|
+
version: z.ZodString;
|
|
33782
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33783
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33784
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33785
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33786
|
+
id: z.ZodString;
|
|
33787
|
+
label: z.ZodString;
|
|
33788
|
+
description: z.ZodString;
|
|
33789
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33790
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33791
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33792
|
+
id: z.ZodString;
|
|
33793
|
+
label: z.ZodString;
|
|
33794
|
+
description: z.ZodString;
|
|
33795
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33796
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33797
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33798
|
+
id: z.ZodString;
|
|
33799
|
+
label: z.ZodString;
|
|
33800
|
+
description: z.ZodString;
|
|
33801
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33802
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33803
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33804
|
+
generated_at: z.ZodString;
|
|
33805
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33806
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33807
|
+
tool_version: z.ZodString;
|
|
33808
|
+
preview_id: z.ZodString;
|
|
33809
|
+
repo_url: z.ZodString;
|
|
33810
|
+
repo_owner: z.ZodString;
|
|
33811
|
+
repo_name: z.ZodString;
|
|
33812
|
+
default_branch: z.ZodString;
|
|
33813
|
+
commit_sha: z.ZodString;
|
|
33814
|
+
ref: z.ZodString;
|
|
33815
|
+
event_name: z.ZodString;
|
|
33816
|
+
workflow_run_url: z.ZodString;
|
|
33817
|
+
skill_dir: z.ZodString;
|
|
33818
|
+
name: z.ZodString;
|
|
33819
|
+
version: z.ZodString;
|
|
33820
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33821
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33822
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33823
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33824
|
+
id: z.ZodString;
|
|
33825
|
+
label: z.ZodString;
|
|
33826
|
+
description: z.ZodString;
|
|
33827
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33828
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33829
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33830
|
+
id: z.ZodString;
|
|
33831
|
+
label: z.ZodString;
|
|
33832
|
+
description: z.ZodString;
|
|
33833
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33834
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33835
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33836
|
+
id: z.ZodString;
|
|
33837
|
+
label: z.ZodString;
|
|
33838
|
+
description: z.ZodString;
|
|
33839
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33840
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33841
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33842
|
+
generated_at: z.ZodString;
|
|
33843
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33844
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33845
|
+
tool_version: z.ZodString;
|
|
33846
|
+
preview_id: z.ZodString;
|
|
33847
|
+
repo_url: z.ZodString;
|
|
33848
|
+
repo_owner: z.ZodString;
|
|
33849
|
+
repo_name: z.ZodString;
|
|
33850
|
+
default_branch: z.ZodString;
|
|
33851
|
+
commit_sha: z.ZodString;
|
|
33852
|
+
ref: z.ZodString;
|
|
33853
|
+
event_name: z.ZodString;
|
|
33854
|
+
workflow_run_url: z.ZodString;
|
|
33855
|
+
skill_dir: z.ZodString;
|
|
33856
|
+
name: z.ZodString;
|
|
33857
|
+
version: z.ZodString;
|
|
33858
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33859
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33860
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33861
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33862
|
+
id: z.ZodString;
|
|
33863
|
+
label: z.ZodString;
|
|
33864
|
+
description: z.ZodString;
|
|
33865
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33866
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33867
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33868
|
+
id: z.ZodString;
|
|
33869
|
+
label: z.ZodString;
|
|
33870
|
+
description: z.ZodString;
|
|
33871
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33872
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33873
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33874
|
+
id: z.ZodString;
|
|
33875
|
+
label: z.ZodString;
|
|
33876
|
+
description: z.ZodString;
|
|
33877
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33878
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33879
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33880
|
+
generated_at: z.ZodString;
|
|
33881
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
33882
|
+
generatedAt: z.ZodString;
|
|
33883
|
+
expiresAt: z.ZodString;
|
|
33884
|
+
statusUrl: z.ZodString;
|
|
33885
|
+
authoritative: z.ZodBoolean;
|
|
33886
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33887
|
+
id: z.ZodString;
|
|
33888
|
+
previewId: z.ZodString;
|
|
33889
|
+
source: z.ZodLiteral<"github-oidc">;
|
|
33890
|
+
report: z.ZodObject<{
|
|
33891
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33892
|
+
tool_version: z.ZodString;
|
|
33893
|
+
preview_id: z.ZodString;
|
|
33894
|
+
repo_url: z.ZodString;
|
|
33895
|
+
repo_owner: z.ZodString;
|
|
33896
|
+
repo_name: z.ZodString;
|
|
33897
|
+
default_branch: z.ZodString;
|
|
33898
|
+
commit_sha: z.ZodString;
|
|
33899
|
+
ref: z.ZodString;
|
|
33900
|
+
event_name: z.ZodString;
|
|
33901
|
+
workflow_run_url: z.ZodString;
|
|
33902
|
+
skill_dir: z.ZodString;
|
|
33903
|
+
name: z.ZodString;
|
|
33904
|
+
version: z.ZodString;
|
|
33905
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33906
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33907
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33908
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33909
|
+
id: z.ZodString;
|
|
33910
|
+
label: z.ZodString;
|
|
33911
|
+
description: z.ZodString;
|
|
33912
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33913
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33914
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33915
|
+
id: z.ZodString;
|
|
33916
|
+
label: z.ZodString;
|
|
33917
|
+
description: z.ZodString;
|
|
33918
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33919
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33920
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33921
|
+
id: z.ZodString;
|
|
33922
|
+
label: z.ZodString;
|
|
33923
|
+
description: z.ZodString;
|
|
33924
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33925
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33926
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33927
|
+
generated_at: z.ZodString;
|
|
33928
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33929
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33930
|
+
tool_version: z.ZodString;
|
|
33931
|
+
preview_id: z.ZodString;
|
|
33932
|
+
repo_url: z.ZodString;
|
|
33933
|
+
repo_owner: z.ZodString;
|
|
33934
|
+
repo_name: z.ZodString;
|
|
33935
|
+
default_branch: z.ZodString;
|
|
33936
|
+
commit_sha: z.ZodString;
|
|
33937
|
+
ref: z.ZodString;
|
|
33938
|
+
event_name: z.ZodString;
|
|
33939
|
+
workflow_run_url: z.ZodString;
|
|
33940
|
+
skill_dir: z.ZodString;
|
|
33941
|
+
name: z.ZodString;
|
|
33942
|
+
version: z.ZodString;
|
|
33943
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33944
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33945
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33946
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33947
|
+
id: z.ZodString;
|
|
33948
|
+
label: z.ZodString;
|
|
33949
|
+
description: z.ZodString;
|
|
33950
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33951
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33952
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33953
|
+
id: z.ZodString;
|
|
33954
|
+
label: z.ZodString;
|
|
33955
|
+
description: z.ZodString;
|
|
33956
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33957
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33958
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33959
|
+
id: z.ZodString;
|
|
33960
|
+
label: z.ZodString;
|
|
33961
|
+
description: z.ZodString;
|
|
33962
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33963
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33964
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
33965
|
+
generated_at: z.ZodString;
|
|
33966
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33967
|
+
schema_version: z.ZodLiteral<"skill-preview.v1">;
|
|
33968
|
+
tool_version: z.ZodString;
|
|
33969
|
+
preview_id: z.ZodString;
|
|
33970
|
+
repo_url: z.ZodString;
|
|
33971
|
+
repo_owner: z.ZodString;
|
|
33972
|
+
repo_name: z.ZodString;
|
|
33973
|
+
default_branch: z.ZodString;
|
|
33974
|
+
commit_sha: z.ZodString;
|
|
33975
|
+
ref: z.ZodString;
|
|
33976
|
+
event_name: z.ZodString;
|
|
33977
|
+
workflow_run_url: z.ZodString;
|
|
33978
|
+
skill_dir: z.ZodString;
|
|
33979
|
+
name: z.ZodString;
|
|
33980
|
+
version: z.ZodString;
|
|
33981
|
+
validation_status: z.ZodLiteral<"passed">;
|
|
33982
|
+
findings: z.ZodArray<z.ZodUnknown, "many">;
|
|
33983
|
+
package_summary: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
33984
|
+
suggested_next_steps: z.ZodArray<z.ZodObject<{
|
|
33985
|
+
id: z.ZodString;
|
|
33986
|
+
label: z.ZodString;
|
|
33987
|
+
description: z.ZodString;
|
|
33988
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33989
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33990
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
33991
|
+
id: z.ZodString;
|
|
33992
|
+
label: z.ZodString;
|
|
33993
|
+
description: z.ZodString;
|
|
33994
|
+
command: z.ZodOptional<z.ZodString>;
|
|
33995
|
+
href: z.ZodOptional<z.ZodString>;
|
|
33996
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
33997
|
+
id: z.ZodString;
|
|
33998
|
+
label: z.ZodString;
|
|
33999
|
+
description: z.ZodString;
|
|
34000
|
+
command: z.ZodOptional<z.ZodString>;
|
|
34001
|
+
href: z.ZodOptional<z.ZodString>;
|
|
34002
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
34003
|
+
generated_at: z.ZodString;
|
|
34004
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
34005
|
+
generatedAt: z.ZodString;
|
|
34006
|
+
expiresAt: z.ZodString;
|
|
34007
|
+
statusUrl: z.ZodString;
|
|
34008
|
+
authoritative: z.ZodBoolean;
|
|
34009
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
34010
|
+
statusUrl: z.ZodNullable<z.ZodString>;
|
|
34011
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
34012
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
34013
|
+
declare const skillStatusPreviewMetadataSchema: z.ZodObject<{
|
|
34014
|
+
previewId: z.ZodString;
|
|
34015
|
+
repoUrl: z.ZodString;
|
|
34016
|
+
repoOwner: z.ZodString;
|
|
34017
|
+
repoName: z.ZodString;
|
|
34018
|
+
commitSha: z.ZodString;
|
|
34019
|
+
ref: z.ZodString;
|
|
34020
|
+
eventName: z.ZodString;
|
|
34021
|
+
skillDir: z.ZodString;
|
|
34022
|
+
generatedAt: z.ZodString;
|
|
34023
|
+
expiresAt: z.ZodString;
|
|
34024
|
+
statusUrl: z.ZodString;
|
|
34025
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34026
|
+
previewId: z.ZodString;
|
|
34027
|
+
repoUrl: z.ZodString;
|
|
34028
|
+
repoOwner: z.ZodString;
|
|
34029
|
+
repoName: z.ZodString;
|
|
34030
|
+
commitSha: z.ZodString;
|
|
34031
|
+
ref: z.ZodString;
|
|
34032
|
+
eventName: z.ZodString;
|
|
34033
|
+
skillDir: z.ZodString;
|
|
34034
|
+
generatedAt: z.ZodString;
|
|
34035
|
+
expiresAt: z.ZodString;
|
|
34036
|
+
statusUrl: z.ZodString;
|
|
34037
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34038
|
+
previewId: z.ZodString;
|
|
34039
|
+
repoUrl: z.ZodString;
|
|
34040
|
+
repoOwner: z.ZodString;
|
|
34041
|
+
repoName: z.ZodString;
|
|
34042
|
+
commitSha: z.ZodString;
|
|
34043
|
+
ref: z.ZodString;
|
|
34044
|
+
eventName: z.ZodString;
|
|
34045
|
+
skillDir: z.ZodString;
|
|
34046
|
+
generatedAt: z.ZodString;
|
|
34047
|
+
expiresAt: z.ZodString;
|
|
34048
|
+
statusUrl: z.ZodString;
|
|
34049
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
34050
|
+
declare const skillStatusVerificationSignalsSchema: z.ZodObject<{
|
|
34051
|
+
publisherBound: z.ZodBoolean;
|
|
34052
|
+
domainProof: z.ZodBoolean;
|
|
34053
|
+
verifiedDomain: z.ZodBoolean;
|
|
34054
|
+
previewValidated: z.ZodBoolean;
|
|
34055
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34056
|
+
publisherBound: z.ZodBoolean;
|
|
34057
|
+
domainProof: z.ZodBoolean;
|
|
34058
|
+
verifiedDomain: z.ZodBoolean;
|
|
34059
|
+
previewValidated: z.ZodBoolean;
|
|
34060
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34061
|
+
publisherBound: z.ZodBoolean;
|
|
34062
|
+
domainProof: z.ZodBoolean;
|
|
34063
|
+
verifiedDomain: z.ZodBoolean;
|
|
34064
|
+
previewValidated: z.ZodBoolean;
|
|
34065
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
34066
|
+
declare const skillStatusProvenanceSignalsSchema: z.ZodObject<{
|
|
34067
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34068
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34069
|
+
canonicalRelease: z.ZodBoolean;
|
|
34070
|
+
previewAvailable: z.ZodBoolean;
|
|
34071
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34072
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34073
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34074
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34075
|
+
canonicalRelease: z.ZodBoolean;
|
|
34076
|
+
previewAvailable: z.ZodBoolean;
|
|
34077
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34078
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34079
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34080
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34081
|
+
canonicalRelease: z.ZodBoolean;
|
|
34082
|
+
previewAvailable: z.ZodBoolean;
|
|
34083
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34084
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
34085
|
+
declare const skillBadgeMetricSchema: z.ZodEnum<["version", "version_verification", "status", "verification", "repo_commit", "manifest", "domain", "trust", "tier", "safety", "upvotes", "updated"]>;
|
|
32375
34086
|
declare const skillStatusResponseSchema: z.ZodObject<{
|
|
32376
34087
|
name: z.ZodString;
|
|
32377
34088
|
version: z.ZodNullable<z.ZodString>;
|
|
32378
34089
|
published: z.ZodBoolean;
|
|
32379
34090
|
verifiedDomain: z.ZodBoolean;
|
|
32380
|
-
trustTier: z.ZodEnum<["unpublished", "published", "verified", "hardened"]>;
|
|
32381
|
-
badgeMetric: z.ZodEnum<["version", "status", "verification", "repo_commit", "manifest", "domain", "trust", "tier", "safety", "upvotes", "updated"]>;
|
|
34091
|
+
trustTier: z.ZodEnum<["unpublished", "unclaimed", "validated", "published", "verified", "hardened"]>;
|
|
34092
|
+
badgeMetric: z.ZodEnum<["version", "version_verification", "status", "verification", "repo_commit", "manifest", "domain", "trust", "tier", "safety", "upvotes", "updated"]>;
|
|
34093
|
+
checks: z.ZodObject<{
|
|
34094
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34095
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34096
|
+
domainProof: z.ZodBoolean;
|
|
34097
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34098
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34099
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34100
|
+
domainProof: z.ZodBoolean;
|
|
34101
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34102
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34103
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34104
|
+
domainProof: z.ZodBoolean;
|
|
34105
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
34106
|
+
nextSteps: z.ZodArray<z.ZodObject<{
|
|
34107
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
34108
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
34109
|
+
id: z.ZodString;
|
|
34110
|
+
label: z.ZodString;
|
|
34111
|
+
description: z.ZodString;
|
|
34112
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34113
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34114
|
+
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34115
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34116
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
34117
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
34118
|
+
id: z.ZodString;
|
|
34119
|
+
label: z.ZodString;
|
|
34120
|
+
description: z.ZodString;
|
|
34121
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34122
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34123
|
+
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34124
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34125
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
34126
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
34127
|
+
id: z.ZodString;
|
|
34128
|
+
label: z.ZodString;
|
|
34129
|
+
description: z.ZodString;
|
|
34130
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34131
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34132
|
+
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34133
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
34134
|
+
verificationSignals: z.ZodDefault<z.ZodObject<{
|
|
34135
|
+
publisherBound: z.ZodBoolean;
|
|
34136
|
+
domainProof: z.ZodBoolean;
|
|
34137
|
+
verifiedDomain: z.ZodBoolean;
|
|
34138
|
+
previewValidated: z.ZodBoolean;
|
|
34139
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34140
|
+
publisherBound: z.ZodBoolean;
|
|
34141
|
+
domainProof: z.ZodBoolean;
|
|
34142
|
+
verifiedDomain: z.ZodBoolean;
|
|
34143
|
+
previewValidated: z.ZodBoolean;
|
|
34144
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34145
|
+
publisherBound: z.ZodBoolean;
|
|
34146
|
+
domainProof: z.ZodBoolean;
|
|
34147
|
+
verifiedDomain: z.ZodBoolean;
|
|
34148
|
+
previewValidated: z.ZodBoolean;
|
|
34149
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
34150
|
+
provenanceSignals: z.ZodDefault<z.ZodObject<{
|
|
34151
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34152
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34153
|
+
canonicalRelease: z.ZodBoolean;
|
|
34154
|
+
previewAvailable: z.ZodBoolean;
|
|
34155
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34156
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34157
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34158
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34159
|
+
canonicalRelease: z.ZodBoolean;
|
|
34160
|
+
previewAvailable: z.ZodBoolean;
|
|
34161
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34162
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34163
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34164
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34165
|
+
canonicalRelease: z.ZodBoolean;
|
|
34166
|
+
previewAvailable: z.ZodBoolean;
|
|
34167
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34168
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
34169
|
+
publisher: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
34170
|
+
cliPackageUrl: z.ZodString;
|
|
34171
|
+
cliCommand: z.ZodString;
|
|
34172
|
+
actionMarketplaceUrl: z.ZodString;
|
|
34173
|
+
repositoryUrl: z.ZodString;
|
|
34174
|
+
guideUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34175
|
+
docsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34176
|
+
submitUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34177
|
+
skillsIndexUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34178
|
+
quickstartCommands: z.ZodArray<z.ZodObject<{
|
|
34179
|
+
id: z.ZodString;
|
|
34180
|
+
label: z.ZodString;
|
|
34181
|
+
description: z.ZodString;
|
|
34182
|
+
command: z.ZodString;
|
|
34183
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34184
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34185
|
+
id: z.ZodString;
|
|
34186
|
+
label: z.ZodString;
|
|
34187
|
+
description: z.ZodString;
|
|
34188
|
+
command: z.ZodString;
|
|
34189
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34190
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34191
|
+
id: z.ZodString;
|
|
34192
|
+
label: z.ZodString;
|
|
34193
|
+
description: z.ZodString;
|
|
34194
|
+
command: z.ZodString;
|
|
34195
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34196
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
34197
|
+
templatePresets: z.ZodArray<z.ZodObject<{
|
|
34198
|
+
presetId: z.ZodString;
|
|
34199
|
+
label: z.ZodString;
|
|
34200
|
+
description: z.ZodString;
|
|
34201
|
+
recommendedFor: z.ZodString;
|
|
34202
|
+
command: z.ZodString;
|
|
34203
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34204
|
+
presetId: z.ZodString;
|
|
34205
|
+
label: z.ZodString;
|
|
34206
|
+
description: z.ZodString;
|
|
34207
|
+
recommendedFor: z.ZodString;
|
|
34208
|
+
command: z.ZodString;
|
|
34209
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34210
|
+
presetId: z.ZodString;
|
|
34211
|
+
label: z.ZodString;
|
|
34212
|
+
description: z.ZodString;
|
|
34213
|
+
recommendedFor: z.ZodString;
|
|
34214
|
+
command: z.ZodString;
|
|
34215
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
34216
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34217
|
+
cliPackageUrl: z.ZodString;
|
|
34218
|
+
cliCommand: z.ZodString;
|
|
34219
|
+
actionMarketplaceUrl: z.ZodString;
|
|
34220
|
+
repositoryUrl: z.ZodString;
|
|
34221
|
+
guideUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34222
|
+
docsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34223
|
+
submitUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34224
|
+
skillsIndexUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34225
|
+
quickstartCommands: z.ZodArray<z.ZodObject<{
|
|
34226
|
+
id: z.ZodString;
|
|
34227
|
+
label: z.ZodString;
|
|
34228
|
+
description: z.ZodString;
|
|
34229
|
+
command: z.ZodString;
|
|
34230
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34231
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34232
|
+
id: z.ZodString;
|
|
34233
|
+
label: z.ZodString;
|
|
34234
|
+
description: z.ZodString;
|
|
34235
|
+
command: z.ZodString;
|
|
34236
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34237
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34238
|
+
id: z.ZodString;
|
|
34239
|
+
label: z.ZodString;
|
|
34240
|
+
description: z.ZodString;
|
|
34241
|
+
command: z.ZodString;
|
|
34242
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34243
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
34244
|
+
templatePresets: z.ZodArray<z.ZodObject<{
|
|
34245
|
+
presetId: z.ZodString;
|
|
34246
|
+
label: z.ZodString;
|
|
34247
|
+
description: z.ZodString;
|
|
34248
|
+
recommendedFor: z.ZodString;
|
|
34249
|
+
command: z.ZodString;
|
|
34250
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34251
|
+
presetId: z.ZodString;
|
|
34252
|
+
label: z.ZodString;
|
|
34253
|
+
description: z.ZodString;
|
|
34254
|
+
recommendedFor: z.ZodString;
|
|
34255
|
+
command: z.ZodString;
|
|
34256
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34257
|
+
presetId: z.ZodString;
|
|
34258
|
+
label: z.ZodString;
|
|
34259
|
+
description: z.ZodString;
|
|
34260
|
+
recommendedFor: z.ZodString;
|
|
34261
|
+
command: z.ZodString;
|
|
34262
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
34263
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34264
|
+
cliPackageUrl: z.ZodString;
|
|
34265
|
+
cliCommand: z.ZodString;
|
|
34266
|
+
actionMarketplaceUrl: z.ZodString;
|
|
34267
|
+
repositoryUrl: z.ZodString;
|
|
34268
|
+
guideUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34269
|
+
docsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34270
|
+
submitUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34271
|
+
skillsIndexUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34272
|
+
quickstartCommands: z.ZodArray<z.ZodObject<{
|
|
34273
|
+
id: z.ZodString;
|
|
34274
|
+
label: z.ZodString;
|
|
34275
|
+
description: z.ZodString;
|
|
34276
|
+
command: z.ZodString;
|
|
34277
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34278
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34279
|
+
id: z.ZodString;
|
|
34280
|
+
label: z.ZodString;
|
|
34281
|
+
description: z.ZodString;
|
|
34282
|
+
command: z.ZodString;
|
|
34283
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34284
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34285
|
+
id: z.ZodString;
|
|
34286
|
+
label: z.ZodString;
|
|
34287
|
+
description: z.ZodString;
|
|
34288
|
+
command: z.ZodString;
|
|
34289
|
+
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34290
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
34291
|
+
templatePresets: z.ZodArray<z.ZodObject<{
|
|
34292
|
+
presetId: z.ZodString;
|
|
34293
|
+
label: z.ZodString;
|
|
34294
|
+
description: z.ZodString;
|
|
34295
|
+
recommendedFor: z.ZodString;
|
|
34296
|
+
command: z.ZodString;
|
|
34297
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34298
|
+
presetId: z.ZodString;
|
|
34299
|
+
label: z.ZodString;
|
|
34300
|
+
description: z.ZodString;
|
|
34301
|
+
recommendedFor: z.ZodString;
|
|
34302
|
+
command: z.ZodString;
|
|
34303
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34304
|
+
presetId: z.ZodString;
|
|
34305
|
+
label: z.ZodString;
|
|
34306
|
+
description: z.ZodString;
|
|
34307
|
+
recommendedFor: z.ZodString;
|
|
34308
|
+
command: z.ZodString;
|
|
34309
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
34310
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
34311
|
+
preview: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
34312
|
+
previewId: z.ZodString;
|
|
34313
|
+
repoUrl: z.ZodString;
|
|
34314
|
+
repoOwner: z.ZodString;
|
|
34315
|
+
repoName: z.ZodString;
|
|
34316
|
+
commitSha: z.ZodString;
|
|
34317
|
+
ref: z.ZodString;
|
|
34318
|
+
eventName: z.ZodString;
|
|
34319
|
+
skillDir: z.ZodString;
|
|
34320
|
+
generatedAt: z.ZodString;
|
|
34321
|
+
expiresAt: z.ZodString;
|
|
34322
|
+
statusUrl: z.ZodString;
|
|
34323
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34324
|
+
previewId: z.ZodString;
|
|
34325
|
+
repoUrl: z.ZodString;
|
|
34326
|
+
repoOwner: z.ZodString;
|
|
34327
|
+
repoName: z.ZodString;
|
|
34328
|
+
commitSha: z.ZodString;
|
|
34329
|
+
ref: z.ZodString;
|
|
34330
|
+
eventName: z.ZodString;
|
|
34331
|
+
skillDir: z.ZodString;
|
|
34332
|
+
generatedAt: z.ZodString;
|
|
34333
|
+
expiresAt: z.ZodString;
|
|
34334
|
+
statusUrl: z.ZodString;
|
|
34335
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34336
|
+
previewId: z.ZodString;
|
|
34337
|
+
repoUrl: z.ZodString;
|
|
34338
|
+
repoOwner: z.ZodString;
|
|
34339
|
+
repoName: z.ZodString;
|
|
34340
|
+
commitSha: z.ZodString;
|
|
34341
|
+
ref: z.ZodString;
|
|
34342
|
+
eventName: z.ZodString;
|
|
34343
|
+
skillDir: z.ZodString;
|
|
34344
|
+
generatedAt: z.ZodString;
|
|
34345
|
+
expiresAt: z.ZodString;
|
|
34346
|
+
statusUrl: z.ZodString;
|
|
34347
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
34348
|
+
statusUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34349
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34350
|
+
name: z.ZodString;
|
|
34351
|
+
version: z.ZodNullable<z.ZodString>;
|
|
34352
|
+
published: z.ZodBoolean;
|
|
34353
|
+
verifiedDomain: z.ZodBoolean;
|
|
34354
|
+
trustTier: z.ZodEnum<["unpublished", "unclaimed", "validated", "published", "verified", "hardened"]>;
|
|
34355
|
+
badgeMetric: z.ZodEnum<["version", "version_verification", "status", "verification", "repo_commit", "manifest", "domain", "trust", "tier", "safety", "upvotes", "updated"]>;
|
|
32382
34356
|
checks: z.ZodObject<{
|
|
32383
34357
|
repoCommitIntegrity: z.ZodBoolean;
|
|
32384
34358
|
manifestIntegrity: z.ZodBoolean;
|
|
@@ -32393,24 +34367,68 @@ declare const skillStatusResponseSchema: z.ZodObject<{
|
|
|
32393
34367
|
domainProof: z.ZodBoolean;
|
|
32394
34368
|
}, z.ZodTypeAny, "passthrough">>;
|
|
32395
34369
|
nextSteps: z.ZodArray<z.ZodObject<{
|
|
34370
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
34371
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
32396
34372
|
id: z.ZodString;
|
|
32397
34373
|
label: z.ZodString;
|
|
32398
34374
|
description: z.ZodString;
|
|
34375
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32399
34376
|
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32400
34377
|
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32401
34378
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34379
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
34380
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
32402
34381
|
id: z.ZodString;
|
|
32403
34382
|
label: z.ZodString;
|
|
32404
34383
|
description: z.ZodString;
|
|
34384
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32405
34385
|
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32406
34386
|
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32407
34387
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34388
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
34389
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
32408
34390
|
id: z.ZodString;
|
|
32409
34391
|
label: z.ZodString;
|
|
32410
34392
|
description: z.ZodString;
|
|
34393
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32411
34394
|
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32412
34395
|
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32413
34396
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
34397
|
+
verificationSignals: z.ZodDefault<z.ZodObject<{
|
|
34398
|
+
publisherBound: z.ZodBoolean;
|
|
34399
|
+
domainProof: z.ZodBoolean;
|
|
34400
|
+
verifiedDomain: z.ZodBoolean;
|
|
34401
|
+
previewValidated: z.ZodBoolean;
|
|
34402
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34403
|
+
publisherBound: z.ZodBoolean;
|
|
34404
|
+
domainProof: z.ZodBoolean;
|
|
34405
|
+
verifiedDomain: z.ZodBoolean;
|
|
34406
|
+
previewValidated: z.ZodBoolean;
|
|
34407
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34408
|
+
publisherBound: z.ZodBoolean;
|
|
34409
|
+
domainProof: z.ZodBoolean;
|
|
34410
|
+
verifiedDomain: z.ZodBoolean;
|
|
34411
|
+
previewValidated: z.ZodBoolean;
|
|
34412
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
34413
|
+
provenanceSignals: z.ZodDefault<z.ZodObject<{
|
|
34414
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34415
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34416
|
+
canonicalRelease: z.ZodBoolean;
|
|
34417
|
+
previewAvailable: z.ZodBoolean;
|
|
34418
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34419
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34420
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34421
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34422
|
+
canonicalRelease: z.ZodBoolean;
|
|
34423
|
+
previewAvailable: z.ZodBoolean;
|
|
34424
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34425
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34426
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34427
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34428
|
+
canonicalRelease: z.ZodBoolean;
|
|
34429
|
+
previewAvailable: z.ZodBoolean;
|
|
34430
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34431
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
32414
34432
|
publisher: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32415
34433
|
cliPackageUrl: z.ZodString;
|
|
32416
34434
|
cliCommand: z.ZodString;
|
|
@@ -32553,13 +34571,51 @@ declare const skillStatusResponseSchema: z.ZodObject<{
|
|
|
32553
34571
|
command: z.ZodString;
|
|
32554
34572
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32555
34573
|
}, z.ZodTypeAny, "passthrough">>>>;
|
|
32556
|
-
|
|
34574
|
+
preview: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
34575
|
+
previewId: z.ZodString;
|
|
34576
|
+
repoUrl: z.ZodString;
|
|
34577
|
+
repoOwner: z.ZodString;
|
|
34578
|
+
repoName: z.ZodString;
|
|
34579
|
+
commitSha: z.ZodString;
|
|
34580
|
+
ref: z.ZodString;
|
|
34581
|
+
eventName: z.ZodString;
|
|
34582
|
+
skillDir: z.ZodString;
|
|
34583
|
+
generatedAt: z.ZodString;
|
|
34584
|
+
expiresAt: z.ZodString;
|
|
34585
|
+
statusUrl: z.ZodString;
|
|
34586
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34587
|
+
previewId: z.ZodString;
|
|
34588
|
+
repoUrl: z.ZodString;
|
|
34589
|
+
repoOwner: z.ZodString;
|
|
34590
|
+
repoName: z.ZodString;
|
|
34591
|
+
commitSha: z.ZodString;
|
|
34592
|
+
ref: z.ZodString;
|
|
34593
|
+
eventName: z.ZodString;
|
|
34594
|
+
skillDir: z.ZodString;
|
|
34595
|
+
generatedAt: z.ZodString;
|
|
34596
|
+
expiresAt: z.ZodString;
|
|
34597
|
+
statusUrl: z.ZodString;
|
|
34598
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34599
|
+
previewId: z.ZodString;
|
|
34600
|
+
repoUrl: z.ZodString;
|
|
34601
|
+
repoOwner: z.ZodString;
|
|
34602
|
+
repoName: z.ZodString;
|
|
34603
|
+
commitSha: z.ZodString;
|
|
34604
|
+
ref: z.ZodString;
|
|
34605
|
+
eventName: z.ZodString;
|
|
34606
|
+
skillDir: z.ZodString;
|
|
34607
|
+
generatedAt: z.ZodString;
|
|
34608
|
+
expiresAt: z.ZodString;
|
|
34609
|
+
statusUrl: z.ZodString;
|
|
34610
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
34611
|
+
statusUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34612
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32557
34613
|
name: z.ZodString;
|
|
32558
34614
|
version: z.ZodNullable<z.ZodString>;
|
|
32559
34615
|
published: z.ZodBoolean;
|
|
32560
34616
|
verifiedDomain: z.ZodBoolean;
|
|
32561
|
-
trustTier: z.ZodEnum<["unpublished", "published", "verified", "hardened"]>;
|
|
32562
|
-
badgeMetric: z.ZodEnum<["version", "status", "verification", "repo_commit", "manifest", "domain", "trust", "tier", "safety", "upvotes", "updated"]>;
|
|
34617
|
+
trustTier: z.ZodEnum<["unpublished", "unclaimed", "validated", "published", "verified", "hardened"]>;
|
|
34618
|
+
badgeMetric: z.ZodEnum<["version", "version_verification", "status", "verification", "repo_commit", "manifest", "domain", "trust", "tier", "safety", "upvotes", "updated"]>;
|
|
32563
34619
|
checks: z.ZodObject<{
|
|
32564
34620
|
repoCommitIntegrity: z.ZodBoolean;
|
|
32565
34621
|
manifestIntegrity: z.ZodBoolean;
|
|
@@ -32574,24 +34630,68 @@ declare const skillStatusResponseSchema: z.ZodObject<{
|
|
|
32574
34630
|
domainProof: z.ZodBoolean;
|
|
32575
34631
|
}, z.ZodTypeAny, "passthrough">>;
|
|
32576
34632
|
nextSteps: z.ZodArray<z.ZodObject<{
|
|
34633
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
34634
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
32577
34635
|
id: z.ZodString;
|
|
32578
34636
|
label: z.ZodString;
|
|
32579
34637
|
description: z.ZodString;
|
|
34638
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32580
34639
|
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32581
34640
|
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32582
34641
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34642
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
34643
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
32583
34644
|
id: z.ZodString;
|
|
32584
34645
|
label: z.ZodString;
|
|
32585
34646
|
description: z.ZodString;
|
|
34647
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32586
34648
|
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32587
34649
|
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32588
34650
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34651
|
+
kind: z.ZodOptional<z.ZodEnum<["setup_validate", "publish_first_release", "verify_domain", "harden_workflow", "share_status"]>>;
|
|
34652
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
32589
34653
|
id: z.ZodString;
|
|
32590
34654
|
label: z.ZodString;
|
|
32591
34655
|
description: z.ZodString;
|
|
34656
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32592
34657
|
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32593
34658
|
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32594
34659
|
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
34660
|
+
verificationSignals: z.ZodDefault<z.ZodObject<{
|
|
34661
|
+
publisherBound: z.ZodBoolean;
|
|
34662
|
+
domainProof: z.ZodBoolean;
|
|
34663
|
+
verifiedDomain: z.ZodBoolean;
|
|
34664
|
+
previewValidated: z.ZodBoolean;
|
|
34665
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34666
|
+
publisherBound: z.ZodBoolean;
|
|
34667
|
+
domainProof: z.ZodBoolean;
|
|
34668
|
+
verifiedDomain: z.ZodBoolean;
|
|
34669
|
+
previewValidated: z.ZodBoolean;
|
|
34670
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34671
|
+
publisherBound: z.ZodBoolean;
|
|
34672
|
+
domainProof: z.ZodBoolean;
|
|
34673
|
+
verifiedDomain: z.ZodBoolean;
|
|
34674
|
+
previewValidated: z.ZodBoolean;
|
|
34675
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
34676
|
+
provenanceSignals: z.ZodDefault<z.ZodObject<{
|
|
34677
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34678
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34679
|
+
canonicalRelease: z.ZodBoolean;
|
|
34680
|
+
previewAvailable: z.ZodBoolean;
|
|
34681
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34682
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34683
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34684
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34685
|
+
canonicalRelease: z.ZodBoolean;
|
|
34686
|
+
previewAvailable: z.ZodBoolean;
|
|
34687
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34688
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34689
|
+
repoCommitIntegrity: z.ZodBoolean;
|
|
34690
|
+
manifestIntegrity: z.ZodBoolean;
|
|
34691
|
+
canonicalRelease: z.ZodBoolean;
|
|
34692
|
+
previewAvailable: z.ZodBoolean;
|
|
34693
|
+
previewAuthoritative: z.ZodBoolean;
|
|
34694
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
32595
34695
|
publisher: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32596
34696
|
cliPackageUrl: z.ZodString;
|
|
32597
34697
|
cliCommand: z.ZodString;
|
|
@@ -32721,200 +34821,949 @@ declare const skillStatusResponseSchema: z.ZodObject<{
|
|
|
32721
34821
|
recommendedFor: z.ZodString;
|
|
32722
34822
|
command: z.ZodString;
|
|
32723
34823
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32724
|
-
presetId: z.ZodString;
|
|
32725
|
-
label: z.ZodString;
|
|
32726
|
-
description: z.ZodString;
|
|
32727
|
-
recommendedFor: z.ZodString;
|
|
32728
|
-
command: z.ZodString;
|
|
34824
|
+
presetId: z.ZodString;
|
|
34825
|
+
label: z.ZodString;
|
|
34826
|
+
description: z.ZodString;
|
|
34827
|
+
recommendedFor: z.ZodString;
|
|
34828
|
+
command: z.ZodString;
|
|
34829
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34830
|
+
presetId: z.ZodString;
|
|
34831
|
+
label: z.ZodString;
|
|
34832
|
+
description: z.ZodString;
|
|
34833
|
+
recommendedFor: z.ZodString;
|
|
34834
|
+
command: z.ZodString;
|
|
34835
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
34836
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
34837
|
+
preview: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
34838
|
+
previewId: z.ZodString;
|
|
34839
|
+
repoUrl: z.ZodString;
|
|
34840
|
+
repoOwner: z.ZodString;
|
|
34841
|
+
repoName: z.ZodString;
|
|
34842
|
+
commitSha: z.ZodString;
|
|
34843
|
+
ref: z.ZodString;
|
|
34844
|
+
eventName: z.ZodString;
|
|
34845
|
+
skillDir: z.ZodString;
|
|
34846
|
+
generatedAt: z.ZodString;
|
|
34847
|
+
expiresAt: z.ZodString;
|
|
34848
|
+
statusUrl: z.ZodString;
|
|
34849
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34850
|
+
previewId: z.ZodString;
|
|
34851
|
+
repoUrl: z.ZodString;
|
|
34852
|
+
repoOwner: z.ZodString;
|
|
34853
|
+
repoName: z.ZodString;
|
|
34854
|
+
commitSha: z.ZodString;
|
|
34855
|
+
ref: z.ZodString;
|
|
34856
|
+
eventName: z.ZodString;
|
|
34857
|
+
skillDir: z.ZodString;
|
|
34858
|
+
generatedAt: z.ZodString;
|
|
34859
|
+
expiresAt: z.ZodString;
|
|
34860
|
+
statusUrl: z.ZodString;
|
|
34861
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34862
|
+
previewId: z.ZodString;
|
|
34863
|
+
repoUrl: z.ZodString;
|
|
34864
|
+
repoOwner: z.ZodString;
|
|
34865
|
+
repoName: z.ZodString;
|
|
34866
|
+
commitSha: z.ZodString;
|
|
34867
|
+
ref: z.ZodString;
|
|
34868
|
+
eventName: z.ZodString;
|
|
34869
|
+
skillDir: z.ZodString;
|
|
34870
|
+
generatedAt: z.ZodString;
|
|
34871
|
+
expiresAt: z.ZodString;
|
|
34872
|
+
statusUrl: z.ZodString;
|
|
34873
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
34874
|
+
statusUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34875
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
34876
|
+
declare const skillInstallArtifactDescriptorSchema: z.ZodObject<{
|
|
34877
|
+
url: z.ZodString;
|
|
34878
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
34879
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
34880
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34881
|
+
url: z.ZodString;
|
|
34882
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
34883
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
34884
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34885
|
+
url: z.ZodString;
|
|
34886
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
34887
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
34888
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
34889
|
+
declare const skillInstallResolverDescriptorSchema: z.ZodObject<{
|
|
34890
|
+
skillRef: z.ZodString;
|
|
34891
|
+
skillMdUrl: z.ZodString;
|
|
34892
|
+
manifestUrl: z.ZodString;
|
|
34893
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34894
|
+
skillRef: z.ZodString;
|
|
34895
|
+
skillMdUrl: z.ZodString;
|
|
34896
|
+
manifestUrl: z.ZodString;
|
|
34897
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34898
|
+
skillRef: z.ZodString;
|
|
34899
|
+
skillMdUrl: z.ZodString;
|
|
34900
|
+
manifestUrl: z.ZodString;
|
|
34901
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
34902
|
+
declare const skillInstallBadgeDescriptorSchema: z.ZodObject<{
|
|
34903
|
+
apiUrl: z.ZodString;
|
|
34904
|
+
imageUrl: z.ZodString;
|
|
34905
|
+
markdown: z.ZodString;
|
|
34906
|
+
html: z.ZodString;
|
|
34907
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34908
|
+
apiUrl: z.ZodString;
|
|
34909
|
+
imageUrl: z.ZodString;
|
|
34910
|
+
markdown: z.ZodString;
|
|
34911
|
+
html: z.ZodString;
|
|
34912
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34913
|
+
apiUrl: z.ZodString;
|
|
34914
|
+
imageUrl: z.ZodString;
|
|
34915
|
+
markdown: z.ZodString;
|
|
34916
|
+
html: z.ZodString;
|
|
34917
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
34918
|
+
declare const skillInstallShareDescriptorSchema: z.ZodObject<{
|
|
34919
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
34920
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
34921
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
34922
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
34923
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
34924
|
+
apiUrl: z.ZodString;
|
|
34925
|
+
imageUrl: z.ZodString;
|
|
34926
|
+
markdown: z.ZodString;
|
|
34927
|
+
html: z.ZodString;
|
|
34928
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34929
|
+
apiUrl: z.ZodString;
|
|
34930
|
+
imageUrl: z.ZodString;
|
|
34931
|
+
markdown: z.ZodString;
|
|
34932
|
+
html: z.ZodString;
|
|
34933
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34934
|
+
apiUrl: z.ZodString;
|
|
34935
|
+
imageUrl: z.ZodString;
|
|
34936
|
+
markdown: z.ZodString;
|
|
34937
|
+
html: z.ZodString;
|
|
34938
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
34939
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34940
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
34941
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
34942
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
34943
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
34944
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
34945
|
+
apiUrl: z.ZodString;
|
|
34946
|
+
imageUrl: z.ZodString;
|
|
34947
|
+
markdown: z.ZodString;
|
|
34948
|
+
html: z.ZodString;
|
|
34949
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34950
|
+
apiUrl: z.ZodString;
|
|
34951
|
+
imageUrl: z.ZodString;
|
|
34952
|
+
markdown: z.ZodString;
|
|
34953
|
+
html: z.ZodString;
|
|
34954
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34955
|
+
apiUrl: z.ZodString;
|
|
34956
|
+
imageUrl: z.ZodString;
|
|
34957
|
+
markdown: z.ZodString;
|
|
34958
|
+
html: z.ZodString;
|
|
34959
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
34960
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34961
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
34962
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
34963
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
34964
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
34965
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
34966
|
+
apiUrl: z.ZodString;
|
|
34967
|
+
imageUrl: z.ZodString;
|
|
34968
|
+
markdown: z.ZodString;
|
|
34969
|
+
html: z.ZodString;
|
|
34970
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34971
|
+
apiUrl: z.ZodString;
|
|
34972
|
+
imageUrl: z.ZodString;
|
|
34973
|
+
markdown: z.ZodString;
|
|
34974
|
+
html: z.ZodString;
|
|
34975
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34976
|
+
apiUrl: z.ZodString;
|
|
34977
|
+
imageUrl: z.ZodString;
|
|
34978
|
+
markdown: z.ZodString;
|
|
34979
|
+
html: z.ZodString;
|
|
34980
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
34981
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
34982
|
+
declare const skillInstallSnippetSetSchema: z.ZodObject<{
|
|
34983
|
+
cli: z.ZodString;
|
|
34984
|
+
claude: z.ZodString;
|
|
34985
|
+
cursor: z.ZodString;
|
|
34986
|
+
codex: z.ZodString;
|
|
34987
|
+
openclaw: z.ZodString;
|
|
34988
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
34989
|
+
cli: z.ZodString;
|
|
34990
|
+
claude: z.ZodString;
|
|
34991
|
+
cursor: z.ZodString;
|
|
34992
|
+
codex: z.ZodString;
|
|
34993
|
+
openclaw: z.ZodString;
|
|
34994
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
34995
|
+
cli: z.ZodString;
|
|
34996
|
+
claude: z.ZodString;
|
|
34997
|
+
cursor: z.ZodString;
|
|
34998
|
+
codex: z.ZodString;
|
|
34999
|
+
openclaw: z.ZodString;
|
|
35000
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35001
|
+
declare const skillInstallResponseSchema: z.ZodObject<{
|
|
35002
|
+
name: z.ZodString;
|
|
35003
|
+
version: z.ZodString;
|
|
35004
|
+
skillRef: z.ZodString;
|
|
35005
|
+
network: z.ZodUnion<[z.ZodLiteral<"mainnet">, z.ZodLiteral<"testnet">]>;
|
|
35006
|
+
detailUrl: z.ZodNullable<z.ZodString>;
|
|
35007
|
+
artifacts: z.ZodObject<{
|
|
35008
|
+
skillMd: z.ZodObject<{
|
|
35009
|
+
url: z.ZodString;
|
|
35010
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35011
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35012
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35013
|
+
url: z.ZodString;
|
|
35014
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35015
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35016
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35017
|
+
url: z.ZodString;
|
|
35018
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35019
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35020
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35021
|
+
manifest: z.ZodObject<{
|
|
35022
|
+
url: z.ZodString;
|
|
35023
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35024
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35025
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35026
|
+
url: z.ZodString;
|
|
35027
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35028
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35029
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35030
|
+
url: z.ZodString;
|
|
35031
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35032
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35033
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35034
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35035
|
+
skillMd: z.ZodObject<{
|
|
35036
|
+
url: z.ZodString;
|
|
35037
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35038
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35039
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35040
|
+
url: z.ZodString;
|
|
35041
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35042
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35043
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35044
|
+
url: z.ZodString;
|
|
35045
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35046
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35047
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35048
|
+
manifest: z.ZodObject<{
|
|
35049
|
+
url: z.ZodString;
|
|
35050
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35051
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35052
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35053
|
+
url: z.ZodString;
|
|
35054
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35055
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35056
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35057
|
+
url: z.ZodString;
|
|
35058
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35059
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35060
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35061
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35062
|
+
skillMd: z.ZodObject<{
|
|
35063
|
+
url: z.ZodString;
|
|
35064
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35065
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35066
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35067
|
+
url: z.ZodString;
|
|
35068
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35069
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35070
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35071
|
+
url: z.ZodString;
|
|
35072
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35073
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35074
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35075
|
+
manifest: z.ZodObject<{
|
|
35076
|
+
url: z.ZodString;
|
|
35077
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35078
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35079
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35080
|
+
url: z.ZodString;
|
|
35081
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35082
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35083
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35084
|
+
url: z.ZodString;
|
|
35085
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35086
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35087
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35088
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35089
|
+
resolvers: z.ZodObject<{
|
|
35090
|
+
pinned: z.ZodObject<{
|
|
35091
|
+
skillRef: z.ZodString;
|
|
35092
|
+
skillMdUrl: z.ZodString;
|
|
35093
|
+
manifestUrl: z.ZodString;
|
|
35094
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35095
|
+
skillRef: z.ZodString;
|
|
35096
|
+
skillMdUrl: z.ZodString;
|
|
35097
|
+
manifestUrl: z.ZodString;
|
|
35098
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35099
|
+
skillRef: z.ZodString;
|
|
35100
|
+
skillMdUrl: z.ZodString;
|
|
35101
|
+
manifestUrl: z.ZodString;
|
|
35102
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35103
|
+
latest: z.ZodObject<{
|
|
35104
|
+
skillRef: z.ZodString;
|
|
35105
|
+
skillMdUrl: z.ZodString;
|
|
35106
|
+
manifestUrl: z.ZodString;
|
|
35107
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35108
|
+
skillRef: z.ZodString;
|
|
35109
|
+
skillMdUrl: z.ZodString;
|
|
35110
|
+
manifestUrl: z.ZodString;
|
|
35111
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35112
|
+
skillRef: z.ZodString;
|
|
35113
|
+
skillMdUrl: z.ZodString;
|
|
35114
|
+
manifestUrl: z.ZodString;
|
|
35115
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35116
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35117
|
+
pinned: z.ZodObject<{
|
|
35118
|
+
skillRef: z.ZodString;
|
|
35119
|
+
skillMdUrl: z.ZodString;
|
|
35120
|
+
manifestUrl: z.ZodString;
|
|
35121
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35122
|
+
skillRef: z.ZodString;
|
|
35123
|
+
skillMdUrl: z.ZodString;
|
|
35124
|
+
manifestUrl: z.ZodString;
|
|
35125
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35126
|
+
skillRef: z.ZodString;
|
|
35127
|
+
skillMdUrl: z.ZodString;
|
|
35128
|
+
manifestUrl: z.ZodString;
|
|
35129
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35130
|
+
latest: z.ZodObject<{
|
|
35131
|
+
skillRef: z.ZodString;
|
|
35132
|
+
skillMdUrl: z.ZodString;
|
|
35133
|
+
manifestUrl: z.ZodString;
|
|
35134
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35135
|
+
skillRef: z.ZodString;
|
|
35136
|
+
skillMdUrl: z.ZodString;
|
|
35137
|
+
manifestUrl: z.ZodString;
|
|
35138
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35139
|
+
skillRef: z.ZodString;
|
|
35140
|
+
skillMdUrl: z.ZodString;
|
|
35141
|
+
manifestUrl: z.ZodString;
|
|
35142
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35143
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35144
|
+
pinned: z.ZodObject<{
|
|
35145
|
+
skillRef: z.ZodString;
|
|
35146
|
+
skillMdUrl: z.ZodString;
|
|
35147
|
+
manifestUrl: z.ZodString;
|
|
35148
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35149
|
+
skillRef: z.ZodString;
|
|
35150
|
+
skillMdUrl: z.ZodString;
|
|
35151
|
+
manifestUrl: z.ZodString;
|
|
35152
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35153
|
+
skillRef: z.ZodString;
|
|
35154
|
+
skillMdUrl: z.ZodString;
|
|
35155
|
+
manifestUrl: z.ZodString;
|
|
35156
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35157
|
+
latest: z.ZodObject<{
|
|
35158
|
+
skillRef: z.ZodString;
|
|
35159
|
+
skillMdUrl: z.ZodString;
|
|
35160
|
+
manifestUrl: z.ZodString;
|
|
35161
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35162
|
+
skillRef: z.ZodString;
|
|
35163
|
+
skillMdUrl: z.ZodString;
|
|
35164
|
+
manifestUrl: z.ZodString;
|
|
35165
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35166
|
+
skillRef: z.ZodString;
|
|
35167
|
+
skillMdUrl: z.ZodString;
|
|
35168
|
+
manifestUrl: z.ZodString;
|
|
35169
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35170
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35171
|
+
share: z.ZodObject<{
|
|
35172
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
35173
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
35174
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
35175
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
35176
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
35177
|
+
apiUrl: z.ZodString;
|
|
35178
|
+
imageUrl: z.ZodString;
|
|
35179
|
+
markdown: z.ZodString;
|
|
35180
|
+
html: z.ZodString;
|
|
35181
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35182
|
+
apiUrl: z.ZodString;
|
|
35183
|
+
imageUrl: z.ZodString;
|
|
35184
|
+
markdown: z.ZodString;
|
|
35185
|
+
html: z.ZodString;
|
|
35186
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35187
|
+
apiUrl: z.ZodString;
|
|
35188
|
+
imageUrl: z.ZodString;
|
|
35189
|
+
markdown: z.ZodString;
|
|
35190
|
+
html: z.ZodString;
|
|
35191
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
35192
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35193
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
35194
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
35195
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
35196
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
35197
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
35198
|
+
apiUrl: z.ZodString;
|
|
35199
|
+
imageUrl: z.ZodString;
|
|
35200
|
+
markdown: z.ZodString;
|
|
35201
|
+
html: z.ZodString;
|
|
35202
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35203
|
+
apiUrl: z.ZodString;
|
|
35204
|
+
imageUrl: z.ZodString;
|
|
35205
|
+
markdown: z.ZodString;
|
|
35206
|
+
html: z.ZodString;
|
|
35207
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35208
|
+
apiUrl: z.ZodString;
|
|
35209
|
+
imageUrl: z.ZodString;
|
|
35210
|
+
markdown: z.ZodString;
|
|
35211
|
+
html: z.ZodString;
|
|
35212
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
35213
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35214
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
35215
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
35216
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
35217
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
35218
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
35219
|
+
apiUrl: z.ZodString;
|
|
35220
|
+
imageUrl: z.ZodString;
|
|
35221
|
+
markdown: z.ZodString;
|
|
35222
|
+
html: z.ZodString;
|
|
35223
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35224
|
+
apiUrl: z.ZodString;
|
|
35225
|
+
imageUrl: z.ZodString;
|
|
35226
|
+
markdown: z.ZodString;
|
|
35227
|
+
html: z.ZodString;
|
|
35228
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35229
|
+
apiUrl: z.ZodString;
|
|
35230
|
+
imageUrl: z.ZodString;
|
|
35231
|
+
markdown: z.ZodString;
|
|
35232
|
+
html: z.ZodString;
|
|
35233
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
35234
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35235
|
+
snippets: z.ZodObject<{
|
|
35236
|
+
cli: z.ZodString;
|
|
35237
|
+
claude: z.ZodString;
|
|
35238
|
+
cursor: z.ZodString;
|
|
35239
|
+
codex: z.ZodString;
|
|
35240
|
+
openclaw: z.ZodString;
|
|
35241
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35242
|
+
cli: z.ZodString;
|
|
35243
|
+
claude: z.ZodString;
|
|
35244
|
+
cursor: z.ZodString;
|
|
35245
|
+
codex: z.ZodString;
|
|
35246
|
+
openclaw: z.ZodString;
|
|
35247
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35248
|
+
cli: z.ZodString;
|
|
35249
|
+
claude: z.ZodString;
|
|
35250
|
+
cursor: z.ZodString;
|
|
35251
|
+
codex: z.ZodString;
|
|
35252
|
+
openclaw: z.ZodString;
|
|
35253
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35254
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35255
|
+
name: z.ZodString;
|
|
35256
|
+
version: z.ZodString;
|
|
35257
|
+
skillRef: z.ZodString;
|
|
35258
|
+
network: z.ZodUnion<[z.ZodLiteral<"mainnet">, z.ZodLiteral<"testnet">]>;
|
|
35259
|
+
detailUrl: z.ZodNullable<z.ZodString>;
|
|
35260
|
+
artifacts: z.ZodObject<{
|
|
35261
|
+
skillMd: z.ZodObject<{
|
|
35262
|
+
url: z.ZodString;
|
|
35263
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35264
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35265
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35266
|
+
url: z.ZodString;
|
|
35267
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35268
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35269
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35270
|
+
url: z.ZodString;
|
|
35271
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35272
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35273
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35274
|
+
manifest: z.ZodObject<{
|
|
35275
|
+
url: z.ZodString;
|
|
35276
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35277
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35278
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35279
|
+
url: z.ZodString;
|
|
35280
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35281
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35282
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35283
|
+
url: z.ZodString;
|
|
35284
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35285
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35286
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35287
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35288
|
+
skillMd: z.ZodObject<{
|
|
35289
|
+
url: z.ZodString;
|
|
35290
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35291
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35292
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35293
|
+
url: z.ZodString;
|
|
35294
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35295
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35296
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35297
|
+
url: z.ZodString;
|
|
35298
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35299
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35300
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35301
|
+
manifest: z.ZodObject<{
|
|
35302
|
+
url: z.ZodString;
|
|
35303
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35304
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35305
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35306
|
+
url: z.ZodString;
|
|
35307
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35308
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35309
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35310
|
+
url: z.ZodString;
|
|
35311
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35312
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35313
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35314
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35315
|
+
skillMd: z.ZodObject<{
|
|
35316
|
+
url: z.ZodString;
|
|
35317
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35318
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35319
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35320
|
+
url: z.ZodString;
|
|
35321
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35322
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35323
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35324
|
+
url: z.ZodString;
|
|
35325
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35326
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35327
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35328
|
+
manifest: z.ZodObject<{
|
|
35329
|
+
url: z.ZodString;
|
|
35330
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35331
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35332
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35333
|
+
url: z.ZodString;
|
|
35334
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35335
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35336
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35337
|
+
url: z.ZodString;
|
|
35338
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35339
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35340
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35341
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35342
|
+
resolvers: z.ZodObject<{
|
|
35343
|
+
pinned: z.ZodObject<{
|
|
35344
|
+
skillRef: z.ZodString;
|
|
35345
|
+
skillMdUrl: z.ZodString;
|
|
35346
|
+
manifestUrl: z.ZodString;
|
|
35347
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35348
|
+
skillRef: z.ZodString;
|
|
35349
|
+
skillMdUrl: z.ZodString;
|
|
35350
|
+
manifestUrl: z.ZodString;
|
|
35351
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35352
|
+
skillRef: z.ZodString;
|
|
35353
|
+
skillMdUrl: z.ZodString;
|
|
35354
|
+
manifestUrl: z.ZodString;
|
|
35355
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35356
|
+
latest: z.ZodObject<{
|
|
35357
|
+
skillRef: z.ZodString;
|
|
35358
|
+
skillMdUrl: z.ZodString;
|
|
35359
|
+
manifestUrl: z.ZodString;
|
|
35360
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35361
|
+
skillRef: z.ZodString;
|
|
35362
|
+
skillMdUrl: z.ZodString;
|
|
35363
|
+
manifestUrl: z.ZodString;
|
|
35364
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35365
|
+
skillRef: z.ZodString;
|
|
35366
|
+
skillMdUrl: z.ZodString;
|
|
35367
|
+
manifestUrl: z.ZodString;
|
|
35368
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35369
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35370
|
+
pinned: z.ZodObject<{
|
|
35371
|
+
skillRef: z.ZodString;
|
|
35372
|
+
skillMdUrl: z.ZodString;
|
|
35373
|
+
manifestUrl: z.ZodString;
|
|
35374
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35375
|
+
skillRef: z.ZodString;
|
|
35376
|
+
skillMdUrl: z.ZodString;
|
|
35377
|
+
manifestUrl: z.ZodString;
|
|
35378
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35379
|
+
skillRef: z.ZodString;
|
|
35380
|
+
skillMdUrl: z.ZodString;
|
|
35381
|
+
manifestUrl: z.ZodString;
|
|
35382
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35383
|
+
latest: z.ZodObject<{
|
|
35384
|
+
skillRef: z.ZodString;
|
|
35385
|
+
skillMdUrl: z.ZodString;
|
|
35386
|
+
manifestUrl: z.ZodString;
|
|
35387
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35388
|
+
skillRef: z.ZodString;
|
|
35389
|
+
skillMdUrl: z.ZodString;
|
|
35390
|
+
manifestUrl: z.ZodString;
|
|
35391
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35392
|
+
skillRef: z.ZodString;
|
|
35393
|
+
skillMdUrl: z.ZodString;
|
|
35394
|
+
manifestUrl: z.ZodString;
|
|
35395
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35396
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35397
|
+
pinned: z.ZodObject<{
|
|
35398
|
+
skillRef: z.ZodString;
|
|
35399
|
+
skillMdUrl: z.ZodString;
|
|
35400
|
+
manifestUrl: z.ZodString;
|
|
35401
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35402
|
+
skillRef: z.ZodString;
|
|
35403
|
+
skillMdUrl: z.ZodString;
|
|
35404
|
+
manifestUrl: z.ZodString;
|
|
35405
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35406
|
+
skillRef: z.ZodString;
|
|
35407
|
+
skillMdUrl: z.ZodString;
|
|
35408
|
+
manifestUrl: z.ZodString;
|
|
35409
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35410
|
+
latest: z.ZodObject<{
|
|
35411
|
+
skillRef: z.ZodString;
|
|
35412
|
+
skillMdUrl: z.ZodString;
|
|
35413
|
+
manifestUrl: z.ZodString;
|
|
35414
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35415
|
+
skillRef: z.ZodString;
|
|
35416
|
+
skillMdUrl: z.ZodString;
|
|
35417
|
+
manifestUrl: z.ZodString;
|
|
35418
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35419
|
+
skillRef: z.ZodString;
|
|
35420
|
+
skillMdUrl: z.ZodString;
|
|
35421
|
+
manifestUrl: z.ZodString;
|
|
35422
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35423
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35424
|
+
share: z.ZodObject<{
|
|
35425
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
35426
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
35427
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
35428
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
35429
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
35430
|
+
apiUrl: z.ZodString;
|
|
35431
|
+
imageUrl: z.ZodString;
|
|
35432
|
+
markdown: z.ZodString;
|
|
35433
|
+
html: z.ZodString;
|
|
35434
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35435
|
+
apiUrl: z.ZodString;
|
|
35436
|
+
imageUrl: z.ZodString;
|
|
35437
|
+
markdown: z.ZodString;
|
|
35438
|
+
html: z.ZodString;
|
|
35439
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35440
|
+
apiUrl: z.ZodString;
|
|
35441
|
+
imageUrl: z.ZodString;
|
|
35442
|
+
markdown: z.ZodString;
|
|
35443
|
+
html: z.ZodString;
|
|
35444
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
35445
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35446
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
35447
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
35448
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
35449
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
35450
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
35451
|
+
apiUrl: z.ZodString;
|
|
35452
|
+
imageUrl: z.ZodString;
|
|
35453
|
+
markdown: z.ZodString;
|
|
35454
|
+
html: z.ZodString;
|
|
35455
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35456
|
+
apiUrl: z.ZodString;
|
|
35457
|
+
imageUrl: z.ZodString;
|
|
35458
|
+
markdown: z.ZodString;
|
|
35459
|
+
html: z.ZodString;
|
|
35460
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35461
|
+
apiUrl: z.ZodString;
|
|
35462
|
+
imageUrl: z.ZodString;
|
|
35463
|
+
markdown: z.ZodString;
|
|
35464
|
+
html: z.ZodString;
|
|
35465
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
35466
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35467
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
35468
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
35469
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
35470
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
35471
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
35472
|
+
apiUrl: z.ZodString;
|
|
35473
|
+
imageUrl: z.ZodString;
|
|
35474
|
+
markdown: z.ZodString;
|
|
35475
|
+
html: z.ZodString;
|
|
35476
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35477
|
+
apiUrl: z.ZodString;
|
|
35478
|
+
imageUrl: z.ZodString;
|
|
35479
|
+
markdown: z.ZodString;
|
|
35480
|
+
html: z.ZodString;
|
|
32729
35481
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32730
|
-
|
|
32731
|
-
|
|
32732
|
-
|
|
32733
|
-
|
|
32734
|
-
|
|
32735
|
-
|
|
32736
|
-
|
|
32737
|
-
|
|
32738
|
-
|
|
32739
|
-
|
|
32740
|
-
|
|
32741
|
-
|
|
32742
|
-
trustTier: z.ZodEnum<["unpublished", "published", "verified", "hardened"]>;
|
|
32743
|
-
badgeMetric: z.ZodEnum<["version", "status", "verification", "repo_commit", "manifest", "domain", "trust", "tier", "safety", "upvotes", "updated"]>;
|
|
32744
|
-
checks: z.ZodObject<{
|
|
32745
|
-
repoCommitIntegrity: z.ZodBoolean;
|
|
32746
|
-
manifestIntegrity: z.ZodBoolean;
|
|
32747
|
-
domainProof: z.ZodBoolean;
|
|
35482
|
+
apiUrl: z.ZodString;
|
|
35483
|
+
imageUrl: z.ZodString;
|
|
35484
|
+
markdown: z.ZodString;
|
|
35485
|
+
html: z.ZodString;
|
|
35486
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
35487
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35488
|
+
snippets: z.ZodObject<{
|
|
35489
|
+
cli: z.ZodString;
|
|
35490
|
+
claude: z.ZodString;
|
|
35491
|
+
cursor: z.ZodString;
|
|
35492
|
+
codex: z.ZodString;
|
|
35493
|
+
openclaw: z.ZodString;
|
|
32748
35494
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32749
|
-
|
|
32750
|
-
|
|
32751
|
-
|
|
35495
|
+
cli: z.ZodString;
|
|
35496
|
+
claude: z.ZodString;
|
|
35497
|
+
cursor: z.ZodString;
|
|
35498
|
+
codex: z.ZodString;
|
|
35499
|
+
openclaw: z.ZodString;
|
|
32752
35500
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32753
|
-
|
|
32754
|
-
|
|
32755
|
-
|
|
35501
|
+
cli: z.ZodString;
|
|
35502
|
+
claude: z.ZodString;
|
|
35503
|
+
cursor: z.ZodString;
|
|
35504
|
+
codex: z.ZodString;
|
|
35505
|
+
openclaw: z.ZodString;
|
|
32756
35506
|
}, z.ZodTypeAny, "passthrough">>;
|
|
32757
|
-
|
|
32758
|
-
|
|
32759
|
-
|
|
32760
|
-
|
|
32761
|
-
|
|
32762
|
-
|
|
35507
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35508
|
+
name: z.ZodString;
|
|
35509
|
+
version: z.ZodString;
|
|
35510
|
+
skillRef: z.ZodString;
|
|
35511
|
+
network: z.ZodUnion<[z.ZodLiteral<"mainnet">, z.ZodLiteral<"testnet">]>;
|
|
35512
|
+
detailUrl: z.ZodNullable<z.ZodString>;
|
|
35513
|
+
artifacts: z.ZodObject<{
|
|
35514
|
+
skillMd: z.ZodObject<{
|
|
35515
|
+
url: z.ZodString;
|
|
35516
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35517
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35518
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35519
|
+
url: z.ZodString;
|
|
35520
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35521
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35522
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35523
|
+
url: z.ZodString;
|
|
35524
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35525
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35526
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35527
|
+
manifest: z.ZodObject<{
|
|
35528
|
+
url: z.ZodString;
|
|
35529
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35530
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35531
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35532
|
+
url: z.ZodString;
|
|
35533
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35534
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35535
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35536
|
+
url: z.ZodString;
|
|
35537
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35538
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35539
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
32763
35540
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32764
|
-
|
|
32765
|
-
|
|
32766
|
-
|
|
32767
|
-
|
|
32768
|
-
|
|
35541
|
+
skillMd: z.ZodObject<{
|
|
35542
|
+
url: z.ZodString;
|
|
35543
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35544
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35545
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35546
|
+
url: z.ZodString;
|
|
35547
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35548
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35549
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35550
|
+
url: z.ZodString;
|
|
35551
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35552
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35553
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35554
|
+
manifest: z.ZodObject<{
|
|
35555
|
+
url: z.ZodString;
|
|
35556
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35557
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35558
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35559
|
+
url: z.ZodString;
|
|
35560
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35561
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35562
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35563
|
+
url: z.ZodString;
|
|
35564
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35565
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35566
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
32769
35567
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32770
|
-
|
|
32771
|
-
|
|
32772
|
-
|
|
32773
|
-
|
|
32774
|
-
command: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32775
|
-
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
32776
|
-
publisher: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32777
|
-
cliPackageUrl: z.ZodString;
|
|
32778
|
-
cliCommand: z.ZodString;
|
|
32779
|
-
actionMarketplaceUrl: z.ZodString;
|
|
32780
|
-
repositoryUrl: z.ZodString;
|
|
32781
|
-
guideUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32782
|
-
docsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32783
|
-
submitUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32784
|
-
skillsIndexUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32785
|
-
quickstartCommands: z.ZodArray<z.ZodObject<{
|
|
32786
|
-
id: z.ZodString;
|
|
32787
|
-
label: z.ZodString;
|
|
32788
|
-
description: z.ZodString;
|
|
32789
|
-
command: z.ZodString;
|
|
32790
|
-
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35568
|
+
skillMd: z.ZodObject<{
|
|
35569
|
+
url: z.ZodString;
|
|
35570
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35571
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
32791
35572
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32792
|
-
|
|
32793
|
-
|
|
32794
|
-
|
|
32795
|
-
command: z.ZodString;
|
|
32796
|
-
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35573
|
+
url: z.ZodString;
|
|
35574
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35575
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
32797
35576
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32798
|
-
|
|
32799
|
-
|
|
32800
|
-
|
|
32801
|
-
|
|
32802
|
-
|
|
32803
|
-
|
|
32804
|
-
|
|
32805
|
-
|
|
32806
|
-
label: z.ZodString;
|
|
32807
|
-
description: z.ZodString;
|
|
32808
|
-
recommendedFor: z.ZodString;
|
|
32809
|
-
command: z.ZodString;
|
|
35577
|
+
url: z.ZodString;
|
|
35578
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35579
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35580
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35581
|
+
manifest: z.ZodObject<{
|
|
35582
|
+
url: z.ZodString;
|
|
35583
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35584
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
32810
35585
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32811
|
-
|
|
32812
|
-
|
|
32813
|
-
|
|
32814
|
-
recommendedFor: z.ZodString;
|
|
32815
|
-
command: z.ZodString;
|
|
35586
|
+
url: z.ZodString;
|
|
35587
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35588
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
32816
35589
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32817
|
-
|
|
32818
|
-
|
|
32819
|
-
|
|
32820
|
-
|
|
32821
|
-
|
|
32822
|
-
|
|
35590
|
+
url: z.ZodString;
|
|
35591
|
+
pointer: z.ZodNullable<z.ZodString>;
|
|
35592
|
+
sha256: z.ZodNullable<z.ZodString>;
|
|
35593
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35594
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35595
|
+
resolvers: z.ZodObject<{
|
|
35596
|
+
pinned: z.ZodObject<{
|
|
35597
|
+
skillRef: z.ZodString;
|
|
35598
|
+
skillMdUrl: z.ZodString;
|
|
35599
|
+
manifestUrl: z.ZodString;
|
|
35600
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35601
|
+
skillRef: z.ZodString;
|
|
35602
|
+
skillMdUrl: z.ZodString;
|
|
35603
|
+
manifestUrl: z.ZodString;
|
|
35604
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35605
|
+
skillRef: z.ZodString;
|
|
35606
|
+
skillMdUrl: z.ZodString;
|
|
35607
|
+
manifestUrl: z.ZodString;
|
|
35608
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35609
|
+
latest: z.ZodObject<{
|
|
35610
|
+
skillRef: z.ZodString;
|
|
35611
|
+
skillMdUrl: z.ZodString;
|
|
35612
|
+
manifestUrl: z.ZodString;
|
|
35613
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35614
|
+
skillRef: z.ZodString;
|
|
35615
|
+
skillMdUrl: z.ZodString;
|
|
35616
|
+
manifestUrl: z.ZodString;
|
|
35617
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35618
|
+
skillRef: z.ZodString;
|
|
35619
|
+
skillMdUrl: z.ZodString;
|
|
35620
|
+
manifestUrl: z.ZodString;
|
|
35621
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
32823
35622
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32824
|
-
|
|
32825
|
-
|
|
32826
|
-
|
|
32827
|
-
|
|
32828
|
-
guideUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32829
|
-
docsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32830
|
-
submitUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32831
|
-
skillsIndexUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32832
|
-
quickstartCommands: z.ZodArray<z.ZodObject<{
|
|
32833
|
-
id: z.ZodString;
|
|
32834
|
-
label: z.ZodString;
|
|
32835
|
-
description: z.ZodString;
|
|
32836
|
-
command: z.ZodString;
|
|
32837
|
-
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35623
|
+
pinned: z.ZodObject<{
|
|
35624
|
+
skillRef: z.ZodString;
|
|
35625
|
+
skillMdUrl: z.ZodString;
|
|
35626
|
+
manifestUrl: z.ZodString;
|
|
32838
35627
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32839
|
-
|
|
32840
|
-
|
|
32841
|
-
|
|
32842
|
-
command: z.ZodString;
|
|
32843
|
-
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35628
|
+
skillRef: z.ZodString;
|
|
35629
|
+
skillMdUrl: z.ZodString;
|
|
35630
|
+
manifestUrl: z.ZodString;
|
|
32844
35631
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32845
|
-
|
|
32846
|
-
|
|
32847
|
-
|
|
32848
|
-
|
|
32849
|
-
|
|
32850
|
-
|
|
32851
|
-
|
|
32852
|
-
|
|
32853
|
-
label: z.ZodString;
|
|
32854
|
-
description: z.ZodString;
|
|
32855
|
-
recommendedFor: z.ZodString;
|
|
32856
|
-
command: z.ZodString;
|
|
35632
|
+
skillRef: z.ZodString;
|
|
35633
|
+
skillMdUrl: z.ZodString;
|
|
35634
|
+
manifestUrl: z.ZodString;
|
|
35635
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35636
|
+
latest: z.ZodObject<{
|
|
35637
|
+
skillRef: z.ZodString;
|
|
35638
|
+
skillMdUrl: z.ZodString;
|
|
35639
|
+
manifestUrl: z.ZodString;
|
|
32857
35640
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32858
|
-
|
|
32859
|
-
|
|
32860
|
-
|
|
32861
|
-
recommendedFor: z.ZodString;
|
|
32862
|
-
command: z.ZodString;
|
|
35641
|
+
skillRef: z.ZodString;
|
|
35642
|
+
skillMdUrl: z.ZodString;
|
|
35643
|
+
manifestUrl: z.ZodString;
|
|
32863
35644
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32864
|
-
|
|
32865
|
-
|
|
32866
|
-
|
|
32867
|
-
|
|
32868
|
-
command: z.ZodString;
|
|
32869
|
-
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
35645
|
+
skillRef: z.ZodString;
|
|
35646
|
+
skillMdUrl: z.ZodString;
|
|
35647
|
+
manifestUrl: z.ZodString;
|
|
35648
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
32870
35649
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32871
|
-
|
|
32872
|
-
|
|
32873
|
-
|
|
32874
|
-
|
|
32875
|
-
guideUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32876
|
-
docsUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32877
|
-
submitUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32878
|
-
skillsIndexUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32879
|
-
quickstartCommands: z.ZodArray<z.ZodObject<{
|
|
32880
|
-
id: z.ZodString;
|
|
32881
|
-
label: z.ZodString;
|
|
32882
|
-
description: z.ZodString;
|
|
32883
|
-
command: z.ZodString;
|
|
32884
|
-
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35650
|
+
pinned: z.ZodObject<{
|
|
35651
|
+
skillRef: z.ZodString;
|
|
35652
|
+
skillMdUrl: z.ZodString;
|
|
35653
|
+
manifestUrl: z.ZodString;
|
|
32885
35654
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32886
|
-
|
|
32887
|
-
|
|
32888
|
-
|
|
32889
|
-
command: z.ZodString;
|
|
32890
|
-
href: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35655
|
+
skillRef: z.ZodString;
|
|
35656
|
+
skillMdUrl: z.ZodString;
|
|
35657
|
+
manifestUrl: z.ZodString;
|
|
32891
35658
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32892
|
-
|
|
32893
|
-
|
|
32894
|
-
|
|
32895
|
-
|
|
32896
|
-
|
|
32897
|
-
|
|
32898
|
-
|
|
32899
|
-
|
|
32900
|
-
label: z.ZodString;
|
|
32901
|
-
description: z.ZodString;
|
|
32902
|
-
recommendedFor: z.ZodString;
|
|
32903
|
-
command: z.ZodString;
|
|
35659
|
+
skillRef: z.ZodString;
|
|
35660
|
+
skillMdUrl: z.ZodString;
|
|
35661
|
+
manifestUrl: z.ZodString;
|
|
35662
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35663
|
+
latest: z.ZodObject<{
|
|
35664
|
+
skillRef: z.ZodString;
|
|
35665
|
+
skillMdUrl: z.ZodString;
|
|
35666
|
+
manifestUrl: z.ZodString;
|
|
32904
35667
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
32905
|
-
|
|
32906
|
-
|
|
32907
|
-
|
|
32908
|
-
recommendedFor: z.ZodString;
|
|
32909
|
-
command: z.ZodString;
|
|
35668
|
+
skillRef: z.ZodString;
|
|
35669
|
+
skillMdUrl: z.ZodString;
|
|
35670
|
+
manifestUrl: z.ZodString;
|
|
32910
35671
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
32911
|
-
|
|
32912
|
-
|
|
32913
|
-
|
|
32914
|
-
|
|
32915
|
-
|
|
32916
|
-
|
|
32917
|
-
|
|
35672
|
+
skillRef: z.ZodString;
|
|
35673
|
+
skillMdUrl: z.ZodString;
|
|
35674
|
+
manifestUrl: z.ZodString;
|
|
35675
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35676
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35677
|
+
share: z.ZodObject<{
|
|
35678
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
35679
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
35680
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
35681
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
35682
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
35683
|
+
apiUrl: z.ZodString;
|
|
35684
|
+
imageUrl: z.ZodString;
|
|
35685
|
+
markdown: z.ZodString;
|
|
35686
|
+
html: z.ZodString;
|
|
35687
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35688
|
+
apiUrl: z.ZodString;
|
|
35689
|
+
imageUrl: z.ZodString;
|
|
35690
|
+
markdown: z.ZodString;
|
|
35691
|
+
html: z.ZodString;
|
|
35692
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35693
|
+
apiUrl: z.ZodString;
|
|
35694
|
+
imageUrl: z.ZodString;
|
|
35695
|
+
markdown: z.ZodString;
|
|
35696
|
+
html: z.ZodString;
|
|
35697
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
35698
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35699
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
35700
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
35701
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
35702
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
35703
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
35704
|
+
apiUrl: z.ZodString;
|
|
35705
|
+
imageUrl: z.ZodString;
|
|
35706
|
+
markdown: z.ZodString;
|
|
35707
|
+
html: z.ZodString;
|
|
35708
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35709
|
+
apiUrl: z.ZodString;
|
|
35710
|
+
imageUrl: z.ZodString;
|
|
35711
|
+
markdown: z.ZodString;
|
|
35712
|
+
html: z.ZodString;
|
|
35713
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35714
|
+
apiUrl: z.ZodString;
|
|
35715
|
+
imageUrl: z.ZodString;
|
|
35716
|
+
markdown: z.ZodString;
|
|
35717
|
+
html: z.ZodString;
|
|
35718
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
35719
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35720
|
+
canonicalUrl: z.ZodNullable<z.ZodString>;
|
|
35721
|
+
latestUrl: z.ZodNullable<z.ZodString>;
|
|
35722
|
+
markdownLink: z.ZodNullable<z.ZodString>;
|
|
35723
|
+
htmlLink: z.ZodNullable<z.ZodString>;
|
|
35724
|
+
badge: z.ZodNullable<z.ZodObject<{
|
|
35725
|
+
apiUrl: z.ZodString;
|
|
35726
|
+
imageUrl: z.ZodString;
|
|
35727
|
+
markdown: z.ZodString;
|
|
35728
|
+
html: z.ZodString;
|
|
35729
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35730
|
+
apiUrl: z.ZodString;
|
|
35731
|
+
imageUrl: z.ZodString;
|
|
35732
|
+
markdown: z.ZodString;
|
|
35733
|
+
html: z.ZodString;
|
|
35734
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35735
|
+
apiUrl: z.ZodString;
|
|
35736
|
+
imageUrl: z.ZodString;
|
|
35737
|
+
markdown: z.ZodString;
|
|
35738
|
+
html: z.ZodString;
|
|
35739
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
35740
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35741
|
+
snippets: z.ZodObject<{
|
|
35742
|
+
cli: z.ZodString;
|
|
35743
|
+
claude: z.ZodString;
|
|
35744
|
+
cursor: z.ZodString;
|
|
35745
|
+
codex: z.ZodString;
|
|
35746
|
+
openclaw: z.ZodString;
|
|
35747
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35748
|
+
cli: z.ZodString;
|
|
35749
|
+
claude: z.ZodString;
|
|
35750
|
+
cursor: z.ZodString;
|
|
35751
|
+
codex: z.ZodString;
|
|
35752
|
+
openclaw: z.ZodString;
|
|
35753
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35754
|
+
cli: z.ZodString;
|
|
35755
|
+
claude: z.ZodString;
|
|
35756
|
+
cursor: z.ZodString;
|
|
35757
|
+
codex: z.ZodString;
|
|
35758
|
+
openclaw: z.ZodString;
|
|
35759
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35760
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
35761
|
+
declare const skillInstallCopyTelemetryResponseSchema: z.ZodObject<{
|
|
35762
|
+
accepted: z.ZodBoolean;
|
|
35763
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
35764
|
+
accepted: z.ZodBoolean;
|
|
35765
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
35766
|
+
accepted: z.ZodBoolean;
|
|
32918
35767
|
}, z.ZodTypeAny, "passthrough">>;
|
|
32919
35768
|
declare const skillBadgeStyleSchema: z.ZodEnum<["flat", "flat-square", "for-the-badge", "plastic", "social"]>;
|
|
32920
35769
|
declare const skillBadgeResponseSchema: z.ZodObject<{
|
|
@@ -49006,7 +51855,21 @@ type SkillPublisherMetadata = z.infer<typeof skillPublisherMetadataSchema>;
|
|
|
49006
51855
|
type SkillTrustTier = z.infer<typeof skillTrustTierSchema>;
|
|
49007
51856
|
type SkillStatusChecks = z.infer<typeof skillStatusChecksSchema>;
|
|
49008
51857
|
type SkillStatusNextStep = z.infer<typeof skillStatusNextStepSchema>;
|
|
51858
|
+
type SkillPreviewSuggestedNextStep = z.infer<typeof skillPreviewSuggestedNextStepSchema>;
|
|
51859
|
+
type SkillPreviewReport = z.infer<typeof skillPreviewReportSchema>;
|
|
51860
|
+
type SkillPreviewRecord = z.infer<typeof skillPreviewRecordSchema>;
|
|
51861
|
+
type SkillPreviewLookupResponse = z.infer<typeof skillPreviewLookupResponseSchema>;
|
|
51862
|
+
type SkillStatusPreviewMetadata = z.infer<typeof skillStatusPreviewMetadataSchema>;
|
|
51863
|
+
type SkillStatusVerificationSignals = z.infer<typeof skillStatusVerificationSignalsSchema>;
|
|
51864
|
+
type SkillStatusProvenanceSignals = z.infer<typeof skillStatusProvenanceSignalsSchema>;
|
|
49009
51865
|
type SkillStatusResponse = z.infer<typeof skillStatusResponseSchema>;
|
|
51866
|
+
type SkillInstallArtifactDescriptor = z.infer<typeof skillInstallArtifactDescriptorSchema>;
|
|
51867
|
+
type SkillInstallResolverDescriptor = z.infer<typeof skillInstallResolverDescriptorSchema>;
|
|
51868
|
+
type SkillInstallBadgeDescriptor = z.infer<typeof skillInstallBadgeDescriptorSchema>;
|
|
51869
|
+
type SkillInstallShareDescriptor = z.infer<typeof skillInstallShareDescriptorSchema>;
|
|
51870
|
+
type SkillInstallSnippetSet = z.infer<typeof skillInstallSnippetSetSchema>;
|
|
51871
|
+
type SkillInstallResponse = z.infer<typeof skillInstallResponseSchema>;
|
|
51872
|
+
type SkillInstallCopyTelemetryResponse = z.infer<typeof skillInstallCopyTelemetryResponseSchema>;
|
|
49010
51873
|
type SkillCatalogChannel = z.infer<typeof skillCatalogChannelSchema>;
|
|
49011
51874
|
type SkillCatalogSortBy = z.infer<typeof skillCatalogSortBySchema>;
|
|
49012
51875
|
type SkillCatalogVersionSummary = z.infer<typeof skillCatalogVersionSummarySchema>;
|
|
@@ -49081,6 +51944,27 @@ interface SkillRegistryVoteRequest {
|
|
|
49081
51944
|
name: string;
|
|
49082
51945
|
upvoted: boolean;
|
|
49083
51946
|
}
|
|
51947
|
+
interface SkillStatusRequest {
|
|
51948
|
+
name: string;
|
|
51949
|
+
version?: string;
|
|
51950
|
+
}
|
|
51951
|
+
interface SkillPreviewLookupRequest {
|
|
51952
|
+
name: string;
|
|
51953
|
+
version?: string;
|
|
51954
|
+
}
|
|
51955
|
+
interface SkillPreviewByRepoRequest {
|
|
51956
|
+
repo: string;
|
|
51957
|
+
skillDir: string;
|
|
51958
|
+
ref?: string;
|
|
51959
|
+
}
|
|
51960
|
+
interface UploadSkillPreviewFromGithubOidcRequest {
|
|
51961
|
+
token: string;
|
|
51962
|
+
report: SkillPreviewReport;
|
|
51963
|
+
}
|
|
51964
|
+
interface SkillInstallCopyTelemetryRequest {
|
|
51965
|
+
source?: string;
|
|
51966
|
+
installType?: 'cli' | 'skillmd' | 'manifest' | 'claude' | 'cursor' | 'codex' | 'openclaw';
|
|
51967
|
+
}
|
|
49084
51968
|
interface SkillVerificationRequestCreateRequest {
|
|
49085
51969
|
name: string;
|
|
49086
51970
|
version?: string;
|
|
@@ -49557,10 +52441,7 @@ declare class RegistryBrokerClient {
|
|
|
49557
52441
|
facets(adapter?: string): Promise<SearchFacetsResponse>;
|
|
49558
52442
|
adapters(): Promise<AdaptersResponse>;
|
|
49559
52443
|
skillsConfig(): Promise<SkillRegistryConfigResponse>;
|
|
49560
|
-
getSkillStatus(params:
|
|
49561
|
-
name: string;
|
|
49562
|
-
version?: string;
|
|
49563
|
-
}): Promise<SkillStatusResponse>;
|
|
52444
|
+
getSkillStatus(params: SkillStatusRequest): Promise<SkillStatusResponse>;
|
|
49564
52445
|
listSkills(options?: SkillListOptions): Promise<SkillRegistryListResponse>;
|
|
49565
52446
|
getSkillSecurityBreakdown(params: SkillSecurityBreakdownRequest): Promise<SkillSecurityBreakdownResponse>;
|
|
49566
52447
|
getSkillsCatalog(options?: SkillCatalogQueryOptions): Promise<SkillCatalogResponse>;
|
|
@@ -49593,6 +52474,13 @@ declare class RegistryBrokerClient {
|
|
|
49593
52474
|
}): Promise<SkillDeprecationsResponse>;
|
|
49594
52475
|
setSkillDeprecation(payload: SkillDeprecationSetRequest): Promise<SkillDeprecationRecord>;
|
|
49595
52476
|
getSkillBadge(params: SkillBadgeQuery): Promise<SkillBadgeResponse>;
|
|
52477
|
+
getSkillStatusByRepo(params: SkillPreviewByRepoRequest): Promise<SkillStatusResponse>;
|
|
52478
|
+
uploadSkillPreviewFromGithubOidc(payload: UploadSkillPreviewFromGithubOidcRequest): Promise<SkillPreviewRecord>;
|
|
52479
|
+
getSkillPreview(params: SkillPreviewLookupRequest): Promise<SkillPreviewLookupResponse>;
|
|
52480
|
+
getSkillPreviewByRepo(params: SkillPreviewByRepoRequest): Promise<SkillPreviewLookupResponse>;
|
|
52481
|
+
getSkillPreviewById(previewId: string): Promise<SkillPreviewLookupResponse>;
|
|
52482
|
+
getSkillInstall(skillRef: string): Promise<SkillInstallResponse>;
|
|
52483
|
+
recordSkillInstallCopy(skillRef: string, payload?: SkillInstallCopyTelemetryRequest): Promise<SkillInstallCopyTelemetryResponse>;
|
|
49596
52484
|
listSkillTags(): Promise<SkillRegistryTagsResponse>;
|
|
49597
52485
|
listSkillCategories(): Promise<SkillRegistryCategoriesResponse>;
|
|
49598
52486
|
resolveSkillMarkdown(skillRef: string): Promise<string>;
|
|
@@ -49786,4 +52674,4 @@ declare const buildJobStatusMessage: (input: {
|
|
|
49786
52674
|
jobId: number;
|
|
49787
52675
|
}) => string;
|
|
49788
52676
|
|
|
49789
|
-
export { type AcceptConversationOptions, type AcceptEncryptedChatSessionOptions, type AdapterDetailsResponse, type AdapterRegistryAdaptersResponse, type AdapterRegistryCategoriesResponse, type AdapterRegistryCategory, type AdapterRegistryCreateCategoryResponse, type AdapterRegistrySubmissionStatusResponse, type AdapterRegistrySubmitAdapterAcceptedResponse, type AdapterRegistrySubmitAdapterResponse, type AdaptersResponse, type AdditionalRegistryCatalogResponse, type AdditionalRegistryDescriptor, type AdditionalRegistryNetworkDescriptor, type AgentAuthConfig, type AgentAuthType, type AgentFeedbackEligibilityRequest, type AgentFeedbackEligibilityResponse, type AgentFeedbackEntriesIndexResponse, type AgentFeedbackIndexResponse, type AgentFeedbackQuery, type AgentFeedbackResponse, type AgentFeedbackSubmissionRequest, type AgentFeedbackSubmissionResponse, type AgentProfile, type AgentRegistrationRequest, type AgentRegistrationRequestMetadata, type AgentSearchHit, type AutoRegisterEncryptionKeyOptions, type AutoTopUpOptions, type CanonicalLedgerNetwork, type ChatConversationHandle, type ChatHistoryCompactionResponse, type ChatHistoryEntry, type ChatHistoryFetchOptions, type ChatHistorySnapshotResponse, type ChatHistorySnapshotWithDecryptedEntries, type CipherEnvelope, type CipherEnvelopeRecipient, type ClientEncryptionOptions, type CompactHistoryRequestPayload, type ConversationEncryptionOptions, type ConversationMode, type CreateAdapterRegistryCategoryRequest, type CreateSessionRequestPayload, type CreateSessionResponse, type CreditPurchaseResponse, type DashboardStatsResponse, type DecryptCipherEnvelopeOptions, type DecryptedHistoryEntry, type DelegationOpportunity, type DelegationPlanCandidate, type DelegationPlanFilter, type DelegationPlanRequest, type DelegationPlanResponse, type DelegationWorkspaceContext, type DeriveSharedSecretOptions, type DetectProtocolResponse, type EncryptCipherEnvelopeOptions, type EncryptedChatSendOptions, type EncryptedChatSessionHandle, type EncryptionHandshakeRecord, type EncryptionHandshakeResponse, type EncryptionHandshakeSubmissionPayload, type EnsureAgentKeyOptions, type EphemeralKeyPair, type GenerateEncryptionKeyPairOptions, HOL_CHAT_PROTOCOL_ID, type HistoryAutoTopUpOptions, type HolChatOp, type HolChatOpBase, type HolChatOpName, type InitializeAgentClientOptions, type InitializedAgentClient, type JsonObject, type JsonPrimitive, type JsonValue, type LedgerAuthenticationLogger, type LedgerAuthenticationOptions, type LedgerAuthenticationSignerResult, type LedgerChallengeRequest, type LedgerChallengeResponse, type LedgerCredentialAuthOptions, type LedgerVerifyRequest, type LedgerVerifyResponse, type MetricsSummaryResponse, type MoltbookOwnerRegistrationUpdateRequest, type MoltbookOwnerRegistrationUpdateResponse, type PopularSearchesResponse, type PrivateKeySignerOptions, type ProtocolDetectionMessage, type ProtocolsResponse, type RecipientIdentity, type RegisterAgentOptions, type RegisterAgentPartialResponse, type RegisterAgentPendingResponse, type RegisterAgentQuoteResponse, type RegisterAgentResponse, type RegisterAgentSuccessResponse, type RegisterEncryptionKeyPayload, type RegisterEncryptionKeyResponse, type RegisterStatusResponse, type RegistrationProgressAdditionalEntry, type RegistrationProgressRecord, type RegistrationProgressResponse, type RegistrationProgressWaitOptions, type RegistriesResponse, RegistryBrokerClient, type RegistryBrokerClientOptions, RegistryBrokerError, RegistryBrokerParseError, type RegistrySearchByNamespaceResponse, type RegistryStatsResponse, type ResolvedAgentResponse, type SearchFacetsResponse, type SearchParams, type SearchResult, type SearchStatusResponse, type SendMessageBasePayload, type SendMessageEncryptionOptions, type SendMessageRequestPayload, type SendMessageResponse, type SessionEncryptionStatusResponse, type SessionEncryptionSummary, type SharedSecretInput, type SkillBadgeMetric, type SkillBadgeQuery, type SkillBadgeResponse, type SkillBadgeStyle, type SkillCatalogChannel, type SkillCatalogItem, type SkillCatalogQueryOptions, type SkillCatalogResponse, type SkillCatalogSortBy, type SkillCatalogVersionSummary, type SkillDeprecationRecord, type SkillDeprecationSetRequest, type SkillDeprecationsResponse, type SkillListOptions, type SkillPublisherMetadata, type SkillPublisherQuickstartCommand, type SkillPublisherTemplatePreset, type SkillRecommendedVersionResponse, type SkillRecommendedVersionSetRequest, type SkillRegistryCategoriesResponse, type SkillRegistryConfigResponse, type SkillRegistryFileDescriptor, type SkillRegistryFileInput, type SkillRegistryFileRole, type SkillRegistryJobStatusResponse, type SkillRegistryListResponse, type SkillRegistryMineResponse, type SkillRegistryMyListResponse, type SkillRegistryOwnershipResponse, type SkillRegistryPublishRequest, type SkillRegistryPublishResponse, type SkillRegistryPublishSummary, type SkillRegistryQuoteRequest, type SkillRegistryQuoteResponse, type SkillRegistryTagsResponse, type SkillRegistryVersionsResponse, type SkillRegistryVoteRequest, type SkillRegistryVoteStatusResponse, type SkillResolverManifestResponse, type SkillSecurityBreakdownRequest, type SkillSecurityBreakdownResponse, type SkillStatusChecks, type SkillStatusNextStep, type SkillStatusResponse, type SkillTrustTier, type SkillVerificationDomainProofChallengeRequest, type SkillVerificationDomainProofChallengeResponse, type SkillVerificationDomainProofVerifyRequest, type SkillVerificationDomainProofVerifyResponse, type SkillVerificationRequest, type SkillVerificationRequestCreateRequest, type SkillVerificationRequestCreateResponse, type SkillVerificationStatusResponse, type SkillVerificationTier, type StartChatBaseOptions, type StartChatOptions, type StartConversationOptions, type StartEncryptedChatSessionOptions, type SubmitAdapterRegistryAdapterRequest, type UaidConnectionStatus, type UaidValidationResponse, type VectorSearchFilter, type VectorSearchRequest, type VectorSearchResponse, type VerificationChallengeDetailsResponse, type VerificationChallengeResponse, type VerificationDnsStatusQuery, type VerificationDnsStatusResponse, type VerificationDnsVerifyRequest, type VerificationOwnershipResponse, type VerificationStatusResponse, type VerificationVerifyResponse, type VerificationVerifySenderResponse, type WebsocketStatsResponse, type X402CreditPurchaseResponse, type X402MinimumsResponse, buildJobStatusMessage, buildPaymentApproveMessage, buildPaymentDeclineMessage, canonicalizeLedgerNetwork, closeUaidConnection, createPrivateKeySigner, createPrivateKeySignerAsync, dashboardStats, getRegistrationProgress, getRegistrationQuote, getUaidConnectionStatus, isHolChatOp, isPartialRegisterAgentResponse, isPendingRegisterAgentResponse, isSuccessRegisterAgentResponse, parseHolChatOps, registerAgent, resolveUaid, updateAgent, validateUaid, waitForRegistrationCompletion };
|
|
52677
|
+
export { type AcceptConversationOptions, type AcceptEncryptedChatSessionOptions, type AdapterDetailsResponse, type AdapterRegistryAdaptersResponse, type AdapterRegistryCategoriesResponse, type AdapterRegistryCategory, type AdapterRegistryCreateCategoryResponse, type AdapterRegistrySubmissionStatusResponse, type AdapterRegistrySubmitAdapterAcceptedResponse, type AdapterRegistrySubmitAdapterResponse, type AdaptersResponse, type AdditionalRegistryCatalogResponse, type AdditionalRegistryDescriptor, type AdditionalRegistryNetworkDescriptor, type AgentAuthConfig, type AgentAuthType, type AgentFeedbackEligibilityRequest, type AgentFeedbackEligibilityResponse, type AgentFeedbackEntriesIndexResponse, type AgentFeedbackIndexResponse, type AgentFeedbackQuery, type AgentFeedbackResponse, type AgentFeedbackSubmissionRequest, type AgentFeedbackSubmissionResponse, type AgentProfile, type AgentRegistrationRequest, type AgentRegistrationRequestMetadata, type AgentSearchHit, type AutoRegisterEncryptionKeyOptions, type AutoTopUpOptions, type CanonicalLedgerNetwork, type ChatConversationHandle, type ChatHistoryCompactionResponse, type ChatHistoryEntry, type ChatHistoryFetchOptions, type ChatHistorySnapshotResponse, type ChatHistorySnapshotWithDecryptedEntries, type CipherEnvelope, type CipherEnvelopeRecipient, type ClientEncryptionOptions, type CompactHistoryRequestPayload, type ConversationEncryptionOptions, type ConversationMode, type CreateAdapterRegistryCategoryRequest, type CreateSessionRequestPayload, type CreateSessionResponse, type CreditPurchaseResponse, type DashboardStatsResponse, type DecryptCipherEnvelopeOptions, type DecryptedHistoryEntry, type DelegationOpportunity, type DelegationPlanCandidate, type DelegationPlanFilter, type DelegationPlanRequest, type DelegationPlanResponse, type DelegationWorkspaceContext, type DeriveSharedSecretOptions, type DetectProtocolResponse, type EncryptCipherEnvelopeOptions, type EncryptedChatSendOptions, type EncryptedChatSessionHandle, type EncryptionHandshakeRecord, type EncryptionHandshakeResponse, type EncryptionHandshakeSubmissionPayload, type EnsureAgentKeyOptions, type EphemeralKeyPair, type GenerateEncryptionKeyPairOptions, HOL_CHAT_PROTOCOL_ID, type HistoryAutoTopUpOptions, type HolChatOp, type HolChatOpBase, type HolChatOpName, type InitializeAgentClientOptions, type InitializedAgentClient, type JsonObject, type JsonPrimitive, type JsonValue, type LedgerAuthenticationLogger, type LedgerAuthenticationOptions, type LedgerAuthenticationSignerResult, type LedgerChallengeRequest, type LedgerChallengeResponse, type LedgerCredentialAuthOptions, type LedgerVerifyRequest, type LedgerVerifyResponse, type MetricsSummaryResponse, type MoltbookOwnerRegistrationUpdateRequest, type MoltbookOwnerRegistrationUpdateResponse, type PopularSearchesResponse, type PrivateKeySignerOptions, type ProtocolDetectionMessage, type ProtocolsResponse, type RecipientIdentity, type RegisterAgentOptions, type RegisterAgentPartialResponse, type RegisterAgentPendingResponse, type RegisterAgentQuoteResponse, type RegisterAgentResponse, type RegisterAgentSuccessResponse, type RegisterEncryptionKeyPayload, type RegisterEncryptionKeyResponse, type RegisterStatusResponse, type RegistrationProgressAdditionalEntry, type RegistrationProgressRecord, type RegistrationProgressResponse, type RegistrationProgressWaitOptions, type RegistriesResponse, RegistryBrokerClient, type RegistryBrokerClientOptions, RegistryBrokerError, RegistryBrokerParseError, type RegistrySearchByNamespaceResponse, type RegistryStatsResponse, type ResolvedAgentResponse, type SearchFacetsResponse, type SearchParams, type SearchResult, type SearchStatusResponse, type SendMessageBasePayload, type SendMessageEncryptionOptions, type SendMessageRequestPayload, type SendMessageResponse, type SessionEncryptionStatusResponse, type SessionEncryptionSummary, type SharedSecretInput, type SkillBadgeMetric, type SkillBadgeQuery, type SkillBadgeResponse, type SkillBadgeStyle, type SkillCatalogChannel, type SkillCatalogItem, type SkillCatalogQueryOptions, type SkillCatalogResponse, type SkillCatalogSortBy, type SkillCatalogVersionSummary, type SkillDeprecationRecord, type SkillDeprecationSetRequest, type SkillDeprecationsResponse, type SkillInstallArtifactDescriptor, type SkillInstallBadgeDescriptor, type SkillInstallCopyTelemetryRequest, type SkillInstallCopyTelemetryResponse, type SkillInstallResolverDescriptor, type SkillInstallResponse, type SkillInstallShareDescriptor, type SkillInstallSnippetSet, type SkillListOptions, type SkillPreviewByRepoRequest, type SkillPreviewLookupRequest, type SkillPreviewLookupResponse, type SkillPreviewRecord, type SkillPreviewReport, type SkillPreviewSuggestedNextStep, type SkillPublisherMetadata, type SkillPublisherQuickstartCommand, type SkillPublisherTemplatePreset, type SkillRecommendedVersionResponse, type SkillRecommendedVersionSetRequest, type SkillRegistryCategoriesResponse, type SkillRegistryConfigResponse, type SkillRegistryFileDescriptor, type SkillRegistryFileInput, type SkillRegistryFileRole, type SkillRegistryJobStatusResponse, type SkillRegistryListResponse, type SkillRegistryMineResponse, type SkillRegistryMyListResponse, type SkillRegistryOwnershipResponse, type SkillRegistryPublishRequest, type SkillRegistryPublishResponse, type SkillRegistryPublishSummary, type SkillRegistryQuoteRequest, type SkillRegistryQuoteResponse, type SkillRegistryTagsResponse, type SkillRegistryVersionsResponse, type SkillRegistryVoteRequest, type SkillRegistryVoteStatusResponse, type SkillResolverManifestResponse, type SkillSecurityBreakdownRequest, type SkillSecurityBreakdownResponse, type SkillStatusChecks, type SkillStatusNextStep, type SkillStatusPreviewMetadata, type SkillStatusProvenanceSignals, type SkillStatusRequest, type SkillStatusResponse, type SkillStatusVerificationSignals, type SkillTrustTier, type SkillVerificationDomainProofChallengeRequest, type SkillVerificationDomainProofChallengeResponse, type SkillVerificationDomainProofVerifyRequest, type SkillVerificationDomainProofVerifyResponse, type SkillVerificationRequest, type SkillVerificationRequestCreateRequest, type SkillVerificationRequestCreateResponse, type SkillVerificationStatusResponse, type SkillVerificationTier, type StartChatBaseOptions, type StartChatOptions, type StartConversationOptions, type StartEncryptedChatSessionOptions, type SubmitAdapterRegistryAdapterRequest, type UaidConnectionStatus, type UaidValidationResponse, type UploadSkillPreviewFromGithubOidcRequest, type VectorSearchFilter, type VectorSearchRequest, type VectorSearchResponse, type VerificationChallengeDetailsResponse, type VerificationChallengeResponse, type VerificationDnsStatusQuery, type VerificationDnsStatusResponse, type VerificationDnsVerifyRequest, type VerificationOwnershipResponse, type VerificationStatusResponse, type VerificationVerifyResponse, type VerificationVerifySenderResponse, type WebsocketStatsResponse, type X402CreditPurchaseResponse, type X402MinimumsResponse, buildJobStatusMessage, buildPaymentApproveMessage, buildPaymentDeclineMessage, canonicalizeLedgerNetwork, closeUaidConnection, createPrivateKeySigner, createPrivateKeySignerAsync, dashboardStats, getRegistrationProgress, getRegistrationQuote, getUaidConnectionStatus, isHolChatOp, isPartialRegisterAgentResponse, isPendingRegisterAgentResponse, isSuccessRegisterAgentResponse, parseHolChatOps, registerAgent, resolveUaid, updateAgent, validateUaid, waitForRegistrationCompletion };
|