create-ailk 0.1.0
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/LICENSE +201 -0
- package/README.md +39 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +80 -0
- package/dist/copy.d.ts +8 -0
- package/dist/copy.js +109 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +10 -0
- package/dist/lib/pro-callout.d.ts +12 -0
- package/dist/lib/pro-callout.js +20 -0
- package/dist/parse-args.d.ts +13 -0
- package/dist/parse-args.js +81 -0
- package/dist/programmatic.d.ts +49 -0
- package/dist/programmatic.js +89 -0
- package/dist/substitute.d.ts +31 -0
- package/dist/substitute.js +45 -0
- package/dist/validate.d.ts +8 -0
- package/dist/validate.js +70 -0
- package/package.json +47 -0
- package/templates/.claude/.gitkeep +0 -0
- package/templates/.claude/agents/web.md +80 -0
- package/templates/.claude/rules/architecture.md +62 -0
- package/templates/.claude/rules/preserve-existing-style.md +51 -0
- package/templates/.claude/skills/README.md +43 -0
- package/templates/.claude/skills/add-schema/SKILL.md +270 -0
- package/templates/.claude/skills/add-schema/references/conflict-handling.md +200 -0
- package/templates/.claude/skills/add-schema/references/file-finding.md +123 -0
- package/templates/.claude/skills/add-schema/references/schema-types.md +131 -0
- package/templates/.claude/skills/audit-site/SKILL.md +213 -0
- package/templates/.claude/skills/audit-site/references/common-errors.md +113 -0
- package/templates/.claude/skills/audit-site/references/findings-glossary.md +138 -0
- package/templates/.claude/skills/audit-site/references/severity-levels.md +114 -0
- package/templates/.claude/skills/provision-config/SKILL.md +243 -0
- package/templates/.claude/skills/provision-config/references/env-vars-template.md +184 -0
- package/templates/.claude/skills/provision-config/references/runbook-template.md +248 -0
- package/templates/.claude/skills/provision-config/references/vercel-json-template.md +98 -0
- package/templates/.claude/skills/scaffold-auth/SKILL.md +261 -0
- package/templates/.claude/skills/scaffold-auth/references/env-vars.md +91 -0
- package/templates/.claude/skills/scaffold-auth/references/oauth-app-setup.md +171 -0
- package/templates/.claude/skills/scaffold-commerce/SKILL.md +310 -0
- package/templates/.claude/skills/scaffold-commerce/references/lookup-keys-template.md +71 -0
- package/templates/.claude/skills/scaffold-commerce/references/marketplace-brand-pages.md +83 -0
- package/templates/.claude/skills/scaffold-commerce/templates/marketplace-cta-route.tsx.tmpl +72 -0
- package/templates/.claude/skills/scaffold-page/SKILL.md +243 -0
- package/templates/.claude/skills/scaffold-page/references/page-types.md +169 -0
- package/templates/.claude/skills/scaffold-page/templates/content.mdx.tmpl +28 -0
- package/templates/.claude/skills/scaffold-page/templates/route.tsx.tmpl +28 -0
- package/templates/.claude/skills/suggest-site-pages/SKILL.md +242 -0
- package/templates/.claude/skills/suggest-site-pages/references/categories.md +287 -0
- package/templates/.env.example +205 -0
- package/templates/.gitkeep +2 -0
- package/templates/CLAUDE.md +142 -0
- package/templates/CONVENTIONS.md +222 -0
- package/templates/README.md +110 -0
- package/templates/apps/api/.env.example +40 -0
- package/templates/apps/api/CLAUDE.md +63 -0
- package/templates/apps/api/api/index.ts +144 -0
- package/templates/apps/api/jest.config.cjs +74 -0
- package/templates/apps/api/package.json +54 -0
- package/templates/apps/api/src/__tests__/factories/content-fixture.ts +138 -0
- package/templates/apps/api/src/__tests__/factories/index.ts +70 -0
- package/templates/apps/api/src/__tests__/factories/lead-fixture.ts +82 -0
- package/templates/apps/api/src/__tests__/index.test.ts +118 -0
- package/templates/apps/api/src/__tests__/server.test.ts +207 -0
- package/templates/apps/api/src/__tests__/services/enrichment-shim.test.ts +126 -0
- package/templates/apps/api/src/__tests__/setup.ts +24 -0
- package/templates/apps/api/src/cli.ts +30 -0
- package/templates/apps/api/src/config/__tests__/index.test.ts +97 -0
- package/templates/apps/api/src/config/index.ts +56 -0
- package/templates/apps/api/src/index.ts +32 -0
- package/templates/apps/api/src/lib/__mocks__/prisma-client.js +15 -0
- package/templates/apps/api/src/lib/__mocks__/prisma.ts +45 -0
- package/templates/apps/api/src/lib/__tests__/content-adapter.test.ts +178 -0
- package/templates/apps/api/src/lib/__tests__/error-serializer.test.ts +100 -0
- package/templates/apps/api/src/lib/__tests__/errors.test.ts +94 -0
- package/templates/apps/api/src/lib/__tests__/file-fallback.test.ts +144 -0
- package/templates/apps/api/src/lib/__tests__/fixtures/HomePage/home.mdx +8 -0
- package/templates/apps/api/src/lib/__tests__/lead-capture-store.test.ts +227 -0
- package/templates/apps/api/src/lib/__tests__/outbound-http.test.ts +125 -0
- package/templates/apps/api/src/lib/__tests__/prisma.test.ts +165 -0
- package/templates/apps/api/src/lib/__tests__/require-paid-tier.test.ts +129 -0
- package/templates/apps/api/src/lib/__tests__/stripe.test.ts +74 -0
- package/templates/apps/api/src/lib/content-adapter.ts +86 -0
- package/templates/apps/api/src/lib/error-serializer.ts +77 -0
- package/templates/apps/api/src/lib/errors.ts +95 -0
- package/templates/apps/api/src/lib/file-fallback.ts +87 -0
- package/templates/apps/api/src/lib/lead-capture-store.ts +110 -0
- package/templates/apps/api/src/lib/locales.ts +201 -0
- package/templates/apps/api/src/lib/outbound-http.ts +122 -0
- package/templates/apps/api/src/lib/prisma.ts +21 -0
- package/templates/apps/api/src/lib/require-paid-tier.ts +53 -0
- package/templates/apps/api/src/lib/stripe.ts +30 -0
- package/templates/apps/api/src/lib/webhook-idempotency.ts +92 -0
- package/templates/apps/api/src/middleware/__tests__/adversarial/bearer-token-format.test.ts +111 -0
- package/templates/apps/api/src/middleware/__tests__/adversarial/cookie-or-bearer-precedence.test.ts +172 -0
- package/templates/apps/api/src/middleware/__tests__/adversarial/csrf-bearer-skip.test.ts +119 -0
- package/templates/apps/api/src/middleware/__tests__/adversarial/csrf-cookie-path.test.ts +138 -0
- package/templates/apps/api/src/middleware/__tests__/adversarial/session-fixation.test.ts +149 -0
- package/templates/apps/api/src/middleware/__tests__/adversarial/session-timeout.test.ts +139 -0
- package/templates/apps/api/src/middleware/__tests__/auth.bearer-path.test.ts +175 -0
- package/templates/apps/api/src/middleware/__tests__/auth.both-present-precedence.test.ts +76 -0
- package/templates/apps/api/src/middleware/__tests__/auth.cookie-path.test.ts +153 -0
- package/templates/apps/api/src/middleware/__tests__/auth.neither-present.test.ts +72 -0
- package/templates/apps/api/src/middleware/__tests__/rate-limit.test.ts +292 -0
- package/templates/apps/api/src/middleware/auth.ts +246 -0
- package/templates/apps/api/src/middleware/rate-limit.ts +132 -0
- package/templates/apps/api/src/openapi/__tests__/openapi.test.ts +129 -0
- package/templates/apps/api/src/openapi/index.ts +12 -0
- package/templates/apps/api/src/openapi/spec.ts +408 -0
- package/templates/apps/api/src/routes/auth/__tests__/auth-tokens.functional.test.ts +193 -0
- package/templates/apps/api/src/routes/auth/__tests__/auth-user.functional.test.ts +201 -0
- package/templates/apps/api/src/routes/auth/__tests__/tokens.test.ts +294 -0
- package/templates/apps/api/src/routes/auth/__tests__/user.test.ts +486 -0
- package/templates/apps/api/src/routes/auth/tokens.ts +199 -0
- package/templates/apps/api/src/routes/auth/user.ts +244 -0
- package/templates/apps/api/src/routes/checkout/__tests__/sessions.test.ts +588 -0
- package/templates/apps/api/src/routes/checkout/index.ts +13 -0
- package/templates/apps/api/src/routes/checkout/sessions.ts +185 -0
- package/templates/apps/api/src/routes/content/__tests__/create.test.ts +239 -0
- package/templates/apps/api/src/routes/content/__tests__/delete.test.ts +201 -0
- package/templates/apps/api/src/routes/content/__tests__/get-page.test.ts +141 -0
- package/templates/apps/api/src/routes/content/__tests__/list-pages.test.ts +122 -0
- package/templates/apps/api/src/routes/content/__tests__/list-types.test.ts +44 -0
- package/templates/apps/api/src/routes/content/__tests__/locale.test.ts +118 -0
- package/templates/apps/api/src/routes/content/__tests__/rate-limit.test.ts +51 -0
- package/templates/apps/api/src/routes/content/__tests__/update.test.ts +252 -0
- package/templates/apps/api/src/routes/content/create.ts +114 -0
- package/templates/apps/api/src/routes/content/delete.ts +81 -0
- package/templates/apps/api/src/routes/content/get-page.ts +98 -0
- package/templates/apps/api/src/routes/content/index.ts +32 -0
- package/templates/apps/api/src/routes/content/list-pages.ts +83 -0
- package/templates/apps/api/src/routes/content/list-types.ts +19 -0
- package/templates/apps/api/src/routes/content/rate-limit.ts +13 -0
- package/templates/apps/api/src/routes/content/slug.ts +9 -0
- package/templates/apps/api/src/routes/content/update.ts +111 -0
- package/templates/apps/api/src/routes/leads/__tests__/index.test.ts +415 -0
- package/templates/apps/api/src/routes/leads/__tests__/track.test.ts +165 -0
- package/templates/apps/api/src/routes/leads/index.ts +130 -0
- package/templates/apps/api/src/routes/test/auth/__tests__/session.test.ts +296 -0
- package/templates/apps/api/src/routes/test/auth/session.ts +141 -0
- package/templates/apps/api/src/routes/webhooks/README.md +57 -0
- package/templates/apps/api/src/routes/webhooks/__tests__/stripe-idempotency.test.ts +247 -0
- package/templates/apps/api/src/routes/webhooks/__tests__/stripe-rate-limit.test.ts +198 -0
- package/templates/apps/api/src/routes/webhooks/__tests__/stripe.test.ts +633 -0
- package/templates/apps/api/src/routes/webhooks/index.ts +41 -0
- package/templates/apps/api/src/routes/webhooks/stripe.ts +253 -0
- package/templates/apps/api/src/server.ts +157 -0
- package/templates/apps/api/src/services/__tests__/lead-routing.test.ts +395 -0
- package/templates/apps/api/src/services/enrichment-shim.ts +53 -0
- package/templates/apps/api/src/services/lead-routing.ts +338 -0
- package/templates/apps/api/tsconfig.json +34 -0
- package/templates/apps/api/vercel.json +17 -0
- package/templates/apps/mcp/.env.example +52 -0
- package/templates/apps/mcp/CLAUDE.md +84 -0
- package/templates/apps/mcp/__tests__/abuse/daily-cap.test.ts +52 -0
- package/templates/apps/mcp/__tests__/abuse/email-validator.test.ts +46 -0
- package/templates/apps/mcp/__tests__/abuse/honeypot.test.ts +36 -0
- package/templates/apps/mcp/__tests__/abuse/user-agent-deny.test.ts +54 -0
- package/templates/apps/mcp/__tests__/aeo-cli-parity.test.ts +110 -0
- package/templates/apps/mcp/__tests__/audit-single-page.test.ts +213 -0
- package/templates/apps/mcp/__tests__/audit.test.ts +217 -0
- package/templates/apps/mcp/__tests__/catalog-drift.test.ts +52 -0
- package/templates/apps/mcp/__tests__/create_page.test.ts +201 -0
- package/templates/apps/mcp/__tests__/delete_page.test.ts +176 -0
- package/templates/apps/mcp/__tests__/get_business_hours.test.ts +82 -0
- package/templates/apps/mcp/__tests__/get_faq.test.ts +80 -0
- package/templates/apps/mcp/__tests__/get_locations.test.ts +65 -0
- package/templates/apps/mcp/__tests__/get_offerings.test.ts +90 -0
- package/templates/apps/mcp/__tests__/get_pricing.test.ts +80 -0
- package/templates/apps/mcp/__tests__/get_site_info.test.ts +81 -0
- package/templates/apps/mcp/__tests__/http-transport.test.ts +323 -0
- package/templates/apps/mcp/__tests__/lib/errors.test.ts +75 -0
- package/templates/apps/mcp/__tests__/lib/require-paid-tier.test.ts +75 -0
- package/templates/apps/mcp/__tests__/list_pages.test.ts +112 -0
- package/templates/apps/mcp/__tests__/locale.test.ts +135 -0
- package/templates/apps/mcp/__tests__/parity.test.ts +205 -0
- package/templates/apps/mcp/__tests__/purchase-disabled.test.ts +34 -0
- package/templates/apps/mcp/__tests__/read_content.test.ts +153 -0
- package/templates/apps/mcp/__tests__/request_callback.test.ts +163 -0
- package/templates/apps/mcp/__tests__/search_content.test.ts +153 -0
- package/templates/apps/mcp/__tests__/server.test.ts +115 -0
- package/templates/apps/mcp/__tests__/submit_lead.test.ts +165 -0
- package/templates/apps/mcp/__tests__/subscribe_newsletter.test.ts +161 -0
- package/templates/apps/mcp/__tests__/tools/purchase.test.ts +227 -0
- package/templates/apps/mcp/__tests__/tools/scaffold.test.ts +237 -0
- package/templates/apps/mcp/__tests__/update_page.test.ts +195 -0
- package/templates/apps/mcp/jest.config.cjs +82 -0
- package/templates/apps/mcp/package.json +37 -0
- package/templates/apps/mcp/src/abuse/daily-cap.ts +47 -0
- package/templates/apps/mcp/src/abuse/email-validator.ts +25 -0
- package/templates/apps/mcp/src/abuse/honeypot.ts +21 -0
- package/templates/apps/mcp/src/abuse/index.ts +111 -0
- package/templates/apps/mcp/src/abuse/user-agent-deny.ts +58 -0
- package/templates/apps/mcp/src/http-transport.ts +303 -0
- package/templates/apps/mcp/src/index.ts +67 -0
- package/templates/apps/mcp/src/lib/audit-single-page.ts +194 -0
- package/templates/apps/mcp/src/lib/errors.ts +61 -0
- package/templates/apps/mcp/src/lib/locales.ts +171 -0
- package/templates/apps/mcp/src/lib/require-paid-tier.ts +44 -0
- package/templates/apps/mcp/src/lib/resolve-locale.ts +30 -0
- package/templates/apps/mcp/src/server.ts +139 -0
- package/templates/apps/mcp/src/tools/audit.ts +103 -0
- package/templates/apps/mcp/src/tools/capture_lead.ts +52 -0
- package/templates/apps/mcp/src/tools/create_page.ts +95 -0
- package/templates/apps/mcp/src/tools/delete_page.ts +73 -0
- package/templates/apps/mcp/src/tools/get_business_hours.ts +66 -0
- package/templates/apps/mcp/src/tools/get_faq.ts +69 -0
- package/templates/apps/mcp/src/tools/get_locations.ts +85 -0
- package/templates/apps/mcp/src/tools/get_offerings.ts +66 -0
- package/templates/apps/mcp/src/tools/get_pricing.ts +74 -0
- package/templates/apps/mcp/src/tools/get_site_info.ts +84 -0
- package/templates/apps/mcp/src/tools/index.ts +125 -0
- package/templates/apps/mcp/src/tools/list_pages.ts +72 -0
- package/templates/apps/mcp/src/tools/purchase.ts +89 -0
- package/templates/apps/mcp/src/tools/read_content.ts +61 -0
- package/templates/apps/mcp/src/tools/request_callback.ts +51 -0
- package/templates/apps/mcp/src/tools/scaffold.ts +119 -0
- package/templates/apps/mcp/src/tools/search_content.ts +59 -0
- package/templates/apps/mcp/src/tools/subscribe_newsletter.ts +47 -0
- package/templates/apps/mcp/src/tools/update_page.ts +91 -0
- package/templates/apps/mcp/tsconfig.json +19 -0
- package/templates/apps/web/.env.example +47 -0
- package/templates/apps/web/CLAUDE.md +81 -0
- package/templates/apps/web/__tests__/auth/adversarial/cookie-attributes.test.ts +94 -0
- package/templates/apps/web/__tests__/auth/adversarial/oauth-state-parameter.test.ts +75 -0
- package/templates/apps/web/__tests__/auth/adversarial/redirect-uri-allowlist.test.ts +82 -0
- package/templates/apps/web/__tests__/auth/env-helpers.test.ts +168 -0
- package/templates/apps/web/__tests__/authority-list-routes.test.tsx +208 -0
- package/templates/apps/web/__tests__/better-stack.test.ts +66 -0
- package/templates/apps/web/__tests__/blog-dir-resolution.test.ts +87 -0
- package/templates/apps/web/__tests__/blog-source-populated.test.ts +130 -0
- package/templates/apps/web/__tests__/data-testid-coverage.test.tsx +60 -0
- package/templates/apps/web/__tests__/google-analytics.test.tsx +104 -0
- package/templates/apps/web/__tests__/i18n/middleware.test.ts +119 -0
- package/templates/apps/web/__tests__/i18n/routing.test.ts +114 -0
- package/templates/apps/web/__tests__/i18n/translations.test.ts +191 -0
- package/templates/apps/web/__tests__/json-ld.test.ts +98 -0
- package/templates/apps/web/__tests__/knowledge-events-routes.test.tsx +580 -0
- package/templates/apps/web/__tests__/layout-stealth.test.ts +39 -0
- package/templates/apps/web/__tests__/lighthouse-fixtures/improvement-image-shrink.tsx +103 -0
- package/templates/apps/web/__tests__/lighthouse-fixtures/override-fixture.md +114 -0
- package/templates/apps/web/__tests__/lighthouse-fixtures/regression-bloat.tsx +94 -0
- package/templates/apps/web/__tests__/page.test.tsx +230 -0
- package/templates/apps/web/__tests__/products-services-phase1.test.tsx +321 -0
- package/templates/apps/web/__tests__/projects-routes.test.tsx +392 -0
- package/templates/apps/web/__tests__/resources-downloads-integrations-phase2.test.tsx +475 -0
- package/templates/apps/web/__tests__/routes/ai-plugin-json.test.ts +53 -0
- package/templates/apps/web/__tests__/routes/blog-route.test.tsx +191 -0
- package/templates/apps/web/__tests__/routes/llms-txt.test.ts +123 -0
- package/templates/apps/web/__tests__/routes/robots-txt.test.ts +52 -0
- package/templates/apps/web/__tests__/routes/sitemap-xml.test.ts +78 -0
- package/templates/apps/web/__tests__/routes/well-known-mcp.test.ts +203 -0
- package/templates/apps/web/__tests__/section-routes.test.tsx +693 -0
- package/templates/apps/web/__tests__/security-headers.test.ts +201 -0
- package/templates/apps/web/__tests__/sentry-config.test.ts +116 -0
- package/templates/apps/web/__tests__/setup.ts +82 -0
- package/templates/apps/web/__tests__/sitemap-locales.test.ts +415 -0
- package/templates/apps/web/__tests__/standalone-informational-routes.test.tsx +844 -0
- package/templates/apps/web/app/.well-known/ai-plugin.json/route.ts +81 -0
- package/templates/apps/web/app/.well-known/mcp.json/build-manifest.ts +110 -0
- package/templates/apps/web/app/.well-known/mcp.json/route.ts +58 -0
- package/templates/apps/web/app/[locale]/__tests__/layout.test.tsx +120 -0
- package/templates/apps/web/app/[locale]/__tests__/page-renderer-migration.test.tsx +202 -0
- package/templates/apps/web/app/[locale]/about/page.tsx +31 -0
- package/templates/apps/web/app/[locale]/blog/[[...slug]]/page.tsx +173 -0
- package/templates/apps/web/app/[locale]/careers/[slug]/page.tsx +45 -0
- package/templates/apps/web/app/[locale]/careers/__tests__/page-renderer-migration.test.tsx +117 -0
- package/templates/apps/web/app/[locale]/careers/page.tsx +25 -0
- package/templates/apps/web/app/[locale]/case-studies/[slug]/page.tsx +44 -0
- package/templates/apps/web/app/[locale]/case-studies/__tests__/page-renderer-migration.test.tsx +113 -0
- package/templates/apps/web/app/[locale]/case-studies/page.tsx +25 -0
- package/templates/apps/web/app/[locale]/clients/__tests__/page-renderer-migration.test.tsx +63 -0
- package/templates/apps/web/app/[locale]/clients/page.tsx +27 -0
- package/templates/apps/web/app/[locale]/contact/ContactForm.tsx +130 -0
- package/templates/apps/web/app/[locale]/contact/__tests__/contact.actions.test.ts +152 -0
- package/templates/apps/web/app/[locale]/contact/__tests__/page-renderer-migration.test.tsx +92 -0
- package/templates/apps/web/app/[locale]/contact/contact.actions.ts +79 -0
- package/templates/apps/web/app/[locale]/contact/error.tsx +24 -0
- package/templates/apps/web/app/[locale]/contact/page.tsx +38 -0
- package/templates/apps/web/app/[locale]/courses/[slug]/page.tsx +34 -0
- package/templates/apps/web/app/[locale]/courses/__tests__/page-renderer-migration.test.tsx +119 -0
- package/templates/apps/web/app/[locale]/courses/page.tsx +25 -0
- package/templates/apps/web/app/[locale]/dev/purchase/__tests__/actions.test.ts +160 -0
- package/templates/apps/web/app/[locale]/dev/purchase/error.tsx +25 -0
- package/templates/apps/web/app/[locale]/dev/purchase/page.tsx +117 -0
- package/templates/apps/web/app/[locale]/dev/purchase/purchase.actions.ts +58 -0
- package/templates/apps/web/app/[locale]/docs/[[...slug]]/page.tsx +118 -0
- package/templates/apps/web/app/[locale]/downloads/__tests__/page-renderer-migration.test.tsx +72 -0
- package/templates/apps/web/app/[locale]/downloads/page.tsx +25 -0
- package/templates/apps/web/app/[locale]/events/[slug]/page.tsx +47 -0
- package/templates/apps/web/app/[locale]/events/__tests__/page-renderer-migration.test.tsx +130 -0
- package/templates/apps/web/app/[locale]/events/page.tsx +25 -0
- package/templates/apps/web/app/[locale]/faq/page.tsx +36 -0
- package/templates/apps/web/app/[locale]/how-to/[slug]/page.tsx +34 -0
- package/templates/apps/web/app/[locale]/how-to/__tests__/page-renderer-migration.test.tsx +78 -0
- package/templates/apps/web/app/[locale]/how-to/page.tsx +40 -0
- package/templates/apps/web/app/[locale]/integrations/[slug]/page.tsx +43 -0
- package/templates/apps/web/app/[locale]/integrations/__tests__/page-renderer-migration.test.tsx +129 -0
- package/templates/apps/web/app/[locale]/integrations/page.tsx +25 -0
- package/templates/apps/web/app/[locale]/launch-service/page.tsx +31 -0
- package/templates/apps/web/app/[locale]/layout.tsx +241 -0
- package/templates/apps/web/app/[locale]/page.tsx +41 -0
- package/templates/apps/web/app/[locale]/partners/[slug]/page.tsx +44 -0
- package/templates/apps/web/app/[locale]/partners/__tests__/page-renderer-migration.test.tsx +113 -0
- package/templates/apps/web/app/[locale]/partners/page.tsx +25 -0
- package/templates/apps/web/app/[locale]/products/[slug]/page.tsx +43 -0
- package/templates/apps/web/app/[locale]/products/__tests__/page-renderer-migration.test.tsx +129 -0
- package/templates/apps/web/app/[locale]/products/page.tsx +25 -0
- package/templates/apps/web/app/[locale]/projects/[slug]/page.tsx +39 -0
- package/templates/apps/web/app/[locale]/projects/__tests__/page-renderer-migration.test.tsx +138 -0
- package/templates/apps/web/app/[locale]/projects/page.tsx +30 -0
- package/templates/apps/web/app/[locale]/resources/[slug]/page.tsx +51 -0
- package/templates/apps/web/app/[locale]/resources/__tests__/page-renderer-migration.test.tsx +117 -0
- package/templates/apps/web/app/[locale]/resources/page.tsx +27 -0
- package/templates/apps/web/app/[locale]/services/[slug]/page.tsx +43 -0
- package/templates/apps/web/app/[locale]/services/__tests__/page-renderer-migration.test.tsx +129 -0
- package/templates/apps/web/app/[locale]/services/page.tsx +25 -0
- package/templates/apps/web/app/[locale]/software/[slug]/page.tsx +34 -0
- package/templates/apps/web/app/[locale]/software/__tests__/page-renderer-migration.test.tsx +81 -0
- package/templates/apps/web/app/[locale]/software/page.tsx +39 -0
- package/templates/apps/web/app/[locale]/tech-articles/[slug]/page.tsx +34 -0
- package/templates/apps/web/app/[locale]/tech-articles/__tests__/page-renderer-migration.test.tsx +82 -0
- package/templates/apps/web/app/[locale]/tech-articles/page.tsx +39 -0
- package/templates/apps/web/app/[locale]/testimonials/__tests__/page-renderer-migration.test.tsx +63 -0
- package/templates/apps/web/app/[locale]/testimonials/page.tsx +27 -0
- package/templates/apps/web/app/[locale]/use-cases/__tests__/page-renderer-migration.test.tsx +63 -0
- package/templates/apps/web/app/[locale]/use-cases/page.tsx +27 -0
- package/templates/apps/web/app/[locale]/whitepapers/[slug]/page.tsx +34 -0
- package/templates/apps/web/app/[locale]/whitepapers/__tests__/page-renderer-migration.test.tsx +82 -0
- package/templates/apps/web/app/[locale]/whitepapers/page.tsx +39 -0
- package/templates/apps/web/app/__tests__/error-boundaries.test.tsx +152 -0
- package/templates/apps/web/app/api/auth/[...all]/route.ts +16 -0
- package/templates/apps/web/app/error-fallback.tsx +75 -0
- package/templates/apps/web/app/error.tsx +23 -0
- package/templates/apps/web/app/layout.tsx +18 -0
- package/templates/apps/web/app/llms.txt/route.ts +101 -0
- package/templates/apps/web/app/not-found.tsx +48 -0
- package/templates/apps/web/app/og/__tests__/route.test.ts +164 -0
- package/templates/apps/web/app/og/route.tsx +135 -0
- package/templates/apps/web/app/robots.txt/route.ts +36 -0
- package/templates/apps/web/app/sitemap.xml/route.ts +146 -0
- package/templates/apps/web/auth.ts +141 -0
- package/templates/apps/web/components/ThemeToggle.tsx +60 -0
- package/templates/apps/web/components/google-analytics.tsx +34 -0
- package/templates/apps/web/content/en/blog/index.mdx +15 -0
- package/templates/apps/web/content/en/blog/launching-ailk.mdx +20 -0
- package/templates/apps/web/content/en/docs/getting-started.mdx +30 -0
- package/templates/apps/web/i18n/request.ts +36 -0
- package/templates/apps/web/jest.config.cjs +100 -0
- package/templates/apps/web/lib/__mocks__/next-mdx-remote-rsc.js +12 -0
- package/templates/apps/web/lib/__mocks__/source-server.js +31 -0
- package/templates/apps/web/lib/__tests__/og.test.ts +65 -0
- package/templates/apps/web/lib/auth-env.ts +66 -0
- package/templates/apps/web/lib/blog-list-data.ts +95 -0
- package/templates/apps/web/lib/blog-post-data.ts +79 -0
- package/templates/apps/web/lib/nav-config.ts +13 -0
- package/templates/apps/web/lib/observability/better-stack.ts +27 -0
- package/templates/apps/web/lib/og.ts +23 -0
- package/templates/apps/web/lib/prisma-for-auth.ts +34 -0
- package/templates/apps/web/lib/source.ts +34 -0
- package/templates/apps/web/messages/en.json +131 -0
- package/templates/apps/web/middleware.ts +80 -0
- package/templates/apps/web/next.config.mjs +167 -0
- package/templates/apps/web/package.json +62 -0
- package/templates/apps/web/public/.well-known/security.txt +17 -0
- package/templates/apps/web/public/android-chrome-192x192.png +0 -0
- package/templates/apps/web/public/android-chrome-512x512.png +0 -0
- package/templates/apps/web/public/apple-touch-icon.png +0 -0
- package/templates/apps/web/public/favicon-16x16.png +0 -0
- package/templates/apps/web/public/favicon-32x32.png +0 -0
- package/templates/apps/web/public/favicon.ico +0 -0
- package/templates/apps/web/public/favicon.svg +4 -0
- package/templates/apps/web/public/logo-dark.svg +21 -0
- package/templates/apps/web/public/logo-light.svg +21 -0
- package/templates/apps/web/public/logomark-dark.svg +4 -0
- package/templates/apps/web/public/logomark-light.svg +4 -0
- package/templates/apps/web/public/og-default.png +0 -0
- package/templates/apps/web/public/site.webmanifest +19 -0
- package/templates/apps/web/scripts/assert-content-bundled.ts +55 -0
- package/templates/apps/web/security-headers.config.ts +132 -0
- package/templates/apps/web/sentry.client.config.ts +27 -0
- package/templates/apps/web/sentry.edge.config.ts +15 -0
- package/templates/apps/web/sentry.server.config.ts +20 -0
- package/templates/apps/web/source.config.ts +78 -0
- package/templates/apps/web/src/components/SiteNav.tsx +21 -0
- package/templates/apps/web/src/lib/routes.ts +37 -0
- package/templates/apps/web/tsconfig.json +35 -0
- package/templates/apps/web/types/messages.d.ts +19 -0
- package/templates/content/.gitkeep +0 -0
- package/templates/content/CLAUDE.md +85 -0
- package/templates/content/_site.mdx +38 -0
- package/templates/content/ar/HomePage/home.mdx +123 -0
- package/templates/content/ar/_site.mdx +35 -0
- package/templates/content/de/_site.mdx +29 -0
- package/templates/content/en/.gitkeep +0 -0
- package/templates/content/en/AboutPage/about.mdx +19 -0
- package/templates/content/en/AboutPage/about.schema.json +82 -0
- package/templates/content/en/BookCall/book-call.mdx +19 -0
- package/templates/content/en/BookCall/book-call.schema.json +121 -0
- package/templates/content/en/BreadcrumbList/site-breadcrumbs.mdx +20 -0
- package/templates/content/en/CareersList/careers.mdx +24 -0
- package/templates/content/en/CaseStudiesList/case-studies.mdx +22 -0
- package/templates/content/en/CaseStudiesList/showcase.mdx +8 -0
- package/templates/content/en/CaseStudy/ailk-aeo-rollout.mdx +32 -0
- package/templates/content/en/CaseStudy/schema-builder-migration.mdx +41 -0
- package/templates/content/en/ClientsList/clients.mdx +38 -0
- package/templates/content/en/ContactPage/contact.mdx +19 -0
- package/templates/content/en/ContactPage/contact.schema.json +100 -0
- package/templates/content/en/ContactPoint/primary.mdx +14 -0
- package/templates/content/en/Course/aeo-fundamentals.mdx +37 -0
- package/templates/content/en/Course/schema-builder-workshop.mdx +62 -0
- package/templates/content/en/CoursesList/courses.mdx +22 -0
- package/templates/content/en/DownloadsList/downloads.mdx +22 -0
- package/templates/content/en/Event/aeo-office-hours-may-2026.mdx +39 -0
- package/templates/content/en/Event/ailk-launch-day-2026.mdx +35 -0
- package/templates/content/en/EventsList/events.mdx +26 -0
- package/templates/content/en/FAQPage/faq.mdx +420 -0
- package/templates/content/en/FAQPage/faq.schema.json +231 -0
- package/templates/content/en/GlossaryList/glossary.mdx +19 -0
- package/templates/content/en/GlossaryList/glossary.schema.json +300 -0
- package/templates/content/en/HomePage/home.mdx +312 -0
- package/templates/content/en/HomePage/home.schema.json +88 -0
- package/templates/content/en/HomePage/launch-service.mdx +475 -0
- package/templates/content/en/HomePage/launch-service.schema.json +138 -0
- package/templates/content/en/HowTo/add-mdx-content.mdx +38 -0
- package/templates/content/en/HowTo/configure-aeo-scoring.mdx +35 -0
- package/templates/content/en/HowTo/set-up-json-ld.mdx +36 -0
- package/templates/content/en/Integration/github-actions.mdx +31 -0
- package/templates/content/en/Integration/openai-api.mdx +26 -0
- package/templates/content/en/Integration/vercel.mdx +32 -0
- package/templates/content/en/IntegrationsList/integrations.mdx +22 -0
- package/templates/content/en/JobPosting/content-strategist.mdx +46 -0
- package/templates/content/en/JobPosting/developer-advocate.mdx +47 -0
- package/templates/content/en/JobPosting/senior-fullstack-engineer.mdx +57 -0
- package/templates/content/en/LandingPage/aeo-audit.mdx +19 -0
- package/templates/content/en/LandingPage/aeo-audit.schema.json +92 -0
- package/templates/content/en/LandingPage/agency-waitlist.mdx +340 -0
- package/templates/content/en/LandingPage/agency-waitlist.schema.json +152 -0
- package/templates/content/en/LandingPage/developers.mdx +19 -0
- package/templates/content/en/LandingPage/developers.schema.json +109 -0
- package/templates/content/en/LandingPage/for-agencies.mdx +390 -0
- package/templates/content/en/LandingPage/for-agencies.schema.json +107 -0
- package/templates/content/en/LandingPage/for-ai-search-agencies.mdx +417 -0
- package/templates/content/en/LandingPage/for-ai-search-agencies.schema.json +105 -0
- package/templates/content/en/LandingPage/for-businesses.mdx +19 -0
- package/templates/content/en/LandingPage/for-businesses.schema.json +96 -0
- package/templates/content/en/LandingPage/platform.mdx +369 -0
- package/templates/content/en/LandingPage/platform.schema.json +166 -0
- package/templates/content/en/LandingPage/vs-ai-website-builders.mdx +19 -0
- package/templates/content/en/LandingPage/vs-ai-website-builders.schema.json +102 -0
- package/templates/content/en/LandingPage/vs-wordpress.mdx +19 -0
- package/templates/content/en/LandingPage/vs-wordpress.schema.json +53 -0
- package/templates/content/en/NewsletterSignup/newsletter.mdx +236 -0
- package/templates/content/en/NewsletterSignup/newsletter.schema.json +91 -0
- package/templates/content/en/Organization/site-owner.mdx +16 -0
- package/templates/content/en/Partner/prisma.mdx +31 -0
- package/templates/content/en/Partner/supabase.mdx +30 -0
- package/templates/content/en/Partner/vercel.mdx +28 -0
- package/templates/content/en/PartnersList/partners.mdx +22 -0
- package/templates/content/en/Person/founder.mdx +18 -0
- package/templates/content/en/Pricing/pricing.mdx +538 -0
- package/templates/content/en/Pricing/pricing.schema.json +209 -0
- package/templates/content/en/PrivacyPage/privacy.mdx +165 -0
- package/templates/content/en/PrivacyPage/privacy.schema.json +64 -0
- package/templates/content/en/Product/ailk.mdx +19 -0
- package/templates/content/en/Product/ailk.schema.json +94 -0
- package/templates/content/en/Product/api-launch-kit.mdx +26 -0
- package/templates/content/en/Product/launch-kit.mdx +28 -0
- package/templates/content/en/ProductsList/products.mdx +26 -0
- package/templates/content/en/Project/ailk-phase-2.mdx +54 -0
- package/templates/content/en/ProjectsList/projects.mdx +25 -0
- package/templates/content/en/ResourceDetail/aeo-scoring-guide.mdx +27 -0
- package/templates/content/en/ResourceDetail/content-model-whitepaper.mdx +28 -0
- package/templates/content/en/ResourceDetail/schema-org-quick-reference.mdx +39 -0
- package/templates/content/en/ResourcesHub/resources.mdx +22 -0
- package/templates/content/en/Service/consulting.mdx +22 -0
- package/templates/content/en/Service/implementation.mdx +30 -0
- package/templates/content/en/Service/launch-service.mdx +232 -0
- package/templates/content/en/Service/launch.mdx +228 -0
- package/templates/content/en/ServicesList/services.mdx +84 -0
- package/templates/content/en/SoftwareProduct/ailk-aeo.mdx +44 -0
- package/templates/content/en/SoftwareProduct/ailk-content-adapters.mdx +47 -0
- package/templates/content/en/SoftwareProduct/ailk-schema.mdx +49 -0
- package/templates/content/en/TeamList/team.mdx +63 -0
- package/templates/content/en/TeamMember/founder.mdx +72 -0
- package/templates/content/en/TermsPage/terms.mdx +19 -0
- package/templates/content/en/TermsPage/terms.schema.json +99 -0
- package/templates/content/en/TestimonialsList/testimonials.mdx +44 -0
- package/templates/content/en/UseCasesList/use-cases.mdx +30 -0
- package/templates/content/en/Whitepaper/ax-first-product-development.mdx +27 -0
- package/templates/content/en/Whitepaper/open-core-commercial-strategy.mdx +27 -0
- package/templates/content/en/Whitepaper/structured-data-for-answer-engines.mdx +31 -0
- package/templates/content/en-XA/AboutPage/about.mdx +8 -0
- package/templates/content/en-XA/FAQPage/faq.mdx +8 -0
- package/templates/content/en-XA/HomePage/home.mdx +8 -0
- package/templates/content/es/_site.mdx +30 -0
- package/templates/content/fr/_site.mdx +30 -0
- package/templates/content/ja/_site.mdx +30 -0
- package/templates/content/pt-BR/AboutPage/about.mdx +8 -0
- package/templates/content/pt-BR/FAQPage/faq.mdx +8 -0
- package/templates/content/pt-BR/HomePage/home.mdx +23 -0
- package/templates/database/CHANGELOG.md +5 -0
- package/templates/database/README.md +234 -0
- package/templates/database/__tests__/user-cascade.test.ts +125 -0
- package/templates/database/auth/.gitkeep +0 -0
- package/templates/database/config/.gitkeep +0 -0
- package/templates/database/content/.gitkeep +0 -0
- package/templates/database/inbox/.gitkeep +0 -0
- package/templates/database/inbox/README.md +3 -0
- package/templates/database/inbox/__tests__/schema.test.ts +40 -0
- package/templates/database/inbox/schema.prisma +52 -0
- package/templates/database/jest.config.cjs +29 -0
- package/templates/database/migrations/20260508000000_add_inbox_namespace/migration.sql +328 -0
- package/templates/database/migrations/20260513000000_better_auth_migration/migration.sql +100 -0
- package/templates/database/migrations/20260515000000_add_user_billing_fields/migration.sql +28 -0
- package/templates/database/migrations/20260516000000_add_user_tier_care_plan_seat/migration.sql +25 -0
- package/templates/database/migrations/20260518000000_add_telemetry_records/migration.sql +42 -0
- package/templates/database/migrations/20260525000000_theme_wiring/migration.sql +67 -0
- package/templates/database/migrations/20260710000000_retire_commercial_tier/migration.sql +21 -0
- package/templates/database/migrations/migration_lock.toml +3 -0
- package/templates/database/ops/.gitkeep +0 -0
- package/templates/database/package.json +45 -0
- package/templates/database/prisma.config.ts +20 -0
- package/templates/database/schema.prisma +487 -0
- package/templates/database/scripts/db-generate-locked.sh +80 -0
- package/templates/database/seed-test.ts +85 -0
- package/templates/database/tsconfig.build.json +16 -0
- package/templates/database/tsconfig.json +9 -0
- package/templates/package.json +125 -0
- package/templates/pnpm-workspace.yaml +6 -0
- package/templates/project.yaml +59 -0
- package/templates/tsconfig.base.json +18 -0
- package/templates/tsconfig.json +45 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: "GlossaryList"
|
|
3
|
+
slug: "glossary"
|
|
4
|
+
title: "AEO, agent-readiness, and open-source foundation terms — defined"
|
|
5
|
+
description: "The AILK glossary defines AEO, GEO, MCP, schema markup, and 21 other agent-readiness terms — each bound to the pillar architecture that actually ships them, not generic dictionary phrasing."
|
|
6
|
+
sections: [{"id": "hero-intro", "type": "hero", "data": {"headline": "AEO, agent-readiness, and open-source foundation terms — defined", "subheadline": "25 terms spanning AI search, schema, and foundation architecture. Each one is defined once and bound to the pillar that ships it.", "primaryCta": {"label": "Read related Pillar 2 content", "href": "/for-ai-search-agencies", "variant": "default"}, "secondaryCta": {"label": "See /ailk", "href": "/ailk", "variant": "outline"}, "variant": "default"}}, {"id": "glossary-index-nav", "type": "glossary-index", "data": {"headline": "Jump to a term", "description": "AI search, schema, and open-source foundation vocabulary, A to Z.", "variant": "columns", "terms": [{"term": "AEO", "slug": "aeo", "definition": "Structuring a site so AI systems can read, trust, and cite it in answers.", "letter": "A"}, {"term": "Agent-ready website", "slug": "agent-ready-website", "definition": "A site AI agents can read and act on, not just human visitors.", "letter": "A"}, {"term": "AI search", "slug": "ai-search", "definition": "Finding information via an AI system instead of a search results page.", "letter": "A"}, {"term": "Apache 2.0", "slug": "apache-2-0", "definition": "A permissive open-source license allowing commercial use with minimal restriction.", "letter": "A"}, {"term": "Audit CLI", "slug": "audit-cli", "definition": "A command-line tool that scores a site's structural AEO readiness.", "letter": "A"}, {"term": "Citation gap", "slug": "citation-gap", "definition": "A structural deficiency that silently prevents AI citation.", "letter": "C"}, {"term": "Citation share", "slug": "citation-share", "definition": "The proportion of AI answers in which a brand gets cited.", "letter": "C"}, {"term": "Content adapter", "slug": "content-adapter", "definition": "The integration layer connecting an external CMS to AILK's schema system.", "letter": "C"}, {"term": "Entity markup", "slug": "entity-markup", "definition": "Schema identifying the real-world business, person, or product behind a page.", "letter": "E"}, {"term": "FAQ schema", "slug": "faq-schema", "definition": "Schema.org markup that lets AI systems extract Q&A pairs directly.", "letter": "F"}, {"term": "Foundation", "slug": "foundation", "definition": "The underlying codebase and architecture a site is built on top of.", "letter": "F"}, {"term": "GEO", "slug": "geo", "definition": "Optimizing content to surface inside generative AI answers.", "letter": "G"}, {"term": "Headless CMS", "slug": "headless-cms", "definition": "A content system that delivers content via API with no built-in front end.", "letter": "H"}, {"term": "JSON-LD", "slug": "json-ld", "definition": "The lightweight data format used to embed schema markup in a page.", "letter": "J"}, {"term": "Launch Service", "slug": "launch-service", "definition": "A fixed-scope, productized engagement to deploy a site on a given foundation.", "letter": "L"}, {"term": "Marginal cost of a page", "slug": "marginal-cost-of-a-page", "definition": "The incremental cost of adding one new page to a site.", "letter": "M"}, {"term": "MCP", "slug": "mcp", "definition": "An open protocol letting AI agents call tools and read structured data.", "letter": "M"}, {"term": "OSS-as-marketing", "slug": "oss-as-marketing", "definition": "Labeling a product open-source while crippling the free tier as a funnel.", "letter": "O"}, {"term": "Peer surfaces", "slug": "peer-surfaces", "definition": "One capability exposed identically to humans, agents, and programs.", "letter": "P"}, {"term": "Pillar topic", "slug": "pillar-topic", "definition": "A broad subject anchoring a content strategy's keyword clusters.", "letter": "P"}, {"term": "Prompt tracking", "slug": "prompt-tracking", "definition": "Running fixed prompts against AI models to measure citation share over time.", "letter": "P"}, {"term": "Schema (markup)", "slug": "schema", "definition": "Structured code that tells search engines and AI what a page is about.", "letter": "S"}, {"term": "Scaffolder", "slug": "scaffolder", "definition": "A CLI tool that generates a working project skeleton in one command.", "letter": "S"}, {"term": "Starter", "slug": "starter", "definition": "A pre-built project template with common infrastructure already wired.", "letter": "S"}, {"term": "Structured data", "slug": "structured-data", "definition": "Any content organized in a standardized, machine-readable format.", "letter": "S"}]}}, {"id": "def-aeo", "type": "definition", "data": {"term": "AEO", "eyebrow": "Answer Engine Optimization", "definition": "AEO is the practice of structuring a website so AI systems like ChatGPT and Perplexity can read, trust, and cite its pages when answering a question.", "aliases": ["Answer Engine Optimization"], "relatedTerms": [{"label": "GEO", "href": "/glossary#geo"}, {"label": "Structured data", "href": "/glossary#structured-data"}], "variant": "callout"}}, {"id": "def-geo", "type": "definition", "data": {"term": "GEO", "eyebrow": "Generative Engine Optimization", "definition": "GEO is the practice of optimizing content so generative AI models surface it inside synthesized answers rather than a list of links.", "aliases": ["Generative Engine Optimization"], "relatedTerms": [{"label": "AEO", "href": "/glossary#aeo"}, {"label": "AI search", "href": "/glossary#ai-search"}], "variant": "callout"}}, {"id": "def-ai-search", "type": "definition", "data": {"term": "AI search", "definition": "AI search means using an AI system — ChatGPT, Perplexity, Google AI Overviews — to find information instead of scanning a traditional results page.", "relatedTerms": [{"label": "Citation share", "href": "/glossary#citation-share"}, {"label": "GEO", "href": "/glossary#geo"}], "variant": "callout"}}, {"id": "def-agent-ready-website", "type": "definition", "data": {"term": "Agent-ready website", "definition": "An agent-ready website lets AI agents — not just human visitors — read its content and act on it, typically through a machine-callable interface like an MCP server or API.", "relatedTerms": [{"label": "MCP", "href": "/glossary#mcp"}, {"label": "Peer surfaces", "href": "/glossary#peer-surfaces"}], "variant": "callout"}}, {"id": "def-schema", "type": "definition", "data": {"term": "Schema (markup)", "definition": "Schema markup is structured code embedded in a page's HTML — typically JSON-LD — that tells search engines and AI systems exactly what the page is about, using a shared schema.org vocabulary.", "relatedTerms": [{"label": "JSON-LD", "href": "/glossary#json-ld"}, {"label": "Structured data", "href": "/glossary#structured-data"}], "variant": "callout"}}, {"id": "def-json-ld", "type": "definition", "data": {"term": "JSON-LD", "definition": "JSON-LD is a lightweight data format used to embed schema markup in a webpage — a script tag search engines and AI crawlers parse directly, without touching the visible HTML.", "relatedTerms": [{"label": "Schema (markup)", "href": "/glossary#schema"}, {"label": "Entity markup", "href": "/glossary#entity-markup"}], "variant": "callout"}}, {"id": "def-entity-markup", "type": "definition", "data": {"term": "Entity markup", "definition": "Entity markup is schema — using types like Organization, Person, or LocalBusiness — that identifies a specific real-world business or person, so AI systems attribute a page's claims correctly.", "relatedTerms": [{"label": "Schema (markup)", "href": "/glossary#schema"}, {"label": "Structured data", "href": "/glossary#structured-data"}], "variant": "callout"}}, {"id": "def-faq-schema", "type": "definition", "data": {"term": "FAQ schema", "definition": "FAQ schema is the schema.org FAQPage type. It marks up question-and-answer content, letting search engines and AI systems extract and quote individual answers directly.", "relatedTerms": [{"label": "Structured data", "href": "/glossary#structured-data"}], "variant": "callout"}}, {"id": "def-mcp", "type": "definition", "data": {"term": "MCP", "eyebrow": "Model Context Protocol", "definition": "MCP is an open standard, introduced by Anthropic, that lets AI agents call tools and read structured data from an application — the same way a person uses a web interface.", "aliases": ["Model Context Protocol"], "relatedTerms": [{"label": "Peer surfaces", "href": "/glossary#peer-surfaces"}, {"label": "Agent-ready website", "href": "/glossary#agent-ready-website"}], "variant": "callout"}}, {"id": "def-peer-surfaces", "type": "definition", "data": {"term": "Peer surfaces", "definition": "Peer surfaces is AILK's term for an architecture where one capability is exposed identically to a human via web UI, an agent via MCP, and a program via HTTP API — with CI-enforced parity across all three.", "relatedTerms": [{"label": "MCP", "href": "/glossary#mcp"}, {"label": "Agent-ready website", "href": "/glossary#agent-ready-website"}], "variant": "callout"}}, {"id": "def-citation-share", "type": "definition", "data": {"term": "Citation share", "definition": "Citation share is the proportion of AI-generated answers, within a topic or prompt set, in which a specific brand gets cited or recommended.", "relatedTerms": [{"label": "Prompt tracking", "href": "/glossary#prompt-tracking"}, {"label": "Citation gap", "href": "/glossary#citation-gap"}], "variant": "callout"}}, {"id": "def-headless-cms", "type": "definition", "data": {"term": "Headless CMS", "definition": "A headless CMS stores and delivers content through an API, with no built-in front-end templating — the presentation layer is built separately.", "relatedTerms": [{"label": "Content adapter", "href": "/glossary#content-adapter"}], "variant": "callout"}}, {"id": "def-content-adapter", "type": "definition", "data": {"term": "Content adapter", "definition": "A content adapter is the integration layer connecting a headless CMS or external content source to AILK's page-rendering and schema system, so content authored elsewhere still emits correct JSON-LD.", "relatedTerms": [{"label": "Headless CMS", "href": "/glossary#headless-cms"}], "variant": "callout"}}, {"id": "def-scaffolder", "type": "definition", "data": {"term": "Scaffolder", "definition": "A scaffolder is a command-line tool that generates a working project skeleton — file structure, configuration, boilerplate — from a single command instead of an empty directory.", "relatedTerms": [{"label": "Starter", "href": "/glossary#starter"}], "variant": "callout"}}, {"id": "def-audit-cli", "type": "definition", "data": {"term": "Audit CLI", "definition": "An audit CLI scores a website's structural readiness — schema completeness, entity markup, AEO gaps — and reports the result as pass/fail output usable in a CI pipeline.", "relatedTerms": [{"label": "Citation gap", "href": "/glossary#citation-gap"}], "variant": "callout"}}, {"id": "def-pillar-topic", "type": "definition", "data": {"term": "Pillar topic", "definition": "A pillar topic is a broad subject that anchors a content strategy — narrower cluster topics organize around it to build topical authority with search engines and AI systems.", "relatedTerms": [], "variant": "callout"}}, {"id": "def-prompt-tracking", "type": "definition", "data": {"term": "Prompt tracking", "definition": "Prompt tracking runs a fixed set of representative user prompts against AI models on a recurring basis, recording which brands or sources get cited in the answers.", "relatedTerms": [{"label": "Citation share", "href": "/glossary#citation-share"}], "variant": "callout"}}, {"id": "def-citation-gap", "type": "definition", "data": {"term": "Citation gap", "definition": "A citation gap is a structural or content deficiency — missing schema, ambiguous entity markup, a page that doesn't emit JSON-LD — that keeps a brand from being cited even when its content is relevant.", "relatedTerms": [{"label": "Audit CLI", "href": "/glossary#audit-cli"}], "variant": "callout"}}, {"id": "def-structured-data", "type": "definition", "data": {"term": "Structured data", "definition": "Structured data is the broader category: any content organized in a standardized, machine-readable format. Schema markup — usually delivered as JSON-LD — is the specific version search engines and AI systems parse most often.", "relatedTerms": [{"label": "Schema (markup)", "href": "/glossary#schema"}, {"label": "JSON-LD", "href": "/glossary#json-ld"}], "variant": "callout"}}, {"id": "def-apache-2-0", "type": "definition", "data": {"term": "Apache 2.0", "definition": "Apache 2.0 is a permissive open-source software license that lets anyone use, modify, and distribute code — including in proprietary commercial products — with minimal restrictions.", "relatedTerms": [{"label": "OSS-as-marketing", "href": "/glossary#oss-as-marketing"}], "variant": "callout"}}, {"id": "def-oss-as-marketing", "type": "definition", "data": {"term": "OSS-as-marketing", "definition": "OSS-as-marketing describes labeling a product open-source while structurally crippling the free tier, so it functions as a lead-generation funnel rather than usable software.", "relatedTerms": [{"label": "Apache 2.0", "href": "/glossary#apache-2-0"}], "variant": "callout"}}, {"id": "def-launch-service", "type": "definition", "data": {"term": "Launch Service", "definition": "A Launch Service is a productized, fixed-scope engagement in which a vendor deploys a customer's website on a given foundation within a defined timeline, rather than an open-ended custom build.", "relatedTerms": [{"label": "Foundation", "href": "/glossary#foundation"}], "variant": "callout"}}, {"id": "def-foundation", "type": "definition", "data": {"term": "Foundation", "definition": "A website foundation is the underlying codebase, architecture, and structural conventions a site is built on — distinct from its content, design, or hosting.", "relatedTerms": [{"label": "Starter", "href": "/glossary#starter"}], "variant": "callout"}}, {"id": "def-starter", "type": "definition", "data": {"term": "Starter", "definition": "A starter, in web development, is a pre-built project template that gives a developer a working codebase with common infrastructure already wired, instead of an empty repository.", "relatedTerms": [{"label": "Scaffolder", "href": "/glossary#scaffolder"}, {"label": "Foundation", "href": "/glossary#foundation"}], "variant": "callout"}}, {"id": "def-marginal-cost-of-a-page", "type": "definition", "data": {"term": "Marginal cost of a page", "definition": "The marginal cost of a page is the incremental time, money, or effort to add one new page to an existing site, holding the foundation constant — the cost AILK's agent-assisted scaffolding drives toward zero.", "relatedTerms": [{"label": "Scaffolder", "href": "/glossary#scaffolder"}, {"label": "Foundation", "href": "/glossary#foundation"}], "variant": "callout"}}, {"id": "faq-block", "type": "faq", "data": {"headline": "Frequently asked questions about AEO and agent-ready terminology", "items": [{"question": "How is this glossary different from AILK's blog content?", "answer": "This glossary gives the atomic, one-sentence definition of a term on its own. The blog content walks through why each term matters and how AILK's architecture implements it — check a term fast here, read the pillar posts for the argument behind it."}, {"question": "Are these definitions AILK-specific or industry-standard?", "answer": "Most terms — AEO, GEO, MCP, JSON-LD — are industry-standard, defined the way the broader AEO and developer communities use them. A few, like peer surfaces and marginal cost of a page, are terms AILK uses to name a specific part of its own architecture, and are marked as such."}, {"question": "Will new terms be added to this glossary over time?", "answer": "Yes. New terms get added as AILK's topical authority clusters expand across the three pillars, and as AEO and agent-readiness vocabulary evolves. Each addition binds to a pillar cluster the same way the current set does."}, {"question": "Can I cite or link to a definition on this page directly?", "answer": "Each term has its own anchor link (for example, /glossary#mcp), so a specific definition can be linked or quoted on its own without needing the rest of the page for context."}], "presentation": "expanded", "variant": "offset"}}, {"id": "cta-block", "type": "cta", "data": {"headline": "See these terms shipped, not just defined.", "primaryCta": {"label": "Read Pillar 2 content", "href": "/for-ai-search-agencies", "variant": "default"}, "secondaryCta": {"label": "See /ailk", "href": "/ailk", "variant": "outline"}, "variant": "default"}}]
|
|
7
|
+
status: "Approved"
|
|
8
|
+
pageKey: "GlossaryList"
|
|
9
|
+
entity: "ailaunchkit"
|
|
10
|
+
urlSlug: "glossary-list"
|
|
11
|
+
lastUpdated: "2026-07-06"
|
|
12
|
+
pageLevelSchemaType: "GlossaryList"
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
import { JsonLd } from '@/components/JsonLd'
|
|
16
|
+
|
|
17
|
+
<JsonLd data={{"@context": "https://schema.org", "@graph": [{"@type": "Product", "@id": "https://ailaunchkit.ai/#product", "name": "AI Launch Kit", "alternateName": ["AI Launch Kit by Working Theory", "AILK by Working Theory", "AILK", "@ailaunchkit", "@ailk", "@working-theory", "ai-launch-kit"], "url": "https://ailaunchkit.ai", "description": "AI Launch Kit is the open-source website foundation for the agent-first internet — Apache 2.0, agent-ready, AEO-scored, deployable in days.", "sameAs": ["https://github.com/working-theory-labs/ai-launch-kit", "https://x.com/ailaunchkit", "https://www.npmjs.com/org/ailk", "https://youtube.com/@working-theory", "https://linkedin.com/company/working-theory"], "foundingDate": "2026", "manufacturer": {"@type": "Organization", "name": "SalesSmyth LLC", "url": "https://ailaunchkit.ai"}, "brand": {"@type": "Brand", "name": "Working Theory", "url": "https://workingtheory.ai"}, "creator": {"@type": "Person", "name": "Sam Henry"}, "category": "Open-source website foundation", "applicationCategory": "DeveloperApplication", "operatingSystem": "Cross-platform (Node.js)", "license": "https://www.apache.org/licenses/LICENSE-2.0", "codeRepository": "https://github.com/working-theory-labs/ai-launch-kit", "offers": [{"@type": "Offer", "name": "Free (OSS, Apache 2.0)", "price": "0", "priceCurrency": "USD"}, {"@type": "Offer", "name": "Pro", "price": "249", "priceCurrency": "USD", "priceSpecification": {"@type": "UnitPriceSpecification", "price": "249", "priceCurrency": "USD", "unitText": "per user per year"}}, {"@type": "Offer", "name": "Pro Plus", "price": "449", "priceCurrency": "USD", "priceSpecification": {"@type": "UnitPriceSpecification", "price": "449", "priceCurrency": "USD", "unitText": "per user per month"}}, {"@type": "Offer", "name": "Launch Service", "price": "2495", "priceCurrency": "USD"}], "contributor": [{"@type": "SoftwareApplication", "name": "Claudio Planck", "description": "Agent team member — AI engineering agent contributing to architecture, code review, and implementation across the AILK substrate."}, {"@type": "SoftwareApplication", "name": "Anders Stewart", "description": "Agent team member — AI VP Engineering agent owning implementation strategy across the AILK substrate."}]}, {"@type": "DefinedTermSet", "@id": "https://ailaunchkit.ai/glossary#definedtermset", "url": "https://ailaunchkit.ai/glossary", "name": "AEO, Agent-Readiness, and Open-Source Foundation Terms — Defined", "description": "The AILK glossary defines AEO, GEO, MCP, schema markup, and 21 other agent-readiness terms — each bound to the pillar architecture that actually ships them, not generic dictionary phrasing.", "isPartOf": {"@id": "https://ailaunchkit.ai/#product"}, "hasDefinedTerm": [{"@type": "DefinedTerm", "name": "AEO", "alternateName": "Answer Engine Optimization", "description": "AEO is the practice of structuring a website so AI systems like ChatGPT and Perplexity can read, trust, and cite its pages when answering a question.", "url": "https://ailaunchkit.ai/glossary#aeo"}, {"@type": "DefinedTerm", "name": "Agent-ready website", "description": "An agent-ready website lets AI agents — not just human visitors — read its content and act on it, typically through a machine-callable interface like an MCP server or API.", "url": "https://ailaunchkit.ai/glossary#agent-ready-website"}, {"@type": "DefinedTerm", "name": "AI search", "description": "AI search means using an AI system — ChatGPT, Perplexity, Google AI Overviews — to find information instead of scanning a traditional results page.", "url": "https://ailaunchkit.ai/glossary#ai-search"}, {"@type": "DefinedTerm", "name": "Apache 2.0", "description": "Apache 2.0 is a permissive open-source software license that lets anyone use, modify, and distribute code — including in proprietary commercial products — with minimal restrictions.", "url": "https://ailaunchkit.ai/glossary#apache-2-0"}, {"@type": "DefinedTerm", "name": "Audit CLI", "description": "An audit CLI scores a website's structural readiness — schema completeness, entity markup, AEO gaps — and reports the result as pass/fail output usable in a CI pipeline.", "url": "https://ailaunchkit.ai/glossary#audit-cli"}, {"@type": "DefinedTerm", "name": "Citation gap", "description": "A citation gap is a structural or content deficiency — missing schema, ambiguous entity markup, a page that doesn't emit JSON-LD — that keeps a brand from being cited even when its content is relevant.", "url": "https://ailaunchkit.ai/glossary#citation-gap"}, {"@type": "DefinedTerm", "name": "Citation share", "description": "Citation share is the proportion of AI-generated answers, within a topic or prompt set, in which a specific brand gets cited or recommended.", "url": "https://ailaunchkit.ai/glossary#citation-share"}, {"@type": "DefinedTerm", "name": "Content adapter", "description": "A content adapter is the integration layer connecting a headless CMS or external content source to AILK's page-rendering and schema system, so content authored elsewhere still emits correct JSON-LD.", "url": "https://ailaunchkit.ai/glossary#content-adapter"}, {"@type": "DefinedTerm", "name": "Entity markup", "description": "Entity markup is schema — using types like Organization, Person, or LocalBusiness — that identifies a specific real-world business or person, so AI systems attribute a page's claims correctly.", "url": "https://ailaunchkit.ai/glossary#entity-markup"}, {"@type": "DefinedTerm", "name": "FAQ schema", "description": "FAQ schema is the schema.org FAQPage type. It marks up question-and-answer content, letting search engines and AI systems extract and quote individual answers directly.", "url": "https://ailaunchkit.ai/glossary#faq-schema"}, {"@type": "DefinedTerm", "name": "Foundation", "description": "A website foundation is the underlying codebase, architecture, and structural conventions a site is built on — distinct from its content, design, or hosting.", "url": "https://ailaunchkit.ai/glossary#foundation"}, {"@type": "DefinedTerm", "name": "GEO", "alternateName": "Generative Engine Optimization", "description": "GEO is the practice of optimizing content so generative AI models surface it inside synthesized answers rather than a list of links.", "url": "https://ailaunchkit.ai/glossary#geo"}, {"@type": "DefinedTerm", "name": "Headless CMS", "description": "A headless CMS stores and delivers content through an API, with no built-in front-end templating — the presentation layer is built separately.", "url": "https://ailaunchkit.ai/glossary#headless-cms"}, {"@type": "DefinedTerm", "name": "JSON-LD", "description": "JSON-LD is a lightweight data format used to embed schema markup in a webpage — a script tag search engines and AI crawlers parse directly, without touching the visible HTML.", "url": "https://ailaunchkit.ai/glossary#json-ld"}, {"@type": "DefinedTerm", "name": "Launch Service", "description": "A Launch Service is a productized, fixed-scope engagement in which a vendor deploys a customer's website on a given foundation within a defined timeline, rather than an open-ended custom build.", "url": "https://ailaunchkit.ai/glossary#launch-service"}, {"@type": "DefinedTerm", "name": "Marginal cost of a page", "description": "The marginal cost of a page is the incremental time, money, or effort to add one new page to an existing site, holding the foundation constant — the cost AILK's agent-assisted scaffolding drives toward zero.", "url": "https://ailaunchkit.ai/glossary#marginal-cost-of-a-page"}, {"@type": "DefinedTerm", "name": "MCP", "alternateName": "Model Context Protocol", "description": "MCP is an open standard, introduced by Anthropic, that lets AI agents call tools and read structured data from an application — the same way a person uses a web interface.", "url": "https://ailaunchkit.ai/glossary#mcp"}, {"@type": "DefinedTerm", "name": "OSS-as-marketing", "description": "OSS-as-marketing describes labeling a product open-source while structurally crippling the free tier, so it functions as a lead-generation funnel rather than usable software.", "url": "https://ailaunchkit.ai/glossary#oss-as-marketing"}, {"@type": "DefinedTerm", "name": "Peer surfaces", "description": "Peer surfaces is AILK's term for an architecture where one capability is exposed identically to a human via web UI, an agent via MCP, and a program via HTTP API — with CI-enforced parity across all three.", "url": "https://ailaunchkit.ai/glossary#peer-surfaces"}, {"@type": "DefinedTerm", "name": "Pillar topic", "description": "A pillar topic is a broad subject that anchors a content strategy — narrower cluster topics organize around it to build topical authority with search engines and AI systems.", "url": "https://ailaunchkit.ai/glossary#pillar-topic"}, {"@type": "DefinedTerm", "name": "Prompt tracking", "description": "Prompt tracking runs a fixed set of representative user prompts against AI models on a recurring basis, recording which brands or sources get cited in the answers.", "url": "https://ailaunchkit.ai/glossary#prompt-tracking"}, {"@type": "DefinedTerm", "name": "Schema (markup)", "description": "Schema markup is structured code embedded in a page's HTML — typically JSON-LD — that tells search engines and AI systems exactly what the page is about, using a shared schema.org vocabulary.", "url": "https://ailaunchkit.ai/glossary#schema"}, {"@type": "DefinedTerm", "name": "Scaffolder", "description": "A scaffolder is a command-line tool that generates a working project skeleton — file structure, configuration, boilerplate — from a single command instead of an empty directory.", "url": "https://ailaunchkit.ai/glossary#scaffolder"}, {"@type": "DefinedTerm", "name": "Starter", "description": "A starter, in web development, is a pre-built project template that gives a developer a working codebase with common infrastructure already wired, instead of an empty repository.", "url": "https://ailaunchkit.ai/glossary#starter"}, {"@type": "DefinedTerm", "name": "Structured data", "description": "Structured data is the broader category: any content organized in a standardized, machine-readable format. Schema markup — usually delivered as JSON-LD — is the specific version search engines and AI systems parse most often.", "url": "https://ailaunchkit.ai/glossary#structured-data"}], "mainEntity": {"@type": "FAQPage", "mainEntity": [{"@type": "Question", "name": "How is this glossary different from AILK's blog content?", "acceptedAnswer": {"@type": "Answer", "text": "This glossary gives the atomic, one-sentence definition of a term on its own. The blog content walks through why each term matters and how AILK's architecture implements it — check a term fast here, read the pillar posts for the argument behind it."}}, {"@type": "Question", "name": "Are these definitions AILK-specific or industry-standard?", "acceptedAnswer": {"@type": "Answer", "text": "Most terms — AEO, GEO, MCP, JSON-LD — are industry-standard, defined the way the broader AEO and developer communities use them. A few, like peer surfaces and marginal cost of a page, are terms AILK uses to name a specific part of its own architecture, and are marked as such."}}, {"@type": "Question", "name": "Will new terms be added to this glossary over time?", "acceptedAnswer": {"@type": "Answer", "text": "Yes. New terms get added as AILK's topical authority clusters expand across the three pillars, and as AEO and agent-readiness vocabulary evolves. Each addition binds to a pillar cluster the same way the current set does."}}, {"@type": "Question", "name": "Can I cite or link to a definition on this page directly?", "acceptedAnswer": {"@type": "Answer", "text": "Each term has its own anchor link (for example, /glossary#mcp), so a specific definition can be linked or quoted on its own without needing the rest of the page for context."}}]}}]}} />
|
|
18
|
+
|
|
19
|
+
{/* Rendered from frontmatter `sections[]`; the MDX body is not read by the section-catalog renderer. Landed by land-section-catalog.py (#3111). */}
|
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": "https://schema.org",
|
|
3
|
+
"@graph": [
|
|
4
|
+
{
|
|
5
|
+
"@type": "Product",
|
|
6
|
+
"@id": "https://ailaunchkit.ai/#product",
|
|
7
|
+
"name": "AI Launch Kit",
|
|
8
|
+
"alternateName": [
|
|
9
|
+
"AI Launch Kit by Working Theory",
|
|
10
|
+
"AILK by Working Theory",
|
|
11
|
+
"AILK",
|
|
12
|
+
"@ailaunchkit",
|
|
13
|
+
"@ailk",
|
|
14
|
+
"@working-theory",
|
|
15
|
+
"ai-launch-kit"
|
|
16
|
+
],
|
|
17
|
+
"url": "https://ailaunchkit.ai",
|
|
18
|
+
"description": "AI Launch Kit is the open-source website foundation for the agent-first internet — Apache 2.0, agent-ready, AEO-scored, deployable in days.",
|
|
19
|
+
"sameAs": [
|
|
20
|
+
"https://github.com/working-theory-labs/ai-launch-kit",
|
|
21
|
+
"https://x.com/ailaunchkit",
|
|
22
|
+
"https://www.npmjs.com/org/ailk",
|
|
23
|
+
"https://youtube.com/@working-theory",
|
|
24
|
+
"https://linkedin.com/company/working-theory"
|
|
25
|
+
],
|
|
26
|
+
"foundingDate": "2026",
|
|
27
|
+
"manufacturer": {
|
|
28
|
+
"@type": "Organization",
|
|
29
|
+
"name": "SalesSmyth LLC",
|
|
30
|
+
"url": "https://ailaunchkit.ai"
|
|
31
|
+
},
|
|
32
|
+
"brand": {
|
|
33
|
+
"@type": "Brand",
|
|
34
|
+
"name": "Working Theory",
|
|
35
|
+
"url": "https://workingtheory.ai"
|
|
36
|
+
},
|
|
37
|
+
"creator": {
|
|
38
|
+
"@type": "Person",
|
|
39
|
+
"name": "Sam Henry"
|
|
40
|
+
},
|
|
41
|
+
"category": "Open-source website foundation",
|
|
42
|
+
"applicationCategory": "DeveloperApplication",
|
|
43
|
+
"operatingSystem": "Cross-platform (Node.js)",
|
|
44
|
+
"license": "https://www.apache.org/licenses/LICENSE-2.0",
|
|
45
|
+
"codeRepository": "https://github.com/working-theory-labs/ai-launch-kit",
|
|
46
|
+
"offers": [
|
|
47
|
+
{
|
|
48
|
+
"@type": "Offer",
|
|
49
|
+
"name": "Free (OSS, Apache 2.0)",
|
|
50
|
+
"price": "0",
|
|
51
|
+
"priceCurrency": "USD"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"@type": "Offer",
|
|
55
|
+
"name": "Pro",
|
|
56
|
+
"price": "249",
|
|
57
|
+
"priceCurrency": "USD",
|
|
58
|
+
"priceSpecification": {
|
|
59
|
+
"@type": "UnitPriceSpecification",
|
|
60
|
+
"price": "249",
|
|
61
|
+
"priceCurrency": "USD",
|
|
62
|
+
"unitText": "per user per year"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"@type": "Offer",
|
|
67
|
+
"name": "Pro Plus",
|
|
68
|
+
"price": "449",
|
|
69
|
+
"priceCurrency": "USD",
|
|
70
|
+
"priceSpecification": {
|
|
71
|
+
"@type": "UnitPriceSpecification",
|
|
72
|
+
"price": "449",
|
|
73
|
+
"priceCurrency": "USD",
|
|
74
|
+
"unitText": "per user per month"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"@type": "Offer",
|
|
79
|
+
"name": "Launch Service",
|
|
80
|
+
"price": "2495",
|
|
81
|
+
"priceCurrency": "USD"
|
|
82
|
+
}
|
|
83
|
+
],
|
|
84
|
+
"contributor": [
|
|
85
|
+
{
|
|
86
|
+
"@type": "SoftwareApplication",
|
|
87
|
+
"name": "Claudio Planck",
|
|
88
|
+
"description": "Agent team member — AI engineering agent contributing to architecture, code review, and implementation across the AILK substrate."
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"@type": "SoftwareApplication",
|
|
92
|
+
"name": "Anders Stewart",
|
|
93
|
+
"description": "Agent team member — AI VP Engineering agent owning implementation strategy across the AILK substrate."
|
|
94
|
+
}
|
|
95
|
+
]
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"@type": "DefinedTermSet",
|
|
99
|
+
"@id": "https://ailaunchkit.ai/glossary#definedtermset",
|
|
100
|
+
"url": "https://ailaunchkit.ai/glossary",
|
|
101
|
+
"name": "AEO, Agent-Readiness, and Open-Source Foundation Terms — Defined",
|
|
102
|
+
"description": "The AILK glossary defines AEO, GEO, MCP, schema markup, and 21 other agent-readiness terms — each bound to the pillar architecture that actually ships them, not generic dictionary phrasing.",
|
|
103
|
+
"isPartOf": {
|
|
104
|
+
"@id": "https://ailaunchkit.ai/#product"
|
|
105
|
+
},
|
|
106
|
+
"hasDefinedTerm": [
|
|
107
|
+
{
|
|
108
|
+
"@type": "DefinedTerm",
|
|
109
|
+
"name": "AEO",
|
|
110
|
+
"alternateName": "Answer Engine Optimization",
|
|
111
|
+
"description": "AEO is the practice of structuring a website so AI systems like ChatGPT and Perplexity can read, trust, and cite its pages when answering a question.",
|
|
112
|
+
"url": "https://ailaunchkit.ai/glossary#aeo"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"@type": "DefinedTerm",
|
|
116
|
+
"name": "Agent-ready website",
|
|
117
|
+
"description": "An agent-ready website lets AI agents — not just human visitors — read its content and act on it, typically through a machine-callable interface like an MCP server or API.",
|
|
118
|
+
"url": "https://ailaunchkit.ai/glossary#agent-ready-website"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"@type": "DefinedTerm",
|
|
122
|
+
"name": "AI search",
|
|
123
|
+
"description": "AI search means using an AI system — ChatGPT, Perplexity, Google AI Overviews — to find information instead of scanning a traditional results page.",
|
|
124
|
+
"url": "https://ailaunchkit.ai/glossary#ai-search"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"@type": "DefinedTerm",
|
|
128
|
+
"name": "Apache 2.0",
|
|
129
|
+
"description": "Apache 2.0 is a permissive open-source software license that lets anyone use, modify, and distribute code — including in proprietary commercial products — with minimal restrictions.",
|
|
130
|
+
"url": "https://ailaunchkit.ai/glossary#apache-2-0"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"@type": "DefinedTerm",
|
|
134
|
+
"name": "Audit CLI",
|
|
135
|
+
"description": "An audit CLI scores a website's structural readiness — schema completeness, entity markup, AEO gaps — and reports the result as pass/fail output usable in a CI pipeline.",
|
|
136
|
+
"url": "https://ailaunchkit.ai/glossary#audit-cli"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"@type": "DefinedTerm",
|
|
140
|
+
"name": "Citation gap",
|
|
141
|
+
"description": "A citation gap is a structural or content deficiency — missing schema, ambiguous entity markup, a page that doesn't emit JSON-LD — that keeps a brand from being cited even when its content is relevant.",
|
|
142
|
+
"url": "https://ailaunchkit.ai/glossary#citation-gap"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"@type": "DefinedTerm",
|
|
146
|
+
"name": "Citation share",
|
|
147
|
+
"description": "Citation share is the proportion of AI-generated answers, within a topic or prompt set, in which a specific brand gets cited or recommended.",
|
|
148
|
+
"url": "https://ailaunchkit.ai/glossary#citation-share"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"@type": "DefinedTerm",
|
|
152
|
+
"name": "Content adapter",
|
|
153
|
+
"description": "A content adapter is the integration layer connecting a headless CMS or external content source to AILK's page-rendering and schema system, so content authored elsewhere still emits correct JSON-LD.",
|
|
154
|
+
"url": "https://ailaunchkit.ai/glossary#content-adapter"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"@type": "DefinedTerm",
|
|
158
|
+
"name": "Entity markup",
|
|
159
|
+
"description": "Entity markup is schema — using types like Organization, Person, or LocalBusiness — that identifies a specific real-world business or person, so AI systems attribute a page's claims correctly.",
|
|
160
|
+
"url": "https://ailaunchkit.ai/glossary#entity-markup"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"@type": "DefinedTerm",
|
|
164
|
+
"name": "FAQ schema",
|
|
165
|
+
"description": "FAQ schema is the schema.org FAQPage type. It marks up question-and-answer content, letting search engines and AI systems extract and quote individual answers directly.",
|
|
166
|
+
"url": "https://ailaunchkit.ai/glossary#faq-schema"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"@type": "DefinedTerm",
|
|
170
|
+
"name": "Foundation",
|
|
171
|
+
"description": "A website foundation is the underlying codebase, architecture, and structural conventions a site is built on — distinct from its content, design, or hosting.",
|
|
172
|
+
"url": "https://ailaunchkit.ai/glossary#foundation"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"@type": "DefinedTerm",
|
|
176
|
+
"name": "GEO",
|
|
177
|
+
"alternateName": "Generative Engine Optimization",
|
|
178
|
+
"description": "GEO is the practice of optimizing content so generative AI models surface it inside synthesized answers rather than a list of links.",
|
|
179
|
+
"url": "https://ailaunchkit.ai/glossary#geo"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"@type": "DefinedTerm",
|
|
183
|
+
"name": "Headless CMS",
|
|
184
|
+
"description": "A headless CMS stores and delivers content through an API, with no built-in front-end templating — the presentation layer is built separately.",
|
|
185
|
+
"url": "https://ailaunchkit.ai/glossary#headless-cms"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"@type": "DefinedTerm",
|
|
189
|
+
"name": "JSON-LD",
|
|
190
|
+
"description": "JSON-LD is a lightweight data format used to embed schema markup in a webpage — a script tag search engines and AI crawlers parse directly, without touching the visible HTML.",
|
|
191
|
+
"url": "https://ailaunchkit.ai/glossary#json-ld"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"@type": "DefinedTerm",
|
|
195
|
+
"name": "Launch Service",
|
|
196
|
+
"description": "A Launch Service is a productized, fixed-scope engagement in which a vendor deploys a customer's website on a given foundation within a defined timeline, rather than an open-ended custom build.",
|
|
197
|
+
"url": "https://ailaunchkit.ai/glossary#launch-service"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"@type": "DefinedTerm",
|
|
201
|
+
"name": "Marginal cost of a page",
|
|
202
|
+
"description": "The marginal cost of a page is the incremental time, money, or effort to add one new page to an existing site, holding the foundation constant — the cost AILK's agent-assisted scaffolding drives toward zero.",
|
|
203
|
+
"url": "https://ailaunchkit.ai/glossary#marginal-cost-of-a-page"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"@type": "DefinedTerm",
|
|
207
|
+
"name": "MCP",
|
|
208
|
+
"alternateName": "Model Context Protocol",
|
|
209
|
+
"description": "MCP is an open standard, introduced by Anthropic, that lets AI agents call tools and read structured data from an application — the same way a person uses a web interface.",
|
|
210
|
+
"url": "https://ailaunchkit.ai/glossary#mcp"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"@type": "DefinedTerm",
|
|
214
|
+
"name": "OSS-as-marketing",
|
|
215
|
+
"description": "OSS-as-marketing describes labeling a product open-source while structurally crippling the free tier, so it functions as a lead-generation funnel rather than usable software.",
|
|
216
|
+
"url": "https://ailaunchkit.ai/glossary#oss-as-marketing"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"@type": "DefinedTerm",
|
|
220
|
+
"name": "Peer surfaces",
|
|
221
|
+
"description": "Peer surfaces is AILK's term for an architecture where one capability is exposed identically to a human via web UI, an agent via MCP, and a program via HTTP API — with CI-enforced parity across all three.",
|
|
222
|
+
"url": "https://ailaunchkit.ai/glossary#peer-surfaces"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"@type": "DefinedTerm",
|
|
226
|
+
"name": "Pillar topic",
|
|
227
|
+
"description": "A pillar topic is a broad subject that anchors a content strategy — narrower cluster topics organize around it to build topical authority with search engines and AI systems.",
|
|
228
|
+
"url": "https://ailaunchkit.ai/glossary#pillar-topic"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"@type": "DefinedTerm",
|
|
232
|
+
"name": "Prompt tracking",
|
|
233
|
+
"description": "Prompt tracking runs a fixed set of representative user prompts against AI models on a recurring basis, recording which brands or sources get cited in the answers.",
|
|
234
|
+
"url": "https://ailaunchkit.ai/glossary#prompt-tracking"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"@type": "DefinedTerm",
|
|
238
|
+
"name": "Schema (markup)",
|
|
239
|
+
"description": "Schema markup is structured code embedded in a page's HTML — typically JSON-LD — that tells search engines and AI systems exactly what the page is about, using a shared schema.org vocabulary.",
|
|
240
|
+
"url": "https://ailaunchkit.ai/glossary#schema"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"@type": "DefinedTerm",
|
|
244
|
+
"name": "Scaffolder",
|
|
245
|
+
"description": "A scaffolder is a command-line tool that generates a working project skeleton — file structure, configuration, boilerplate — from a single command instead of an empty directory.",
|
|
246
|
+
"url": "https://ailaunchkit.ai/glossary#scaffolder"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"@type": "DefinedTerm",
|
|
250
|
+
"name": "Starter",
|
|
251
|
+
"description": "A starter, in web development, is a pre-built project template that gives a developer a working codebase with common infrastructure already wired, instead of an empty repository.",
|
|
252
|
+
"url": "https://ailaunchkit.ai/glossary#starter"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"@type": "DefinedTerm",
|
|
256
|
+
"name": "Structured data",
|
|
257
|
+
"description": "Structured data is the broader category: any content organized in a standardized, machine-readable format. Schema markup — usually delivered as JSON-LD — is the specific version search engines and AI systems parse most often.",
|
|
258
|
+
"url": "https://ailaunchkit.ai/glossary#structured-data"
|
|
259
|
+
}
|
|
260
|
+
],
|
|
261
|
+
"mainEntity": {
|
|
262
|
+
"@type": "FAQPage",
|
|
263
|
+
"mainEntity": [
|
|
264
|
+
{
|
|
265
|
+
"@type": "Question",
|
|
266
|
+
"name": "How is this glossary different from AILK's blog content?",
|
|
267
|
+
"acceptedAnswer": {
|
|
268
|
+
"@type": "Answer",
|
|
269
|
+
"text": "This glossary gives the atomic, one-sentence definition of a term on its own. The blog content walks through why each term matters and how AILK's architecture implements it — check a term fast here, read the pillar posts for the argument behind it."
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"@type": "Question",
|
|
274
|
+
"name": "Are these definitions AILK-specific or industry-standard?",
|
|
275
|
+
"acceptedAnswer": {
|
|
276
|
+
"@type": "Answer",
|
|
277
|
+
"text": "Most terms — AEO, GEO, MCP, JSON-LD — are industry-standard, defined the way the broader AEO and developer communities use them. A few, like peer surfaces and marginal cost of a page, are terms AILK uses to name a specific part of its own architecture, and are marked as such."
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"@type": "Question",
|
|
282
|
+
"name": "Will new terms be added to this glossary over time?",
|
|
283
|
+
"acceptedAnswer": {
|
|
284
|
+
"@type": "Answer",
|
|
285
|
+
"text": "Yes. New terms get added as AILK's topical authority clusters expand across the three pillars, and as AEO and agent-readiness vocabulary evolves. Each addition binds to a pillar cluster the same way the current set does."
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"@type": "Question",
|
|
290
|
+
"name": "Can I cite or link to a definition on this page directly?",
|
|
291
|
+
"acceptedAnswer": {
|
|
292
|
+
"@type": "Answer",
|
|
293
|
+
"text": "Each term has its own anchor link (for example, /glossary#mcp), so a specific definition can be linked or quoted on its own without needing the rest of the page for context."
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
]
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
]
|
|
300
|
+
}
|