@farming-labs/docs 0.2.75 → 0.2.78

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.
Files changed (39) hide show
  1. package/dist/{agent-BHqaZx-X.mjs → agent-Ba94vwM2.mjs} +4308 -340
  2. package/dist/{agent-cAPjC2jb.d.mts → agent-CHgWJcK_.d.mts} +60 -2
  3. package/dist/{agent-DxTa3PLB.mjs → agent-CM-hzhfh.mjs} +2 -2
  4. package/dist/{agent-evals-21LZ_uEl.mjs → agent-evals-C8dkgJMN.mjs} +1 -1
  5. package/dist/{agent-export-3VheegEK.mjs → agent-export-DdF-IVfg.mjs} +8 -7
  6. package/dist/agent-provenance-D8UBpnMc.mjs +463 -0
  7. package/dist/agent-skills-bundle.d.mts +1 -1
  8. package/dist/{agent-skills-server-noFn1l_p.mjs → agent-skills-server-B2EXn2QD.mjs} +1 -1
  9. package/dist/{agent-skills-server-Cix64aGB.d.mts → agent-skills-server-zvs0Yknt.d.mts} +2 -2
  10. package/dist/agent-skills-vite.d.mts +3 -3
  11. package/dist/agent-skills-vite.mjs +2 -2
  12. package/dist/{agents-ByTdP0Hl.mjs → agents-v0Em2KZo.mjs} +7 -16
  13. package/dist/cli/index.mjs +15 -15
  14. package/dist/client/react.d.mts +1 -1
  15. package/dist/{cloud-ask-ai-Bt0rzFbe.d.mts → cloud-ask-ai-BwsdF7AQ.d.mts} +1 -1
  16. package/dist/{dev-Cc1cFFj-.mjs → dev-kjaxOOla.mjs} +8 -2
  17. package/dist/docs-cloud-server.d.mts +2 -2
  18. package/dist/{doctor-C34VVF85.mjs → doctor-BbrN0rdC.mjs} +56 -24
  19. package/dist/{golden-evaluations-D_oDJwGv.mjs → golden-evaluations-Bk9t-HNq.mjs} +12 -3
  20. package/dist/index.d.mts +5 -5
  21. package/dist/index.mjs +6 -6
  22. package/dist/{mcp-Bnqfu8P5.mjs → mcp-DT-WNsA-.mjs} +6 -6
  23. package/dist/mcp.d.mts +28 -6
  24. package/dist/mcp.mjs +557 -62
  25. package/dist/{prompt-references-CfyYOa_W.mjs → prompt-references-CoDorsvS.mjs} +3 -3
  26. package/dist/{retrieval-digest-CFOcSKTo.d.mts → retrieval-digest-CO3wqeMk.d.mts} +105 -6
  27. package/dist/{review-Dw6oCQX3.mjs → review-DrCaaT7G.mjs} +5 -5
  28. package/dist/{robots-DaYBoy_A.mjs → robots-C_v2HK43.mjs} +2 -2
  29. package/dist/{robots-KWLujSLI.mjs → robots-izJbM9cv.mjs} +3 -3
  30. package/dist/{search-DBdmbUkc.mjs → search-YiZMZDfb.mjs} +6 -6
  31. package/dist/server.d.mts +9 -7
  32. package/dist/server.mjs +7 -7
  33. package/dist/{sitemap-CrzG5Wpf.mjs → sitemap-NO8UMO6Y.mjs} +6 -6
  34. package/dist/{sitemap-server-B9LZQ1FE.mjs → sitemap-server-Dgxs9V6S.mjs} +12 -3
  35. package/dist/{standards-discovery-BwL5ffGx.mjs → standards-discovery-BKlEnK_H.mjs} +32 -4
  36. package/dist/{standards-discovery-DBI1PD7m.d.mts → standards-discovery-BWyNgZSs.d.mts} +34 -7
  37. package/dist/{types-BDRwrExu.d.mts → types-CpLnwHak.d.mts} +190 -2
  38. package/package.json +1 -1
  39. package/dist/search-BmC8wVr0.mjs +0 -3490
@@ -191,6 +191,7 @@ const managedConfigSchema = z.object({
191
191
  name: z.string().optional(),
192
192
  path: z.string(),
193
193
  route: z.string().optional(),
194
+ catalogTargets: z.array(z.string()).optional(),
194
195
  navigationLabel: z.string().optional()
195
196
  }).passthrough()).optional()
196
197
  }).passthrough().optional(),
@@ -240,11 +241,13 @@ function resolveManagedOpenApiSpec(projectRoot, openapi) {
240
241
  if (configured) {
241
242
  const rawPath = configured.path.trim();
242
243
  const route = normalizeManagedRoutePath(configured.route);
244
+ const catalogTargets = configured.catalogTargets === void 0 ? void 0 : Array.from(new Set(configured.catalogTargets.map((target) => target.trim()).filter(Boolean)));
243
245
  if (isRemoteManagedSpecPath(rawPath) || isRequestRelativeManagedSpecPath(rawPath)) return {
244
246
  name: configured.name?.trim() || "API Reference",
245
247
  route,
246
248
  path: rawPath,
247
249
  specUrl: rawPath,
250
+ catalogTargets,
248
251
  navigationLabel: configured.navigationLabel?.trim() || void 0
249
252
  };
250
253
  return {
@@ -252,6 +255,7 @@ function resolveManagedOpenApiSpec(projectRoot, openapi) {
252
255
  route,
253
256
  path: rawPath,
254
257
  specUrl: DEFAULT_MANAGED_OPENAPI_ENDPOINT,
258
+ catalogTargets,
255
259
  sourcePath: path.resolve(projectRoot, rawPath),
256
260
  navigationLabel: configured.navigationLabel?.trim() || void 0
257
261
  };
@@ -585,12 +589,13 @@ function renderEmptyHomePage() {
585
589
  `;
586
590
  }
587
591
  function renderDocsConfigFile(options) {
592
+ const catalogTargetsLine = options.apiReference?.catalogTargets === void 0 ? "" : ` catalogTargets: ${JSON.stringify(options.apiReference.catalogTargets)},\n`;
588
593
  const apiReferenceBlock = options.apiReference ? ` apiReference: {
589
594
  enabled: true,
590
595
  path: ${JSON.stringify(options.apiReference.path)},
591
596
  renderer: "fumadocs",
592
597
  specUrl: ${JSON.stringify(options.apiReference.specUrl)},
593
- },
598
+ ${catalogTargetsLine} },
594
599
  ` : "";
595
600
  const analyticsBlock = renderManagedAnalyticsBlock(options.analytics);
596
601
  return `import { defineDocs } from "@farming-labs/docs";
@@ -976,7 +981,8 @@ function materializeManagedRuntime(projectRoot) {
976
981
  analytics: project.analytics,
977
982
  apiReference: project.apiReferenceSpec ? {
978
983
  path: apiReferenceRoute,
979
- specUrl: project.apiReferenceSpec.specUrl
984
+ specUrl: project.apiReferenceSpec.specUrl,
985
+ catalogTargets: project.apiReferenceSpec.catalogTargets
980
986
  } : void 0
981
987
  }));
982
988
  if (!project.apiReferenceSpec) writeFileIfChanged(path.join(project.runtimeDir, "api-reference.config.ts"), renderDocsConfigFile({
@@ -1,5 +1,5 @@
1
- import { at as DocsAnalyticsEventInput, it as DocsAnalyticsEvent, rt as DocsAnalyticsConfig } from "./types-BDRwrExu.mjs";
2
- import { n as DocsCloudAskAIResponseOptions, t as DocsCloudAskAIConfig } from "./cloud-ask-ai-Bt0rzFbe.mjs";
1
+ import { at as DocsAnalyticsEvent, it as DocsAnalyticsConfig, ot as DocsAnalyticsEventInput } from "./types-CpLnwHak.mjs";
2
+ import { n as DocsCloudAskAIResponseOptions, t as DocsCloudAskAIConfig } from "./cloud-ask-ai-BwsdF7AQ.mjs";
3
3
 
4
4
  //#region src/docs-cloud-server.d.ts
5
5
  type DocsCloudRuntimeValue<T = string> = T | undefined | null | (() => T | undefined | null);
@@ -1,21 +1,21 @@
1
- import { i as scanDocsPageTargets, n as compactAgentDocs, r as inspectAgentCompactionState } from "./agent-DxTa3PLB.mjs";
2
- import { d as httpLinkHeaderHasTargetRelation, f as AGENT_SKILL_ARCHIVE_MAX_UNCOMPRESSED_BYTES, p as readAgentSkillDocumentFromTar } from "./prompt-references-CfyYOa_W.mjs";
3
- import { $t as getDocsMcpProtectedResourceMetadataRoutes, A as buildDocsAgentDiscoverySpec, F as buildDocsMcpEndpointCandidates, Ft as DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, Ht as resolveDocsSitemapConfig, It as DEFAULT_SITEMAP_XML_ROUTE, M as buildDocsConfigMap, Pt as DEFAULT_SITEMAP_MD_ROUTE, S as DEFAULT_SKILL_MD_WELL_KNOWN_ROUTE, T as DOCS_CONFIG_MAP_TOP_LEVEL_KEYS, Yt as DEFAULT_MCP_PUBLIC_ROUTE, Zt as DEFAULT_MCP_WELL_KNOWN_ROUTE, c as DEFAULT_AGENT_SPEC_WELL_KNOWN_JSON_ROUTE, h as DEFAULT_LLMS_FULL_TXT_ROUTE, i as DEFAULT_AGENT_FEEDBACK_ROUTE, l as DEFAULT_AGENT_SPEC_WELL_KNOWN_ROUTE, n as DEFAULT_AGENTS_MD_WELL_KNOWN_ROUTE, nn as isDocsMcpOAuthScopeToken, on as normalizeDocsMcpAuthorizationServerUrls, t as DEFAULT_AGENTS_MD_ROUTE, v as DEFAULT_LLMS_TXT_ROUTE, x as DEFAULT_SKILL_MD_ROUTE } from "./agent-BHqaZx-X.mjs";
1
+ import { i as scanDocsPageTargets, n as compactAgentDocs, r as inspectAgentCompactionState } from "./agent-CM-hzhfh.mjs";
2
+ import { d as httpLinkHeaderHasTargetRelation, f as AGENT_SKILL_ARCHIVE_MAX_UNCOMPRESSED_BYTES, p as readAgentSkillDocumentFromTar } from "./prompt-references-CoDorsvS.mjs";
3
+ import { A as buildDocsAgentDiscoverySpec, At as DEFAULT_SITEMAP_XML_ROUTE, F as buildDocsMcpEndpointCandidates, It as resolveDocsSitemapConfig, Kn as isDocsMcpOAuthScopeToken, M as buildDocsConfigMap, Ot as DEFAULT_SITEMAP_MD_ROUTE, S as DEFAULT_SKILL_MD_WELL_KNOWN_ROUTE, T as DOCS_CONFIG_MAP_TOP_LEVEL_KEYS, Un as getDocsMcpProtectedResourceMetadataRoutes, Vn as DEFAULT_MCP_WELL_KNOWN_ROUTE, Xn as normalizeDocsMcpAuthorizationServerUrls, c as DEFAULT_AGENT_SPEC_WELL_KNOWN_JSON_ROUTE, fn as resolveAskAISearchRequestConfig, h as DEFAULT_LLMS_FULL_TXT_ROUTE, i as DEFAULT_AGENT_FEEDBACK_ROUTE, kt as DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, l as DEFAULT_AGENT_SPEC_WELL_KNOWN_ROUTE, n as DEFAULT_AGENTS_MD_WELL_KNOWN_ROUTE, t as DEFAULT_AGENTS_MD_ROUTE, v as DEFAULT_LLMS_TXT_ROUTE, x as DEFAULT_SKILL_MD_ROUTE, zn as DEFAULT_MCP_PUBLIC_ROUTE } from "./agent-Ba94vwM2.mjs";
4
4
  import { f as PAGE_AGENT_CONTRACT_FIELDS } from "./markdown-sections-7OoA7ylx.mjs";
5
5
  import { isDocsAgentSkillName, validateDocsAgentSkillFrontmatter } from "./agent-skills-spec.mjs";
6
- import { I as resolveDocsDiscoveryApiRoute, _ as DEFAULT_API_CATALOG_FORMAT, d as DEFAULT_AGENT_SKILLS_ROUTE_PATTERN, f as DEFAULT_AGENT_SKILLS_ROUTE_PREFIX, h as DEFAULT_AGENT_SKILL_FORMAT, l as DEFAULT_AGENT_SKILLS_INDEX_FORMAT, n as API_CATALOG_MEDIA_TYPE, r as API_CATALOG_PROFILE_URI, t as AGENT_SKILLS_DISCOVERY_SCHEMA_URI, u as DEFAULT_AGENT_SKILLS_INDEX_ROUTE, v as DEFAULT_API_CATALOG_ROUTE } from "./standards-discovery-BwL5ffGx.mjs";
7
- import { h as resolveAskAISearchRequestConfig } from "./search-BmC8wVr0.mjs";
8
- import { a as analyzeDocsRobotsTxt, n as DEFAULT_ROBOTS_TXT_ROUTE, u as resolveDocsRobotsConfig } from "./robots-DaYBoy_A.mjs";
6
+ import { I as resolveDocsDiscoveryApiRoute, _ as DEFAULT_API_CATALOG_FORMAT, d as DEFAULT_AGENT_SKILLS_ROUTE_PATTERN, f as DEFAULT_AGENT_SKILLS_ROUTE_PREFIX, h as DEFAULT_AGENT_SKILL_FORMAT, l as DEFAULT_AGENT_SKILLS_INDEX_FORMAT, n as API_CATALOG_MEDIA_TYPE, r as API_CATALOG_PROFILE_URI, t as AGENT_SKILLS_DISCOVERY_SCHEMA_URI, u as DEFAULT_AGENT_SKILLS_INDEX_ROUTE, v as DEFAULT_API_CATALOG_ROUTE } from "./standards-discovery-BKlEnK_H.mjs";
7
+ import "./agent-provenance-D8UBpnMc.mjs";
8
+ import { a as analyzeDocsRobotsTxt, n as DEFAULT_ROBOTS_TXT_ROUTE, u as resolveDocsRobotsConfig } from "./robots-C_v2HK43.mjs";
9
9
  import { a as resolveDocsMetadataBaseUrl } from "./metadata-N252j5_a.mjs";
10
- import "./sitemap-server-B9LZQ1FE.mjs";
11
- import { t as runDocsGoldenTasks } from "./agent-evals-21LZ_uEl.mjs";
10
+ import "./sitemap-server-Dgxs9V6S.mjs";
11
+ import { t as runDocsGoldenTasks } from "./agent-evals-C8dkgJMN.mjs";
12
12
  import { createFilesystemDocsMcpSource, getDocsConfigSchema, resolveDocsMcpConfig } from "./mcp.mjs";
13
13
  import "./code-blocks-DnNVNK2M.mjs";
14
- import { t as resolveConfiguredAgentSkills } from "./agent-skills-server-noFn1l_p.mjs";
14
+ import { t as resolveConfiguredAgentSkills } from "./agent-skills-server-B2EXn2QD.mjs";
15
15
  import "./server.mjs";
16
16
  import { _ as resolveDocsContentDir, d as readNavTitle, g as resolveDocsConfigPath, h as readTopLevelStringProperty, l as readBooleanProperty, r as extractTopLevelConfigObject, s as loadDocsConfigModuleResultWithProjectEnv, t as extractNestedObjectLiteral } from "./config-Wcdj-D0a.mjs";
17
17
  import { t as detectFramework } from "./utils-DpiIioYb.mjs";
18
- import { i as createAgentUsefulnessPagesFromMcp, n as analyzeAgentSurfaceDrift, r as analyzeAgentUsefulness, t as resolveGoldenEvaluationInput } from "./golden-evaluations-D_oDJwGv.mjs";
18
+ import { i as createAgentUsefulnessPagesFromMcp, n as analyzeAgentSurfaceDrift, r as analyzeAgentUsefulness, t as resolveGoldenEvaluationInput } from "./golden-evaluations-Bk9t-HNq.mjs";
19
19
  import { existsSync, lstatSync, readFileSync, readdirSync } from "node:fs";
20
20
  import path from "node:path";
21
21
  import { LATEST_PROTOCOL_VERSION } from "@modelcontextprotocol/sdk/types.js";
@@ -1029,18 +1029,52 @@ async function probeMcpRoute(baseUrl, route, expectedTools) {
1029
1029
  detail: `${route} initialize returned HTTP ${initializeResponse.status}: ${String(initializePayload.error?.message ?? "unknown MCP error")}.`
1030
1030
  };
1031
1031
  const sessionId = initializeResponse.headers.get("mcp-session-id") ?? void 0;
1032
- if (sessionId) await postMcpJson(baseUrl, route, {
1032
+ await postMcpJson(baseUrl, route, {
1033
1033
  jsonrpc: "2.0",
1034
1034
  method: "notifications/initialized",
1035
1035
  params: {}
1036
1036
  }, sessionId).catch(() => void 0);
1037
- const toolsResponse = await postMcpJson(baseUrl, route, {
1038
- jsonrpc: "2.0",
1039
- id: "doctor-tools-list",
1040
- method: "tools/list",
1041
- params: {}
1042
- }, sessionId);
1043
- const toolsPayload = await parseMcpResponse(toolsResponse);
1037
+ const toolNames = /* @__PURE__ */ new Set();
1038
+ const seenCursors = /* @__PURE__ */ new Set();
1039
+ let cursor;
1040
+ let toolsListError;
1041
+ let completedToolsList = false;
1042
+ for (let page = 0; page < 20; page += 1) {
1043
+ const toolsResponse = await postMcpJson(baseUrl, route, {
1044
+ jsonrpc: "2.0",
1045
+ id: `doctor-tools-list-${page + 1}`,
1046
+ method: "tools/list",
1047
+ params: cursor !== void 0 ? { cursor } : {}
1048
+ }, sessionId);
1049
+ const toolsPayload = await parseMcpResponse(toolsResponse);
1050
+ if (!toolsResponse.ok || toolsPayload.error) {
1051
+ toolsListError = {
1052
+ status: toolsResponse.status,
1053
+ message: String(toolsPayload.error?.message ?? "unknown MCP error")
1054
+ };
1055
+ break;
1056
+ }
1057
+ const result = toolsPayload.result;
1058
+ for (const tool of result?.tools ?? []) if (typeof tool.name === "string") toolNames.add(tool.name);
1059
+ const nextCursor = result?.nextCursor;
1060
+ if (nextCursor === void 0) {
1061
+ completedToolsList = true;
1062
+ break;
1063
+ }
1064
+ if (typeof nextCursor !== "string" || seenCursors.has(nextCursor)) {
1065
+ toolsListError = {
1066
+ status: toolsResponse.status,
1067
+ message: "server returned an invalid or repeated pagination cursor"
1068
+ };
1069
+ break;
1070
+ }
1071
+ seenCursors.add(nextCursor);
1072
+ cursor = nextCursor;
1073
+ }
1074
+ if (!completedToolsList && !toolsListError) toolsListError = {
1075
+ status: 200,
1076
+ message: "server exceeded the 20-page tools/list safety limit"
1077
+ };
1044
1078
  if (sessionId) await fetchWithTimeout(joinDoctorUrl(baseUrl, route), {
1045
1079
  method: "DELETE",
1046
1080
  headers: {
@@ -1048,20 +1082,18 @@ async function probeMcpRoute(baseUrl, route, expectedTools) {
1048
1082
  "mcp-session-id": sessionId
1049
1083
  }
1050
1084
  }).catch(() => void 0);
1051
- if (!toolsResponse.ok || toolsPayload.error) return {
1085
+ if (toolsListError) return {
1052
1086
  ok: false,
1053
- detail: `${route} tools/list returned HTTP ${toolsResponse.status}: ${String(toolsPayload.error?.message ?? "unknown MCP error")}.`
1087
+ detail: `${route} tools/list returned HTTP ${toolsListError.status}: ${toolsListError.message}.`
1054
1088
  };
1055
- const tools = toolsPayload.result?.tools;
1056
- const toolNames = Array.isArray(tools) ? tools.map((tool) => tool.name).filter((name) => typeof name === "string") : [];
1057
- const missingTools = expectedTools.filter((tool) => !toolNames.includes(tool));
1089
+ const missingTools = expectedTools.filter((tool) => !toolNames.has(tool));
1058
1090
  if (missingTools.length > 0) return {
1059
1091
  ok: false,
1060
1092
  detail: `${route} connected but is missing tools: ${missingTools.join(", ")}.`
1061
1093
  };
1062
1094
  return {
1063
1095
  ok: true,
1064
- detail: `${route} initialized ${sessionId ? "with a session" : "statelessly"} and exposed ${toolNames.length} MCP tool${toolNames.length === 1 ? "" : "s"}.`
1096
+ detail: `${route} initialized ${sessionId ? "with a session" : "statelessly"} and exposed ${toolNames.size} MCP tool${toolNames.size === 1 ? "" : "s"}.`
1065
1097
  };
1066
1098
  } catch (error) {
1067
1099
  return {
@@ -1,6 +1,5 @@
1
- import { Ot as findDocsAudienceMdxTags, jt as resolveDocsAudienceMdxContent } from "./agent-BHqaZx-X.mjs";
1
+ import { Dn as agentVersionConstraintsOverlap, On as normalizeAgentFramework, jn as normalizeAgentVersion, wn as resolveDocsAudienceMdxContent, xn as findDocsAudienceMdxTags } from "./agent-Ba94vwM2.mjs";
2
2
  import { _ as hasStructuredPageAgentContract, v as normalizePageAgentFrontmatter } from "./markdown-sections-7OoA7ylx.mjs";
3
- import { C as agentVersionConstraintsOverlap, D as normalizeAgentVersion, w as normalizeAgentFramework } from "./search-BmC8wVr0.mjs";
4
3
  import { t as extractCodeBlocksFromMarkdown } from "./code-blocks-DnNVNK2M.mjs";
5
4
  import { existsSync, lstatSync, readFileSync, readdirSync } from "node:fs";
6
5
  import path from "node:path";
@@ -1683,11 +1682,15 @@ function analyzeAgentSurfaceDrift(options) {
1683
1682
  compareExpectedValue(issues, options.discovery, "search-audience-mismatch", "search.defaultAudience", "human", "Discovery search.defaultAudience");
1684
1683
  compareExpectedValue(issues, options.discovery, "search-audience-mismatch", "search.supportedAudiences", ["human", "agent"], "Discovery search.supportedAudiences");
1685
1684
  const expectedStructuredAgentSearchEndpoint = expectedAgentSearchEndpoint === null ? null : `${expectedAgentSearchEndpoint}&response=structured`;
1685
+ const expectedSearchFacetsEndpoint = expectedAgentSearchEndpoint === null ? null : expectedAgentSearchEndpoint.replace("query={query}&audience=agent", "audience=agent&response=facets");
1686
1686
  for (const [path, expected] of [
1687
1687
  ["search.structuredAgentEndpoint", expectedStructuredAgentSearchEndpoint],
1688
+ ["search.facetsEndpoint", expectedSearchFacetsEndpoint],
1688
1689
  ["search.responseParam", "response"],
1689
1690
  ["search.structuredResponseValue", "structured"],
1691
+ ["search.facetsResponseValue", "facets"],
1690
1692
  ["search.responseFormat", "docs-search.v1"],
1693
+ ["search.facetsResponseFormat", "docs-search-facets.v1"],
1691
1694
  ["search.filterParams", {
1692
1695
  framework: "framework",
1693
1696
  version: "version",
@@ -1700,7 +1703,13 @@ function analyzeAgentSurfaceDrift(options) {
1700
1703
  "package",
1701
1704
  "tags"
1702
1705
  ]],
1703
- ["search.warningsField", "warnings"]
1706
+ ["search.warningsField", "warnings"],
1707
+ ["search.facetParam", "facet"],
1708
+ ["search.limitParam", "limit"],
1709
+ ["search.cursorParam", "cursor"],
1710
+ ["search.nextCursorField", "nextCursor"],
1711
+ ["search.hasMoreField", "hasMore"],
1712
+ ["search.totalField", "total"]
1704
1713
  ]) compareExpectedValue(issues, options.discovery, "search-scope-mismatch", path, expected, `Discovery ${path}`);
1705
1714
  compareExpectedValue(issues, options.discovery, "mcp-enabled-mismatch", "mcp.enabled", options.expected.mcp.enabled, "Discovery mcp.enabled");
1706
1715
  compareExpectedValue(issues, options.discovery, "mcp-capability-mismatch", "capabilities.mcp", options.expected.mcp.enabled, "Discovery capabilities.mcp");
package/dist/index.d.mts CHANGED
@@ -1,8 +1,8 @@
1
- import { $ as DocsAgentSkillsInput, $n as PageAgentFailureMode, $t as DocsReviewCiMode, A as DocsAgentA2ASecurityScheme, An as DocsTelemetryFeatures, At as DocsFeedbackData, B as DocsAgentEvaluationSourceReference, Bn as LlmsTxtSectionConfig, Bt as DocsMcpOriginContext, C as DocsAgentA2AOAuthDeviceCodeFlow, Cn as DocsSearchWarningCode, Ct as DocsCodeBlocksPlannerProvider, D as DocsAgentA2AOpenIdConnectSecurityScheme, Dn as DocsTelemetryEvent, Dt as DocsCodeBlocksValidationMode, E as DocsAgentA2AOAuthPasswordFlow, En as DocsTelemetryConfig, Et as DocsCodeBlocksValidateConfig, F as DocsAgentEvaluationAnswerInput, Fn as GithubConfig, Ft as DocsMcpAuthenticate, G as DocsAgentFeedbackData, Gn as OpenDocsProviderConfig, Gt as DocsNav, H as DocsAgentEvaluationTaskInput, Hn as OGConfig, Ht as DocsMcpSecurityConfig, I as DocsAgentEvaluationAnswerProvider, In as LastUpdatedConfig, It as DocsMcpAuthenticateContext, J as DocsAgentGoldenExpectedExample, Jn as OpenGraphImage, Jt as DocsObservabilityEventInput, K as DocsAgentGoldenAnswerExpectation, Kn as OpenDocsProviderId, Kt as DocsObservabilityConfig, L as DocsAgentEvaluationAnswerRequest, Ln as LlmsTxtConfig, Lt as DocsMcpAuthenticateResult, M as DocsAgentA2ASkill, Mn as DocsTheme, Mt as DocsI18nConfig, N as DocsAgentCompactConfig, Nn as FeedbackConfig, Nt as DocsMcpAllowedOrigins, O as DocsAgentA2AProtocolBinding, On as DocsTelemetryEventInput, Ot as DocsCodeBlocksValidationPolicy, P as DocsAgentConfig, Pn as FontStyle, Pt as DocsMcpAuthPrincipal, Q as DocsAgentSkillsConfig, Qn as PageAgentCommand, Qt as DocsReviewCiConfig, R as DocsAgentEvaluationAnswerResult, Rn as LlmsTxtMaxCharsConfig, Rt as DocsMcpConfig, S as DocsAgentA2AOAuthClientCredentialsFlow, Sn as DocsSearchWarning, St as DocsCodeBlocksPlannerConfig, T as DocsAgentA2AOAuthImplicitFlow, Tn as DocsTelemetryAgentSurface, Tt as DocsCodeBlocksRunnerProvider, U as DocsAgentEvaluationsConfig, Un as OpenDocsConfig, Ut as DocsMcpToolsConfig, V as DocsAgentEvaluationSurface, Vn as McpDocsSearchConfig, Vt as DocsMcpProtectedResourceConfig, W as DocsAgentFeedbackContext, Wn as OpenDocsProvider, Wt as DocsMetadata, X as DocsAgentGoldenTaskExpectation, Xn as PageActionsConfig, Xt as DocsRetrievalSourceProvenance, Y as DocsAgentGoldenTask, Yn as OrderingItem, Yt as DocsRelatedItem, Z as DocsAgentGoldenTaskFilters, Zn as PageAgentAppliesTo, Zt as DocsRetrievalSourceScope, _ as DocsAgentA2AHttpAuthSecurityScheme, _n as DocsSearchRequest, _r as ThemeToggleConfig, _t as DocsCloudConfig, a as ApiReferenceRenderer, an as DocsRobotsRule, ar as PageTwitter, at as DocsAnalyticsEventInput, b as DocsAgentA2AOAuth2SecurityScheme, bn as DocsSearchResultType, br as UIConfig, bt as DocsCloudPublishConfig, c as ChangelogFrontmatter, cn as DocsSearchAdapterFactory, cr as ResolvedDocsRelatedLink, ct as DocsAnalyticsSource, d as CopyMarkdownFormat, dn as DocsSearchDocument, dr as SidebarFolderIndexBehavior, dt as DocsAskAIFeedbackConfig, en as DocsReviewConfig, er as PageAgentFrontmatter, et as DocsAgentTraceEventInput, f as CustomDocsSearchConfig, fn as DocsSearchEmbeddingsConfig, fr as SidebarFolderNode, ft as DocsAskAIFeedbackData, g as DocsAgentA2AExtension, gn as DocsSearchQuery, gr as SimpleDocsSearchConfig, gt as DocsCloudApiKeyConfig, h as DocsAgentA2AConfig, hn as DocsSearchFilters, hr as SidebarTree, ht as DocsAskAIMcpConfig, i as ApiReferenceConfig, in as DocsRobotsConfig, ir as PageSidebarFrontmatter, it as DocsAnalyticsEvent, j as DocsAgentA2ASecurityScopeList, jn as DocsTelemetryFramework, jt as DocsFeedbackValue, k as DocsAgentA2ASecurityRequirement, kn as DocsTelemetryEventType, kt as DocsConfig, l as CodeBlockCopyData, ln as DocsSearchChunkingConfig, lr as SidebarComponentProps, lt as DocsAskAIActionData, m as DocsAgentA2ACapabilities, mn as DocsSearchFilterInput, mr as SidebarPageNode, mt as DocsAskAIFeedbackValue, n as AgentFeedbackConfig, nn as DocsReviewScoreConfig, nr as PageFrontmatter, nt as DocsAgentTraceStatus, o as BreadcrumbConfig, on as DocsSearchAdapter, or as ReadingTimeConfig, ot as DocsAnalyticsEventType, p as DocsAgentA2AApiKeySecurityScheme, pn as DocsSearchFilterField, pr as SidebarNode, pt as DocsAskAIFeedbackMessage, q as DocsAgentGoldenExampleVerification, qn as OpenDocsTarget, qt as DocsObservabilityEvent, r as AlgoliaDocsSearchConfig, rn as DocsReviewSeverity, rr as PageOpenGraph, rt as DocsAnalyticsConfig, s as ChangelogConfig, sn as DocsSearchAdapterContext, sr as ReadingTimeFormat, st as DocsAnalyticsInput, t as AIConfig, tn as DocsReviewRulesConfig, tr as PageAgentVerification, tt as DocsAgentTraceEventType, u as CopyMarkdownConfig, un as DocsSearchConfig, ur as SidebarConfig, ut as DocsAskAIActionType, v as DocsAgentA2AInterfaceConfig, vn as DocsSearchResponse, vr as TypesenseDocsSearchConfig, vt as DocsCloudFeatureConfig, w as DocsAgentA2AOAuthFlows, wn as DocsSitemapConfig, wt as DocsCodeBlocksRunnerConfig, x as DocsAgentA2AOAuthAuthorizationCodeFlow, xn as DocsSearchSourcePage, xt as DocsCodeBlocksConfig, y as DocsAgentA2AMutualTlsSecurityScheme, yn as DocsSearchResult, yr as TypographyConfig, yt as DocsCloudPreviewConfig, z as DocsAgentEvaluationAnswerRunner, zn as LlmsTxtMaxCharsMode, zt as DocsMcpCorsConfig } from "./types-BDRwrExu.mjs";
1
+ import { $ as DocsAgentSkillsConfig, $n as LlmsTxtMaxCharsMode, $t as DocsMetadata, A as DocsAgentA2ASecurityScheme, An as DocsSearchQuery, Ar as SimpleDocsSearchConfig, At as DocsConfig, B as DocsAgentEvaluationAnswerRunner, Bn as DocsTelemetryConfig, Bt as DocsFeedbackValue, C as DocsAgentA2AOAuthDeviceCodeFlow, Cn as DocsSearchEmbeddingsConfig, Cr as SidebarComponentProps, Ct as DocsCodeBlocksPlannerConfig, D as DocsAgentA2AOpenIdConnectSecurityScheme, Dn as DocsSearchFilterField, Dr as SidebarNode, Dt as DocsCodeBlocksValidateConfig, E as DocsAgentA2AOAuthPasswordFlow, En as DocsSearchFacetsResponse, Er as SidebarFolderNode, Et as DocsCodeBlocksRunnerProvider, F as DocsAgentContentChangesConfig, Fn as DocsSearchSourcePage, Ft as DocsContentChangedDocument, G as DocsAgentFeedbackContext, Gn as DocsTelemetryFramework, Gt as DocsMcpAuthenticateContext, H as DocsAgentEvaluationSurface, Hn as DocsTelemetryEventInput, Ht as DocsMcpAllowedOrigins, I as DocsAgentEvaluationAnswerInput, In as DocsSearchWarning, It as DocsContentChangesResponse, J as DocsAgentGoldenExampleVerification, Jn as FontStyle, Jt as DocsMcpCorsConfig, K as DocsAgentFeedbackData, Kn as DocsTheme, Kt as DocsMcpAuthenticateResult, L as DocsAgentEvaluationAnswerProvider, Ln as DocsSearchWarningCode, Lt as DocsContentSnapshot, M as DocsAgentA2ASkill, Mn as DocsSearchResponse, Mr as TypesenseDocsSearchConfig, Mt as DocsContentChangeSnapshotContext, N as DocsAgentCompactConfig, Nn as DocsSearchResult, Nr as TypographyConfig, Nt as DocsContentChangeSnapshotLoader, O as DocsAgentA2AProtocolBinding, On as DocsSearchFilterInput, Or as SidebarPageNode, Ot as DocsCodeBlocksValidationMode, P as DocsAgentConfig, Pn as DocsSearchResultType, Pr as UIConfig, Pt as DocsContentChangeSnapshotSaver, Q as DocsAgentGoldenTaskFilters, Qn as LlmsTxtMaxCharsConfig, Qt as DocsMcpToolsConfig, R as DocsAgentEvaluationAnswerRequest, Rn as DocsSitemapConfig, Rt as DocsContentSnapshotDocument, S as DocsAgentA2AOAuthClientCredentialsFlow, Sn as DocsSearchDocument, Sr as ResolvedDocsRelatedLink, St as DocsCodeBlocksConfig, T as DocsAgentA2AOAuthImplicitFlow, Tn as DocsSearchFacetValue, Tr as SidebarFolderIndexBehavior, Tt as DocsCodeBlocksRunnerConfig, U as DocsAgentEvaluationTaskInput, Un as DocsTelemetryEventType, Ut as DocsMcpAuthPrincipal, V as DocsAgentEvaluationSourceReference, Vn as DocsTelemetryEvent, Vt as DocsI18nConfig, W as DocsAgentEvaluationsConfig, Wn as DocsTelemetryFeatures, Wt as DocsMcpAuthenticate, X as DocsAgentGoldenTask, Xn as LastUpdatedConfig, Xt as DocsMcpProtectedResourceConfig, Y as DocsAgentGoldenExpectedExample, Yn as GithubConfig, Yt as DocsMcpOriginContext, Z as DocsAgentGoldenTaskExpectation, Zn as LlmsTxtConfig, Zt as DocsMcpSecurityConfig, _ as DocsAgentA2AHttpAuthSecurityScheme, _n as DocsSearchAdapterContext, _r as PageOpenGraph, _t as DocsCloudApiKeyConfig, a as ApiReferenceRenderer, an as DocsRelatedItem, ar as OpenDocsProviderConfig, at as DocsAnalyticsEvent, b as DocsAgentA2AOAuth2SecurityScheme, bn as DocsSearchChunkingConfig, br as ReadingTimeConfig, bt as DocsCloudPreviewConfig, c as ChangelogFrontmatter, cn as DocsReviewCiConfig, cr as OpenGraphImage, ct as DocsAnalyticsInput, d as CopyMarkdownFormat, dn as DocsReviewRulesConfig, dr as PageAgentAppliesTo, dt as DocsAskAIActionType, en as DocsNav, er as LlmsTxtSectionConfig, et as DocsAgentSkillsInput, f as CustomDocsSearchConfig, fn as DocsReviewScoreConfig, fr as PageAgentCommand, ft as DocsAskAIFeedbackConfig, g as DocsAgentA2AExtension, gn as DocsSearchAdapter, gr as PageFrontmatter, gt as DocsAskAIMcpConfig, h as DocsAgentA2AConfig, hn as DocsRobotsRule, hr as PageAgentVerification, ht as DocsAskAIFeedbackValue, i as ApiReferenceConfig, in as DocsPaginatedSearchResponse, ir as OpenDocsProvider, it as DocsAnalyticsConfig, j as DocsAgentA2ASecurityScopeList, jn as DocsSearchRequest, jr as ThemeToggleConfig, jt as DocsContentChangeDocument, k as DocsAgentA2ASecurityRequirement, kn as DocsSearchFilters, kr as SidebarTree, kt as DocsCodeBlocksValidationPolicy, l as CodeBlockCopyData, ln as DocsReviewCiMode, lr as OrderingItem, lt as DocsAnalyticsSource, m as DocsAgentA2ACapabilities, mn as DocsRobotsConfig, mr as PageAgentFrontmatter, mt as DocsAskAIFeedbackMessage, n as AgentFeedbackConfig, nn as DocsObservabilityEvent, nr as OGConfig, nt as DocsAgentTraceEventType, o as BreadcrumbConfig, on as DocsRetrievalSourceProvenance, or as OpenDocsProviderId, ot as DocsAnalyticsEventInput, p as DocsAgentA2AApiKeySecurityScheme, pn as DocsReviewSeverity, pr as PageAgentFailureMode, pt as DocsAskAIFeedbackData, q as DocsAgentGoldenAnswerExpectation, qn as FeedbackConfig, qt as DocsMcpConfig, r as AlgoliaDocsSearchConfig, rn as DocsObservabilityEventInput, rr as OpenDocsConfig, rt as DocsAgentTraceStatus, s as ChangelogConfig, sn as DocsRetrievalSourceScope, sr as OpenDocsTarget, st as DocsAnalyticsEventType, t as AIConfig, tn as DocsObservabilityConfig, tr as McpDocsSearchConfig, tt as DocsAgentTraceEventInput, u as CopyMarkdownConfig, un as DocsReviewConfig, ur as PageActionsConfig, ut as DocsAskAIActionData, v as DocsAgentA2AInterfaceConfig, vn as DocsSearchAdapterFactory, vr as PageSidebarFrontmatter, vt as DocsCloudConfig, w as DocsAgentA2AOAuthFlows, wn as DocsSearchFacet, wr as SidebarConfig, wt as DocsCodeBlocksPlannerProvider, x as DocsAgentA2AOAuthAuthorizationCodeFlow, xn as DocsSearchConfig, xr as ReadingTimeFormat, xt as DocsCloudPublishConfig, y as DocsAgentA2AMutualTlsSecurityScheme, yn as DocsSearchAdapterPage, yr as PageTwitter, yt as DocsCloudFeatureConfig, z as DocsAgentEvaluationAnswerResult, zn as DocsTelemetryAgentSurface, zt as DocsFeedbackData } from "./types-CpLnwHak.mjs";
2
2
  import { AGENT_SKILL_COMPATIBILITY_MAX_LENGTH, AGENT_SKILL_DESCRIPTION_MAX_LENGTH, AGENT_SKILL_FRONTMATTER_FIELDS, AGENT_SKILL_NAME_MAX_LENGTH, DocsAgentSkillFrontmatter, DocsAgentSkillFrontmatterError, DocsAgentSkillFrontmatterField, DocsAgentSkillFrontmatterIssue, DocsAgentSkillFrontmatterValidation, DocsAgentSkillFrontmatterValidationOptions, isDocsAgentSkillName, parseDocsAgentSkillFrontmatter, validateDocsAgentSkillFrontmatter } from "./agent-skills-spec.mjs";
3
- import { $ as resolveDocsStandardsDiscoveryRequest, A as DocsAgentSkillIndexEntry, B as DocsStandardsDiscoveryRequest, C as DOCS_AGENT_MANIFEST_FORMAT, D as DocsA2AAgentCard, E as DOCS_AGENT_MANIFEST_VERSION, F as DocsApiCatalogOptions, G as buildDocsApiCatalog, H as appendDocsDiscoveryLinkHeader, I as DocsDiscoveryApiRouteOptions, J as getDocsAgentManifestLinkHeader, K as buildDocsLegacySkillsIndex, L as DocsPublishedAgentSkill, M as DocsApiCatalog, N as DocsApiCatalogLinkContext, O as DocsA2AAgentCardOptions, P as DocsApiCatalogLinkTarget, Q as resolveDocsPublishedAgentSkill, R as DocsPublishedAgentSkillFile, S as DEFAULT_LEGACY_SKILLS_ROUTE_PREFIX, T as DOCS_AGENT_MANIFEST_SCHEMA_URI, U as buildDocsA2AAgentCard, V as DocsStandardsDiscoveryRouteOptions, W as buildDocsAgentSkillsIndex, X as isDocsStandardsDiscoveryRequest, Y as getDocsDiscoveryLinkHeader, Z as resolveDocsDiscoveryApiRoute, _ as DEFAULT_AGENT_SKILL_RESOURCE_FORMAT, a as DEFAULT_A2A_AGENT_CARD_FORMAT, b as DEFAULT_LEGACY_SKILLS_INDEX_FORMAT, c as DEFAULT_A2A_PROTOCOL_VERSION, d as DEFAULT_AGENT_SKILLS_INDEX_ROUTE, et as sha256DocsDiscoveryContent, f as DEFAULT_AGENT_SKILLS_ROUTE_PATTERN, g as DEFAULT_AGENT_SKILL_FORMAT, h as DEFAULT_AGENT_SKILL_FILE_FORMAT, i as CreateDocsStandardsResponseOptions, j as DocsAgentSkillsIndex, k as DocsA2AAgentInterface, l as DEFAULT_AGENT_SKILLS_ARCHIVE_ROUTE_PATTERN, m as DEFAULT_AGENT_SKILL_ARCHIVE_FORMAT, n as API_CATALOG_MEDIA_TYPE, o as DEFAULT_A2A_AGENT_CARD_ROUTE, p as DEFAULT_AGENT_SKILLS_ROUTE_PREFIX, q as createDocsStandardsResponse, r as API_CATALOG_PROFILE_URI, s as DEFAULT_A2A_PROTOCOL_BINDING, t as AGENT_SKILLS_DISCOVERY_SCHEMA_URI, u as DEFAULT_AGENT_SKILLS_INDEX_FORMAT, v as DEFAULT_API_CATALOG_FORMAT, w as DOCS_AGENT_MANIFEST_SCHEMA_MEDIA_TYPE, x as DEFAULT_LEGACY_SKILLS_INDEX_ROUTE, y as DEFAULT_API_CATALOG_ROUTE, z as DocsPublishedAgentSkillOptions } from "./standards-discovery-DBI1PD7m.mjs";
4
- import { A as DocsSitemapFormat, B as resolveDocsSitemapConfig, C as resolveDocsSearchRequest, D as DEFAULT_SITEMAP_MD_ROUTE, E as DEFAULT_SITEMAP_MD_DOCS_ROUTE, F as buildDocsSitemapManifest, H as resolveDocsSitemapRequest, I as createDocsSitemapResponse, J as PromptAction, L as readDocsSitemapManifestFromContentMap, M as DocsSitemapManifestPage, N as DocsSitemapPageInput, O as DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, P as DocsSitemapResolvedConfig, R as renderDocsSitemapMarkdown, S as resolveDocsSearchFilters, T as DEFAULT_SITEMAP_MANIFEST_PATH, U as toDocsSitemapMarkdownUrl, V as resolveDocsSitemapPageLastmod, X as SerializeOpenDocsProviderOptions, Y as PromptProviderChoice, Z as SerializedOpenDocsProvider, _ as performDocsSearch, _t as resolveDocsObservabilityConfig, a as buildDocsAskAIContext, b as resolveDocsRetrievalLastModified, c as createAlgoliaSearchAdapter, ct as ResolvedDocsAnalyticsConfig, d as createSimpleSearchAdapter, dt as createDocsAgentTraceId, f as createTypesenseSearchAdapter, ft as emitDocsAgentTraceEvent, g as normalizeDocsSearchFilters, gt as resolveDocsAnalyticsConfig, h as inferDocsAskAIPackageHints, ht as getDocsRequestAnalyticsProperties, i as PerformDocsSearchOptions, j as DocsSitemapManifest, k as DEFAULT_SITEMAP_XML_ROUTE, l as createCustomSearchAdapter, lt as ResolvedDocsObservabilityConfig, m as formatDocsAskAIPackageHints, mt as emitDocsObservabilityEvent, n as isDocsRetrievalCanonicalUrl, o as buildDocsRetrievalDigestProjection, ot as DOCS_AGENT_TRACE_EVENT_TYPES, p as enrichDocsSearchDocumentsWithProvenance, pt as emitDocsAnalyticsEvent, r as EnrichDocsSearchDocumentsWithProvenanceOptions, s as buildDocsSearchDocuments, st as DocsAgentTraceContext, t as digestDocsRetrievalContent, u as createMcpSearchAdapter, ut as createDocsAgentTraceContext, v as performDocsSearchWithMetadata, w as resolveSearchRequestConfig, x as resolveDocsSearchAudience, y as resolveAskAISearchRequestConfig, z as renderDocsSitemapXml } from "./retrieval-digest-CFOcSKTo.mjs";
5
- import { $ as DocsMarkdownPage, $t as resolveDocsLlmsTxtRequest, A as DocsAgentFeedbackDiscoveryConfig, An as DocsPathMatch, At as hasDocsMarkdownSignatureAgent, B as DocsDiagnosticsIssueSeverity, Bt as normalizeDocsPathSegment, C as DOCS_AI_AGENT_USER_AGENT_HEADER_PATTERN, Cn as DEFAULT_MCP_ROUTE, Ct as createDocsMarkdownResponse, D as DOCS_TRADITIONAL_BOT_USER_AGENT_HEADER_PATTERN, Dn as getDocsMcpResourcePaths, Dt as getDocsLlmsTxtMaxCharsIssue, E as DOCS_MARKDOWN_SIGNATURE_AGENT_HEADER, En as getDocsMcpProtectedResourceMetadataRoutes, Et as findDocsMarkdownPage, F as DocsConfigMapJsonValue, Ft as isDocsLlmsTxtPublicRequest, G as DocsLlmsTxtGeneratedSection, Gt as renderDocsMarkdownDocument, H as DocsDiagnosticsStatus, Ht as parseDocsAgentFeedbackData, I as DocsConfigMapPointer, It as isDocsMarkdownSectionIndexRequest, J as DocsLlmsTxtRequest, Jt as resolveDocsAgentContractMcpTools, K as DocsLlmsTxtMaxCharsIssue, Kt as renderDocsMarkdownNotFound, L as DocsDiagnostics, Lt as isDocsPublicGetRequest, M as DocsAgentFeedbackResolvedConfig, Mn as resolveDocsI18n, Mt as isDocsAgentsRequest, N as DocsAgentsDocumentOptions, Nn as resolveDocsLocale, Nt as isDocsConfigRequest, O as DocsAgentContractMcpTools, On as hasDocsMcpProtectedResourceConfig, Ot as getDocsMarkdownCanonicalLinkHeader, P as DocsConfigMap, Pn as resolveDocsPath, Pt as isDocsDiagnosticsRequest, Q as DocsMarkdownAgentDetection, Qt as resolveDocsLlmsTxtFormat, R as DocsDiagnosticsFeature, Rt as isDocsSkillRequest, S as DEFAULT_SKILL_MD_WELL_KNOWN_ROUTE, Sn as DEFAULT_MCP_PUBLIC_ROUTE, St as collectDocsMarkdownSections, T as DOCS_MARKDOWN_SECTION_INDEX_FORMAT, Tn as buildDocsMcpProtectedResourceMetadataRoute, Tt as detectDocsMarkdownAgentRequest, U as DocsLlmsDiscoveryConfig, Ut as renderDocsAgentsDocument, V as DocsDiagnosticsOptions, Vt as normalizeDocsUrlPath, W as DocsLlmsTxtGeneratedContent, Wt as renderDocsLlmsTxt, X as DocsLlmsTxtResolvedSection, Xt as resolveDocsAgentFeedbackRequest, Y as DocsLlmsTxtResolvedMaxChars, Yt as resolveDocsAgentFeedbackConfig, Z as DocsLlmsTxtSelectedContent, Zt as resolveDocsAgentsFormat, _ as DEFAULT_LLMS_TXT_MAX_CHARS, _n as findDocsAudienceMdxIssues, _t as buildDocsAgentFeedbackSchema, a as DEFAULT_AGENT_MD_ROUTE, an as resolveDocsOpenApiDiscoveryConfig, at as DocsMarkdownSectionIndexOptions, b as DEFAULT_OPENAPI_SCHEMA_ROUTE, bn as resolveDocsAudienceMdxContent, bt as buildDocsMarkdownSectionIndex, c as DEFAULT_AGENT_SPEC_WELL_KNOWN_JSON_ROUTE, cn as selectDocsLlmsTxtContent, ct as DocsMarkdownSectionResult, d as DEFAULT_DOCS_CONFIG_FORMAT, dn as validateDocsAgentFeedbackPayload, dt as DocsOpenApiDiscoveryConfig, en as resolveDocsLlmsTxtSections, et as DocsMarkdownRecoveryMatch, f as DEFAULT_DOCS_CONFIG_ROUTE, fn as DocsAudienceMdxIssue, ft as DocsOpenApiResolvedDiscoveryConfig, g as DEFAULT_LLMS_FULL_TXT_WELL_KNOWN_ROUTE, gt as buildDocsAgentDiscoverySpec, h as DEFAULT_LLMS_FULL_TXT_ROUTE, ht as acceptsDocsMarkdown, i as DEFAULT_AGENT_FEEDBACK_ROUTE, in as resolveDocsMarkdownSectionRequest, it as DocsMarkdownSectionIndex, j as DocsAgentFeedbackRequest, jn as ResolvedDocsI18n, jt as isDocsAgentDiscoveryRequest, k as DocsAgentDiscoverySpecOptions, kn as isDocsMcpRequest, kt as getDocsMarkdownVaryHeader, l as DEFAULT_AGENT_SPEC_WELL_KNOWN_ROUTE, ln as selectDocsMarkdownSection, lt as DocsMcpEndpointCandidate, m as DEFAULT_DOCS_DIAGNOSTICS_ROUTE, mt as DocsStandardsDiscoveryResponseOptions, n as DEFAULT_AGENTS_MD_WELL_KNOWN_ROUTE, nn as resolveDocsMarkdownRecovery, nt as DocsMarkdownResponseOptions, o as DEFAULT_AGENT_MD_WELL_KNOWN_ROUTE, on as resolveDocsRequestApiRoute, ot as DocsMarkdownSectionMetadata, p as DEFAULT_DOCS_DIAGNOSTICS_FORMAT, pn as DocsContentAudience, pt as DocsSkillDocumentOptions, q as DocsLlmsTxtPageInput, qt as renderDocsSkillDocument, r as DEFAULT_AGENT_FEEDBACK_PAYLOAD_SCHEMA, rn as resolveDocsMarkdownRequest, rt as DocsMarkdownSection, s as DEFAULT_AGENT_SPEC_ROUTE, sn as resolveDocsSkillFormat, st as DocsMarkdownSectionRequest, t as DEFAULT_AGENTS_MD_ROUTE, tn as resolveDocsMarkdownCanonicalUrl, tt as DocsMarkdownRecoveryResult, u as DEFAULT_DOCS_API_ROUTE, un as toDocsMarkdownUrl, ut as DocsMcpEndpointCandidateOptions, v as DEFAULT_LLMS_TXT_ROUTE, vn as resolveDocsAgentMdxContent, vt as buildDocsConfigMap, w as DOCS_BOT_LIKE_USER_AGENT_HEADER_PATTERN, wn as DEFAULT_MCP_WELL_KNOWN_ROUTE, wt as createDocsStandardsDiscoveryResponse, x as DEFAULT_SKILL_MD_ROUTE, xn as DEFAULT_MCP_PROTECTED_RESOURCE_METADATA_ROUTE, xt as buildDocsMcpEndpointCandidates, y as DEFAULT_LLMS_TXT_WELL_KNOWN_ROUTE, yn as resolveDocsAudienceExposure, yt as buildDocsDiagnostics, z as DocsDiagnosticsIssue, zt as matchesDocsLlmsTxtSection } from "./agent-cAPjC2jb.mjs";
3
+ import { $ as resolveDocsDiscoveryApiRoute, A as DocsAgentSkillIndexEntry, B as DocsPublishedAgentSkillFile, C as DOCS_AGENT_MANIFEST_FORMAT, D as DocsA2AAgentCard, E as DOCS_AGENT_MANIFEST_VERSION, F as DocsApiCatalogLinkTarget, G as buildDocsA2AAgentCard, H as DocsStandardsDiscoveryRequest, I as DocsApiCatalogOpenApiDefinition, J as buildDocsLegacySkillsIndex, K as buildDocsAgentSkillsIndex, L as DocsApiCatalogOptions, M as DocsApiCatalog, N as DocsApiCatalogApiTarget, O as DocsA2AAgentCardOptions, P as DocsApiCatalogLinkContext, Q as isDocsStandardsDiscoveryRequest, R as DocsDiscoveryApiRouteOptions, S as DEFAULT_LEGACY_SKILLS_ROUTE_PREFIX, T as DOCS_AGENT_MANIFEST_SCHEMA_URI, U as DocsStandardsDiscoveryRouteOptions, V as DocsPublishedAgentSkillOptions, W as appendDocsDiscoveryLinkHeader, X as getDocsAgentManifestLinkHeader, Y as createDocsStandardsResponse, Z as getDocsDiscoveryLinkHeader, _ as DEFAULT_AGENT_SKILL_RESOURCE_FORMAT, a as DEFAULT_A2A_AGENT_CARD_FORMAT, b as DEFAULT_LEGACY_SKILLS_INDEX_FORMAT, c as DEFAULT_A2A_PROTOCOL_VERSION, d as DEFAULT_AGENT_SKILLS_INDEX_ROUTE, et as resolveDocsPublishedAgentSkill, f as DEFAULT_AGENT_SKILLS_ROUTE_PATTERN, g as DEFAULT_AGENT_SKILL_FORMAT, h as DEFAULT_AGENT_SKILL_FILE_FORMAT, i as CreateDocsStandardsResponseOptions, j as DocsAgentSkillsIndex, k as DocsA2AAgentInterface, l as DEFAULT_AGENT_SKILLS_ARCHIVE_ROUTE_PATTERN, m as DEFAULT_AGENT_SKILL_ARCHIVE_FORMAT, n as API_CATALOG_MEDIA_TYPE, nt as sha256DocsDiscoveryContent, o as DEFAULT_A2A_AGENT_CARD_ROUTE, p as DEFAULT_AGENT_SKILLS_ROUTE_PREFIX, q as buildDocsApiCatalog, r as API_CATALOG_PROFILE_URI, s as DEFAULT_A2A_PROTOCOL_BINDING, t as AGENT_SKILLS_DISCOVERY_SCHEMA_URI, tt as resolveDocsStandardsDiscoveryRequest, u as DEFAULT_AGENT_SKILLS_INDEX_FORMAT, v as DEFAULT_API_CATALOG_FORMAT, w as DOCS_AGENT_MANIFEST_SCHEMA_MEDIA_TYPE, x as DEFAULT_LEGACY_SKILLS_INDEX_ROUTE, y as DEFAULT_API_CATALOG_ROUTE, z as DocsPublishedAgentSkill } from "./standards-discovery-BWyNgZSs.mjs";
4
+ import { $ as DocsSitemapPageInput, A as createSimpleSearchAdapter, At as createDocsAgentTraceContext, B as resolveDocsSearchAudience, C as buildDocsContentSnapshot, D as createAlgoliaSearchAdapter, Dt as DocsAgentTraceContext, E as buildDocsSearchFacets, Et as DOCS_AGENT_TRACE_EVENT_TYPES, F as normalizeDocsSearchFilters, Ft as getDocsRequestAnalyticsProperties, G as DEFAULT_SITEMAP_MANIFEST_PATH, H as resolveDocsSearchFilters, I as performDocsSearch, It as resolveDocsAnalyticsConfig, J as DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, K as DEFAULT_SITEMAP_MD_DOCS_ROUTE, L as performDocsSearchWithMetadata, Lt as resolveDocsObservabilityConfig, M as enrichDocsSearchDocumentsWithProvenance, Mt as emitDocsAgentTraceEvent, N as formatDocsAskAIPackageHints, Nt as emitDocsAnalyticsEvent, O as createCustomSearchAdapter, Ot as ResolvedDocsAnalyticsConfig, P as inferDocsAskAIPackageHints, Pt as emitDocsObservabilityEvent, Q as DocsSitemapManifestPage, R as resolveAskAISearchRequestConfig, S as buildDocsAskAIContext, T as buildDocsSearchDocuments, U as resolveDocsSearchRequest, V as resolveDocsSearchError, W as resolveSearchRequestConfig, X as DocsSitemapFormat, Y as DEFAULT_SITEMAP_XML_ROUTE, Z as DocsSitemapManifest, _ as BuildDocsContentSnapshotOptions, _t as SerializedOpenDocsProvider, a as DOCS_CONTENT_SNAPSHOT_FORMAT, at as renderDocsSitemapXml, b as EnrichDocsSearchDocumentsWithProvenanceOptions, c as DocsContentChangesRequestError, ct as resolveDocsSitemapRequest, d as createDocsContentChangeFeed, et as DocsSitemapResolvedConfig, f as createDocsContentChangesHttpResponse, g as DocsPaginationCursorError, gt as SerializeOpenDocsProviderOptions, h as resolveDocsContentChangesRequest, ht as PromptProviderChoice, i as DOCS_CONTENT_CHANGES_RESPONSE_VALUE, it as renderDocsSitemapMarkdown, j as createTypesenseSearchAdapter, jt as createDocsAgentTraceId, k as createMcpSearchAdapter, kt as ResolvedDocsObservabilityConfig, l as DocsResolvedContentChangesConfig, lt as toDocsSitemapMarkdownUrl, m as resolveDocsContentChangesConfig, mt as PromptAction, n as isDocsRetrievalCanonicalUrl, nt as createDocsSitemapResponse, o as DocsContentChangeFeed, ot as resolveDocsSitemapConfig, p as isDocsContentChangesRequest, q as DEFAULT_SITEMAP_MD_ROUTE, r as DOCS_CONTENT_CHANGES_FORMAT, rt as readDocsSitemapManifestFromContentMap, s as DocsContentChangesRequest, st as resolveDocsSitemapPageLastmod, t as digestDocsRetrievalContent, tt as buildDocsSitemapManifest, u as ResolveDocsContentChangesOptions, v as BuildDocsSearchFacetsOptions, w as buildDocsRetrievalDigestProjection, x as PerformDocsSearchOptions, y as DocsSearchRequestError, z as resolveDocsRetrievalLastModified } from "./retrieval-digest-CO3wqeMk.mjs";
5
+ import { $ as DocsMarkdownPage, $t as resolveDocsLlmsTxtRequest, A as DocsAgentFeedbackDiscoveryConfig, An as DocsPathMatch, At as hasDocsMarkdownSignatureAgent, B as DocsDiagnosticsIssueSeverity, Bt as normalizeDocsPathSegment, C as DOCS_AI_AGENT_USER_AGENT_HEADER_PATTERN, Cn as DEFAULT_MCP_ROUTE, Ct as createDocsMarkdownResponse, D as DOCS_TRADITIONAL_BOT_USER_AGENT_HEADER_PATTERN, Dn as getDocsMcpResourcePaths, Dt as getDocsLlmsTxtMaxCharsIssue, E as DOCS_MARKDOWN_SIGNATURE_AGENT_HEADER, En as getDocsMcpProtectedResourceMetadataRoutes, Et as findDocsMarkdownPage, F as DocsConfigMapJsonValue, Ft as isDocsLlmsTxtPublicRequest, G as DocsLlmsTxtGeneratedSection, Gt as renderDocsMarkdownDocument, H as DocsDiagnosticsStatus, Ht as parseDocsAgentFeedbackData, I as DocsConfigMapPointer, It as isDocsMarkdownSectionIndexRequest, J as DocsLlmsTxtRequest, Jt as resolveDocsAgentContractMcpTools, K as DocsLlmsTxtMaxCharsIssue, Kt as renderDocsMarkdownNotFound, L as DocsDiagnostics, Lt as isDocsPublicGetRequest, M as DocsAgentFeedbackResolvedConfig, Mn as resolveDocsI18n, Mt as isDocsAgentsRequest, N as DocsAgentsDocumentOptions, Nn as resolveDocsLocale, Nt as isDocsConfigRequest, O as DocsAgentContractMcpTools, On as hasDocsMcpProtectedResourceConfig, Ot as getDocsMarkdownCanonicalLinkHeader, P as DocsConfigMap, Pn as resolveDocsPath, Pt as isDocsDiagnosticsRequest, Q as DocsMarkdownAgentDetection, Qt as resolveDocsLlmsTxtFormat, R as DocsDiagnosticsFeature, Rt as isDocsSkillRequest, S as DEFAULT_SKILL_MD_WELL_KNOWN_ROUTE, Sn as DEFAULT_MCP_PUBLIC_ROUTE, St as collectDocsMarkdownSections, T as DOCS_MARKDOWN_SECTION_INDEX_FORMAT, Tn as buildDocsMcpProtectedResourceMetadataRoute, Tt as detectDocsMarkdownAgentRequest, U as DocsLlmsDiscoveryConfig, Ut as renderDocsAgentsDocument, V as DocsDiagnosticsOptions, Vt as normalizeDocsUrlPath, W as DocsLlmsTxtGeneratedContent, Wt as renderDocsLlmsTxt, X as DocsLlmsTxtResolvedSection, Xt as resolveDocsAgentFeedbackRequest, Y as DocsLlmsTxtResolvedMaxChars, Yt as resolveDocsAgentFeedbackConfig, Z as DocsLlmsTxtSelectedContent, Zt as resolveDocsAgentsFormat, _ as DEFAULT_LLMS_TXT_MAX_CHARS, _n as findDocsAudienceMdxIssues, _t as buildDocsAgentFeedbackSchema, a as DEFAULT_AGENT_MD_ROUTE, an as resolveDocsOpenApiDiscoveryConfig, at as DocsMarkdownSectionIndexOptions, b as DEFAULT_OPENAPI_SCHEMA_ROUTE, bn as resolveDocsAudienceMdxContent, bt as buildDocsMarkdownSectionIndex, c as DEFAULT_AGENT_SPEC_WELL_KNOWN_JSON_ROUTE, cn as selectDocsLlmsTxtContent, ct as DocsMarkdownSectionResult, d as DEFAULT_DOCS_CONFIG_FORMAT, dn as validateDocsAgentFeedbackPayload, dt as DocsOpenApiDiscoveryConfig, en as resolveDocsLlmsTxtSections, et as DocsMarkdownRecoveryMatch, f as DEFAULT_DOCS_CONFIG_ROUTE, fn as DocsAudienceMdxIssue, ft as DocsOpenApiResolvedDiscoveryConfig, g as DEFAULT_LLMS_FULL_TXT_WELL_KNOWN_ROUTE, gt as buildDocsAgentDiscoverySpec, h as DEFAULT_LLMS_FULL_TXT_ROUTE, ht as acceptsDocsMarkdown, i as DEFAULT_AGENT_FEEDBACK_ROUTE, in as resolveDocsMarkdownSectionRequest, it as DocsMarkdownSectionIndex, j as DocsAgentFeedbackRequest, jn as ResolvedDocsI18n, jt as isDocsAgentDiscoveryRequest, k as DocsAgentDiscoverySpecOptions, kn as isDocsMcpRequest, kt as getDocsMarkdownVaryHeader, l as DEFAULT_AGENT_SPEC_WELL_KNOWN_ROUTE, ln as selectDocsMarkdownSection, lt as DocsMcpEndpointCandidate, m as DEFAULT_DOCS_DIAGNOSTICS_ROUTE, mt as DocsStandardsDiscoveryResponseOptions, n as DEFAULT_AGENTS_MD_WELL_KNOWN_ROUTE, nn as resolveDocsMarkdownRecovery, nt as DocsMarkdownResponseOptions, o as DEFAULT_AGENT_MD_WELL_KNOWN_ROUTE, on as resolveDocsRequestApiRoute, ot as DocsMarkdownSectionMetadata, p as DEFAULT_DOCS_DIAGNOSTICS_FORMAT, pn as DocsContentAudience, pt as DocsSkillDocumentOptions, q as DocsLlmsTxtPageInput, qt as renderDocsSkillDocument, r as DEFAULT_AGENT_FEEDBACK_PAYLOAD_SCHEMA, rn as resolveDocsMarkdownRequest, rt as DocsMarkdownSection, s as DEFAULT_AGENT_SPEC_ROUTE, sn as resolveDocsSkillFormat, st as DocsMarkdownSectionRequest, t as DEFAULT_AGENTS_MD_ROUTE, tn as resolveDocsMarkdownCanonicalUrl, tt as DocsMarkdownRecoveryResult, u as DEFAULT_DOCS_API_ROUTE, un as toDocsMarkdownUrl, ut as DocsMcpEndpointCandidateOptions, v as DEFAULT_LLMS_TXT_ROUTE, vn as resolveDocsAgentMdxContent, vt as buildDocsConfigMap, w as DOCS_BOT_LIKE_USER_AGENT_HEADER_PATTERN, wn as DEFAULT_MCP_WELL_KNOWN_ROUTE, wt as createDocsStandardsDiscoveryResponse, x as DEFAULT_SKILL_MD_ROUTE, xn as DEFAULT_MCP_PROTECTED_RESOURCE_METADATA_ROUTE, xt as buildDocsMcpEndpointCandidates, y as DEFAULT_LLMS_TXT_WELL_KNOWN_ROUTE, yn as resolveDocsAudienceExposure, yt as buildDocsDiagnostics, z as DocsDiagnosticsIssue, zt as matchesDocsLlmsTxtSection } from "./agent-CHgWJcK_.mjs";
6
6
 
7
7
  //#region src/define-docs.d.ts
8
8
  /**
@@ -448,4 +448,4 @@ declare function renderDocsRobotsGeneratedBlock(options?: DocsRobotsRenderOption
448
448
  declare function upsertDocsRobotsGeneratedBlock(existing: string, block: string): string;
449
449
  declare function analyzeDocsRobotsTxt(content: string, options?: DocsRobotsAnalysisOptions): DocsRobotsAnalysis;
450
450
  //#endregion
451
- export { AGENT_SKILLS_DISCOVERY_SCHEMA_URI, AGENT_SKILL_COMPATIBILITY_MAX_LENGTH, AGENT_SKILL_DESCRIPTION_MAX_LENGTH, AGENT_SKILL_FRONTMATTER_FIELDS, AGENT_SKILL_NAME_MAX_LENGTH, type AIConfig, API_CATALOG_MEDIA_TYPE, API_CATALOG_PROFILE_URI, type AgentFeedbackConfig, type AlgoliaDocsSearchConfig, type ApiReferenceConfig, type ApiReferenceRenderer, type ApplyDocsMarkdownHeadingAnchorsOptions, type BreadcrumbConfig, type ChangelogConfig, type ChangelogEntrySummary, type ChangelogFrontmatter, type CodeBlockCopyData, type CopyMarkdownConfig, type CopyMarkdownFormat, type CreateDocsStandardsResponseOptions, type CustomDocsSearchConfig, DEFAULT_A2A_AGENT_CARD_FORMAT, DEFAULT_A2A_AGENT_CARD_ROUTE, DEFAULT_A2A_PROTOCOL_BINDING, DEFAULT_A2A_PROTOCOL_VERSION, DEFAULT_AGENTS_MD_ROUTE, DEFAULT_AGENTS_MD_WELL_KNOWN_ROUTE, DEFAULT_AGENT_FEEDBACK_PAYLOAD_SCHEMA, DEFAULT_AGENT_FEEDBACK_ROUTE, DEFAULT_AGENT_MD_ROUTE, DEFAULT_AGENT_MD_WELL_KNOWN_ROUTE, DEFAULT_AGENT_SKILLS_ARCHIVE_ROUTE_PATTERN, DEFAULT_AGENT_SKILLS_INDEX_FORMAT, DEFAULT_AGENT_SKILLS_INDEX_ROUTE, DEFAULT_AGENT_SKILLS_ROUTE_PATTERN, DEFAULT_AGENT_SKILLS_ROUTE_PREFIX, DEFAULT_AGENT_SKILL_ARCHIVE_FORMAT, DEFAULT_AGENT_SKILL_FILE_FORMAT, DEFAULT_AGENT_SKILL_FORMAT, DEFAULT_AGENT_SKILL_RESOURCE_FORMAT, DEFAULT_AGENT_SPEC_ROUTE, DEFAULT_AGENT_SPEC_WELL_KNOWN_JSON_ROUTE, DEFAULT_AGENT_SPEC_WELL_KNOWN_ROUTE, DEFAULT_API_CATALOG_FORMAT, DEFAULT_API_CATALOG_ROUTE, DEFAULT_DOCS_AI_ROBOTS_USER_AGENTS, DEFAULT_DOCS_API_ROUTE, DEFAULT_DOCS_CONFIG_FORMAT, DEFAULT_DOCS_CONFIG_ROUTE, DEFAULT_DOCS_DIAGNOSTICS_FORMAT, DEFAULT_DOCS_DIAGNOSTICS_ROUTE, DEFAULT_LEGACY_SKILLS_INDEX_FORMAT, DEFAULT_LEGACY_SKILLS_INDEX_ROUTE, DEFAULT_LEGACY_SKILLS_ROUTE_PREFIX, DEFAULT_LLMS_FULL_TXT_ROUTE, DEFAULT_LLMS_FULL_TXT_WELL_KNOWN_ROUTE, DEFAULT_LLMS_TXT_MAX_CHARS, DEFAULT_LLMS_TXT_ROUTE, DEFAULT_LLMS_TXT_WELL_KNOWN_ROUTE, DEFAULT_MCP_PROTECTED_RESOURCE_METADATA_ROUTE, DEFAULT_MCP_PUBLIC_ROUTE, DEFAULT_MCP_ROUTE, DEFAULT_MCP_WELL_KNOWN_ROUTE, DEFAULT_OPENAPI_SCHEMA_ROUTE, DEFAULT_ROBOTS_TXT_ROUTE, DEFAULT_SITEMAP_MANIFEST_PATH, DEFAULT_SITEMAP_MD_DOCS_ROUTE, DEFAULT_SITEMAP_MD_ROUTE, DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, DEFAULT_SITEMAP_XML_ROUTE, DEFAULT_SKILL_MD_ROUTE, DEFAULT_SKILL_MD_WELL_KNOWN_ROUTE, DOCS_AGENT_CONTRACT_VERSION, DOCS_AGENT_MANIFEST_FORMAT, DOCS_AGENT_MANIFEST_SCHEMA_MEDIA_TYPE, DOCS_AGENT_MANIFEST_SCHEMA_URI, DOCS_AGENT_MANIFEST_VERSION, DOCS_AGENT_TRACE_EVENT_TYPES, DOCS_AI_AGENT_USER_AGENT_HEADER_PATTERN, DOCS_BOT_LIKE_USER_AGENT_HEADER_PATTERN, DOCS_MARKDOWN_SECTION_INDEX_FORMAT, DOCS_MARKDOWN_SIGNATURE_AGENT_HEADER, DOCS_ROBOTS_GENERATED_BLOCK_END, DOCS_ROBOTS_GENERATED_BLOCK_START, DOCS_TRADITIONAL_BOT_USER_AGENT_HEADER_PATTERN, type DocsA2AAgentCard, type DocsA2AAgentCardOptions, type DocsA2AAgentInterface, type DocsAgentA2AApiKeySecurityScheme, type DocsAgentA2ACapabilities, type DocsAgentA2AConfig, type DocsAgentA2AExtension, type DocsAgentA2AHttpAuthSecurityScheme, type DocsAgentA2AInterfaceConfig, type DocsAgentA2AMutualTlsSecurityScheme, type DocsAgentA2AOAuth2SecurityScheme, type DocsAgentA2AOAuthAuthorizationCodeFlow, type DocsAgentA2AOAuthClientCredentialsFlow, type DocsAgentA2AOAuthDeviceCodeFlow, type DocsAgentA2AOAuthFlows, type DocsAgentA2AOAuthImplicitFlow, type DocsAgentA2AOAuthPasswordFlow, type DocsAgentA2AOpenIdConnectSecurityScheme, type DocsAgentA2AProtocolBinding, type DocsAgentA2ASecurityRequirement, type DocsAgentA2ASecurityScheme, type DocsAgentA2ASecurityScopeList, type DocsAgentA2ASkill, type DocsAgentAdapter, type DocsAgentCompactConfig, type DocsAgentConfig, type DocsAgentConformanceCaseResult, type DocsAgentConformanceReport, type DocsAgentContractCase, type DocsAgentContractExpectation, type DocsAgentContractMcpTools, type DocsAgentContractRequest, type DocsAgentContractSurface, type DocsAgentDiscoverySpecOptions, type DocsAgentEvaluationAnswerInput, type DocsAgentEvaluationAnswerProvider, type DocsAgentEvaluationAnswerRequest, type DocsAgentEvaluationAnswerResult, type DocsAgentEvaluationAnswerRunner, type DocsAgentEvaluationSourceReference, type DocsAgentEvaluationSurface, type DocsAgentEvaluationTaskInput, type DocsAgentEvaluationsConfig, type DocsAgentFeedbackContext, type DocsAgentFeedbackData, type DocsAgentFeedbackDiscoveryConfig, type DocsAgentFeedbackRequest, type DocsAgentFeedbackResolvedConfig, type DocsAgentGoldenAnswerExpectation, type DocsAgentGoldenExampleVerification, type DocsAgentGoldenExpectedExample, type DocsAgentGoldenTask, type DocsAgentGoldenTaskExpectation, type DocsAgentGoldenTaskFilters, type DocsAgentSkillFrontmatter, DocsAgentSkillFrontmatterError, type DocsAgentSkillFrontmatterField, type DocsAgentSkillFrontmatterIssue, type DocsAgentSkillFrontmatterValidation, type DocsAgentSkillFrontmatterValidationOptions, type DocsAgentSkillIndexEntry, type DocsAgentSkillsConfig, type DocsAgentSkillsIndex, type DocsAgentSkillsInput, type DocsAgentTraceContext, type DocsAgentTraceEventInput, type DocsAgentTraceEventType, type DocsAgentTraceStatus, type DocsAgentsDocumentOptions, type DocsAnalyticsConfig, type DocsAnalyticsEvent, type DocsAnalyticsEventInput, type DocsAnalyticsEventType, type DocsAnalyticsInput, type DocsAnalyticsSource, type DocsApiCatalog, type DocsApiCatalogLinkContext, type DocsApiCatalogLinkTarget, type DocsApiCatalogOptions, type DocsAskAIActionData, type DocsAskAIActionType, type DocsAskAIFeedbackConfig, type DocsAskAIFeedbackData, type DocsAskAIFeedbackMessage, type DocsAskAIFeedbackValue, type DocsAskAIMcpConfig, type DocsAudienceMdxIssue, type DocsCloudApiKeyConfig, type DocsCloudConfig, type DocsCloudFeatureConfig, type DocsCloudPreviewConfig, type DocsCloudPublishConfig, type DocsCodeBlocksConfig, type DocsCodeBlocksPlannerConfig, type DocsCodeBlocksPlannerProvider, type DocsCodeBlocksRunnerConfig, type DocsCodeBlocksRunnerProvider, type DocsCodeBlocksValidateConfig, type DocsCodeBlocksValidationMode, type DocsCodeBlocksValidationPolicy, type DocsConfig, type DocsConfigMap, type DocsConfigMapJsonValue, type DocsConfigMapPointer, type DocsContentAudience, type DocsDiagnostics, type DocsDiagnosticsFeature, type DocsDiagnosticsIssue, type DocsDiagnosticsIssueSeverity, type DocsDiagnosticsOptions, type DocsDiagnosticsStatus, type DocsDiscoveryApiRouteOptions, type DocsFeedbackData, type DocsFeedbackValue, type DocsI18nConfig, type DocsLlmsDiscoveryConfig, type DocsLlmsTxtGeneratedContent, type DocsLlmsTxtGeneratedSection, type DocsLlmsTxtMaxCharsIssue, type DocsLlmsTxtPageInput, type DocsLlmsTxtRequest, type DocsLlmsTxtResolvedMaxChars, type DocsLlmsTxtResolvedSection, type DocsLlmsTxtSelectedContent, type DocsMarkdownAgentDetection, type DocsMarkdownHeadingAnchor, type DocsMarkdownPage, type DocsMarkdownRecoveryMatch, type DocsMarkdownRecoveryResult, type DocsMarkdownResponseOptions, type DocsMarkdownSection, type DocsMarkdownSectionIndex, type DocsMarkdownSectionIndexOptions, type DocsMarkdownSectionMetadata, type DocsMarkdownSectionRequest, type DocsMarkdownSectionResult, type DocsMcpAllowedOrigins, type DocsMcpAuthPrincipal, type DocsMcpAuthenticate, type DocsMcpAuthenticateContext, type DocsMcpAuthenticateResult, type DocsMcpConfig, type DocsMcpCorsConfig, type DocsMcpEndpointCandidate, type DocsMcpEndpointCandidateOptions, type DocsMcpOriginContext, type DocsMcpProtectedResourceConfig, type DocsMcpSecurityConfig, type DocsMcpToolsConfig, type DocsMetadata, type DocsNav, type DocsObservabilityConfig, type DocsObservabilityEvent, type DocsObservabilityEventInput, type DocsOpenApiDiscoveryConfig, type DocsOpenApiResolvedDiscoveryConfig, type DocsPageStructuredDataInput, type DocsPathMatch, type DocsPublishedAgentSkill, type DocsPublishedAgentSkillFile, type DocsPublishedAgentSkillOptions, type DocsRelatedItem, type DocsRenderedHeadingAnchorOptions, type DocsRetrievalSourceProvenance, type DocsRetrievalSourceScope, type DocsReviewCiConfig, type DocsReviewCiMode, type DocsReviewConfig, type DocsReviewRulesConfig, type DocsReviewScoreConfig, type DocsReviewSeverity, type DocsRobotsAnalysis, type DocsRobotsAnalysisOptions, type DocsRobotsConfig, type DocsRobotsRenderOptions, type DocsRobotsResolvedConfig, type DocsRobotsRule, type DocsSearchAdapter, type DocsSearchAdapterContext, type DocsSearchAdapterFactory, type DocsSearchChunkingConfig, type DocsSearchConfig, type DocsSearchDocument, type DocsSearchEmbeddingsConfig, type DocsSearchFilterField, type DocsSearchFilterInput, type DocsSearchFilters, type DocsSearchQuery, type DocsSearchRequest, type DocsSearchResponse, type DocsSearchResult, type DocsSearchResultType, type DocsSearchSourcePage, type DocsSearchWarning, type DocsSearchWarningCode, type DocsSitemapConfig, type DocsSitemapFormat, type DocsSitemapManifest, type DocsSitemapManifestPage, type DocsSitemapPageInput, type DocsSitemapResolvedConfig, type DocsSkillDocumentOptions, type DocsStandardsDiscoveryRequest, type DocsStandardsDiscoveryResponseOptions, type DocsStandardsDiscoveryRouteOptions, type DocsStructuredDataBreadcrumb, type DocsTelemetryAgentSurface, type DocsTelemetryAgentSurfaceContext, type DocsTelemetryAgentSurfaceRequestOptions, type DocsTelemetryConfig, type DocsTelemetryContext, type DocsTelemetryEvent, type DocsTelemetryEventInput, type DocsTelemetryEventType, type DocsTelemetryFeatures, type DocsTelemetryFramework, type DocsTheme, type EnrichDocsSearchDocumentsWithProvenanceOptions, type FeedbackConfig, type FontStyle, GENERATED_AGENT_PROVENANCE_MARKER, GENERATED_AGENT_PROVENANCE_VERSION, type GeneratedAgentProvenance, type GeneratedAgentSourceKind, type GithubConfig, type LastUpdatedConfig, type LlmsTxtConfig, type LlmsTxtMaxCharsConfig, type LlmsTxtMaxCharsMode, type LlmsTxtSectionConfig, type McpDocsSearchConfig, type OGConfig, type OpenDocsConfig, type OpenDocsProvider, type OpenDocsProviderConfig, type OpenDocsProviderId, type OpenDocsTarget, type OpenGraphImage, type OrderingItem, PAGE_AGENT_CONTRACT_END_MARKER, PAGE_AGENT_CONTRACT_FIELDS, PAGE_AGENT_CONTRACT_FIELD_SCHEMA, PAGE_AGENT_CONTRACT_START_MARKER, PAGE_AGENT_STRUCTURED_CONTRACT_FIELDS, type PageActionsConfig, type PageAgentAppliesTo, type PageAgentCommand, type PageAgentFailureMode, type PageAgentFrontmatter, type PageAgentFrontmatterIssue, type PageAgentVerification, type PageFrontmatter, type PageOpenGraph, type PageSidebarFrontmatter, type PageTwitter, type PerformDocsSearchOptions, type PromptAction, type PromptProviderChoice, type ReadingTimeConfig, type ReadingTimeFormat, type ResolvedChangelogConfig, type ResolvedDocsAnalyticsConfig, type ResolvedDocsI18n, type ResolvedDocsObservabilityConfig, type ResolvedDocsRelatedLink, type ResolvedDocsTelemetryConfig, type RunDocsAgentConformanceOptions, type SerializeOpenDocsProviderOptions, type SerializedOpenDocsProvider, type SidebarComponentProps, type SidebarConfig, type SidebarFolderIndexBehavior, type SidebarFolderNode, type SidebarNode, type SidebarPageNode, type SidebarTree, type SimpleDocsSearchConfig, type ThemeToggleConfig, type TypesenseDocsSearchConfig, type TypographyConfig, type UIConfig, acceptsDocsMarkdown, analyzeDocsRobotsTxt, appendDocsDiscoveryLinkHeader, applyDocsMarkdownHeadingAnchors, applySidebarFolderIndexBehavior, buildDocsA2AAgentCard, buildDocsAgentDiscoverySpec, buildDocsAgentFeedbackSchema, buildDocsAgentSkillsIndex, buildDocsApiCatalog, buildDocsAskAIContext, buildDocsConfigMap, buildDocsDiagnostics, buildDocsLegacySkillsIndex, buildDocsMarkdownSectionIndex, buildDocsMcpEndpointCandidates, buildDocsMcpProtectedResourceMetadataRoute, buildDocsPageStructuredData, buildDocsRetrievalDigestProjection, buildDocsSearchDocuments, buildDocsSitemapManifest, buildPageOpenGraph, buildPageTwitter, cleanDocsRenderedHeadingLabel, collectDocsMarkdownSections, createAlgoliaSearchAdapter, createCustomSearchAdapter, createDocsAgentContractCases, createDocsAgentTraceContext, createDocsAgentTraceId, createDocsMarkdownHeadingAnchorResolver, createDocsMarkdownResponse, createDocsRenderedHeadingAnchorResolver, createDocsRobotsResponse, createDocsSitemapResponse, createDocsStandardsDiscoveryResponse, createDocsStandardsResponse, createMcpSearchAdapter, createSimpleSearchAdapter, createTheme, createTypesenseSearchAdapter, deepMerge, defineDocs, detectDocsMarkdownAgentRequest, digestDocsRetrievalContent, emitDocsAgentTraceEvent, emitDocsAnalyticsEvent, emitDocsObservabilityEvent, emitDocsTelemetryAgentSurfaceEvent, emitDocsTelemetryEvent, emitDocsTelemetryMcpToolEvent, emitDocsTelemetryProjectEvent, encodeDocsHeadingTocUrls, enrichDocsSearchDocumentsWithProvenance, estimateReadingTimeMinutes, extendTheme, findDocsAudienceMdxIssues, findDocsMarkdownPage, formatDocsAskAIPackageHints, getDocsAgentManifestLinkHeader, getDocsDiscoveryLinkHeader, getDocsLlmsTxtMaxCharsIssue, getDocsMarkdownCanonicalLinkHeader, getDocsMarkdownVaryHeader, getDocsMcpProtectedResourceMetadataRoutes, getDocsMcpResourcePaths, getDocsRequestAnalyticsProperties, getDocsRobotsAllowRoutes, getDocsTelemetryFeatures, getPageAgentFrontmatterIssues, hasDocsMarkdownSignatureAgent, hasDocsMcpProtectedResourceConfig, hasStructuredPageAgentContract, hashGeneratedAgentContent, inferDocsAskAIPackageHints, inferDocsTelemetryAgentSurface, isDocsAgentDiscoveryRequest, isDocsAgentSkillName, isDocsAgentsRequest, isDocsConfigRequest, isDocsDiagnosticsRequest, isDocsLlmsTxtPublicRequest, isDocsMarkdownSectionIndexRequest, isDocsMcpRequest, isDocsPublicGetRequest, isDocsRetrievalCanonicalUrl, isDocsSkillRequest, isDocsStandardsDiscoveryRequest, isLocalDocsTelemetryOrigin, isolateDocsMarkdownPromptReferences, matchesDocsLlmsTxtSection, normalizeDocsPathSegment, normalizeDocsRelated, normalizeDocsSearchFilters, normalizeDocsTelemetryOrigin, normalizeDocsUrlPath, normalizeGeneratedAgentContent, normalizePageAgentFrontmatter, parseDocsAgentFeedbackData, parseDocsAgentSkillFrontmatter, parseGeneratedAgentDocument, performDocsSearch, performDocsSearchWithMetadata, readDocsSitemapManifestFromContentMap, renderDocsAgentsDocument, renderDocsLlmsTxt, renderDocsMarkdownDocument, renderDocsMarkdownNotFound, renderDocsPageStructuredDataJson, renderDocsRelatedMarkdownLines, renderDocsRobotsGeneratedBlock, renderDocsRobotsTxt, renderDocsSitemapMarkdown, renderDocsSitemapXml, renderDocsSkillDocument, renderPageAgentContractMarkdown, renderPageAgentFrontmatterYamlLines, resolveAskAISearchRequestConfig, resolveChangelogConfig, resolveDocsAgentContractMcpTools, resolveDocsAgentFeedbackConfig, resolveDocsAgentFeedbackRequest, resolveDocsAgentMdxContent, resolveDocsAgentsFormat, resolveDocsAnalyticsConfig, resolveDocsAudienceExposure, resolveDocsAudienceMdxContent, resolveDocsDiscoveryApiRoute, resolveDocsI18n, resolveDocsLlmsTxtFormat, resolveDocsLlmsTxtRequest, resolveDocsLlmsTxtSections, resolveDocsLocale, resolveDocsMarkdownCanonicalUrl, resolveDocsMarkdownRecovery, resolveDocsMarkdownRequest, resolveDocsMarkdownSectionRequest, resolveDocsMetadataBaseUrl, resolveDocsObservabilityConfig, resolveDocsOpenApiDiscoveryConfig, resolveDocsPath, resolveDocsPublishedAgentSkill, resolveDocsRequestApiRoute, resolveDocsRetrievalLastModified, resolveDocsRobotsConfig, resolveDocsRobotsRequest, resolveDocsSearchAudience, resolveDocsSearchFilters, resolveDocsSearchRequest, resolveDocsSitemapConfig, resolveDocsSitemapPageLastmod, resolveDocsSitemapRequest, resolveDocsSkillFormat, resolveDocsStandardsDiscoveryRequest, resolveDocsTelemetryConfig, resolveOGImage, resolvePageReadingTime, resolvePageSidebarFolderIndexBehavior, resolveReadingTimeFromContent, resolveReadingTimeFromSource, resolveReadingTimeOptions, resolveSearchRequestConfig, resolveSidebarFolderIndexBehavior, resolveSidebarFolderIndexBehaviorForPath, resolveTitle, runDocsAgentConformance, selectDocsLlmsTxtContent, selectDocsMarkdownSection, serializeGeneratedAgentDocument, sha256DocsDiscoveryContent, slugifyDocsMarkdownHeading, stripGeneratedAgentProvenance, stripGeneratedPageAgentContractMarkdown, toDocsMarkdownUrl, toDocsSitemapMarkdownUrl, upsertDocsRobotsGeneratedBlock, upsertPageAgentContractMarkdown, validateDocsAgentFeedbackPayload, validateDocsAgentSkillFrontmatter, withDocsMarkdownRenderableHeadings };
451
+ export { AGENT_SKILLS_DISCOVERY_SCHEMA_URI, AGENT_SKILL_COMPATIBILITY_MAX_LENGTH, AGENT_SKILL_DESCRIPTION_MAX_LENGTH, AGENT_SKILL_FRONTMATTER_FIELDS, AGENT_SKILL_NAME_MAX_LENGTH, type AIConfig, API_CATALOG_MEDIA_TYPE, API_CATALOG_PROFILE_URI, type AgentFeedbackConfig, type AlgoliaDocsSearchConfig, type ApiReferenceConfig, type ApiReferenceRenderer, type ApplyDocsMarkdownHeadingAnchorsOptions, type BreadcrumbConfig, type BuildDocsContentSnapshotOptions, type BuildDocsSearchFacetsOptions, type ChangelogConfig, type ChangelogEntrySummary, type ChangelogFrontmatter, type CodeBlockCopyData, type CopyMarkdownConfig, type CopyMarkdownFormat, type CreateDocsStandardsResponseOptions, type CustomDocsSearchConfig, DEFAULT_A2A_AGENT_CARD_FORMAT, DEFAULT_A2A_AGENT_CARD_ROUTE, DEFAULT_A2A_PROTOCOL_BINDING, DEFAULT_A2A_PROTOCOL_VERSION, DEFAULT_AGENTS_MD_ROUTE, DEFAULT_AGENTS_MD_WELL_KNOWN_ROUTE, DEFAULT_AGENT_FEEDBACK_PAYLOAD_SCHEMA, DEFAULT_AGENT_FEEDBACK_ROUTE, DEFAULT_AGENT_MD_ROUTE, DEFAULT_AGENT_MD_WELL_KNOWN_ROUTE, DEFAULT_AGENT_SKILLS_ARCHIVE_ROUTE_PATTERN, DEFAULT_AGENT_SKILLS_INDEX_FORMAT, DEFAULT_AGENT_SKILLS_INDEX_ROUTE, DEFAULT_AGENT_SKILLS_ROUTE_PATTERN, DEFAULT_AGENT_SKILLS_ROUTE_PREFIX, DEFAULT_AGENT_SKILL_ARCHIVE_FORMAT, DEFAULT_AGENT_SKILL_FILE_FORMAT, DEFAULT_AGENT_SKILL_FORMAT, DEFAULT_AGENT_SKILL_RESOURCE_FORMAT, DEFAULT_AGENT_SPEC_ROUTE, DEFAULT_AGENT_SPEC_WELL_KNOWN_JSON_ROUTE, DEFAULT_AGENT_SPEC_WELL_KNOWN_ROUTE, DEFAULT_API_CATALOG_FORMAT, DEFAULT_API_CATALOG_ROUTE, DEFAULT_DOCS_AI_ROBOTS_USER_AGENTS, DEFAULT_DOCS_API_ROUTE, DEFAULT_DOCS_CONFIG_FORMAT, DEFAULT_DOCS_CONFIG_ROUTE, DEFAULT_DOCS_DIAGNOSTICS_FORMAT, DEFAULT_DOCS_DIAGNOSTICS_ROUTE, DEFAULT_LEGACY_SKILLS_INDEX_FORMAT, DEFAULT_LEGACY_SKILLS_INDEX_ROUTE, DEFAULT_LEGACY_SKILLS_ROUTE_PREFIX, DEFAULT_LLMS_FULL_TXT_ROUTE, DEFAULT_LLMS_FULL_TXT_WELL_KNOWN_ROUTE, DEFAULT_LLMS_TXT_MAX_CHARS, DEFAULT_LLMS_TXT_ROUTE, DEFAULT_LLMS_TXT_WELL_KNOWN_ROUTE, DEFAULT_MCP_PROTECTED_RESOURCE_METADATA_ROUTE, DEFAULT_MCP_PUBLIC_ROUTE, DEFAULT_MCP_ROUTE, DEFAULT_MCP_WELL_KNOWN_ROUTE, DEFAULT_OPENAPI_SCHEMA_ROUTE, DEFAULT_ROBOTS_TXT_ROUTE, DEFAULT_SITEMAP_MANIFEST_PATH, DEFAULT_SITEMAP_MD_DOCS_ROUTE, DEFAULT_SITEMAP_MD_ROUTE, DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, DEFAULT_SITEMAP_XML_ROUTE, DEFAULT_SKILL_MD_ROUTE, DEFAULT_SKILL_MD_WELL_KNOWN_ROUTE, DOCS_AGENT_CONTRACT_VERSION, DOCS_AGENT_MANIFEST_FORMAT, DOCS_AGENT_MANIFEST_SCHEMA_MEDIA_TYPE, DOCS_AGENT_MANIFEST_SCHEMA_URI, DOCS_AGENT_MANIFEST_VERSION, DOCS_AGENT_TRACE_EVENT_TYPES, DOCS_AI_AGENT_USER_AGENT_HEADER_PATTERN, DOCS_BOT_LIKE_USER_AGENT_HEADER_PATTERN, DOCS_CONTENT_CHANGES_FORMAT, DOCS_CONTENT_CHANGES_RESPONSE_VALUE, DOCS_CONTENT_SNAPSHOT_FORMAT, DOCS_MARKDOWN_SECTION_INDEX_FORMAT, DOCS_MARKDOWN_SIGNATURE_AGENT_HEADER, DOCS_ROBOTS_GENERATED_BLOCK_END, DOCS_ROBOTS_GENERATED_BLOCK_START, DOCS_TRADITIONAL_BOT_USER_AGENT_HEADER_PATTERN, type DocsA2AAgentCard, type DocsA2AAgentCardOptions, type DocsA2AAgentInterface, type DocsAgentA2AApiKeySecurityScheme, type DocsAgentA2ACapabilities, type DocsAgentA2AConfig, type DocsAgentA2AExtension, type DocsAgentA2AHttpAuthSecurityScheme, type DocsAgentA2AInterfaceConfig, type DocsAgentA2AMutualTlsSecurityScheme, type DocsAgentA2AOAuth2SecurityScheme, type DocsAgentA2AOAuthAuthorizationCodeFlow, type DocsAgentA2AOAuthClientCredentialsFlow, type DocsAgentA2AOAuthDeviceCodeFlow, type DocsAgentA2AOAuthFlows, type DocsAgentA2AOAuthImplicitFlow, type DocsAgentA2AOAuthPasswordFlow, type DocsAgentA2AOpenIdConnectSecurityScheme, type DocsAgentA2AProtocolBinding, type DocsAgentA2ASecurityRequirement, type DocsAgentA2ASecurityScheme, type DocsAgentA2ASecurityScopeList, type DocsAgentA2ASkill, type DocsAgentAdapter, type DocsAgentCompactConfig, type DocsAgentConfig, type DocsAgentConformanceCaseResult, type DocsAgentConformanceReport, type DocsAgentContentChangesConfig, type DocsAgentContractCase, type DocsAgentContractExpectation, type DocsAgentContractMcpTools, type DocsAgentContractRequest, type DocsAgentContractSurface, type DocsAgentDiscoverySpecOptions, type DocsAgentEvaluationAnswerInput, type DocsAgentEvaluationAnswerProvider, type DocsAgentEvaluationAnswerRequest, type DocsAgentEvaluationAnswerResult, type DocsAgentEvaluationAnswerRunner, type DocsAgentEvaluationSourceReference, type DocsAgentEvaluationSurface, type DocsAgentEvaluationTaskInput, type DocsAgentEvaluationsConfig, type DocsAgentFeedbackContext, type DocsAgentFeedbackData, type DocsAgentFeedbackDiscoveryConfig, type DocsAgentFeedbackRequest, type DocsAgentFeedbackResolvedConfig, type DocsAgentGoldenAnswerExpectation, type DocsAgentGoldenExampleVerification, type DocsAgentGoldenExpectedExample, type DocsAgentGoldenTask, type DocsAgentGoldenTaskExpectation, type DocsAgentGoldenTaskFilters, type DocsAgentSkillFrontmatter, DocsAgentSkillFrontmatterError, type DocsAgentSkillFrontmatterField, type DocsAgentSkillFrontmatterIssue, type DocsAgentSkillFrontmatterValidation, type DocsAgentSkillFrontmatterValidationOptions, type DocsAgentSkillIndexEntry, type DocsAgentSkillsConfig, type DocsAgentSkillsIndex, type DocsAgentSkillsInput, type DocsAgentTraceContext, type DocsAgentTraceEventInput, type DocsAgentTraceEventType, type DocsAgentTraceStatus, type DocsAgentsDocumentOptions, type DocsAnalyticsConfig, type DocsAnalyticsEvent, type DocsAnalyticsEventInput, type DocsAnalyticsEventType, type DocsAnalyticsInput, type DocsAnalyticsSource, type DocsApiCatalog, type DocsApiCatalogApiTarget, type DocsApiCatalogLinkContext, type DocsApiCatalogLinkTarget, type DocsApiCatalogOpenApiDefinition, type DocsApiCatalogOptions, type DocsAskAIActionData, type DocsAskAIActionType, type DocsAskAIFeedbackConfig, type DocsAskAIFeedbackData, type DocsAskAIFeedbackMessage, type DocsAskAIFeedbackValue, type DocsAskAIMcpConfig, type DocsAudienceMdxIssue, type DocsCloudApiKeyConfig, type DocsCloudConfig, type DocsCloudFeatureConfig, type DocsCloudPreviewConfig, type DocsCloudPublishConfig, type DocsCodeBlocksConfig, type DocsCodeBlocksPlannerConfig, type DocsCodeBlocksPlannerProvider, type DocsCodeBlocksRunnerConfig, type DocsCodeBlocksRunnerProvider, type DocsCodeBlocksValidateConfig, type DocsCodeBlocksValidationMode, type DocsCodeBlocksValidationPolicy, type DocsConfig, type DocsConfigMap, type DocsConfigMapJsonValue, type DocsConfigMapPointer, type DocsContentAudience, type DocsContentChangeDocument, type DocsContentChangeFeed, type DocsContentChangeSnapshotContext, type DocsContentChangeSnapshotLoader, type DocsContentChangeSnapshotSaver, type DocsContentChangedDocument, type DocsContentChangesRequest, DocsContentChangesRequestError, type DocsContentChangesResponse, type DocsContentSnapshot, type DocsContentSnapshotDocument, type DocsDiagnostics, type DocsDiagnosticsFeature, type DocsDiagnosticsIssue, type DocsDiagnosticsIssueSeverity, type DocsDiagnosticsOptions, type DocsDiagnosticsStatus, type DocsDiscoveryApiRouteOptions, type DocsFeedbackData, type DocsFeedbackValue, type DocsI18nConfig, type DocsLlmsDiscoveryConfig, type DocsLlmsTxtGeneratedContent, type DocsLlmsTxtGeneratedSection, type DocsLlmsTxtMaxCharsIssue, type DocsLlmsTxtPageInput, type DocsLlmsTxtRequest, type DocsLlmsTxtResolvedMaxChars, type DocsLlmsTxtResolvedSection, type DocsLlmsTxtSelectedContent, type DocsMarkdownAgentDetection, type DocsMarkdownHeadingAnchor, type DocsMarkdownPage, type DocsMarkdownRecoveryMatch, type DocsMarkdownRecoveryResult, type DocsMarkdownResponseOptions, type DocsMarkdownSection, type DocsMarkdownSectionIndex, type DocsMarkdownSectionIndexOptions, type DocsMarkdownSectionMetadata, type DocsMarkdownSectionRequest, type DocsMarkdownSectionResult, type DocsMcpAllowedOrigins, type DocsMcpAuthPrincipal, type DocsMcpAuthenticate, type DocsMcpAuthenticateContext, type DocsMcpAuthenticateResult, type DocsMcpConfig, type DocsMcpCorsConfig, type DocsMcpEndpointCandidate, type DocsMcpEndpointCandidateOptions, type DocsMcpOriginContext, type DocsMcpProtectedResourceConfig, type DocsMcpSecurityConfig, type DocsMcpToolsConfig, type DocsMetadata, type DocsNav, type DocsObservabilityConfig, type DocsObservabilityEvent, type DocsObservabilityEventInput, type DocsOpenApiDiscoveryConfig, type DocsOpenApiResolvedDiscoveryConfig, type DocsPageStructuredDataInput, type DocsPaginatedSearchResponse, DocsPaginationCursorError, type DocsPathMatch, type DocsPublishedAgentSkill, type DocsPublishedAgentSkillFile, type DocsPublishedAgentSkillOptions, type DocsRelatedItem, type DocsRenderedHeadingAnchorOptions, type DocsResolvedContentChangesConfig, type DocsRetrievalSourceProvenance, type DocsRetrievalSourceScope, type DocsReviewCiConfig, type DocsReviewCiMode, type DocsReviewConfig, type DocsReviewRulesConfig, type DocsReviewScoreConfig, type DocsReviewSeverity, type DocsRobotsAnalysis, type DocsRobotsAnalysisOptions, type DocsRobotsConfig, type DocsRobotsRenderOptions, type DocsRobotsResolvedConfig, type DocsRobotsRule, type DocsSearchAdapter, type DocsSearchAdapterContext, type DocsSearchAdapterFactory, type DocsSearchAdapterPage, type DocsSearchChunkingConfig, type DocsSearchConfig, type DocsSearchDocument, type DocsSearchEmbeddingsConfig, type DocsSearchFacet, type DocsSearchFacetValue, type DocsSearchFacetsResponse, type DocsSearchFilterField, type DocsSearchFilterInput, type DocsSearchFilters, type DocsSearchQuery, type DocsSearchRequest, DocsSearchRequestError, type DocsSearchResponse, type DocsSearchResult, type DocsSearchResultType, type DocsSearchSourcePage, type DocsSearchWarning, type DocsSearchWarningCode, type DocsSitemapConfig, type DocsSitemapFormat, type DocsSitemapManifest, type DocsSitemapManifestPage, type DocsSitemapPageInput, type DocsSitemapResolvedConfig, type DocsSkillDocumentOptions, type DocsStandardsDiscoveryRequest, type DocsStandardsDiscoveryResponseOptions, type DocsStandardsDiscoveryRouteOptions, type DocsStructuredDataBreadcrumb, type DocsTelemetryAgentSurface, type DocsTelemetryAgentSurfaceContext, type DocsTelemetryAgentSurfaceRequestOptions, type DocsTelemetryConfig, type DocsTelemetryContext, type DocsTelemetryEvent, type DocsTelemetryEventInput, type DocsTelemetryEventType, type DocsTelemetryFeatures, type DocsTelemetryFramework, type DocsTheme, type EnrichDocsSearchDocumentsWithProvenanceOptions, type FeedbackConfig, type FontStyle, GENERATED_AGENT_PROVENANCE_MARKER, GENERATED_AGENT_PROVENANCE_VERSION, type GeneratedAgentProvenance, type GeneratedAgentSourceKind, type GithubConfig, type LastUpdatedConfig, type LlmsTxtConfig, type LlmsTxtMaxCharsConfig, type LlmsTxtMaxCharsMode, type LlmsTxtSectionConfig, type McpDocsSearchConfig, type OGConfig, type OpenDocsConfig, type OpenDocsProvider, type OpenDocsProviderConfig, type OpenDocsProviderId, type OpenDocsTarget, type OpenGraphImage, type OrderingItem, PAGE_AGENT_CONTRACT_END_MARKER, PAGE_AGENT_CONTRACT_FIELDS, PAGE_AGENT_CONTRACT_FIELD_SCHEMA, PAGE_AGENT_CONTRACT_START_MARKER, PAGE_AGENT_STRUCTURED_CONTRACT_FIELDS, type PageActionsConfig, type PageAgentAppliesTo, type PageAgentCommand, type PageAgentFailureMode, type PageAgentFrontmatter, type PageAgentFrontmatterIssue, type PageAgentVerification, type PageFrontmatter, type PageOpenGraph, type PageSidebarFrontmatter, type PageTwitter, type PerformDocsSearchOptions, type PromptAction, type PromptProviderChoice, type ReadingTimeConfig, type ReadingTimeFormat, type ResolveDocsContentChangesOptions, type ResolvedChangelogConfig, type ResolvedDocsAnalyticsConfig, type ResolvedDocsI18n, type ResolvedDocsObservabilityConfig, type ResolvedDocsRelatedLink, type ResolvedDocsTelemetryConfig, type RunDocsAgentConformanceOptions, type SerializeOpenDocsProviderOptions, type SerializedOpenDocsProvider, type SidebarComponentProps, type SidebarConfig, type SidebarFolderIndexBehavior, type SidebarFolderNode, type SidebarNode, type SidebarPageNode, type SidebarTree, type SimpleDocsSearchConfig, type ThemeToggleConfig, type TypesenseDocsSearchConfig, type TypographyConfig, type UIConfig, acceptsDocsMarkdown, analyzeDocsRobotsTxt, appendDocsDiscoveryLinkHeader, applyDocsMarkdownHeadingAnchors, applySidebarFolderIndexBehavior, buildDocsA2AAgentCard, buildDocsAgentDiscoverySpec, buildDocsAgentFeedbackSchema, buildDocsAgentSkillsIndex, buildDocsApiCatalog, buildDocsAskAIContext, buildDocsConfigMap, buildDocsContentSnapshot, buildDocsDiagnostics, buildDocsLegacySkillsIndex, buildDocsMarkdownSectionIndex, buildDocsMcpEndpointCandidates, buildDocsMcpProtectedResourceMetadataRoute, buildDocsPageStructuredData, buildDocsRetrievalDigestProjection, buildDocsSearchDocuments, buildDocsSearchFacets, buildDocsSitemapManifest, buildPageOpenGraph, buildPageTwitter, cleanDocsRenderedHeadingLabel, collectDocsMarkdownSections, createAlgoliaSearchAdapter, createCustomSearchAdapter, createDocsAgentContractCases, createDocsAgentTraceContext, createDocsAgentTraceId, createDocsContentChangeFeed, createDocsContentChangesHttpResponse, createDocsMarkdownHeadingAnchorResolver, createDocsMarkdownResponse, createDocsRenderedHeadingAnchorResolver, createDocsRobotsResponse, createDocsSitemapResponse, createDocsStandardsDiscoveryResponse, createDocsStandardsResponse, createMcpSearchAdapter, createSimpleSearchAdapter, createTheme, createTypesenseSearchAdapter, deepMerge, defineDocs, detectDocsMarkdownAgentRequest, digestDocsRetrievalContent, emitDocsAgentTraceEvent, emitDocsAnalyticsEvent, emitDocsObservabilityEvent, emitDocsTelemetryAgentSurfaceEvent, emitDocsTelemetryEvent, emitDocsTelemetryMcpToolEvent, emitDocsTelemetryProjectEvent, encodeDocsHeadingTocUrls, enrichDocsSearchDocumentsWithProvenance, estimateReadingTimeMinutes, extendTheme, findDocsAudienceMdxIssues, findDocsMarkdownPage, formatDocsAskAIPackageHints, getDocsAgentManifestLinkHeader, getDocsDiscoveryLinkHeader, getDocsLlmsTxtMaxCharsIssue, getDocsMarkdownCanonicalLinkHeader, getDocsMarkdownVaryHeader, getDocsMcpProtectedResourceMetadataRoutes, getDocsMcpResourcePaths, getDocsRequestAnalyticsProperties, getDocsRobotsAllowRoutes, getDocsTelemetryFeatures, getPageAgentFrontmatterIssues, hasDocsMarkdownSignatureAgent, hasDocsMcpProtectedResourceConfig, hasStructuredPageAgentContract, hashGeneratedAgentContent, inferDocsAskAIPackageHints, inferDocsTelemetryAgentSurface, isDocsAgentDiscoveryRequest, isDocsAgentSkillName, isDocsAgentsRequest, isDocsConfigRequest, isDocsContentChangesRequest, isDocsDiagnosticsRequest, isDocsLlmsTxtPublicRequest, isDocsMarkdownSectionIndexRequest, isDocsMcpRequest, isDocsPublicGetRequest, isDocsRetrievalCanonicalUrl, isDocsSkillRequest, isDocsStandardsDiscoveryRequest, isLocalDocsTelemetryOrigin, isolateDocsMarkdownPromptReferences, matchesDocsLlmsTxtSection, normalizeDocsPathSegment, normalizeDocsRelated, normalizeDocsSearchFilters, normalizeDocsTelemetryOrigin, normalizeDocsUrlPath, normalizeGeneratedAgentContent, normalizePageAgentFrontmatter, parseDocsAgentFeedbackData, parseDocsAgentSkillFrontmatter, parseGeneratedAgentDocument, performDocsSearch, performDocsSearchWithMetadata, readDocsSitemapManifestFromContentMap, renderDocsAgentsDocument, renderDocsLlmsTxt, renderDocsMarkdownDocument, renderDocsMarkdownNotFound, renderDocsPageStructuredDataJson, renderDocsRelatedMarkdownLines, renderDocsRobotsGeneratedBlock, renderDocsRobotsTxt, renderDocsSitemapMarkdown, renderDocsSitemapXml, renderDocsSkillDocument, renderPageAgentContractMarkdown, renderPageAgentFrontmatterYamlLines, resolveAskAISearchRequestConfig, resolveChangelogConfig, resolveDocsAgentContractMcpTools, resolveDocsAgentFeedbackConfig, resolveDocsAgentFeedbackRequest, resolveDocsAgentMdxContent, resolveDocsAgentsFormat, resolveDocsAnalyticsConfig, resolveDocsAudienceExposure, resolveDocsAudienceMdxContent, resolveDocsContentChangesConfig, resolveDocsContentChangesRequest, resolveDocsDiscoveryApiRoute, resolveDocsI18n, resolveDocsLlmsTxtFormat, resolveDocsLlmsTxtRequest, resolveDocsLlmsTxtSections, resolveDocsLocale, resolveDocsMarkdownCanonicalUrl, resolveDocsMarkdownRecovery, resolveDocsMarkdownRequest, resolveDocsMarkdownSectionRequest, resolveDocsMetadataBaseUrl, resolveDocsObservabilityConfig, resolveDocsOpenApiDiscoveryConfig, resolveDocsPath, resolveDocsPublishedAgentSkill, resolveDocsRequestApiRoute, resolveDocsRetrievalLastModified, resolveDocsRobotsConfig, resolveDocsRobotsRequest, resolveDocsSearchAudience, resolveDocsSearchError, resolveDocsSearchFilters, resolveDocsSearchRequest, resolveDocsSitemapConfig, resolveDocsSitemapPageLastmod, resolveDocsSitemapRequest, resolveDocsSkillFormat, resolveDocsStandardsDiscoveryRequest, resolveDocsTelemetryConfig, resolveOGImage, resolvePageReadingTime, resolvePageSidebarFolderIndexBehavior, resolveReadingTimeFromContent, resolveReadingTimeFromSource, resolveReadingTimeOptions, resolveSearchRequestConfig, resolveSidebarFolderIndexBehavior, resolveSidebarFolderIndexBehaviorForPath, resolveTitle, runDocsAgentConformance, selectDocsLlmsTxtContent, selectDocsMarkdownSection, serializeGeneratedAgentDocument, sha256DocsDiscoveryContent, slugifyDocsMarkdownHeading, stripGeneratedAgentProvenance, stripGeneratedPageAgentContractMarkdown, toDocsMarkdownUrl, toDocsSitemapMarkdownUrl, upsertDocsRobotsGeneratedBlock, upsertPageAgentContractMarkdown, validateDocsAgentFeedbackPayload, validateDocsAgentSkillFrontmatter, withDocsMarkdownRenderableHeadings };
package/dist/index.mjs CHANGED
@@ -1,12 +1,12 @@
1
- import { _ as resolveChangelogConfig, a as resolveReadingTimeFromContent, c as DOCS_AGENT_CONTRACT_VERSION, g as deepMerge, h as extendTheme, i as resolvePageReadingTime, l as createDocsAgentContractCases, m as createTheme, n as encodeDocsHeadingTocUrls, o as resolveReadingTimeFromSource, r as estimateReadingTimeMinutes, s as resolveReadingTimeOptions, t as isolateDocsMarkdownPromptReferences, u as runDocsAgentConformance, v as defineDocs } from "./prompt-references-CfyYOa_W.mjs";
1
+ import { _ as resolveChangelogConfig, a as resolveReadingTimeFromContent, c as DOCS_AGENT_CONTRACT_VERSION, g as deepMerge, h as extendTheme, i as resolvePageReadingTime, l as createDocsAgentContractCases, m as createTheme, n as encodeDocsHeadingTocUrls, o as resolveReadingTimeFromSource, r as estimateReadingTimeMinutes, s as resolveReadingTimeOptions, t as isolateDocsMarkdownPromptReferences, u as runDocsAgentConformance, v as defineDocs } from "./prompt-references-CoDorsvS.mjs";
2
2
  import { a as emitDocsAnalyticsEvent, c as resolveDocsAnalyticsConfig, i as emitDocsAgentTraceEvent, l as resolveDocsObservabilityConfig, n as createDocsAgentTraceContext, o as emitDocsObservabilityEvent, r as createDocsAgentTraceId, s as getDocsRequestAnalyticsProperties, t as DOCS_AGENT_TRACE_EVENT_TYPES } from "./analytics-Bx44lg6d.mjs";
3
- import { $ as matchesDocsLlmsTxtSection, $t as getDocsMcpProtectedResourceMetadataRoutes, A as buildDocsAgentDiscoverySpec, At as resolveDocsAudienceExposure, B as findDocsMarkdownPage, Bt as renderDocsSitemapMarkdown, C as DOCS_AI_AGENT_USER_AGENT_HEADER_PATTERN, Ct as selectDocsMarkdownSection, D as DOCS_MARKDOWN_SIGNATURE_AGENT_HEADER, Dt as findDocsAudienceMdxIssues, E as DOCS_MARKDOWN_SECTION_INDEX_FORMAT, F as buildDocsMcpEndpointCandidates, Ft as DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, G as isDocsAgentDiscoveryRequest, Gt as toDocsSitemapMarkdownUrl, H as getDocsMarkdownCanonicalLinkHeader, Ht as resolveDocsSitemapConfig, I as collectDocsMarkdownSections, It as DEFAULT_SITEMAP_XML_ROUTE, J as isDocsDiagnosticsRequest, Jt as DEFAULT_MCP_PROTECTED_RESOURCE_METADATA_ROUTE, K as isDocsAgentsRequest, Kt as normalizeDocsRelated, L as createDocsMarkdownResponse, Lt as buildDocsSitemapManifest, M as buildDocsConfigMap, Mt as DEFAULT_SITEMAP_MANIFEST_PATH, N as buildDocsDiagnostics, Nt as DEFAULT_SITEMAP_MD_DOCS_ROUTE, O as DOCS_TRADITIONAL_BOT_USER_AGENT_HEADER_PATTERN, P as buildDocsMarkdownSectionIndex, Pt as DEFAULT_SITEMAP_MD_ROUTE, Q as isDocsSkillRequest, Qt as buildDocsMcpProtectedResourceMetadataRoute, R as createDocsStandardsDiscoveryResponse, Rt as createDocsSitemapResponse, S as DEFAULT_SKILL_MD_WELL_KNOWN_ROUTE, St as selectDocsLlmsTxtContent, Tt as validateDocsAgentFeedbackPayload, U as getDocsMarkdownVaryHeader, Ut as resolveDocsSitemapPageLastmod, V as getDocsLlmsTxtMaxCharsIssue, Vt as renderDocsSitemapXml, W as hasDocsMarkdownSignatureAgent, Wt as resolveDocsSitemapRequest, X as isDocsMarkdownSectionIndexRequest, Xt as DEFAULT_MCP_ROUTE, Y as isDocsLlmsTxtPublicRequest, Yt as DEFAULT_MCP_PUBLIC_ROUTE, Z as isDocsPublicGetRequest, Zt as DEFAULT_MCP_WELL_KNOWN_ROUTE, _ as DEFAULT_LLMS_TXT_MAX_CHARS, _t as resolveDocsMarkdownRequest, a as DEFAULT_AGENT_MD_ROUTE, at as renderDocsMarkdownDocument, b as DEFAULT_OPENAPI_SCHEMA_ROUTE, bt as resolveDocsRequestApiRoute, c as DEFAULT_AGENT_SPEC_WELL_KNOWN_JSON_ROUTE, ct as resolveDocsAgentContractMcpTools, d as DEFAULT_DOCS_CONFIG_FORMAT, dt as resolveDocsAgentsFormat, en as getDocsMcpResourcePaths, et as normalizeDocsPathSegment, f as DEFAULT_DOCS_CONFIG_ROUTE, ft as resolveDocsLlmsTxtFormat, g as DEFAULT_LLMS_FULL_TXT_WELL_KNOWN_ROUTE, gt as resolveDocsMarkdownRecovery, h as DEFAULT_LLMS_FULL_TXT_ROUTE, ht as resolveDocsMarkdownCanonicalUrl, i as DEFAULT_AGENT_FEEDBACK_ROUTE, in as isDocsMcpRequest, it as renderDocsLlmsTxt, j as buildDocsAgentFeedbackSchema, jt as resolveDocsAudienceMdxContent, k as acceptsDocsMarkdown, kt as resolveDocsAgentMdxContent, l as DEFAULT_AGENT_SPEC_WELL_KNOWN_ROUTE, lt as resolveDocsAgentFeedbackConfig, m as DEFAULT_DOCS_DIAGNOSTICS_ROUTE, mt as resolveDocsLlmsTxtSections, n as DEFAULT_AGENTS_MD_WELL_KNOWN_ROUTE, nt as parseDocsAgentFeedbackData, o as DEFAULT_AGENT_MD_WELL_KNOWN_ROUTE, ot as renderDocsMarkdownNotFound, p as DEFAULT_DOCS_DIAGNOSTICS_FORMAT, pt as resolveDocsLlmsTxtRequest, q as isDocsConfigRequest, qt as renderDocsRelatedMarkdownLines, r as DEFAULT_AGENT_FEEDBACK_PAYLOAD_SCHEMA, rt as renderDocsAgentsDocument, s as DEFAULT_AGENT_SPEC_ROUTE, st as renderDocsSkillDocument, t as DEFAULT_AGENTS_MD_ROUTE, tn as hasDocsMcpProtectedResourceConfig, tt as normalizeDocsUrlPath, u as DEFAULT_DOCS_API_ROUTE, ut as resolveDocsAgentFeedbackRequest, v as DEFAULT_LLMS_TXT_ROUTE, vt as resolveDocsMarkdownSectionRequest, w as DOCS_BOT_LIKE_USER_AGENT_HEADER_PATTERN, wt as toDocsMarkdownUrl, x as DEFAULT_SKILL_MD_ROUTE, xt as resolveDocsSkillFormat, y as DEFAULT_LLMS_TXT_WELL_KNOWN_ROUTE, yt as resolveDocsOpenApiDiscoveryConfig, z as detectDocsMarkdownAgentRequest, zt as readDocsSitemapManifestFromContentMap } from "./agent-BHqaZx-X.mjs";
3
+ import { $ as matchesDocsLlmsTxtSection, $t as buildDocsSearchDocuments, A as buildDocsAgentDiscoverySpec, At as DEFAULT_SITEMAP_XML_ROUTE, B as findDocsMarkdownPage, Bn as DEFAULT_MCP_ROUTE, Bt as DOCS_CONTENT_CHANGES_FORMAT, C as DOCS_AI_AGENT_USER_AGENT_HEADER_PATTERN, Cn as resolveDocsAudienceExposure, Ct as selectDocsMarkdownSection, D as DOCS_MARKDOWN_SIGNATURE_AGENT_HEADER, Dt as DEFAULT_SITEMAP_MD_DOCS_ROUTE, E as DOCS_MARKDOWN_SECTION_INDEX_FORMAT, Et as DEFAULT_SITEMAP_MANIFEST_PATH, F as buildDocsMcpEndpointCandidates, Fn as isDocsRetrievalCanonicalUrl, Ft as renderDocsSitemapXml, G as isDocsAgentDiscoveryRequest, Gn as hasDocsMcpProtectedResourceConfig, Gt as createDocsContentChangesHttpResponse, H as getDocsMarkdownCanonicalLinkHeader, Hn as buildDocsMcpProtectedResourceMetadataRoute, Ht as DOCS_CONTENT_SNAPSHOT_FORMAT, I as collectDocsMarkdownSections, In as normalizeDocsRelated, It as resolveDocsSitemapConfig, J as isDocsDiagnosticsRequest, Jn as isDocsMcpRequest, Jt as resolveDocsContentChangesRequest, K as isDocsAgentsRequest, Kt as isDocsContentChangesRequest, L as createDocsMarkdownResponse, Ln as renderDocsRelatedMarkdownLines, Lt as resolveDocsSitemapPageLastmod, M as buildDocsConfigMap, Mn as DocsPaginationCursorError, Mt as createDocsSitemapResponse, N as buildDocsDiagnostics, Nt as readDocsSitemapManifestFromContentMap, O as DOCS_TRADITIONAL_BOT_USER_AGENT_HEADER_PATTERN, Ot as DEFAULT_SITEMAP_MD_ROUTE, P as buildDocsMarkdownSectionIndex, Pn as digestDocsRetrievalContent, Pt as renderDocsSitemapMarkdown, Q as isDocsSkillRequest, Qt as buildDocsRetrievalDigestProjection, R as createDocsStandardsDiscoveryResponse, Rn as DEFAULT_MCP_PROTECTED_RESOURCE_METADATA_ROUTE, Rt as resolveDocsSitemapRequest, S as DEFAULT_SKILL_MD_WELL_KNOWN_ROUTE, Sn as resolveDocsAgentMdxContent, St as selectDocsLlmsTxtContent, Tt as validateDocsAgentFeedbackPayload, U as getDocsMarkdownVaryHeader, Un as getDocsMcpProtectedResourceMetadataRoutes, Ut as DocsContentChangesRequestError, V as getDocsLlmsTxtMaxCharsIssue, Vn as DEFAULT_MCP_WELL_KNOWN_ROUTE, Vt as DOCS_CONTENT_CHANGES_RESPONSE_VALUE, W as hasDocsMarkdownSignatureAgent, Wn as getDocsMcpResourcePaths, Wt as createDocsContentChangeFeed, X as isDocsMarkdownSectionIndexRequest, Xt as buildDocsAskAIContext, Y as isDocsLlmsTxtPublicRequest, Yt as DocsSearchRequestError, Z as isDocsPublicGetRequest, Zt as buildDocsContentSnapshot, _ as DEFAULT_LLMS_TXT_MAX_CHARS, _n as resolveDocsSearchRequest, _t as resolveDocsMarkdownRequest, a as DEFAULT_AGENT_MD_ROUTE, an as createTypesenseSearchAdapter, at as renderDocsMarkdownDocument, b as DEFAULT_OPENAPI_SCHEMA_ROUTE, bn as findDocsAudienceMdxIssues, bt as resolveDocsRequestApiRoute, c as DEFAULT_AGENT_SPEC_WELL_KNOWN_JSON_ROUTE, cn as inferDocsAskAIPackageHints, ct as resolveDocsAgentContractMcpTools, d as DEFAULT_DOCS_CONFIG_FORMAT, dn as performDocsSearchWithMetadata, dt as resolveDocsAgentsFormat, en as buildDocsSearchFacets, et as normalizeDocsPathSegment, f as DEFAULT_DOCS_CONFIG_ROUTE, fn as resolveAskAISearchRequestConfig, ft as resolveDocsLlmsTxtFormat, g as DEFAULT_LLMS_FULL_TXT_WELL_KNOWN_ROUTE, gn as resolveDocsSearchFilters, gt as resolveDocsMarkdownRecovery, h as DEFAULT_LLMS_FULL_TXT_ROUTE, hn as resolveDocsSearchError, ht as resolveDocsMarkdownCanonicalUrl, i as DEFAULT_AGENT_FEEDBACK_ROUTE, in as createSimpleSearchAdapter, it as renderDocsLlmsTxt, j as buildDocsAgentFeedbackSchema, jt as buildDocsSitemapManifest, k as acceptsDocsMarkdown, kt as DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, l as DEFAULT_AGENT_SPEC_WELL_KNOWN_ROUTE, ln as normalizeDocsSearchFilters, lt as resolveDocsAgentFeedbackConfig, m as DEFAULT_DOCS_DIAGNOSTICS_ROUTE, mn as resolveDocsSearchAudience, mt as resolveDocsLlmsTxtSections, n as DEFAULT_AGENTS_MD_WELL_KNOWN_ROUTE, nn as createCustomSearchAdapter, nt as parseDocsAgentFeedbackData, o as DEFAULT_AGENT_MD_WELL_KNOWN_ROUTE, on as enrichDocsSearchDocumentsWithProvenance, ot as renderDocsMarkdownNotFound, p as DEFAULT_DOCS_DIAGNOSTICS_FORMAT, pn as resolveDocsRetrievalLastModified, pt as resolveDocsLlmsTxtRequest, q as isDocsConfigRequest, qt as resolveDocsContentChangesConfig, r as DEFAULT_AGENT_FEEDBACK_PAYLOAD_SCHEMA, rn as createMcpSearchAdapter, rt as renderDocsAgentsDocument, s as DEFAULT_AGENT_SPEC_ROUTE, sn as formatDocsAskAIPackageHints, st as renderDocsSkillDocument, t as DEFAULT_AGENTS_MD_ROUTE, tn as createAlgoliaSearchAdapter, tt as normalizeDocsUrlPath, u as DEFAULT_DOCS_API_ROUTE, un as performDocsSearch, ut as resolveDocsAgentFeedbackRequest, v as DEFAULT_LLMS_TXT_ROUTE, vn as resolveSearchRequestConfig, vt as resolveDocsMarkdownSectionRequest, w as DOCS_BOT_LIKE_USER_AGENT_HEADER_PATTERN, wn as resolveDocsAudienceMdxContent, wt as toDocsMarkdownUrl, x as DEFAULT_SKILL_MD_ROUTE, xt as resolveDocsSkillFormat, y as DEFAULT_LLMS_TXT_WELL_KNOWN_ROUTE, yt as resolveDocsOpenApiDiscoveryConfig, z as detectDocsMarkdownAgentRequest, zn as DEFAULT_MCP_PUBLIC_ROUTE, zt as toDocsSitemapMarkdownUrl } from "./agent-Ba94vwM2.mjs";
4
4
  import { S as upsertPageAgentContractMarkdown, _ as hasStructuredPageAgentContract, b as renderPageAgentFrontmatterYamlLines, c as slugifyDocsMarkdownHeading, d as PAGE_AGENT_CONTRACT_END_MARKER, f as PAGE_AGENT_CONTRACT_FIELDS, g as getPageAgentFrontmatterIssues, h as PAGE_AGENT_STRUCTURED_CONTRACT_FIELDS, i as createDocsRenderedHeadingAnchorResolver, m as PAGE_AGENT_CONTRACT_START_MARKER, n as cleanDocsRenderedHeadingLabel, p as PAGE_AGENT_CONTRACT_FIELD_SCHEMA, r as createDocsMarkdownHeadingAnchorResolver, t as applyDocsMarkdownHeadingAnchors, u as withDocsMarkdownRenderableHeadings, v as normalizePageAgentFrontmatter, x as stripGeneratedPageAgentContractMarkdown, y as renderPageAgentContractMarkdown } from "./markdown-sections-7OoA7ylx.mjs";
5
5
  import { AGENT_SKILL_COMPATIBILITY_MAX_LENGTH, AGENT_SKILL_DESCRIPTION_MAX_LENGTH, AGENT_SKILL_FRONTMATTER_FIELDS, AGENT_SKILL_NAME_MAX_LENGTH, DocsAgentSkillFrontmatterError, isDocsAgentSkillName, parseDocsAgentSkillFrontmatter, validateDocsAgentSkillFrontmatter } from "./agent-skills-spec.mjs";
6
- import { A as buildDocsLegacySkillsIndex, C as DOCS_AGENT_MANIFEST_SCHEMA_MEDIA_TYPE, D as buildDocsA2AAgentCard, E as appendDocsDiscoveryLinkHeader, F as isDocsStandardsDiscoveryRequest, I as resolveDocsDiscoveryApiRoute, L as resolveDocsPublishedAgentSkill, M as createDocsStandardsResponse, N as getDocsAgentManifestLinkHeader, O as buildDocsAgentSkillsIndex, P as getDocsDiscoveryLinkHeader, R as resolveDocsStandardsDiscoveryRequest, S as DOCS_AGENT_MANIFEST_FORMAT, T as DOCS_AGENT_MANIFEST_VERSION, _ as DEFAULT_API_CATALOG_FORMAT, a as DEFAULT_A2A_AGENT_CARD_ROUTE, b as DEFAULT_LEGACY_SKILLS_INDEX_ROUTE, c as DEFAULT_AGENT_SKILLS_ARCHIVE_ROUTE_PATTERN, d as DEFAULT_AGENT_SKILLS_ROUTE_PATTERN, f as DEFAULT_AGENT_SKILLS_ROUTE_PREFIX, g as DEFAULT_AGENT_SKILL_RESOURCE_FORMAT, h as DEFAULT_AGENT_SKILL_FORMAT, i as DEFAULT_A2A_AGENT_CARD_FORMAT, k as buildDocsApiCatalog, l as DEFAULT_AGENT_SKILLS_INDEX_FORMAT, m as DEFAULT_AGENT_SKILL_FILE_FORMAT, n as API_CATALOG_MEDIA_TYPE, o as DEFAULT_A2A_PROTOCOL_BINDING, p as DEFAULT_AGENT_SKILL_ARCHIVE_FORMAT, r as API_CATALOG_PROFILE_URI, s as DEFAULT_A2A_PROTOCOL_VERSION, t as AGENT_SKILLS_DISCOVERY_SCHEMA_URI, u as DEFAULT_AGENT_SKILLS_INDEX_ROUTE, v as DEFAULT_API_CATALOG_ROUTE, w as DOCS_AGENT_MANIFEST_SCHEMA_URI, x as DEFAULT_LEGACY_SKILLS_ROUTE_PREFIX, y as DEFAULT_LEGACY_SKILLS_INDEX_FORMAT, z as sha256DocsDiscoveryContent } from "./standards-discovery-BwL5ffGx.mjs";
7
- import { A as GENERATED_AGENT_PROVENANCE_MARKER, B as resolveSidebarFolderIndexBehaviorForPath, F as serializeGeneratedAgentDocument, G as getDocsTelemetryFeatures, H as emitDocsTelemetryEvent, I as stripGeneratedAgentProvenance, J as normalizeDocsTelemetryOrigin, K as inferDocsTelemetryAgentSurface, L as applySidebarFolderIndexBehavior, M as hashGeneratedAgentContent, N as normalizeGeneratedAgentContent, O as digestDocsRetrievalContent, P as parseGeneratedAgentDocument, R as resolvePageSidebarFolderIndexBehavior, U as emitDocsTelemetryMcpToolEvent, V as emitDocsTelemetryAgentSurfaceEvent, W as emitDocsTelemetryProjectEvent, Y as resolveDocsTelemetryConfig, _ as resolveDocsSearchAudience, a as createCustomSearchAdapter, b as resolveSearchRequestConfig, c as createTypesenseSearchAdapter, d as inferDocsAskAIPackageHints, f as normalizeDocsSearchFilters, g as resolveDocsRetrievalLastModified, h as resolveAskAISearchRequestConfig, i as createAlgoliaSearchAdapter, j as GENERATED_AGENT_PROVENANCE_VERSION, k as isDocsRetrievalCanonicalUrl, l as enrichDocsSearchDocumentsWithProvenance, m as performDocsSearchWithMetadata, n as buildDocsRetrievalDigestProjection, o as createMcpSearchAdapter, p as performDocsSearch, q as isLocalDocsTelemetryOrigin, r as buildDocsSearchDocuments, s as createSimpleSearchAdapter, t as buildDocsAskAIContext, u as formatDocsAskAIPackageHints, v as resolveDocsSearchFilters, y as resolveDocsSearchRequest, z as resolveSidebarFolderIndexBehavior } from "./search-BmC8wVr0.mjs";
6
+ import { A as buildDocsLegacySkillsIndex, C as DOCS_AGENT_MANIFEST_SCHEMA_MEDIA_TYPE, D as buildDocsA2AAgentCard, E as appendDocsDiscoveryLinkHeader, F as isDocsStandardsDiscoveryRequest, I as resolveDocsDiscoveryApiRoute, L as resolveDocsPublishedAgentSkill, M as createDocsStandardsResponse, N as getDocsAgentManifestLinkHeader, O as buildDocsAgentSkillsIndex, P as getDocsDiscoveryLinkHeader, R as resolveDocsStandardsDiscoveryRequest, S as DOCS_AGENT_MANIFEST_FORMAT, T as DOCS_AGENT_MANIFEST_VERSION, _ as DEFAULT_API_CATALOG_FORMAT, a as DEFAULT_A2A_AGENT_CARD_ROUTE, b as DEFAULT_LEGACY_SKILLS_INDEX_ROUTE, c as DEFAULT_AGENT_SKILLS_ARCHIVE_ROUTE_PATTERN, d as DEFAULT_AGENT_SKILLS_ROUTE_PATTERN, f as DEFAULT_AGENT_SKILLS_ROUTE_PREFIX, g as DEFAULT_AGENT_SKILL_RESOURCE_FORMAT, h as DEFAULT_AGENT_SKILL_FORMAT, i as DEFAULT_A2A_AGENT_CARD_FORMAT, k as buildDocsApiCatalog, l as DEFAULT_AGENT_SKILLS_INDEX_FORMAT, m as DEFAULT_AGENT_SKILL_FILE_FORMAT, n as API_CATALOG_MEDIA_TYPE, o as DEFAULT_A2A_PROTOCOL_BINDING, p as DEFAULT_AGENT_SKILL_ARCHIVE_FORMAT, r as API_CATALOG_PROFILE_URI, s as DEFAULT_A2A_PROTOCOL_VERSION, t as AGENT_SKILLS_DISCOVERY_SCHEMA_URI, u as DEFAULT_AGENT_SKILLS_INDEX_ROUTE, v as DEFAULT_API_CATALOG_ROUTE, w as DOCS_AGENT_MANIFEST_SCHEMA_URI, x as DEFAULT_LEGACY_SKILLS_ROUTE_PREFIX, y as DEFAULT_LEGACY_SKILLS_INDEX_FORMAT, z as sha256DocsDiscoveryContent } from "./standards-discovery-BKlEnK_H.mjs";
7
+ import { _ as inferDocsTelemetryAgentSurface, a as parseGeneratedAgentDocument, b as resolveDocsTelemetryConfig, c as applySidebarFolderIndexBehavior, d as resolveSidebarFolderIndexBehaviorForPath, f as emitDocsTelemetryAgentSurfaceEvent, g as getDocsTelemetryFeatures, h as emitDocsTelemetryProjectEvent, i as normalizeGeneratedAgentContent, l as resolvePageSidebarFolderIndexBehavior, m as emitDocsTelemetryMcpToolEvent, n as GENERATED_AGENT_PROVENANCE_VERSION, o as serializeGeneratedAgentDocument, p as emitDocsTelemetryEvent, r as hashGeneratedAgentContent, s as stripGeneratedAgentProvenance, t as GENERATED_AGENT_PROVENANCE_MARKER, u as resolveSidebarFolderIndexBehavior, v as isLocalDocsTelemetryOrigin, y as normalizeDocsTelemetryOrigin } from "./agent-provenance-D8UBpnMc.mjs";
8
8
  import { n as resolveDocsLocale, r as resolveDocsPath, t as resolveDocsI18n } from "./i18n-hHVWcflJ.mjs";
9
- import { a as analyzeDocsRobotsTxt, c as renderDocsRobotsGeneratedBlock, d as resolveDocsRobotsRequest, f as upsertDocsRobotsGeneratedBlock, i as DOCS_ROBOTS_GENERATED_BLOCK_START, l as renderDocsRobotsTxt, n as DEFAULT_ROBOTS_TXT_ROUTE, o as createDocsRobotsResponse, r as DOCS_ROBOTS_GENERATED_BLOCK_END, s as getDocsRobotsAllowRoutes, t as DEFAULT_DOCS_AI_ROBOTS_USER_AGENTS, u as resolveDocsRobotsConfig } from "./robots-DaYBoy_A.mjs";
9
+ import { a as analyzeDocsRobotsTxt, c as renderDocsRobotsGeneratedBlock, d as resolveDocsRobotsRequest, f as upsertDocsRobotsGeneratedBlock, i as DOCS_ROBOTS_GENERATED_BLOCK_START, l as renderDocsRobotsTxt, n as DEFAULT_ROBOTS_TXT_ROUTE, o as createDocsRobotsResponse, r as DOCS_ROBOTS_GENERATED_BLOCK_END, s as getDocsRobotsAllowRoutes, t as DEFAULT_DOCS_AI_ROBOTS_USER_AGENTS, u as resolveDocsRobotsConfig } from "./robots-C_v2HK43.mjs";
10
10
  import { a as resolveDocsMetadataBaseUrl, i as renderDocsPageStructuredDataJson, n as buildPageOpenGraph, o as resolveOGImage, r as buildPageTwitter, s as resolveTitle, t as buildDocsPageStructuredData } from "./metadata-N252j5_a.mjs";
11
11
 
12
- export { AGENT_SKILLS_DISCOVERY_SCHEMA_URI, AGENT_SKILL_COMPATIBILITY_MAX_LENGTH, AGENT_SKILL_DESCRIPTION_MAX_LENGTH, AGENT_SKILL_FRONTMATTER_FIELDS, AGENT_SKILL_NAME_MAX_LENGTH, API_CATALOG_MEDIA_TYPE, API_CATALOG_PROFILE_URI, DEFAULT_A2A_AGENT_CARD_FORMAT, DEFAULT_A2A_AGENT_CARD_ROUTE, DEFAULT_A2A_PROTOCOL_BINDING, DEFAULT_A2A_PROTOCOL_VERSION, DEFAULT_AGENTS_MD_ROUTE, DEFAULT_AGENTS_MD_WELL_KNOWN_ROUTE, DEFAULT_AGENT_FEEDBACK_PAYLOAD_SCHEMA, DEFAULT_AGENT_FEEDBACK_ROUTE, DEFAULT_AGENT_MD_ROUTE, DEFAULT_AGENT_MD_WELL_KNOWN_ROUTE, DEFAULT_AGENT_SKILLS_ARCHIVE_ROUTE_PATTERN, DEFAULT_AGENT_SKILLS_INDEX_FORMAT, DEFAULT_AGENT_SKILLS_INDEX_ROUTE, DEFAULT_AGENT_SKILLS_ROUTE_PATTERN, DEFAULT_AGENT_SKILLS_ROUTE_PREFIX, DEFAULT_AGENT_SKILL_ARCHIVE_FORMAT, DEFAULT_AGENT_SKILL_FILE_FORMAT, DEFAULT_AGENT_SKILL_FORMAT, DEFAULT_AGENT_SKILL_RESOURCE_FORMAT, DEFAULT_AGENT_SPEC_ROUTE, DEFAULT_AGENT_SPEC_WELL_KNOWN_JSON_ROUTE, DEFAULT_AGENT_SPEC_WELL_KNOWN_ROUTE, DEFAULT_API_CATALOG_FORMAT, DEFAULT_API_CATALOG_ROUTE, DEFAULT_DOCS_AI_ROBOTS_USER_AGENTS, DEFAULT_DOCS_API_ROUTE, DEFAULT_DOCS_CONFIG_FORMAT, DEFAULT_DOCS_CONFIG_ROUTE, DEFAULT_DOCS_DIAGNOSTICS_FORMAT, DEFAULT_DOCS_DIAGNOSTICS_ROUTE, DEFAULT_LEGACY_SKILLS_INDEX_FORMAT, DEFAULT_LEGACY_SKILLS_INDEX_ROUTE, DEFAULT_LEGACY_SKILLS_ROUTE_PREFIX, DEFAULT_LLMS_FULL_TXT_ROUTE, DEFAULT_LLMS_FULL_TXT_WELL_KNOWN_ROUTE, DEFAULT_LLMS_TXT_MAX_CHARS, DEFAULT_LLMS_TXT_ROUTE, DEFAULT_LLMS_TXT_WELL_KNOWN_ROUTE, DEFAULT_MCP_PROTECTED_RESOURCE_METADATA_ROUTE, DEFAULT_MCP_PUBLIC_ROUTE, DEFAULT_MCP_ROUTE, DEFAULT_MCP_WELL_KNOWN_ROUTE, DEFAULT_OPENAPI_SCHEMA_ROUTE, DEFAULT_ROBOTS_TXT_ROUTE, DEFAULT_SITEMAP_MANIFEST_PATH, DEFAULT_SITEMAP_MD_DOCS_ROUTE, DEFAULT_SITEMAP_MD_ROUTE, DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, DEFAULT_SITEMAP_XML_ROUTE, DEFAULT_SKILL_MD_ROUTE, DEFAULT_SKILL_MD_WELL_KNOWN_ROUTE, DOCS_AGENT_CONTRACT_VERSION, DOCS_AGENT_MANIFEST_FORMAT, DOCS_AGENT_MANIFEST_SCHEMA_MEDIA_TYPE, DOCS_AGENT_MANIFEST_SCHEMA_URI, DOCS_AGENT_MANIFEST_VERSION, DOCS_AGENT_TRACE_EVENT_TYPES, DOCS_AI_AGENT_USER_AGENT_HEADER_PATTERN, DOCS_BOT_LIKE_USER_AGENT_HEADER_PATTERN, DOCS_MARKDOWN_SECTION_INDEX_FORMAT, DOCS_MARKDOWN_SIGNATURE_AGENT_HEADER, DOCS_ROBOTS_GENERATED_BLOCK_END, DOCS_ROBOTS_GENERATED_BLOCK_START, DOCS_TRADITIONAL_BOT_USER_AGENT_HEADER_PATTERN, DocsAgentSkillFrontmatterError, GENERATED_AGENT_PROVENANCE_MARKER, GENERATED_AGENT_PROVENANCE_VERSION, PAGE_AGENT_CONTRACT_END_MARKER, PAGE_AGENT_CONTRACT_FIELDS, PAGE_AGENT_CONTRACT_FIELD_SCHEMA, PAGE_AGENT_CONTRACT_START_MARKER, PAGE_AGENT_STRUCTURED_CONTRACT_FIELDS, acceptsDocsMarkdown, analyzeDocsRobotsTxt, appendDocsDiscoveryLinkHeader, applyDocsMarkdownHeadingAnchors, applySidebarFolderIndexBehavior, buildDocsA2AAgentCard, buildDocsAgentDiscoverySpec, buildDocsAgentFeedbackSchema, buildDocsAgentSkillsIndex, buildDocsApiCatalog, buildDocsAskAIContext, buildDocsConfigMap, buildDocsDiagnostics, buildDocsLegacySkillsIndex, buildDocsMarkdownSectionIndex, buildDocsMcpEndpointCandidates, buildDocsMcpProtectedResourceMetadataRoute, buildDocsPageStructuredData, buildDocsRetrievalDigestProjection, buildDocsSearchDocuments, buildDocsSitemapManifest, buildPageOpenGraph, buildPageTwitter, cleanDocsRenderedHeadingLabel, collectDocsMarkdownSections, createAlgoliaSearchAdapter, createCustomSearchAdapter, createDocsAgentContractCases, createDocsAgentTraceContext, createDocsAgentTraceId, createDocsMarkdownHeadingAnchorResolver, createDocsMarkdownResponse, createDocsRenderedHeadingAnchorResolver, createDocsRobotsResponse, createDocsSitemapResponse, createDocsStandardsDiscoveryResponse, createDocsStandardsResponse, createMcpSearchAdapter, createSimpleSearchAdapter, createTheme, createTypesenseSearchAdapter, deepMerge, defineDocs, detectDocsMarkdownAgentRequest, digestDocsRetrievalContent, emitDocsAgentTraceEvent, emitDocsAnalyticsEvent, emitDocsObservabilityEvent, emitDocsTelemetryAgentSurfaceEvent, emitDocsTelemetryEvent, emitDocsTelemetryMcpToolEvent, emitDocsTelemetryProjectEvent, encodeDocsHeadingTocUrls, enrichDocsSearchDocumentsWithProvenance, estimateReadingTimeMinutes, extendTheme, findDocsAudienceMdxIssues, findDocsMarkdownPage, formatDocsAskAIPackageHints, getDocsAgentManifestLinkHeader, getDocsDiscoveryLinkHeader, getDocsLlmsTxtMaxCharsIssue, getDocsMarkdownCanonicalLinkHeader, getDocsMarkdownVaryHeader, getDocsMcpProtectedResourceMetadataRoutes, getDocsMcpResourcePaths, getDocsRequestAnalyticsProperties, getDocsRobotsAllowRoutes, getDocsTelemetryFeatures, getPageAgentFrontmatterIssues, hasDocsMarkdownSignatureAgent, hasDocsMcpProtectedResourceConfig, hasStructuredPageAgentContract, hashGeneratedAgentContent, inferDocsAskAIPackageHints, inferDocsTelemetryAgentSurface, isDocsAgentDiscoveryRequest, isDocsAgentSkillName, isDocsAgentsRequest, isDocsConfigRequest, isDocsDiagnosticsRequest, isDocsLlmsTxtPublicRequest, isDocsMarkdownSectionIndexRequest, isDocsMcpRequest, isDocsPublicGetRequest, isDocsRetrievalCanonicalUrl, isDocsSkillRequest, isDocsStandardsDiscoveryRequest, isLocalDocsTelemetryOrigin, isolateDocsMarkdownPromptReferences, matchesDocsLlmsTxtSection, normalizeDocsPathSegment, normalizeDocsRelated, normalizeDocsSearchFilters, normalizeDocsTelemetryOrigin, normalizeDocsUrlPath, normalizeGeneratedAgentContent, normalizePageAgentFrontmatter, parseDocsAgentFeedbackData, parseDocsAgentSkillFrontmatter, parseGeneratedAgentDocument, performDocsSearch, performDocsSearchWithMetadata, readDocsSitemapManifestFromContentMap, renderDocsAgentsDocument, renderDocsLlmsTxt, renderDocsMarkdownDocument, renderDocsMarkdownNotFound, renderDocsPageStructuredDataJson, renderDocsRelatedMarkdownLines, renderDocsRobotsGeneratedBlock, renderDocsRobotsTxt, renderDocsSitemapMarkdown, renderDocsSitemapXml, renderDocsSkillDocument, renderPageAgentContractMarkdown, renderPageAgentFrontmatterYamlLines, resolveAskAISearchRequestConfig, resolveChangelogConfig, resolveDocsAgentContractMcpTools, resolveDocsAgentFeedbackConfig, resolveDocsAgentFeedbackRequest, resolveDocsAgentMdxContent, resolveDocsAgentsFormat, resolveDocsAnalyticsConfig, resolveDocsAudienceExposure, resolveDocsAudienceMdxContent, resolveDocsDiscoveryApiRoute, resolveDocsI18n, resolveDocsLlmsTxtFormat, resolveDocsLlmsTxtRequest, resolveDocsLlmsTxtSections, resolveDocsLocale, resolveDocsMarkdownCanonicalUrl, resolveDocsMarkdownRecovery, resolveDocsMarkdownRequest, resolveDocsMarkdownSectionRequest, resolveDocsMetadataBaseUrl, resolveDocsObservabilityConfig, resolveDocsOpenApiDiscoveryConfig, resolveDocsPath, resolveDocsPublishedAgentSkill, resolveDocsRequestApiRoute, resolveDocsRetrievalLastModified, resolveDocsRobotsConfig, resolveDocsRobotsRequest, resolveDocsSearchAudience, resolveDocsSearchFilters, resolveDocsSearchRequest, resolveDocsSitemapConfig, resolveDocsSitemapPageLastmod, resolveDocsSitemapRequest, resolveDocsSkillFormat, resolveDocsStandardsDiscoveryRequest, resolveDocsTelemetryConfig, resolveOGImage, resolvePageReadingTime, resolvePageSidebarFolderIndexBehavior, resolveReadingTimeFromContent, resolveReadingTimeFromSource, resolveReadingTimeOptions, resolveSearchRequestConfig, resolveSidebarFolderIndexBehavior, resolveSidebarFolderIndexBehaviorForPath, resolveTitle, runDocsAgentConformance, selectDocsLlmsTxtContent, selectDocsMarkdownSection, serializeGeneratedAgentDocument, sha256DocsDiscoveryContent, slugifyDocsMarkdownHeading, stripGeneratedAgentProvenance, stripGeneratedPageAgentContractMarkdown, toDocsMarkdownUrl, toDocsSitemapMarkdownUrl, upsertDocsRobotsGeneratedBlock, upsertPageAgentContractMarkdown, validateDocsAgentFeedbackPayload, validateDocsAgentSkillFrontmatter, withDocsMarkdownRenderableHeadings };
12
+ export { AGENT_SKILLS_DISCOVERY_SCHEMA_URI, AGENT_SKILL_COMPATIBILITY_MAX_LENGTH, AGENT_SKILL_DESCRIPTION_MAX_LENGTH, AGENT_SKILL_FRONTMATTER_FIELDS, AGENT_SKILL_NAME_MAX_LENGTH, API_CATALOG_MEDIA_TYPE, API_CATALOG_PROFILE_URI, DEFAULT_A2A_AGENT_CARD_FORMAT, DEFAULT_A2A_AGENT_CARD_ROUTE, DEFAULT_A2A_PROTOCOL_BINDING, DEFAULT_A2A_PROTOCOL_VERSION, DEFAULT_AGENTS_MD_ROUTE, DEFAULT_AGENTS_MD_WELL_KNOWN_ROUTE, DEFAULT_AGENT_FEEDBACK_PAYLOAD_SCHEMA, DEFAULT_AGENT_FEEDBACK_ROUTE, DEFAULT_AGENT_MD_ROUTE, DEFAULT_AGENT_MD_WELL_KNOWN_ROUTE, DEFAULT_AGENT_SKILLS_ARCHIVE_ROUTE_PATTERN, DEFAULT_AGENT_SKILLS_INDEX_FORMAT, DEFAULT_AGENT_SKILLS_INDEX_ROUTE, DEFAULT_AGENT_SKILLS_ROUTE_PATTERN, DEFAULT_AGENT_SKILLS_ROUTE_PREFIX, DEFAULT_AGENT_SKILL_ARCHIVE_FORMAT, DEFAULT_AGENT_SKILL_FILE_FORMAT, DEFAULT_AGENT_SKILL_FORMAT, DEFAULT_AGENT_SKILL_RESOURCE_FORMAT, DEFAULT_AGENT_SPEC_ROUTE, DEFAULT_AGENT_SPEC_WELL_KNOWN_JSON_ROUTE, DEFAULT_AGENT_SPEC_WELL_KNOWN_ROUTE, DEFAULT_API_CATALOG_FORMAT, DEFAULT_API_CATALOG_ROUTE, DEFAULT_DOCS_AI_ROBOTS_USER_AGENTS, DEFAULT_DOCS_API_ROUTE, DEFAULT_DOCS_CONFIG_FORMAT, DEFAULT_DOCS_CONFIG_ROUTE, DEFAULT_DOCS_DIAGNOSTICS_FORMAT, DEFAULT_DOCS_DIAGNOSTICS_ROUTE, DEFAULT_LEGACY_SKILLS_INDEX_FORMAT, DEFAULT_LEGACY_SKILLS_INDEX_ROUTE, DEFAULT_LEGACY_SKILLS_ROUTE_PREFIX, DEFAULT_LLMS_FULL_TXT_ROUTE, DEFAULT_LLMS_FULL_TXT_WELL_KNOWN_ROUTE, DEFAULT_LLMS_TXT_MAX_CHARS, DEFAULT_LLMS_TXT_ROUTE, DEFAULT_LLMS_TXT_WELL_KNOWN_ROUTE, DEFAULT_MCP_PROTECTED_RESOURCE_METADATA_ROUTE, DEFAULT_MCP_PUBLIC_ROUTE, DEFAULT_MCP_ROUTE, DEFAULT_MCP_WELL_KNOWN_ROUTE, DEFAULT_OPENAPI_SCHEMA_ROUTE, DEFAULT_ROBOTS_TXT_ROUTE, DEFAULT_SITEMAP_MANIFEST_PATH, DEFAULT_SITEMAP_MD_DOCS_ROUTE, DEFAULT_SITEMAP_MD_ROUTE, DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, DEFAULT_SITEMAP_XML_ROUTE, DEFAULT_SKILL_MD_ROUTE, DEFAULT_SKILL_MD_WELL_KNOWN_ROUTE, DOCS_AGENT_CONTRACT_VERSION, DOCS_AGENT_MANIFEST_FORMAT, DOCS_AGENT_MANIFEST_SCHEMA_MEDIA_TYPE, DOCS_AGENT_MANIFEST_SCHEMA_URI, DOCS_AGENT_MANIFEST_VERSION, DOCS_AGENT_TRACE_EVENT_TYPES, DOCS_AI_AGENT_USER_AGENT_HEADER_PATTERN, DOCS_BOT_LIKE_USER_AGENT_HEADER_PATTERN, DOCS_CONTENT_CHANGES_FORMAT, DOCS_CONTENT_CHANGES_RESPONSE_VALUE, DOCS_CONTENT_SNAPSHOT_FORMAT, DOCS_MARKDOWN_SECTION_INDEX_FORMAT, DOCS_MARKDOWN_SIGNATURE_AGENT_HEADER, DOCS_ROBOTS_GENERATED_BLOCK_END, DOCS_ROBOTS_GENERATED_BLOCK_START, DOCS_TRADITIONAL_BOT_USER_AGENT_HEADER_PATTERN, DocsAgentSkillFrontmatterError, DocsContentChangesRequestError, DocsPaginationCursorError, DocsSearchRequestError, GENERATED_AGENT_PROVENANCE_MARKER, GENERATED_AGENT_PROVENANCE_VERSION, PAGE_AGENT_CONTRACT_END_MARKER, PAGE_AGENT_CONTRACT_FIELDS, PAGE_AGENT_CONTRACT_FIELD_SCHEMA, PAGE_AGENT_CONTRACT_START_MARKER, PAGE_AGENT_STRUCTURED_CONTRACT_FIELDS, acceptsDocsMarkdown, analyzeDocsRobotsTxt, appendDocsDiscoveryLinkHeader, applyDocsMarkdownHeadingAnchors, applySidebarFolderIndexBehavior, buildDocsA2AAgentCard, buildDocsAgentDiscoverySpec, buildDocsAgentFeedbackSchema, buildDocsAgentSkillsIndex, buildDocsApiCatalog, buildDocsAskAIContext, buildDocsConfigMap, buildDocsContentSnapshot, buildDocsDiagnostics, buildDocsLegacySkillsIndex, buildDocsMarkdownSectionIndex, buildDocsMcpEndpointCandidates, buildDocsMcpProtectedResourceMetadataRoute, buildDocsPageStructuredData, buildDocsRetrievalDigestProjection, buildDocsSearchDocuments, buildDocsSearchFacets, buildDocsSitemapManifest, buildPageOpenGraph, buildPageTwitter, cleanDocsRenderedHeadingLabel, collectDocsMarkdownSections, createAlgoliaSearchAdapter, createCustomSearchAdapter, createDocsAgentContractCases, createDocsAgentTraceContext, createDocsAgentTraceId, createDocsContentChangeFeed, createDocsContentChangesHttpResponse, createDocsMarkdownHeadingAnchorResolver, createDocsMarkdownResponse, createDocsRenderedHeadingAnchorResolver, createDocsRobotsResponse, createDocsSitemapResponse, createDocsStandardsDiscoveryResponse, createDocsStandardsResponse, createMcpSearchAdapter, createSimpleSearchAdapter, createTheme, createTypesenseSearchAdapter, deepMerge, defineDocs, detectDocsMarkdownAgentRequest, digestDocsRetrievalContent, emitDocsAgentTraceEvent, emitDocsAnalyticsEvent, emitDocsObservabilityEvent, emitDocsTelemetryAgentSurfaceEvent, emitDocsTelemetryEvent, emitDocsTelemetryMcpToolEvent, emitDocsTelemetryProjectEvent, encodeDocsHeadingTocUrls, enrichDocsSearchDocumentsWithProvenance, estimateReadingTimeMinutes, extendTheme, findDocsAudienceMdxIssues, findDocsMarkdownPage, formatDocsAskAIPackageHints, getDocsAgentManifestLinkHeader, getDocsDiscoveryLinkHeader, getDocsLlmsTxtMaxCharsIssue, getDocsMarkdownCanonicalLinkHeader, getDocsMarkdownVaryHeader, getDocsMcpProtectedResourceMetadataRoutes, getDocsMcpResourcePaths, getDocsRequestAnalyticsProperties, getDocsRobotsAllowRoutes, getDocsTelemetryFeatures, getPageAgentFrontmatterIssues, hasDocsMarkdownSignatureAgent, hasDocsMcpProtectedResourceConfig, hasStructuredPageAgentContract, hashGeneratedAgentContent, inferDocsAskAIPackageHints, inferDocsTelemetryAgentSurface, isDocsAgentDiscoveryRequest, isDocsAgentSkillName, isDocsAgentsRequest, isDocsConfigRequest, isDocsContentChangesRequest, isDocsDiagnosticsRequest, isDocsLlmsTxtPublicRequest, isDocsMarkdownSectionIndexRequest, isDocsMcpRequest, isDocsPublicGetRequest, isDocsRetrievalCanonicalUrl, isDocsSkillRequest, isDocsStandardsDiscoveryRequest, isLocalDocsTelemetryOrigin, isolateDocsMarkdownPromptReferences, matchesDocsLlmsTxtSection, normalizeDocsPathSegment, normalizeDocsRelated, normalizeDocsSearchFilters, normalizeDocsTelemetryOrigin, normalizeDocsUrlPath, normalizeGeneratedAgentContent, normalizePageAgentFrontmatter, parseDocsAgentFeedbackData, parseDocsAgentSkillFrontmatter, parseGeneratedAgentDocument, performDocsSearch, performDocsSearchWithMetadata, readDocsSitemapManifestFromContentMap, renderDocsAgentsDocument, renderDocsLlmsTxt, renderDocsMarkdownDocument, renderDocsMarkdownNotFound, renderDocsPageStructuredDataJson, renderDocsRelatedMarkdownLines, renderDocsRobotsGeneratedBlock, renderDocsRobotsTxt, renderDocsSitemapMarkdown, renderDocsSitemapXml, renderDocsSkillDocument, renderPageAgentContractMarkdown, renderPageAgentFrontmatterYamlLines, resolveAskAISearchRequestConfig, resolveChangelogConfig, resolveDocsAgentContractMcpTools, resolveDocsAgentFeedbackConfig, resolveDocsAgentFeedbackRequest, resolveDocsAgentMdxContent, resolveDocsAgentsFormat, resolveDocsAnalyticsConfig, resolveDocsAudienceExposure, resolveDocsAudienceMdxContent, resolveDocsContentChangesConfig, resolveDocsContentChangesRequest, resolveDocsDiscoveryApiRoute, resolveDocsI18n, resolveDocsLlmsTxtFormat, resolveDocsLlmsTxtRequest, resolveDocsLlmsTxtSections, resolveDocsLocale, resolveDocsMarkdownCanonicalUrl, resolveDocsMarkdownRecovery, resolveDocsMarkdownRequest, resolveDocsMarkdownSectionRequest, resolveDocsMetadataBaseUrl, resolveDocsObservabilityConfig, resolveDocsOpenApiDiscoveryConfig, resolveDocsPath, resolveDocsPublishedAgentSkill, resolveDocsRequestApiRoute, resolveDocsRetrievalLastModified, resolveDocsRobotsConfig, resolveDocsRobotsRequest, resolveDocsSearchAudience, resolveDocsSearchError, resolveDocsSearchFilters, resolveDocsSearchRequest, resolveDocsSitemapConfig, resolveDocsSitemapPageLastmod, resolveDocsSitemapRequest, resolveDocsSkillFormat, resolveDocsStandardsDiscoveryRequest, resolveDocsTelemetryConfig, resolveOGImage, resolvePageReadingTime, resolvePageSidebarFolderIndexBehavior, resolveReadingTimeFromContent, resolveReadingTimeFromSource, resolveReadingTimeOptions, resolveSearchRequestConfig, resolveSidebarFolderIndexBehavior, resolveSidebarFolderIndexBehaviorForPath, resolveTitle, runDocsAgentConformance, selectDocsLlmsTxtContent, selectDocsMarkdownSection, serializeGeneratedAgentDocument, sha256DocsDiscoveryContent, slugifyDocsMarkdownHeading, stripGeneratedAgentProvenance, stripGeneratedPageAgentContractMarkdown, toDocsMarkdownUrl, toDocsSitemapMarkdownUrl, upsertDocsRobotsGeneratedBlock, upsertPageAgentContractMarkdown, validateDocsAgentFeedbackPayload, validateDocsAgentSkillFrontmatter, withDocsMarkdownRenderableHeadings };
@@ -1,13 +1,13 @@
1
- import "./agent-BHqaZx-X.mjs";
1
+ import "./agent-Ba94vwM2.mjs";
2
2
  import "./markdown-sections-7OoA7ylx.mjs";
3
- import { L as resolveDocsPublishedAgentSkill } from "./standards-discovery-BwL5ffGx.mjs";
4
- import "./search-BmC8wVr0.mjs";
3
+ import { L as resolveDocsPublishedAgentSkill } from "./standards-discovery-BKlEnK_H.mjs";
4
+ import "./agent-provenance-D8UBpnMc.mjs";
5
5
  import { a as resolveDocsMetadataBaseUrl } from "./metadata-N252j5_a.mjs";
6
- import "./sitemap-server-B9LZQ1FE.mjs";
7
- import "./agent-evals-21LZ_uEl.mjs";
6
+ import "./sitemap-server-Dgxs9V6S.mjs";
7
+ import "./agent-evals-C8dkgJMN.mjs";
8
8
  import { createFilesystemDocsMcpSource, resolveDocsMcpConfig, runDocsMcpStdio } from "./mcp.mjs";
9
9
  import "./code-blocks-DnNVNK2M.mjs";
10
- import { t as resolveConfiguredAgentSkills } from "./agent-skills-server-noFn1l_p.mjs";
10
+ import { t as resolveConfiguredAgentSkills } from "./agent-skills-server-B2EXn2QD.mjs";
11
11
  import "./server.mjs";
12
12
  import { _ as resolveDocsContentDir, d as readNavTitle, g as resolveDocsConfigPath, i as hasTopLevelProperty, l as readBooleanProperty, n as extractObjectLiteral, o as loadDocsConfigModuleResult, p as readStringProperty, t as extractNestedObjectLiteral } from "./config-Wcdj-D0a.mjs";
13
13
  import { existsSync, readFileSync } from "node:fs";
package/dist/mcp.d.mts CHANGED
@@ -1,6 +1,6 @@
1
- import { En as DocsTelemetryConfig, Ft as DocsMcpAuthenticate, Kt as DocsObservabilityConfig, Nt as DocsMcpAllowedOrigins, Pt as DocsMcpAuthPrincipal, Rt as DocsMcpConfig, Xt as DocsRetrievalSourceProvenance, Yn as OrderingItem, er as PageAgentFrontmatter, jn as DocsTelemetryFramework, rt as DocsAnalyticsConfig, un as DocsSearchConfig, xn as DocsSearchSourcePage } from "./types-BDRwrExu.mjs";
2
- import { L as DocsPublishedAgentSkill } from "./standards-discovery-DBI1PD7m.mjs";
3
- import { it as DocsMarkdownSectionIndex } from "./agent-cAPjC2jb.mjs";
1
+ import { Bn as DocsTelemetryConfig, Fn as DocsSearchSourcePage, Gn as DocsTelemetryFramework, Ht as DocsMcpAllowedOrigins, Ut as DocsMcpAuthPrincipal, Wt as DocsMcpAuthenticate, it as DocsAnalyticsConfig, lr as OrderingItem, mr as PageAgentFrontmatter, on as DocsRetrievalSourceProvenance, qt as DocsMcpConfig, tn as DocsObservabilityConfig, xn as DocsSearchConfig } from "./types-CpLnwHak.mjs";
2
+ import { z as DocsPublishedAgentSkill } from "./standards-discovery-BWyNgZSs.mjs";
3
+ import { it as DocsMarkdownSectionIndex } from "./agent-CHgWJcK_.mjs";
4
4
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
5
5
 
6
6
  //#region src/mcp.d.ts
@@ -29,6 +29,18 @@ interface DocsMcpPage {
29
29
  }
30
30
  /** Body-free section discovery metadata returned by the `list_page_sections` MCP tool. */
31
31
  type DocsMcpPageSectionIndex = DocsMarkdownSectionIndex;
32
+ interface DocsMcpPagination {
33
+ /** Number of items returned in this page. */
34
+ resultCount: number;
35
+ /** Number of items in the complete filtered result set. */
36
+ total: number;
37
+ hasMore: boolean;
38
+ nextCursor?: string;
39
+ }
40
+ interface DocsMcpPageSectionList extends Omit<DocsMcpPageSectionIndex, "sectionCount" | "sections">, DocsMcpPagination {
41
+ sectionCount: number;
42
+ sections: DocsMcpPageSectionIndex["sections"];
43
+ }
32
44
  interface DocsMcpCodeExample {
33
45
  id: string;
34
46
  page: {
@@ -83,13 +95,22 @@ interface DocsMcpDocsSection {
83
95
  sections: DocsMcpDocsSection[];
84
96
  }
85
97
  interface DocsMcpDocsList {
86
- section?: string;
87
98
  resultCount: number;
99
+ /** Built-in cursor-aware tools always emit this; optional for legacy object producers. */
100
+ total?: number;
101
+ /** Built-in cursor-aware tools always emit this; optional for legacy object producers. */
102
+ hasMore?: boolean;
103
+ nextCursor?: string;
104
+ section?: string;
88
105
  sectionCount: number;
89
106
  pages: DocsMcpDocsPageSummary[];
90
107
  rootPages: DocsMcpDocsPageSummary[];
91
108
  sections: DocsMcpDocsSection[];
92
109
  }
110
+ interface DocsMcpPaginatedDocsList extends DocsMcpDocsList {
111
+ total: number;
112
+ hasMore: boolean;
113
+ }
93
114
  interface DocsMcpConfigSchemaOption {
94
115
  path: string;
95
116
  name: string;
@@ -250,7 +271,8 @@ interface DocsMcpResolvedConfig {
250
271
  readPage: boolean;
251
272
  listTasks?: boolean;
252
273
  readTask?: boolean;
253
- searchDocs: boolean;
274
+ searchDocs: boolean; /** Optional so manually constructed resolved configs from older releases remain assignable. */
275
+ searchFacets?: boolean;
254
276
  getNavigation: boolean;
255
277
  getCodeExamples: boolean;
256
278
  getConfigSchema: boolean;
@@ -315,4 +337,4 @@ declare function getDocsConfigSchema(filters?: {
315
337
  }): DocsMcpConfigSchema;
316
338
  declare function buildDocsMcpContext(options: DocsMcpContextOptions): Promise<DocsMcpContextResult>;
317
339
  //#endregion
318
- export { CreateDocsMcpServerOptions, DEFAULT_DOCS_MCP_CORS_ALLOWED_HEADERS, DEFAULT_DOCS_MCP_CORS_EXPOSED_HEADERS, DEFAULT_DOCS_MCP_CORS_MAX_AGE_SECONDS, DEFAULT_DOCS_MCP_MAX_BODY_BYTES, DOCS_CONFIG_SCHEMA_OPTIONS, DocsMcpAgentContractSummary, DocsMcpCodeExample, DocsMcpConfigSchema, DocsMcpConfigSchemaOption, DocsMcpContextOptions, DocsMcpContextResult, DocsMcpContextSource, DocsMcpDocsList, DocsMcpDocsPageSummary, DocsMcpDocsSection, DocsMcpFolderNode, DocsMcpHttpHandlers, DocsMcpNavigationNode, DocsMcpNavigationTree, DocsMcpPage, DocsMcpPageNode, DocsMcpPageSectionIndex, DocsMcpRequestContext, DocsMcpResolvedConfig, DocsMcpResolvedCorsConfig, DocsMcpResolvedProtectedResourceConfig, DocsMcpResolvedSecurityConfig, DocsMcpSource, DocsMcpTaskSummary, buildDocsMcpContext, createDocsMcpHttpHandler, createDocsMcpServer, createFilesystemDocsMcpSource, getDocsConfigSchema, normalizeDocsMcpRoute, resolveDocsMcpConfig, runDocsMcpStdio };
340
+ export { CreateDocsMcpServerOptions, DEFAULT_DOCS_MCP_CORS_ALLOWED_HEADERS, DEFAULT_DOCS_MCP_CORS_EXPOSED_HEADERS, DEFAULT_DOCS_MCP_CORS_MAX_AGE_SECONDS, DEFAULT_DOCS_MCP_MAX_BODY_BYTES, DOCS_CONFIG_SCHEMA_OPTIONS, DocsMcpAgentContractSummary, DocsMcpCodeExample, DocsMcpConfigSchema, DocsMcpConfigSchemaOption, DocsMcpContextOptions, DocsMcpContextResult, DocsMcpContextSource, DocsMcpDocsList, DocsMcpDocsPageSummary, DocsMcpDocsSection, DocsMcpFolderNode, DocsMcpHttpHandlers, DocsMcpNavigationNode, DocsMcpNavigationTree, DocsMcpPage, DocsMcpPageNode, DocsMcpPageSectionIndex, DocsMcpPageSectionList, DocsMcpPaginatedDocsList, DocsMcpPagination, DocsMcpRequestContext, DocsMcpResolvedConfig, DocsMcpResolvedCorsConfig, DocsMcpResolvedProtectedResourceConfig, DocsMcpResolvedSecurityConfig, DocsMcpSource, DocsMcpTaskSummary, buildDocsMcpContext, createDocsMcpHttpHandler, createDocsMcpServer, createFilesystemDocsMcpSource, getDocsConfigSchema, normalizeDocsMcpRoute, resolveDocsMcpConfig, runDocsMcpStdio };