@adkinn/astro-ai-readiness 0.0.9 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -11
- package/dist/{chunk-XYQNZKKD.js → chunk-RRCNTDA5.js} +6 -0
- package/dist/components/OrganizationSchema.astro +1 -0
- package/dist/components/SoftwareApplicationSchema.astro +2 -1
- package/dist/config.d.ts +52 -22
- package/dist/config.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
> AI Readiness toolkit for Astro — eight JSON-LD helper components plus `dist/llms.txt`, `dist/llms-full.txt`, `dist/agents.md`, `dist/robots.txt`, and `dist/.well-known/mcp.json`.
|
|
4
4
|
|
|
5
|
-
**Status:** v0.0.
|
|
5
|
+
**Status:** v0.0.11 — app / product / game support. `<SoftwareApplicationSchema />` (screenshots, feature list, offers, and a `type` for `VideoGame` / `MobileApplication` / `WebApplication` + `gamePlatform`), Organization `description` + `sameAs` + `contactPoint`, `founder.url`, WebSite `inLanguage`, and custom `## sections` for `agents.md` — proven on three real sites (a person, an app, a game).
|
|
6
6
|
|
|
7
|
-
## What ships in v0.0.
|
|
7
|
+
## What ships in v0.0.11
|
|
8
8
|
|
|
9
9
|
**Eight JSON-LD components**:
|
|
10
10
|
- `<OrganizationSchema />` — Organization block. Config-driven from `organization` (optional; now supports `description`, `contactPoint`, and `founder.url`); place in your `BaseLayout` so it ships site-wide and the `#organization` `@id` reference resolves on every page. Renders nothing if `organization` is unset.
|
|
@@ -31,14 +31,6 @@ URL config fields (`site`, `organization.url`, `organization.logo`, `founder.sam
|
|
|
31
31
|
|
|
32
32
|
Config validation errors are formatted with one issue per line — `path: message` per Zod issue — instead of the default `ZodError` JSON blob.
|
|
33
33
|
|
|
34
|
-
## On the roadmap (toward v0.1.0)
|
|
35
|
-
|
|
36
|
-
- v0.0.8 — fixture Astro app validation against adamkinney.com install paths; refine robots presets from real traffic policy.
|
|
37
|
-
- v0.0.9 — content-collection assisted `llms-full.txt` generation.
|
|
38
|
-
- v0.1.0 — polish, docs, release hardening; full install on adamkinney.com
|
|
39
|
-
|
|
40
|
-
Track progress: <https://github.com/adkinn/astro-ai-readiness/milestones>
|
|
41
|
-
|
|
42
34
|
## Install
|
|
43
35
|
|
|
44
36
|
```bash
|
|
@@ -290,7 +282,9 @@ The v0.1 line is content → artifacts: components and files. Build-time AI-read
|
|
|
290
282
|
|
|
291
283
|
## Shipped on
|
|
292
284
|
|
|
293
|
-
- [adamkinney.com](https://adamkinney.com) — the reference implementation.
|
|
285
|
+
- [adamkinney.com](https://adamkinney.com) — the personal-brand reference implementation. Person-first: runs `PersonSchema` + `WebSiteSchema` site-wide and emits `dist/llms.txt` at <https://adamkinney.com/llms.txt> and `dist/agents.md` at <https://adamkinney.com/agents.md>.
|
|
286
|
+
- [comicscry.com](https://comicscry.com) — the app/product reference implementation (Astro 6 SSR, `@astrojs/cloudflare`). Runs `OrganizationSchema` + `WebSiteSchema` site-wide and `SoftwareApplicationSchema` + `FAQPageSchema` on the homepage, and emits `dist/llms.txt`, `dist/agents.md`, and `dist/robots.txt`. Drove the app/product features in v0.0.9–v0.0.10.
|
|
287
|
+
- [gurn.app](https://gurn.app) — the game reference implementation (Astro 6 SSR, `@astrojs/cloudflare`). Runs `OrganizationSchema` + `WebSiteSchema` site-wide and `SoftwareApplicationSchema` (as a `VideoGame`) + `FAQPageSchema` on the homepage, and emits `dist/llms.txt` + `dist/robots.txt`. Drove `VideoGame` / `gamePlatform` support in v0.0.11.
|
|
294
288
|
|
|
295
289
|
## Contributing
|
|
296
290
|
|
|
@@ -22,6 +22,7 @@ var organizationSchema = z.object({
|
|
|
22
22
|
url: httpsUrl.optional(),
|
|
23
23
|
logo: httpsUrl.optional(),
|
|
24
24
|
description: z.string().optional(),
|
|
25
|
+
sameAs: z.array(httpsUrl).optional(),
|
|
25
26
|
founder: founderSchema.optional(),
|
|
26
27
|
foundingDate: z.string().optional(),
|
|
27
28
|
knowsAbout: z.array(z.string()).optional(),
|
|
@@ -50,9 +51,14 @@ var offerSchema = z.object({
|
|
|
50
51
|
}).strict();
|
|
51
52
|
var softwareApplicationSchema = z.object({
|
|
52
53
|
name: z.string().min(1),
|
|
54
|
+
// schema.org @type — VideoGame / MobileApplication / WebApplication are
|
|
55
|
+
// subtypes of SoftwareApplication, more accurate for games and mobile/web
|
|
56
|
+
// apps. Defaults to 'SoftwareApplication'.
|
|
57
|
+
type: z.enum(["SoftwareApplication", "VideoGame", "MobileApplication", "WebApplication"]).optional(),
|
|
53
58
|
applicationCategory: z.string().optional(),
|
|
54
59
|
applicationSubCategory: z.string().optional(),
|
|
55
60
|
operatingSystem: z.string().optional(),
|
|
61
|
+
gamePlatform: z.union([z.string().min(1), z.array(z.string().min(1)).min(1)]).optional(),
|
|
56
62
|
description: z.string().optional(),
|
|
57
63
|
url: httpsUrl.optional(),
|
|
58
64
|
image: httpsUrl.optional(),
|
|
@@ -19,6 +19,7 @@ if (org) {
|
|
|
19
19
|
if (org.url) orgLd.url = org.url
|
|
20
20
|
if (org.logo) orgLd.logo = org.logo
|
|
21
21
|
if (org.description) orgLd.description = org.description
|
|
22
|
+
if (org.sameAs && org.sameAs.length > 0) orgLd.sameAs = org.sameAs
|
|
22
23
|
if (org.foundingDate) orgLd.foundingDate = org.foundingDate
|
|
23
24
|
if (org.knowsAbout && org.knowsAbout.length > 0) orgLd.knowsAbout = org.knowsAbout
|
|
24
25
|
if (org.areaServed) orgLd.areaServed = org.areaServed
|
|
@@ -18,7 +18,7 @@ let appLd: SchemaJson | null = null
|
|
|
18
18
|
if (app) {
|
|
19
19
|
appLd = {
|
|
20
20
|
'@context': 'https://schema.org',
|
|
21
|
-
'@type': 'SoftwareApplication',
|
|
21
|
+
'@type': app.type ?? 'SoftwareApplication',
|
|
22
22
|
'@id': `${config.site}#app`,
|
|
23
23
|
name: app.name,
|
|
24
24
|
}
|
|
@@ -26,6 +26,7 @@ if (app) {
|
|
|
26
26
|
if (app.applicationCategory) appLd.applicationCategory = app.applicationCategory
|
|
27
27
|
if (app.applicationSubCategory) appLd.applicationSubCategory = app.applicationSubCategory
|
|
28
28
|
if (app.operatingSystem) appLd.operatingSystem = app.operatingSystem
|
|
29
|
+
if (app.gamePlatform) appLd.gamePlatform = app.gamePlatform
|
|
29
30
|
if (app.description) appLd.description = app.description
|
|
30
31
|
if (app.url) appLd.url = app.url
|
|
31
32
|
if (app.image) appLd.image = app.image
|
package/dist/config.d.ts
CHANGED
|
@@ -26,14 +26,14 @@ declare const founderSchema: z.ZodObject<{
|
|
|
26
26
|
name: string;
|
|
27
27
|
url?: string | undefined;
|
|
28
28
|
description?: string | undefined;
|
|
29
|
-
jobTitle?: string | undefined;
|
|
30
29
|
sameAs?: string[] | undefined;
|
|
30
|
+
jobTitle?: string | undefined;
|
|
31
31
|
}, {
|
|
32
32
|
name: string;
|
|
33
33
|
url?: string | undefined;
|
|
34
34
|
description?: string | undefined;
|
|
35
|
-
jobTitle?: string | undefined;
|
|
36
35
|
sameAs?: string[] | undefined;
|
|
36
|
+
jobTitle?: string | undefined;
|
|
37
37
|
}>;
|
|
38
38
|
declare const contactPointSchema: z.ZodObject<{
|
|
39
39
|
contactType: z.ZodString;
|
|
@@ -56,6 +56,7 @@ declare const organizationSchema: z.ZodObject<{
|
|
|
56
56
|
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
57
57
|
logo: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
58
58
|
description: z.ZodOptional<z.ZodString>;
|
|
59
|
+
sameAs: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
59
60
|
founder: z.ZodOptional<z.ZodObject<{
|
|
60
61
|
name: z.ZodString;
|
|
61
62
|
jobTitle: z.ZodOptional<z.ZodString>;
|
|
@@ -66,14 +67,14 @@ declare const organizationSchema: z.ZodObject<{
|
|
|
66
67
|
name: string;
|
|
67
68
|
url?: string | undefined;
|
|
68
69
|
description?: string | undefined;
|
|
69
|
-
jobTitle?: string | undefined;
|
|
70
70
|
sameAs?: string[] | undefined;
|
|
71
|
+
jobTitle?: string | undefined;
|
|
71
72
|
}, {
|
|
72
73
|
name: string;
|
|
73
74
|
url?: string | undefined;
|
|
74
75
|
description?: string | undefined;
|
|
75
|
-
jobTitle?: string | undefined;
|
|
76
76
|
sameAs?: string[] | undefined;
|
|
77
|
+
jobTitle?: string | undefined;
|
|
77
78
|
}>>;
|
|
78
79
|
foundingDate: z.ZodOptional<z.ZodString>;
|
|
79
80
|
knowsAbout: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -99,12 +100,13 @@ declare const organizationSchema: z.ZodObject<{
|
|
|
99
100
|
url?: string | undefined;
|
|
100
101
|
logo?: string | undefined;
|
|
101
102
|
description?: string | undefined;
|
|
103
|
+
sameAs?: string[] | undefined;
|
|
102
104
|
founder?: {
|
|
103
105
|
name: string;
|
|
104
106
|
url?: string | undefined;
|
|
105
107
|
description?: string | undefined;
|
|
106
|
-
jobTitle?: string | undefined;
|
|
107
108
|
sameAs?: string[] | undefined;
|
|
109
|
+
jobTitle?: string | undefined;
|
|
108
110
|
} | undefined;
|
|
109
111
|
foundingDate?: string | undefined;
|
|
110
112
|
knowsAbout?: string[] | undefined;
|
|
@@ -120,12 +122,13 @@ declare const organizationSchema: z.ZodObject<{
|
|
|
120
122
|
url?: string | undefined;
|
|
121
123
|
logo?: string | undefined;
|
|
122
124
|
description?: string | undefined;
|
|
125
|
+
sameAs?: string[] | undefined;
|
|
123
126
|
founder?: {
|
|
124
127
|
name: string;
|
|
125
128
|
url?: string | undefined;
|
|
126
129
|
description?: string | undefined;
|
|
127
|
-
jobTitle?: string | undefined;
|
|
128
130
|
sameAs?: string[] | undefined;
|
|
131
|
+
jobTitle?: string | undefined;
|
|
129
132
|
} | undefined;
|
|
130
133
|
foundingDate?: string | undefined;
|
|
131
134
|
knowsAbout?: string[] | undefined;
|
|
@@ -149,16 +152,16 @@ declare const personSchema: z.ZodObject<{
|
|
|
149
152
|
name: string;
|
|
150
153
|
url?: string | undefined;
|
|
151
154
|
description?: string | undefined;
|
|
152
|
-
jobTitle?: string | undefined;
|
|
153
155
|
sameAs?: string[] | undefined;
|
|
156
|
+
jobTitle?: string | undefined;
|
|
154
157
|
knowsAbout?: string[] | undefined;
|
|
155
158
|
image?: string | undefined;
|
|
156
159
|
}, {
|
|
157
160
|
name: string;
|
|
158
161
|
url?: string | undefined;
|
|
159
162
|
description?: string | undefined;
|
|
160
|
-
jobTitle?: string | undefined;
|
|
161
163
|
sameAs?: string[] | undefined;
|
|
164
|
+
jobTitle?: string | undefined;
|
|
162
165
|
knowsAbout?: string[] | undefined;
|
|
163
166
|
image?: string | undefined;
|
|
164
167
|
}>;
|
|
@@ -177,9 +180,11 @@ declare const webSiteSchema: z.ZodObject<{
|
|
|
177
180
|
}>;
|
|
178
181
|
declare const softwareApplicationSchema: z.ZodObject<{
|
|
179
182
|
name: z.ZodString;
|
|
183
|
+
type: z.ZodOptional<z.ZodEnum<["SoftwareApplication", "VideoGame", "MobileApplication", "WebApplication"]>>;
|
|
180
184
|
applicationCategory: z.ZodOptional<z.ZodString>;
|
|
181
185
|
applicationSubCategory: z.ZodOptional<z.ZodString>;
|
|
182
186
|
operatingSystem: z.ZodOptional<z.ZodString>;
|
|
187
|
+
gamePlatform: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
183
188
|
description: z.ZodOptional<z.ZodString>;
|
|
184
189
|
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
185
190
|
image: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -217,10 +222,12 @@ declare const softwareApplicationSchema: z.ZodObject<{
|
|
|
217
222
|
name: string;
|
|
218
223
|
url?: string | undefined;
|
|
219
224
|
description?: string | undefined;
|
|
225
|
+
type?: "SoftwareApplication" | "VideoGame" | "MobileApplication" | "WebApplication" | undefined;
|
|
220
226
|
image?: string | undefined;
|
|
221
227
|
applicationCategory?: string | undefined;
|
|
222
228
|
applicationSubCategory?: string | undefined;
|
|
223
229
|
operatingSystem?: string | undefined;
|
|
230
|
+
gamePlatform?: string | string[] | undefined;
|
|
224
231
|
screenshot?: string[] | undefined;
|
|
225
232
|
featureList?: string[] | undefined;
|
|
226
233
|
offers?: {
|
|
@@ -239,10 +246,12 @@ declare const softwareApplicationSchema: z.ZodObject<{
|
|
|
239
246
|
name: string;
|
|
240
247
|
url?: string | undefined;
|
|
241
248
|
description?: string | undefined;
|
|
249
|
+
type?: "SoftwareApplication" | "VideoGame" | "MobileApplication" | "WebApplication" | undefined;
|
|
242
250
|
image?: string | undefined;
|
|
243
251
|
applicationCategory?: string | undefined;
|
|
244
252
|
applicationSubCategory?: string | undefined;
|
|
245
253
|
operatingSystem?: string | undefined;
|
|
254
|
+
gamePlatform?: string | string[] | undefined;
|
|
246
255
|
screenshot?: string[] | undefined;
|
|
247
256
|
featureList?: string[] | undefined;
|
|
248
257
|
offers?: {
|
|
@@ -628,6 +637,7 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
628
637
|
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
629
638
|
logo: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
630
639
|
description: z.ZodOptional<z.ZodString>;
|
|
640
|
+
sameAs: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
631
641
|
founder: z.ZodOptional<z.ZodObject<{
|
|
632
642
|
name: z.ZodString;
|
|
633
643
|
jobTitle: z.ZodOptional<z.ZodString>;
|
|
@@ -638,14 +648,14 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
638
648
|
name: string;
|
|
639
649
|
url?: string | undefined;
|
|
640
650
|
description?: string | undefined;
|
|
641
|
-
jobTitle?: string | undefined;
|
|
642
651
|
sameAs?: string[] | undefined;
|
|
652
|
+
jobTitle?: string | undefined;
|
|
643
653
|
}, {
|
|
644
654
|
name: string;
|
|
645
655
|
url?: string | undefined;
|
|
646
656
|
description?: string | undefined;
|
|
647
|
-
jobTitle?: string | undefined;
|
|
648
657
|
sameAs?: string[] | undefined;
|
|
658
|
+
jobTitle?: string | undefined;
|
|
649
659
|
}>>;
|
|
650
660
|
foundingDate: z.ZodOptional<z.ZodString>;
|
|
651
661
|
knowsAbout: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -671,12 +681,13 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
671
681
|
url?: string | undefined;
|
|
672
682
|
logo?: string | undefined;
|
|
673
683
|
description?: string | undefined;
|
|
684
|
+
sameAs?: string[] | undefined;
|
|
674
685
|
founder?: {
|
|
675
686
|
name: string;
|
|
676
687
|
url?: string | undefined;
|
|
677
688
|
description?: string | undefined;
|
|
678
|
-
jobTitle?: string | undefined;
|
|
679
689
|
sameAs?: string[] | undefined;
|
|
690
|
+
jobTitle?: string | undefined;
|
|
680
691
|
} | undefined;
|
|
681
692
|
foundingDate?: string | undefined;
|
|
682
693
|
knowsAbout?: string[] | undefined;
|
|
@@ -692,12 +703,13 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
692
703
|
url?: string | undefined;
|
|
693
704
|
logo?: string | undefined;
|
|
694
705
|
description?: string | undefined;
|
|
706
|
+
sameAs?: string[] | undefined;
|
|
695
707
|
founder?: {
|
|
696
708
|
name: string;
|
|
697
709
|
url?: string | undefined;
|
|
698
710
|
description?: string | undefined;
|
|
699
|
-
jobTitle?: string | undefined;
|
|
700
711
|
sameAs?: string[] | undefined;
|
|
712
|
+
jobTitle?: string | undefined;
|
|
701
713
|
} | undefined;
|
|
702
714
|
foundingDate?: string | undefined;
|
|
703
715
|
knowsAbout?: string[] | undefined;
|
|
@@ -721,24 +733,26 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
721
733
|
name: string;
|
|
722
734
|
url?: string | undefined;
|
|
723
735
|
description?: string | undefined;
|
|
724
|
-
jobTitle?: string | undefined;
|
|
725
736
|
sameAs?: string[] | undefined;
|
|
737
|
+
jobTitle?: string | undefined;
|
|
726
738
|
knowsAbout?: string[] | undefined;
|
|
727
739
|
image?: string | undefined;
|
|
728
740
|
}, {
|
|
729
741
|
name: string;
|
|
730
742
|
url?: string | undefined;
|
|
731
743
|
description?: string | undefined;
|
|
732
|
-
jobTitle?: string | undefined;
|
|
733
744
|
sameAs?: string[] | undefined;
|
|
745
|
+
jobTitle?: string | undefined;
|
|
734
746
|
knowsAbout?: string[] | undefined;
|
|
735
747
|
image?: string | undefined;
|
|
736
748
|
}>>;
|
|
737
749
|
softwareApplication: z.ZodOptional<z.ZodObject<{
|
|
738
750
|
name: z.ZodString;
|
|
751
|
+
type: z.ZodOptional<z.ZodEnum<["SoftwareApplication", "VideoGame", "MobileApplication", "WebApplication"]>>;
|
|
739
752
|
applicationCategory: z.ZodOptional<z.ZodString>;
|
|
740
753
|
applicationSubCategory: z.ZodOptional<z.ZodString>;
|
|
741
754
|
operatingSystem: z.ZodOptional<z.ZodString>;
|
|
755
|
+
gamePlatform: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
742
756
|
description: z.ZodOptional<z.ZodString>;
|
|
743
757
|
url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
744
758
|
image: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -776,10 +790,12 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
776
790
|
name: string;
|
|
777
791
|
url?: string | undefined;
|
|
778
792
|
description?: string | undefined;
|
|
793
|
+
type?: "SoftwareApplication" | "VideoGame" | "MobileApplication" | "WebApplication" | undefined;
|
|
779
794
|
image?: string | undefined;
|
|
780
795
|
applicationCategory?: string | undefined;
|
|
781
796
|
applicationSubCategory?: string | undefined;
|
|
782
797
|
operatingSystem?: string | undefined;
|
|
798
|
+
gamePlatform?: string | string[] | undefined;
|
|
783
799
|
screenshot?: string[] | undefined;
|
|
784
800
|
featureList?: string[] | undefined;
|
|
785
801
|
offers?: {
|
|
@@ -798,10 +814,12 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
798
814
|
name: string;
|
|
799
815
|
url?: string | undefined;
|
|
800
816
|
description?: string | undefined;
|
|
817
|
+
type?: "SoftwareApplication" | "VideoGame" | "MobileApplication" | "WebApplication" | undefined;
|
|
801
818
|
image?: string | undefined;
|
|
802
819
|
applicationCategory?: string | undefined;
|
|
803
820
|
applicationSubCategory?: string | undefined;
|
|
804
821
|
operatingSystem?: string | undefined;
|
|
822
|
+
gamePlatform?: string | string[] | undefined;
|
|
805
823
|
screenshot?: string[] | undefined;
|
|
806
824
|
featureList?: string[] | undefined;
|
|
807
825
|
offers?: {
|
|
@@ -1200,12 +1218,13 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1200
1218
|
url?: string | undefined;
|
|
1201
1219
|
logo?: string | undefined;
|
|
1202
1220
|
description?: string | undefined;
|
|
1221
|
+
sameAs?: string[] | undefined;
|
|
1203
1222
|
founder?: {
|
|
1204
1223
|
name: string;
|
|
1205
1224
|
url?: string | undefined;
|
|
1206
1225
|
description?: string | undefined;
|
|
1207
|
-
jobTitle?: string | undefined;
|
|
1208
1226
|
sameAs?: string[] | undefined;
|
|
1227
|
+
jobTitle?: string | undefined;
|
|
1209
1228
|
} | undefined;
|
|
1210
1229
|
foundingDate?: string | undefined;
|
|
1211
1230
|
knowsAbout?: string[] | undefined;
|
|
@@ -1221,8 +1240,8 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1221
1240
|
name: string;
|
|
1222
1241
|
url?: string | undefined;
|
|
1223
1242
|
description?: string | undefined;
|
|
1224
|
-
jobTitle?: string | undefined;
|
|
1225
1243
|
sameAs?: string[] | undefined;
|
|
1244
|
+
jobTitle?: string | undefined;
|
|
1226
1245
|
knowsAbout?: string[] | undefined;
|
|
1227
1246
|
image?: string | undefined;
|
|
1228
1247
|
} | undefined;
|
|
@@ -1230,10 +1249,12 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1230
1249
|
name: string;
|
|
1231
1250
|
url?: string | undefined;
|
|
1232
1251
|
description?: string | undefined;
|
|
1252
|
+
type?: "SoftwareApplication" | "VideoGame" | "MobileApplication" | "WebApplication" | undefined;
|
|
1233
1253
|
image?: string | undefined;
|
|
1234
1254
|
applicationCategory?: string | undefined;
|
|
1235
1255
|
applicationSubCategory?: string | undefined;
|
|
1236
1256
|
operatingSystem?: string | undefined;
|
|
1257
|
+
gamePlatform?: string | string[] | undefined;
|
|
1237
1258
|
screenshot?: string[] | undefined;
|
|
1238
1259
|
featureList?: string[] | undefined;
|
|
1239
1260
|
offers?: {
|
|
@@ -1338,12 +1359,13 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1338
1359
|
url?: string | undefined;
|
|
1339
1360
|
logo?: string | undefined;
|
|
1340
1361
|
description?: string | undefined;
|
|
1362
|
+
sameAs?: string[] | undefined;
|
|
1341
1363
|
founder?: {
|
|
1342
1364
|
name: string;
|
|
1343
1365
|
url?: string | undefined;
|
|
1344
1366
|
description?: string | undefined;
|
|
1345
|
-
jobTitle?: string | undefined;
|
|
1346
1367
|
sameAs?: string[] | undefined;
|
|
1368
|
+
jobTitle?: string | undefined;
|
|
1347
1369
|
} | undefined;
|
|
1348
1370
|
foundingDate?: string | undefined;
|
|
1349
1371
|
knowsAbout?: string[] | undefined;
|
|
@@ -1359,8 +1381,8 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1359
1381
|
name: string;
|
|
1360
1382
|
url?: string | undefined;
|
|
1361
1383
|
description?: string | undefined;
|
|
1362
|
-
jobTitle?: string | undefined;
|
|
1363
1384
|
sameAs?: string[] | undefined;
|
|
1385
|
+
jobTitle?: string | undefined;
|
|
1364
1386
|
knowsAbout?: string[] | undefined;
|
|
1365
1387
|
image?: string | undefined;
|
|
1366
1388
|
} | undefined;
|
|
@@ -1368,10 +1390,12 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1368
1390
|
name: string;
|
|
1369
1391
|
url?: string | undefined;
|
|
1370
1392
|
description?: string | undefined;
|
|
1393
|
+
type?: "SoftwareApplication" | "VideoGame" | "MobileApplication" | "WebApplication" | undefined;
|
|
1371
1394
|
image?: string | undefined;
|
|
1372
1395
|
applicationCategory?: string | undefined;
|
|
1373
1396
|
applicationSubCategory?: string | undefined;
|
|
1374
1397
|
operatingSystem?: string | undefined;
|
|
1398
|
+
gamePlatform?: string | string[] | undefined;
|
|
1375
1399
|
screenshot?: string[] | undefined;
|
|
1376
1400
|
featureList?: string[] | undefined;
|
|
1377
1401
|
offers?: {
|
|
@@ -1476,12 +1500,13 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1476
1500
|
url?: string | undefined;
|
|
1477
1501
|
logo?: string | undefined;
|
|
1478
1502
|
description?: string | undefined;
|
|
1503
|
+
sameAs?: string[] | undefined;
|
|
1479
1504
|
founder?: {
|
|
1480
1505
|
name: string;
|
|
1481
1506
|
url?: string | undefined;
|
|
1482
1507
|
description?: string | undefined;
|
|
1483
|
-
jobTitle?: string | undefined;
|
|
1484
1508
|
sameAs?: string[] | undefined;
|
|
1509
|
+
jobTitle?: string | undefined;
|
|
1485
1510
|
} | undefined;
|
|
1486
1511
|
foundingDate?: string | undefined;
|
|
1487
1512
|
knowsAbout?: string[] | undefined;
|
|
@@ -1497,8 +1522,8 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1497
1522
|
name: string;
|
|
1498
1523
|
url?: string | undefined;
|
|
1499
1524
|
description?: string | undefined;
|
|
1500
|
-
jobTitle?: string | undefined;
|
|
1501
1525
|
sameAs?: string[] | undefined;
|
|
1526
|
+
jobTitle?: string | undefined;
|
|
1502
1527
|
knowsAbout?: string[] | undefined;
|
|
1503
1528
|
image?: string | undefined;
|
|
1504
1529
|
} | undefined;
|
|
@@ -1506,10 +1531,12 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1506
1531
|
name: string;
|
|
1507
1532
|
url?: string | undefined;
|
|
1508
1533
|
description?: string | undefined;
|
|
1534
|
+
type?: "SoftwareApplication" | "VideoGame" | "MobileApplication" | "WebApplication" | undefined;
|
|
1509
1535
|
image?: string | undefined;
|
|
1510
1536
|
applicationCategory?: string | undefined;
|
|
1511
1537
|
applicationSubCategory?: string | undefined;
|
|
1512
1538
|
operatingSystem?: string | undefined;
|
|
1539
|
+
gamePlatform?: string | string[] | undefined;
|
|
1513
1540
|
screenshot?: string[] | undefined;
|
|
1514
1541
|
featureList?: string[] | undefined;
|
|
1515
1542
|
offers?: {
|
|
@@ -1614,12 +1641,13 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1614
1641
|
url?: string | undefined;
|
|
1615
1642
|
logo?: string | undefined;
|
|
1616
1643
|
description?: string | undefined;
|
|
1644
|
+
sameAs?: string[] | undefined;
|
|
1617
1645
|
founder?: {
|
|
1618
1646
|
name: string;
|
|
1619
1647
|
url?: string | undefined;
|
|
1620
1648
|
description?: string | undefined;
|
|
1621
|
-
jobTitle?: string | undefined;
|
|
1622
1649
|
sameAs?: string[] | undefined;
|
|
1650
|
+
jobTitle?: string | undefined;
|
|
1623
1651
|
} | undefined;
|
|
1624
1652
|
foundingDate?: string | undefined;
|
|
1625
1653
|
knowsAbout?: string[] | undefined;
|
|
@@ -1635,8 +1663,8 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1635
1663
|
name: string;
|
|
1636
1664
|
url?: string | undefined;
|
|
1637
1665
|
description?: string | undefined;
|
|
1638
|
-
jobTitle?: string | undefined;
|
|
1639
1666
|
sameAs?: string[] | undefined;
|
|
1667
|
+
jobTitle?: string | undefined;
|
|
1640
1668
|
knowsAbout?: string[] | undefined;
|
|
1641
1669
|
image?: string | undefined;
|
|
1642
1670
|
} | undefined;
|
|
@@ -1644,10 +1672,12 @@ declare const aiReadinessConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1644
1672
|
name: string;
|
|
1645
1673
|
url?: string | undefined;
|
|
1646
1674
|
description?: string | undefined;
|
|
1675
|
+
type?: "SoftwareApplication" | "VideoGame" | "MobileApplication" | "WebApplication" | undefined;
|
|
1647
1676
|
image?: string | undefined;
|
|
1648
1677
|
applicationCategory?: string | undefined;
|
|
1649
1678
|
applicationSubCategory?: string | undefined;
|
|
1650
1679
|
operatingSystem?: string | undefined;
|
|
1680
|
+
gamePlatform?: string | string[] | undefined;
|
|
1651
1681
|
screenshot?: string[] | undefined;
|
|
1652
1682
|
featureList?: string[] | undefined;
|
|
1653
1683
|
offers?: {
|
package/dist/config.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adkinn/astro-ai-readiness",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "AI Readiness toolkit for Astro — six JSON-LD components plus llms.txt, llms-full.txt, agents.md, robots.txt, and .well-known/mcp.json outputs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|