@farming-labs/docs 0.2.81 → 0.2.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{agent-DEjfHgU-.d.mts → agent-WS4GXGh6.d.mts} +2 -2
- package/dist/{agent-evals-CGOA7jJ0.mjs → agent-evals-Burrzyam.mjs} +18 -3
- package/dist/{agent-export-BYWO6fES.mjs → agent-export-whKAZQUI.mjs} +4 -4
- package/dist/agent-skills-bundle.d.mts +1 -1
- package/dist/{agent-skills-server-B2EXn2QD.mjs → agent-skills-server-D5qYU19g.mjs} +16 -7
- package/dist/{agent-skills-server-CclBBz1M.d.mts → agent-skills-server-q4B9kRGg.d.mts} +2 -2
- package/dist/agent-skills-vite.d.mts +3 -3
- package/dist/agent-skills-vite.mjs +1 -1
- package/dist/{agents-CDs7ZFdb.mjs → agents-B_980VCs.mjs} +3 -3
- package/dist/cli/index.mjs +12 -12
- package/dist/client/react.d.mts +1 -1
- package/dist/{cloud-ask-ai-AUhHTMe6.d.mts → cloud-ask-ai-BQAeHkpZ.d.mts} +1 -1
- package/dist/{codeblocks-CFuurVIH.mjs → codeblocks-CPA6Ae5r.mjs} +1 -1
- package/dist/docs-cloud-server.d.mts +2 -2
- package/dist/docs-cloud-server.mjs +1 -1
- package/dist/{doctor-CALb10jP.mjs → doctor-WjuyRWYT.mjs} +26 -9
- package/dist/{golden-evaluations-I9yRlYJy.mjs → golden-evaluations-B2GHnoFa.mjs} +306 -2
- package/dist/index.d.mts +5 -5
- package/dist/{mcp-DUxk8lGS.mjs → mcp-bhIsgqxy.mjs} +3 -3
- package/dist/mcp.d.mts +3 -3
- package/dist/mcp.mjs +64 -12
- package/dist/{retrieval-digest-D0pnOmQ8.d.mts → retrieval-digest-DRRHA1B3.d.mts} +2 -2
- package/dist/{review-CaDaE4Pq.mjs → review-2e4TXoGS.mjs} +69 -8
- package/dist/{search-D7s_gagx.mjs → search-DfB3LQ4s.mjs} +3 -3
- package/dist/server.d.mts +5 -5
- package/dist/server.mjs +4 -4
- package/dist/{sitemap-BMRfmpEp.mjs → sitemap-AcwP8jIo.mjs} +3 -3
- package/dist/{standards-discovery-BWz35hS6.d.mts → standards-discovery-DPUEcUmb.d.mts} +1 -1
- package/dist/{types-CoohpxFz.d.mts → types-lGEHcx_6.d.mts} +39 -1
- package/package.json +1 -1
- /package/dist/{cloud-ask-ai-sbpjOR2K.mjs → cloud-ask-ai-BRBK4RBG.mjs} +0 -0
- /package/dist/{code-blocks-DnNVNK2M.mjs → code-blocks-0wjOsqdJ.mjs} +0 -0
|
@@ -3,12 +3,13 @@ import { _ as hasStructuredPageAgentContract, f as PAGE_AGENT_CONTRACT_FIELDS, g
|
|
|
3
3
|
import { I as resolveDocsDiscoveryApiRoute, _ as DEFAULT_API_CATALOG_FORMAT, d as DEFAULT_AGENT_SKILLS_ROUTE_PATTERN, h as DEFAULT_AGENT_SKILL_FORMAT, l as DEFAULT_AGENT_SKILLS_INDEX_FORMAT, u as DEFAULT_AGENT_SKILLS_INDEX_ROUTE, v as DEFAULT_API_CATALOG_ROUTE } from "./standards-discovery-BKlEnK_H.mjs";
|
|
4
4
|
import "./content-change-hydration-DpQ0KdAD.mjs";
|
|
5
5
|
import { a as resolveDocsMetadataBaseUrl } from "./metadata-N252j5_a.mjs";
|
|
6
|
-
import
|
|
6
|
+
import "./agent-skills-server-D5qYU19g.mjs";
|
|
7
|
+
import { c as resolveDocsReviewConfig, o as ensureDocsReviewWorkflow, s as readDocsReviewConfigFromSource, t as runDocsGoldenTasks } from "./agent-evals-Burrzyam.mjs";
|
|
7
8
|
import { createFilesystemDocsMcpSource, getDocsConfigSchema, resolveDocsMcpConfig } from "./mcp.mjs";
|
|
8
|
-
import "./code-blocks-
|
|
9
|
+
import "./code-blocks-0wjOsqdJ.mjs";
|
|
9
10
|
import { _ as resolveDocsContentDir, g as resolveDocsConfigPath, h as readTopLevelStringProperty, s as loadDocsConfigModuleResultWithProjectEnv } from "./config-Wcdj-D0a.mjs";
|
|
10
11
|
import { t as detectFramework } from "./utils-DpiIioYb.mjs";
|
|
11
|
-
import { a as
|
|
12
|
+
import { a as createAgentUsefulnessPagesFromMcp, i as analyzeAgentUsefulness, n as analyzeConfiguredAgentSkillsProgressiveDisclosure, o as extractAgentBlocks, r as analyzeAgentSurfaceDrift, t as resolveGoldenEvaluationInput } from "./golden-evaluations-B2GHnoFa.mjs";
|
|
12
13
|
import matter from "gray-matter";
|
|
13
14
|
import { existsSync, lstatSync, readFileSync, readdirSync } from "node:fs";
|
|
14
15
|
import path from "node:path";
|
|
@@ -133,6 +134,20 @@ async function runReview(options = {}) {
|
|
|
133
134
|
rootDir,
|
|
134
135
|
contentDir
|
|
135
136
|
});
|
|
137
|
+
let skillDisclosure;
|
|
138
|
+
let skillDisclosureError;
|
|
139
|
+
if (config?.agent?.skills) try {
|
|
140
|
+
skillDisclosure = analyzeConfiguredAgentSkillsProgressiveDisclosure(config.agent.skills, { rootDir });
|
|
141
|
+
} catch (error) {
|
|
142
|
+
skillDisclosureError = error instanceof Error ? error.message : String(error);
|
|
143
|
+
}
|
|
144
|
+
const relevantSkillFiles = selectReviewSkillFiles({
|
|
145
|
+
rootDir,
|
|
146
|
+
configPath: path.relative(rootDir, configPath),
|
|
147
|
+
changedFiles,
|
|
148
|
+
report: skillDisclosure
|
|
149
|
+
});
|
|
150
|
+
const reviewedFiles = [...new Set([...relevantFiles, ...relevantSkillFiles])].sort();
|
|
136
151
|
const mcpSource = createFilesystemDocsMcpSource({
|
|
137
152
|
rootDir,
|
|
138
153
|
entry,
|
|
@@ -152,6 +167,30 @@ async function runReview(options = {}) {
|
|
|
152
167
|
files: relevantFiles,
|
|
153
168
|
review
|
|
154
169
|
});
|
|
170
|
+
if (skillDisclosureError) pushFinding(findings, review, {
|
|
171
|
+
rule: "agentSkills",
|
|
172
|
+
code: "agent-skills-analysis-failed",
|
|
173
|
+
severity: "error",
|
|
174
|
+
file: toPosixPath(path.relative(rootDir, configPath)),
|
|
175
|
+
line: 1,
|
|
176
|
+
message: `Configured Agent Skills could not be analyzed: ${skillDisclosureError}`
|
|
177
|
+
});
|
|
178
|
+
if (skillDisclosure) {
|
|
179
|
+
const relevantSkillSet = new Set(relevantSkillFiles);
|
|
180
|
+
for (const issue of skillDisclosure.issues) {
|
|
181
|
+
const file = toPosixPath(path.relative(rootDir, issue.filePath));
|
|
182
|
+
const skillFile = toPosixPath(path.relative(rootDir, issue.skillPath));
|
|
183
|
+
if (!relevantSkillSet.has(file) && !relevantSkillSet.has(skillFile)) continue;
|
|
184
|
+
pushFinding(findings, review, {
|
|
185
|
+
rule: "agentSkills",
|
|
186
|
+
code: issue.code,
|
|
187
|
+
severity: issue.severity === "error" ? "error" : issue.severity === "warning" ? "warn" : "suggestion",
|
|
188
|
+
file,
|
|
189
|
+
line: issue.line,
|
|
190
|
+
message: issue.message
|
|
191
|
+
});
|
|
192
|
+
}
|
|
193
|
+
}
|
|
155
194
|
const relevantSet = new Set(relevantFiles);
|
|
156
195
|
for (const issue of usefulness.findings) {
|
|
157
196
|
if (!relevantSet.has(issue.file)) continue;
|
|
@@ -274,7 +313,7 @@ async function runReview(options = {}) {
|
|
|
274
313
|
score,
|
|
275
314
|
threshold: review.score.threshold,
|
|
276
315
|
mode,
|
|
277
|
-
reviewedFiles
|
|
316
|
+
reviewedFiles,
|
|
278
317
|
changedFiles,
|
|
279
318
|
findings,
|
|
280
319
|
usefulness: usefulness.metrics,
|
|
@@ -513,7 +552,7 @@ function printReviewReport(report) {
|
|
|
513
552
|
console.log(`Threshold: ${report.threshold}`);
|
|
514
553
|
console.log(`Mode: ${modeLabel}`);
|
|
515
554
|
console.log(`Changed files: ${report.changedFiles.length}`);
|
|
516
|
-
console.log(`Reviewed docs files: ${report.reviewedFiles.length}`);
|
|
555
|
+
console.log(`Reviewed docs and skill files: ${report.reviewedFiles.length}`);
|
|
517
556
|
console.log(`Findings: ${counts.error} error${counts.error === 1 ? "" : "s"}, ${counts.warn} warning${counts.warn === 1 ? "" : "s"}, ${counts.suggestion} suggestion${counts.suggestion === 1 ? "" : "s"}`);
|
|
518
557
|
if (report.usefulness) console.log(`Useful agent-only blocks: ${report.usefulness.agentBlocks.useful}/${report.usefulness.agentBlocks.total}; task-complete pages: ${report.usefulness.taskCompleteness.completePages}/${report.usefulness.actionablePages}`);
|
|
519
558
|
if (report.evaluations) console.log(`Golden tasks: ${report.evaluations.status === "unmeasured" ? "unmeasured" : `${report.evaluations.passedTaskCount}/${report.evaluations.taskCount} passed (${report.evaluations.score}/100)`}`);
|
|
@@ -577,6 +616,25 @@ function selectReviewFiles(options) {
|
|
|
577
616
|
}
|
|
578
617
|
return Array.from(selected).sort();
|
|
579
618
|
}
|
|
619
|
+
function selectReviewSkillFiles(options) {
|
|
620
|
+
if (!options.report) return [];
|
|
621
|
+
const normalizedConfigPath = toPosixPath(options.configPath);
|
|
622
|
+
const configChanged = options.changedFiles.includes(normalizedConfigPath);
|
|
623
|
+
const changed = new Set(options.changedFiles.map(toPosixPath));
|
|
624
|
+
const selected = /* @__PURE__ */ new Set();
|
|
625
|
+
for (const skill of options.report.skills) {
|
|
626
|
+
const skillPath = toPosixPath(path.relative(options.rootDir, skill.skillPath));
|
|
627
|
+
const skillDir = `${toPosixPath(path.dirname(skillPath)).replace(/\/+$/u, "")}/`;
|
|
628
|
+
if (!(configChanged || changed.has(skillPath) || [...changed].some((file) => file.startsWith(skillDir)))) continue;
|
|
629
|
+
selected.add(skillPath);
|
|
630
|
+
for (const file of changed) if (file.startsWith(skillDir)) selected.add(file);
|
|
631
|
+
for (const issue of options.report.issues) {
|
|
632
|
+
if (issue.skillPath !== skill.skillPath) continue;
|
|
633
|
+
selected.add(toPosixPath(path.relative(options.rootDir, issue.filePath)));
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
return [...selected].sort();
|
|
637
|
+
}
|
|
580
638
|
function getChangedFiles(rootDir, options) {
|
|
581
639
|
const ranges = [
|
|
582
640
|
options.base && options.head ? `${options.base}...${options.head}` : void 0,
|
|
@@ -585,17 +643,20 @@ function getChangedFiles(rootDir, options) {
|
|
|
585
643
|
void 0
|
|
586
644
|
].filter((range, index, allRanges) => range !== void 0 || index === allRanges.length - 1);
|
|
587
645
|
for (const range of ranges) try {
|
|
646
|
+
const repoRoot = execFileSync("git", ["rev-parse", "--show-toplevel"], {
|
|
647
|
+
cwd: rootDir,
|
|
648
|
+
encoding: "utf-8"
|
|
649
|
+
}).trim();
|
|
588
650
|
const args = [
|
|
589
651
|
"diff",
|
|
590
|
-
"--relative",
|
|
591
652
|
"--name-only",
|
|
592
653
|
"--diff-filter=ACMRTUXB"
|
|
593
654
|
];
|
|
594
655
|
if (range) args.push(range);
|
|
595
656
|
const files = execFileSync("git", args, {
|
|
596
|
-
cwd:
|
|
657
|
+
cwd: repoRoot,
|
|
597
658
|
encoding: "utf-8"
|
|
598
|
-
}).split(/\r?\n/).map((file) => file.trim()).filter(Boolean).map(toPosixPath);
|
|
659
|
+
}).split(/\r?\n/).map((file) => file.trim()).filter(Boolean).map((file) => toPosixPath(path.relative(rootDir, path.resolve(repoRoot, file))));
|
|
599
660
|
if (files.length > 0 || range === void 0) return files;
|
|
600
661
|
} catch {}
|
|
601
662
|
return [];
|
|
@@ -5,10 +5,10 @@ import "./content-change-hydration-DpQ0KdAD.mjs";
|
|
|
5
5
|
import { t as resolveDocsI18n } from "./i18n-hHVWcflJ.mjs";
|
|
6
6
|
import { a as resolveDocsMetadataBaseUrl } from "./metadata-N252j5_a.mjs";
|
|
7
7
|
import "./sitemap-server-BefXEox6.mjs";
|
|
8
|
-
import "./agent-
|
|
8
|
+
import "./agent-skills-server-D5qYU19g.mjs";
|
|
9
|
+
import "./agent-evals-Burrzyam.mjs";
|
|
9
10
|
import { createFilesystemDocsMcpSource } from "./mcp.mjs";
|
|
10
|
-
import "./code-blocks-
|
|
11
|
-
import "./agent-skills-server-B2EXn2QD.mjs";
|
|
11
|
+
import "./code-blocks-0wjOsqdJ.mjs";
|
|
12
12
|
import "./server.mjs";
|
|
13
13
|
import { _ as resolveDocsContentDir, c as loadProjectEnv, g as resolveDocsConfigPath, h as readTopLevelStringProperty, s as loadDocsConfigModuleResultWithProjectEnv } from "./config-Wcdj-D0a.mjs";
|
|
14
14
|
import { readFileSync } from "node:fs";
|
package/dist/server.d.mts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { An as
|
|
2
|
-
import { n as resolveConfiguredAgentSkills, r as resolveConfiguredAgentSkillsSync, t as ResolveConfiguredAgentSkillsOptions } from "./agent-skills-server-
|
|
1
|
+
import { An as DocsSearchFilterInput, B as DocsAgentEvaluationAnswerRunner, Bn as DocsSitemapConfig, Bt as DocsContentSnapshotDocument, Cn as DocsSearchConfig, Et as DocsCodeBlocksPlannerProvider, F as DocsAgentContentChangesConfig, Fn as DocsSearchResult, Ft as DocsContentChangeSnapshotLoader, H as DocsAgentEvaluationSurface, I as DocsAgentEvaluationAnswerInput, It as DocsContentChangeSnapshotSaver, J as DocsAgentGoldenExampleVerification, L as DocsAgentEvaluationAnswerProvider, Ln as DocsSearchSourcePage, Lt as DocsContentChangedDocument, Mn as DocsSearchQuery, Mt as DocsConfig, Nn as DocsSearchRequest, Nt as DocsContentChangeDocument, Pn as DocsSearchResponse, Pt as DocsContentChangeSnapshotContext, Q as DocsAgentGoldenTaskFilters, R as DocsAgentEvaluationAnswerRequest, Rn as DocsSearchWarning, Rt as DocsContentChangesResponse, U as DocsAgentEvaluationTaskInput, V as DocsAgentEvaluationSourceReference, X as DocsAgentGoldenTask, Y as DocsAgentGoldenExpectedExample, Z as DocsAgentGoldenTaskExpectation, _t as DocsAskAIFeedbackValue, a as ApiReferenceRenderer, an as DocsObservabilityEventInput, at as DocsAgentTraceStatus, bn as DocsSearchAdapterFactory, cn as DocsRetrievalSourceProvenance, ct as DocsAnalyticsEventInput, dn as DocsReviewCiMode, fn as DocsReviewConfig, gt as DocsAskAIFeedbackMessage, ht as DocsAskAIFeedbackData, in as DocsObservabilityEvent, it as DocsAgentTraceEventType, jn as DocsSearchFilters, kn as DocsSearchFilterField, kt as DocsCodeBlocksValidateConfig, ln as DocsRetrievalSourceScope, mt as DocsAskAIFeedbackConfig, on as DocsPaginatedSearchResponse, ot as DocsAnalyticsConfig, pn as DocsReviewRulesConfig, q as DocsAgentGoldenAnswerExpectation, rn as DocsObservabilityConfig, rr as McpDocsSearchConfig, rt as DocsAgentTraceEventInput, st as DocsAnalyticsEvent, vn as DocsSearchAdapter, vt as DocsAskAIMcpConfig, wn as DocsSearchDocument, xn as DocsSearchAdapterPage, yn as DocsSearchAdapterContext, z as DocsAgentEvaluationAnswerResult, zn as DocsSearchWarningCode, zt as DocsContentSnapshot } from "./types-lGEHcx_6.mjs";
|
|
2
|
+
import { n as resolveConfiguredAgentSkills, r as resolveConfiguredAgentSkillsSync, t as ResolveConfiguredAgentSkillsOptions } from "./agent-skills-server-q4B9kRGg.mjs";
|
|
3
3
|
import { renderDocsAgentSkillsBundle } from "./agent-skills-vite.mjs";
|
|
4
|
-
import { i as isDocsCloudAskAIProvider, n as DocsCloudAskAIResponseOptions, r as createDocsCloudAskAIResponse, t as DocsCloudAskAIConfig } from "./cloud-ask-ai-
|
|
4
|
+
import { i as isDocsCloudAskAIProvider, n as DocsCloudAskAIResponseOptions, r as createDocsCloudAskAIResponse, t as DocsCloudAskAIConfig } from "./cloud-ask-ai-BQAeHkpZ.mjs";
|
|
5
5
|
import { DocsCloudAskAIOptions, DocsCloudPublicConfig, DocsCloudRouteHandlerOptions, DocsCloudRouteHandlers, DocsCloudRuntimeEnv, DocsCloudRuntimeValue, DocsCloudServer, DocsCloudServerOptions, DocsCloudTrackEventOptions, createDocsCloudRouteHandler, createDocsCloudServer } from "./docs-cloud-server.mjs";
|
|
6
|
-
import { A as SerializedOpenDocsProvider, B as DocsAgentTraceContext, C as DEFAULT_OPEN_DOCS_PROMPT, D as PromptAction, E as DEFAULT_PROMPT_PROVIDER_TEMPLATES, F as serializeDocsIcon, G as emitDocsAgentTraceEvent, H as ResolvedDocsObservabilityConfig, I as serializeDocsIconRegistry, J as getDocsRequestAnalyticsProperties, K as emitDocsAnalyticsEvent, L as serializeOpenDocsProvider, M as parsePromptStringArray, N as resolvePromptProviderChoices, O as PromptProviderChoice, P as sanitizePromptText, R as serializeOpenDocsProviders, S as toDocsSitemapMarkdownUrl, T as DEFAULT_OPEN_DOCS_TARGET, U as createDocsAgentTraceContext, V as ResolvedDocsAnalyticsConfig, W as createDocsAgentTraceId, X as resolveDocsObservabilityConfig, Y as resolveDocsAnalyticsConfig, _ as renderDocsSitemapMarkdown, a as DEFAULT_SITEMAP_MD_DOCS_ROUTE, b as resolveDocsSitemapPageLastmod, c as DEFAULT_SITEMAP_XML_ROUTE, d as DocsSitemapManifestPage, f as DocsSitemapPageInput, g as readDocsSitemapManifestFromContentMap, h as createDocsSitemapResponse, i as DEFAULT_SITEMAP_MANIFEST_PATH, j as normalizePromptProviderName, k as SerializeOpenDocsProviderOptions, l as DocsSitemapFormat, m as buildDocsSitemapManifest, n as isDocsRetrievalCanonicalUrl, o as DEFAULT_SITEMAP_MD_ROUTE, p as DocsSitemapResolvedConfig, q as emitDocsObservabilityEvent, r as DocsPaginationCursorError, s as DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, t as digestDocsRetrievalContent, u as DocsSitemapManifest, v as renderDocsSitemapXml, w as DEFAULT_OPEN_DOCS_PROVIDER_IDS, x as resolveDocsSitemapRequest, y as resolveDocsSitemapConfig, z as DOCS_AGENT_TRACE_EVENT_TYPES } from "./retrieval-digest-
|
|
7
|
-
import { $n as PerformDocsSearchOptions, An as MIN_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET, Bn as createDocsContentChangeFeed, Cn as DocsContentChangeHydrationBudget, Cr as resolveSearchRequestConfig, Dn as DocsContentChangeHydrationTombstone, Dr as ExtractedDocsMarkdownPromptBlocks, En as DocsContentChangeHydrationSection, Er as DocsMarkdownPromptBlock, Fn as DocsContentChangeFeed, Gn as resolveDocsContentChangesRequest, Hn as isDocsContentChangeGeneration, In as DocsContentChangesRequest, Jn as DocsLocalMcpSearchRuntimeConfig, Kn as BuildDocsContentSnapshotOptions, Ln as DocsContentChangesRequestError, Mn as DOCS_CONTENT_CHANGES_FORMAT, Nn as DOCS_CONTENT_CHANGES_RESPONSE_VALUE, On as HydrateDocsContentChangesOptions, Or as extractDocsMarkdownPromptBlocks, Pn as DOCS_CONTENT_SNAPSHOT_FORMAT, Qn as EnrichDocsSearchDocumentsWithProvenanceOptions, Rn as DocsResolvedContentChangesConfig, Sn as DOCS_CONTENT_CHANGE_HYDRATION_FORMAT, Sr as resolveLocalDocsMcpSearchConfig, Tn as DocsContentChangeHydrationResponse, Un as isDocsContentChangesRequest, Vn as createDocsContentChangesHttpResponse, Wn as resolveDocsContentChangesConfig, Xn as DocsSearchRequestError, Yn as DocsLocalMcpSearchRuntimeInput, Zn as DocsSearchRequestResolutionOptions, _r as resolveDocsRetrievalLastModified, ar as createAlgoliaSearchAdapter, br as resolveDocsSearchFilters, cr as createSimpleSearchAdapter, dr as formatDocsAskAIPackageHints, er as buildDocsAskAIContext, fr as inferDocsAskAIPackageHints, gr as resolveAskAISearchRequestConfig, hr as performDocsSearchWithMetadata, jn as hydrateDocsContentChanges, kn as MAX_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET, lr as createTypesenseSearchAdapter, mr as performDocsSearch, nr as buildDocsRetrievalDigestProjection, or as createCustomSearchAdapter, pr as normalizeDocsSearchFilters, rr as buildDocsSearchDocuments, sr as createMcpSearchAdapter, tr as buildDocsContentSnapshot, ur as enrichDocsSearchDocumentsWithProvenance, vr as resolveDocsSearchAudience, wn as DocsContentChangeHydrationContent, xn as DEFAULT_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET, xr as resolveDocsSearchRequest, yr as resolveDocsSearchError, zn as ResolveDocsContentChangesOptions } from "./agent-
|
|
6
|
+
import { A as SerializedOpenDocsProvider, B as DocsAgentTraceContext, C as DEFAULT_OPEN_DOCS_PROMPT, D as PromptAction, E as DEFAULT_PROMPT_PROVIDER_TEMPLATES, F as serializeDocsIcon, G as emitDocsAgentTraceEvent, H as ResolvedDocsObservabilityConfig, I as serializeDocsIconRegistry, J as getDocsRequestAnalyticsProperties, K as emitDocsAnalyticsEvent, L as serializeOpenDocsProvider, M as parsePromptStringArray, N as resolvePromptProviderChoices, O as PromptProviderChoice, P as sanitizePromptText, R as serializeOpenDocsProviders, S as toDocsSitemapMarkdownUrl, T as DEFAULT_OPEN_DOCS_TARGET, U as createDocsAgentTraceContext, V as ResolvedDocsAnalyticsConfig, W as createDocsAgentTraceId, X as resolveDocsObservabilityConfig, Y as resolveDocsAnalyticsConfig, _ as renderDocsSitemapMarkdown, a as DEFAULT_SITEMAP_MD_DOCS_ROUTE, b as resolveDocsSitemapPageLastmod, c as DEFAULT_SITEMAP_XML_ROUTE, d as DocsSitemapManifestPage, f as DocsSitemapPageInput, g as readDocsSitemapManifestFromContentMap, h as createDocsSitemapResponse, i as DEFAULT_SITEMAP_MANIFEST_PATH, j as normalizePromptProviderName, k as SerializeOpenDocsProviderOptions, l as DocsSitemapFormat, m as buildDocsSitemapManifest, n as isDocsRetrievalCanonicalUrl, o as DEFAULT_SITEMAP_MD_ROUTE, p as DocsSitemapResolvedConfig, q as emitDocsObservabilityEvent, r as DocsPaginationCursorError, s as DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, t as digestDocsRetrievalContent, u as DocsSitemapManifest, v as renderDocsSitemapXml, w as DEFAULT_OPEN_DOCS_PROVIDER_IDS, x as resolveDocsSitemapRequest, y as resolveDocsSitemapConfig, z as DOCS_AGENT_TRACE_EVENT_TYPES } from "./retrieval-digest-DRRHA1B3.mjs";
|
|
7
|
+
import { $n as PerformDocsSearchOptions, An as MIN_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET, Bn as createDocsContentChangeFeed, Cn as DocsContentChangeHydrationBudget, Cr as resolveSearchRequestConfig, Dn as DocsContentChangeHydrationTombstone, Dr as ExtractedDocsMarkdownPromptBlocks, En as DocsContentChangeHydrationSection, Er as DocsMarkdownPromptBlock, Fn as DocsContentChangeFeed, Gn as resolveDocsContentChangesRequest, Hn as isDocsContentChangeGeneration, In as DocsContentChangesRequest, Jn as DocsLocalMcpSearchRuntimeConfig, Kn as BuildDocsContentSnapshotOptions, Ln as DocsContentChangesRequestError, Mn as DOCS_CONTENT_CHANGES_FORMAT, Nn as DOCS_CONTENT_CHANGES_RESPONSE_VALUE, On as HydrateDocsContentChangesOptions, Or as extractDocsMarkdownPromptBlocks, Pn as DOCS_CONTENT_SNAPSHOT_FORMAT, Qn as EnrichDocsSearchDocumentsWithProvenanceOptions, Rn as DocsResolvedContentChangesConfig, Sn as DOCS_CONTENT_CHANGE_HYDRATION_FORMAT, Sr as resolveLocalDocsMcpSearchConfig, Tn as DocsContentChangeHydrationResponse, Un as isDocsContentChangesRequest, Vn as createDocsContentChangesHttpResponse, Wn as resolveDocsContentChangesConfig, Xn as DocsSearchRequestError, Yn as DocsLocalMcpSearchRuntimeInput, Zn as DocsSearchRequestResolutionOptions, _r as resolveDocsRetrievalLastModified, ar as createAlgoliaSearchAdapter, br as resolveDocsSearchFilters, cr as createSimpleSearchAdapter, dr as formatDocsAskAIPackageHints, er as buildDocsAskAIContext, fr as inferDocsAskAIPackageHints, gr as resolveAskAISearchRequestConfig, hr as performDocsSearchWithMetadata, jn as hydrateDocsContentChanges, kn as MAX_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET, lr as createTypesenseSearchAdapter, mr as performDocsSearch, nr as buildDocsRetrievalDigestProjection, or as createCustomSearchAdapter, pr as normalizeDocsSearchFilters, rr as buildDocsSearchDocuments, sr as createMcpSearchAdapter, tr as buildDocsContentSnapshot, ur as enrichDocsSearchDocumentsWithProvenance, vr as resolveDocsSearchAudience, wn as DocsContentChangeHydrationContent, xn as DEFAULT_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET, xr as resolveDocsSearchRequest, yr as resolveDocsSearchError, zn as ResolveDocsContentChangesOptions } from "./agent-WS4GXGh6.mjs";
|
|
8
8
|
import { CreateDocsMcpServerOptions, DEFAULT_DOCS_MCP_CONTENT_CHANGE_POLL_INTERVAL_MS, 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, DOCS_MCP_CONTENT_CHANGES_CURRENT_URI, DOCS_MCP_CONTENT_CHANGES_URI_TEMPLATE, DocsMcpAgentContractSummary, DocsMcpCodeExample, DocsMcpConfigSchema, DocsMcpConfigSchemaOption, DocsMcpContextResult, DocsMcpContextSource, DocsMcpDocsList, DocsMcpDocsPageSummary, DocsMcpDocsSection, DocsMcpHttpHandlers, DocsMcpNavigationNode, DocsMcpNavigationTree, DocsMcpPage, DocsMcpPageSectionIndex, DocsMcpPageSectionList, DocsMcpPaginatedDocsList, DocsMcpPagination, DocsMcpRequestContext, DocsMcpResolvedConfig, DocsMcpResolvedCorsConfig, DocsMcpResolvedProtectedResourceConfig, DocsMcpResolvedSecurityConfig, DocsMcpSource, DocsMcpTaskSummary, createDocsMcpHttpHandler, createDocsMcpServer, createFilesystemDocsMcpSource, getDocsConfigSchema, normalizeDocsMcpRoute, resolveDocsMcpConfig, runDocsMcpStdio } from "./mcp.mjs";
|
|
9
9
|
|
|
10
10
|
//#region src/code-group-mdx.d.ts
|
package/dist/server.mjs
CHANGED
|
@@ -4,12 +4,12 @@ import "./markdown-sections-7OoA7ylx.mjs";
|
|
|
4
4
|
import "./standards-discovery-BKlEnK_H.mjs";
|
|
5
5
|
import { a as hydrateDocsContentChanges, i as MIN_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET, n as DOCS_CONTENT_CHANGE_HYDRATION_FORMAT, r as MAX_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET, t as DEFAULT_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET } from "./content-change-hydration-DpQ0KdAD.mjs";
|
|
6
6
|
import { C as resolveApiReferenceOpenApiDiscovery, S as resolveApiReferenceConfig, T as remarkCodeGroup, _ as buildApiReferenceOpenApiDocument, a as DEFAULT_PROMPT_PROVIDER_TEMPLATES, b as buildApiReferenceScalarCss, c as resolvePromptProviderChoices, d as serializeDocsIconRegistry, f as serializeOpenDocsProvider, g as buildApiReferenceHtmlDocumentAsync, h as buildApiReferenceHtmlDocument, i as DEFAULT_OPEN_DOCS_TARGET, l as sanitizePromptText, m as DEFAULT_API_REFERENCE_OPENAPI_ROUTE, n as DEFAULT_OPEN_DOCS_PROMPT, o as normalizePromptProviderName, p as serializeOpenDocsProviders, r as DEFAULT_OPEN_DOCS_PROVIDER_IDS, s as parsePromptStringArray, t as readDocsSitemapManifest, u as serializeDocsIcon, v as buildApiReferenceOpenApiDocumentAsync, w as resolveApiReferenceRenderer, x as isApiReferenceOpenApiRequest, y as buildApiReferencePageTitle } from "./sitemap-server-BefXEox6.mjs";
|
|
7
|
-
import {
|
|
7
|
+
import { i as resolveConfiguredAgentSkillsSync, r as resolveConfiguredAgentSkills } from "./agent-skills-server-D5qYU19g.mjs";
|
|
8
|
+
import { a as buildDocsReviewWorkflowPathFilters, c as resolveDocsReviewConfig, i as buildDocsReviewWorkflow, n as DEFAULT_DOCS_REVIEW_SCORE_THRESHOLD, o as ensureDocsReviewWorkflow, r as DEFAULT_DOCS_REVIEW_WORKFLOW_PATH, s as readDocsReviewConfigFromSource, t as runDocsGoldenTasks } from "./agent-evals-Burrzyam.mjs";
|
|
8
9
|
import { DEFAULT_DOCS_MCP_CONTENT_CHANGE_POLL_INTERVAL_MS, 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, DOCS_MCP_CONTENT_CHANGES_CURRENT_URI, DOCS_MCP_CONTENT_CHANGES_URI_TEMPLATE, createDocsMcpHttpHandler, createDocsMcpServer, createFilesystemDocsMcpSource, getDocsConfigSchema, normalizeDocsMcpRoute, resolveDocsMcpConfig, runDocsMcpStdio } from "./mcp.mjs";
|
|
9
|
-
import { n as isDocsCloudAskAIProvider, t as createDocsCloudAskAIResponse } from "./cloud-ask-ai-
|
|
10
|
+
import { n as isDocsCloudAskAIProvider, t as createDocsCloudAskAIResponse } from "./cloud-ask-ai-BRBK4RBG.mjs";
|
|
10
11
|
import { createDocsCloudRouteHandler, createDocsCloudServer } from "./docs-cloud-server.mjs";
|
|
11
|
-
import "./code-blocks-
|
|
12
|
-
import { n as resolveConfiguredAgentSkillsSync, t as resolveConfiguredAgentSkills } from "./agent-skills-server-B2EXn2QD.mjs";
|
|
12
|
+
import "./code-blocks-0wjOsqdJ.mjs";
|
|
13
13
|
import { renderDocsAgentSkillsBundle } from "./agent-skills-vite.mjs";
|
|
14
14
|
|
|
15
15
|
export { DEFAULT_API_REFERENCE_OPENAPI_ROUTE, DEFAULT_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET, DEFAULT_DOCS_MCP_CONTENT_CHANGE_POLL_INTERVAL_MS, 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, DEFAULT_DOCS_REVIEW_SCORE_THRESHOLD, DEFAULT_DOCS_REVIEW_WORKFLOW_PATH, DEFAULT_OPEN_DOCS_PROMPT, DEFAULT_OPEN_DOCS_PROVIDER_IDS, DEFAULT_OPEN_DOCS_TARGET, DEFAULT_PROMPT_PROVIDER_TEMPLATES, DEFAULT_SITEMAP_MANIFEST_PATH, DEFAULT_SITEMAP_MD_DOCS_ROUTE, DEFAULT_SITEMAP_MD_ROUTE, DEFAULT_SITEMAP_MD_WELL_KNOWN_ROUTE, DEFAULT_SITEMAP_XML_ROUTE, DOCS_AGENT_TRACE_EVENT_TYPES, DOCS_CONFIG_SCHEMA_OPTIONS, DOCS_CONTENT_CHANGES_FORMAT, DOCS_CONTENT_CHANGES_RESPONSE_VALUE, DOCS_CONTENT_CHANGE_HYDRATION_FORMAT, DOCS_CONTENT_SNAPSHOT_FORMAT, DOCS_MCP_CONTENT_CHANGES_CURRENT_URI, DOCS_MCP_CONTENT_CHANGES_URI_TEMPLATE, DocsContentChangesRequestError, DocsPaginationCursorError, DocsSearchRequestError, MAX_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET, MIN_DOCS_CONTENT_CHANGE_HYDRATION_TOKEN_BUDGET, buildApiReferenceHtmlDocument, buildApiReferenceHtmlDocumentAsync, buildApiReferenceOpenApiDocument, buildApiReferenceOpenApiDocumentAsync, buildApiReferencePageTitle, buildApiReferenceScalarCss, buildDocsAskAIContext, buildDocsContentSnapshot, buildDocsRetrievalDigestProjection, buildDocsReviewWorkflow, buildDocsReviewWorkflowPathFilters, buildDocsSearchDocuments, buildDocsSitemapManifest, createAlgoliaSearchAdapter, createCustomSearchAdapter, createDocsAgentTraceContext, createDocsAgentTraceId, createDocsCloudAskAIResponse, createDocsCloudRouteHandler, createDocsCloudServer, createDocsContentChangeFeed, createDocsContentChangesHttpResponse, createDocsMcpHttpHandler, createDocsMcpServer, createDocsSitemapResponse, createFilesystemDocsMcpSource, createMcpSearchAdapter, createSimpleSearchAdapter, createTypesenseSearchAdapter, digestDocsRetrievalContent, emitDocsAgentTraceEvent, emitDocsAnalyticsEvent, emitDocsObservabilityEvent, enrichDocsSearchDocumentsWithProvenance, ensureDocsReviewWorkflow, extractDocsMarkdownPromptBlocks, formatDocsAskAIPackageHints, getDocsConfigSchema, getDocsRequestAnalyticsProperties, hydrateDocsContentChanges, inferDocsAskAIPackageHints, isApiReferenceOpenApiRequest, isDocsCloudAskAIProvider, isDocsContentChangeGeneration, isDocsContentChangesRequest, isDocsRetrievalCanonicalUrl, normalizeDocsMcpRoute, normalizeDocsSearchFilters, normalizePromptProviderName, parsePromptStringArray, performDocsSearch, performDocsSearchWithMetadata, readDocsReviewConfigFromSource, readDocsSitemapManifest, readDocsSitemapManifestFromContentMap, remarkCodeGroup, renderDocsAgentSkillsBundle, renderDocsSitemapMarkdown, renderDocsSitemapXml, resolveApiReferenceConfig, resolveApiReferenceOpenApiDiscovery, resolveApiReferenceRenderer, resolveAskAISearchRequestConfig, resolveConfiguredAgentSkills, resolveConfiguredAgentSkillsSync, resolveDocsAnalyticsConfig, resolveDocsContentChangesConfig, resolveDocsContentChangesRequest, resolveDocsMcpConfig, resolveDocsObservabilityConfig, resolveDocsRetrievalLastModified, resolveDocsReviewConfig, resolveDocsSearchAudience, resolveDocsSearchError, resolveDocsSearchFilters, resolveDocsSearchRequest, resolveDocsSitemapConfig, resolveDocsSitemapPageLastmod, resolveDocsSitemapRequest, resolveLocalDocsMcpSearchConfig, resolvePromptProviderChoices, resolveSearchRequestConfig, runDocsGoldenTasks, runDocsMcpStdio, sanitizePromptText, serializeDocsIcon, serializeDocsIconRegistry, serializeOpenDocsProvider, serializeOpenDocsProviders, toDocsSitemapMarkdownUrl };
|
|
@@ -3,10 +3,10 @@ import "./markdown-sections-7OoA7ylx.mjs";
|
|
|
3
3
|
import "./standards-discovery-BKlEnK_H.mjs";
|
|
4
4
|
import "./content-change-hydration-DpQ0KdAD.mjs";
|
|
5
5
|
import "./sitemap-server-BefXEox6.mjs";
|
|
6
|
-
import "./agent-
|
|
6
|
+
import "./agent-skills-server-D5qYU19g.mjs";
|
|
7
|
+
import "./agent-evals-Burrzyam.mjs";
|
|
7
8
|
import { createFilesystemDocsMcpSource } from "./mcp.mjs";
|
|
8
|
-
import "./code-blocks-
|
|
9
|
-
import "./agent-skills-server-B2EXn2QD.mjs";
|
|
9
|
+
import "./code-blocks-0wjOsqdJ.mjs";
|
|
10
10
|
import "./server.mjs";
|
|
11
11
|
import { _ as resolveDocsContentDir, a as loadDocsConfigModule, d as readNavTitle, g as resolveDocsConfigPath, h as readTopLevelStringProperty, l as readBooleanProperty, p as readStringProperty, t as extractNestedObjectLiteral } from "./config-Wcdj-D0a.mjs";
|
|
12
12
|
import { t as detectFramework } from "./utils-DpiIioYb.mjs";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as DocsAgentA2ASecurityScheme, M as DocsAgentA2ASkill, O as DocsAgentA2AProtocolBinding, h as DocsAgentA2AConfig, k as DocsAgentA2ASecurityRequirement, m as DocsAgentA2ACapabilities } from "./types-
|
|
1
|
+
import { A as DocsAgentA2ASecurityScheme, M as DocsAgentA2ASkill, O as DocsAgentA2AProtocolBinding, h as DocsAgentA2AConfig, k as DocsAgentA2ASecurityRequirement, m as DocsAgentA2ACapabilities } from "./types-lGEHcx_6.mjs";
|
|
2
2
|
|
|
3
3
|
//#region src/standards-discovery.d.ts
|
|
4
4
|
declare const DEFAULT_API_CATALOG_ROUTE = "/.well-known/api-catalog";
|
|
@@ -2841,6 +2841,42 @@ interface DocsAgentEvaluationsConfig {
|
|
|
2841
2841
|
interface DocsAgentSkillsConfig {
|
|
2842
2842
|
/** Project-relative skill file, skill directory, or collection directory paths. */
|
|
2843
2843
|
paths: string | readonly string[];
|
|
2844
|
+
/**
|
|
2845
|
+
* Thresholds used by `docs doctor --agent` and `docs review` to keep skills
|
|
2846
|
+
* progressively disclosed and executable without loading avoidable context.
|
|
2847
|
+
*/
|
|
2848
|
+
progressiveDisclosure?: DocsAgentSkillsProgressiveDisclosureConfig;
|
|
2849
|
+
}
|
|
2850
|
+
type DocsAgentSkillsCompatibilityPolicy = "when-needed" | "always" | "off";
|
|
2851
|
+
interface DocsAgentSkillsProgressiveDisclosureConfig {
|
|
2852
|
+
/** Recommended maximum size of the complete SKILL.md document. @default 500 */
|
|
2853
|
+
maxSkillLines?: number;
|
|
2854
|
+
/**
|
|
2855
|
+
* Approximate token budget for the SKILL.md instructions after frontmatter.
|
|
2856
|
+
* Detailed material should move to `references/` when this is exceeded.
|
|
2857
|
+
*
|
|
2858
|
+
* @default 5000
|
|
2859
|
+
*/
|
|
2860
|
+
instructionTokenBudget?: number;
|
|
2861
|
+
/**
|
|
2862
|
+
* Maximum local Markdown reference hops from SKILL.md.
|
|
2863
|
+
* `1` permits SKILL.md -> references/guide.md but flags deeper chains.
|
|
2864
|
+
*
|
|
2865
|
+
* @default 1
|
|
2866
|
+
*/
|
|
2867
|
+
maxReferenceDepth?: number;
|
|
2868
|
+
/**
|
|
2869
|
+
* When compatibility frontmatter is expected.
|
|
2870
|
+
*
|
|
2871
|
+
* - `"when-needed"`: require it when scripts or environment/tool requirements are present
|
|
2872
|
+
* - `"always"`: require it for every configured skill
|
|
2873
|
+
* - `"off"`: do not diagnose missing compatibility metadata
|
|
2874
|
+
*
|
|
2875
|
+
* @default "when-needed"
|
|
2876
|
+
*/
|
|
2877
|
+
compatibility?: DocsAgentSkillsCompatibilityPolicy;
|
|
2878
|
+
/** Diagnose scripts without dependency and validation guidance. @default true */
|
|
2879
|
+
checkScripts?: boolean;
|
|
2844
2880
|
}
|
|
2845
2881
|
/** Concise array shorthand for `agent.skills.paths`. */
|
|
2846
2882
|
type DocsAgentSkillsInput = string | readonly string[] | DocsAgentSkillsConfig;
|
|
@@ -3114,6 +3150,8 @@ interface DocsReviewRulesConfig {
|
|
|
3114
3150
|
agentSurfaceDrift?: DocsReviewSeverity;
|
|
3115
3151
|
/** Run configured agent golden tasks and report failed or unmeasured behavior. */
|
|
3116
3152
|
goldenTasks?: DocsReviewSeverity;
|
|
3153
|
+
/** Check configured Agent Skills for progressive disclosure and executable guidance. */
|
|
3154
|
+
agentSkills?: DocsReviewSeverity;
|
|
3117
3155
|
}
|
|
3118
3156
|
interface DocsReviewScoreConfig {
|
|
3119
3157
|
/**
|
|
@@ -3813,4 +3851,4 @@ interface DocsConfig {
|
|
|
3813
3851
|
og?: OGConfig;
|
|
3814
3852
|
}
|
|
3815
3853
|
//#endregion
|
|
3816
|
-
export {
|
|
3854
|
+
export { DocsAgentSkillsCompatibilityPolicy as $, LlmsTxtConfig as $n, DocsMcpSecurityConfig as $t, DocsAgentA2ASecurityScheme as A, DocsSearchFilterInput as An, SidebarPageNode as Ar, DocsCodeBlocksValidationMode as At, DocsAgentEvaluationAnswerRunner as B, DocsSitemapConfig as Bn, DocsContentSnapshotDocument as Bt, DocsAgentA2AOAuthDeviceCodeFlow as C, DocsSearchConfig as Cn, ReadingTimeFormat as Cr, DocsCloudPublishConfig as Ct, DocsAgentA2AOpenIdConnectSecurityScheme as D, DocsSearchFacetValue as Dn, SidebarFolderIndexBehavior as Dr, DocsCodeBlocksRunnerConfig as Dt, DocsAgentA2AOAuthPasswordFlow as E, DocsSearchFacet as En, SidebarConfig as Er, DocsCodeBlocksPlannerProvider as Et, DocsAgentContentChangesConfig as F, DocsSearchResult as Fn, TypographyConfig as Fr, DocsContentChangeSnapshotLoader as Ft, DocsAgentFeedbackContext as G, DocsTelemetryEventType as Gn, DocsMcpAuthPrincipal as Gt, DocsAgentEvaluationSurface as H, DocsTelemetryConfig as Hn, DocsFeedbackValue as Ht, DocsAgentEvaluationAnswerInput as I, DocsSearchResultType as In, UIConfig as Ir, DocsContentChangeSnapshotSaver as It, DocsAgentGoldenExampleVerification as J, DocsTheme as Jn, DocsMcpAuthenticateResult as Jt, DocsAgentFeedbackData as K, DocsTelemetryFeatures as Kn, DocsMcpAuthenticate as Kt, DocsAgentEvaluationAnswerProvider as L, DocsSearchSourcePage as Ln, DocsContentChangedDocument as Lt, DocsAgentA2ASkill as M, DocsSearchQuery as Mn, SimpleDocsSearchConfig as Mr, DocsConfig as Mt, DocsAgentCompactConfig as N, DocsSearchRequest as Nn, ThemeToggleConfig as Nr, DocsContentChangeDocument as Nt, DocsAgentA2AProtocolBinding as O, DocsSearchFacetsResponse as On, SidebarFolderNode as Or, DocsCodeBlocksRunnerProvider as Ot, DocsAgentConfig as P, DocsSearchResponse as Pn, TypesenseDocsSearchConfig as Pr, DocsContentChangeSnapshotContext as Pt, DocsAgentGoldenTaskFilters as Q, LastUpdatedConfig as Qn, DocsMcpProtectedResourceConfig as Qt, DocsAgentEvaluationAnswerRequest as R, DocsSearchWarning as Rn, DocsContentChangesResponse as Rt, DocsAgentA2AOAuthClientCredentialsFlow as S, DocsSearchChunkingConfig as Sn, ReadingTimeConfig as Sr, DocsCloudPreviewConfig as St, DocsAgentA2AOAuthImplicitFlow as T, DocsSearchEmbeddingsConfig as Tn, SidebarComponentProps as Tr, DocsCodeBlocksPlannerConfig as Tt, DocsAgentEvaluationTaskInput as U, DocsTelemetryEvent as Un, DocsI18nConfig as Ut, DocsAgentEvaluationSourceReference as V, DocsTelemetryAgentSurface as Vn, DocsFeedbackData as Vt, DocsAgentEvaluationsConfig as W, DocsTelemetryEventInput as Wn, DocsMcpAllowedOrigins as Wt, DocsAgentGoldenTask as X, FontStyle as Xn, DocsMcpCorsConfig as Xt, DocsAgentGoldenExpectedExample as Y, FeedbackConfig as Yn, DocsMcpConfig as Yt, DocsAgentGoldenTaskExpectation as Z, GithubConfig as Zn, DocsMcpOriginContext as Zt, DocsAgentA2AHttpAuthSecurityScheme as _, DocsRobotsRule as _n, PageAgentVerification as _r, DocsAskAIFeedbackValue as _t, ApiReferenceRenderer as a, DocsObservabilityEventInput as an, OpenDocsConfig as ar, DocsAgentTraceStatus as at, DocsAgentA2AOAuth2SecurityScheme as b, DocsSearchAdapterFactory as bn, PageSidebarFrontmatter as br, DocsCloudConfig as bt, ChangelogFrontmatter as c, DocsRetrievalSourceProvenance as cn, OpenDocsProviderId as cr, DocsAnalyticsEventInput as ct, CopyMarkdownFormat as d, DocsReviewCiMode as dn, OrderingItem as dr, DocsAnalyticsSource as dt, DocsMcpToolsConfig as en, LlmsTxtMaxCharsConfig as er, DocsAgentSkillsConfig as et, CustomDocsSearchConfig as f, DocsReviewConfig as fn, PageActionsConfig as fr, DocsAskAIActionData as ft, DocsAgentA2AExtension as g, DocsRobotsConfig as gn, PageAgentFrontmatter as gr, DocsAskAIFeedbackMessage as gt, DocsAgentA2AConfig as h, DocsReviewSeverity as hn, PageAgentFailureMode as hr, DocsAskAIFeedbackData as ht, ApiReferenceConfig as i, DocsObservabilityEvent as in, OGConfig as ir, DocsAgentTraceEventType as it, DocsAgentA2ASecurityScopeList as j, DocsSearchFilters as jn, SidebarTree as jr, DocsCodeBlocksValidationPolicy as jt, DocsAgentA2ASecurityRequirement as k, DocsSearchFilterField as kn, SidebarNode as kr, DocsCodeBlocksValidateConfig as kt, CodeBlockCopyData as l, DocsRetrievalSourceScope as ln, OpenDocsTarget as lr, DocsAnalyticsEventType as lt, DocsAgentA2ACapabilities as m, DocsReviewScoreConfig as mn, PageAgentCommand as mr, DocsAskAIFeedbackConfig as mt, AgentFeedbackConfig as n, DocsNav as nn, LlmsTxtSectionConfig as nr, DocsAgentSkillsProgressiveDisclosureConfig as nt, BreadcrumbConfig as o, DocsPaginatedSearchResponse as on, OpenDocsProvider as or, DocsAnalyticsConfig as ot, DocsAgentA2AApiKeySecurityScheme as p, DocsReviewRulesConfig as pn, PageAgentAppliesTo as pr, DocsAskAIActionType as pt, DocsAgentGoldenAnswerExpectation as q, DocsTelemetryFramework as qn, DocsMcpAuthenticateContext as qt, AlgoliaDocsSearchConfig as r, DocsObservabilityConfig as rn, McpDocsSearchConfig as rr, DocsAgentTraceEventInput as rt, ChangelogConfig as s, DocsRelatedItem as sn, OpenDocsProviderConfig as sr, DocsAnalyticsEvent as st, AIConfig as t, DocsMetadata as tn, LlmsTxtMaxCharsMode as tr, DocsAgentSkillsInput as tt, CopyMarkdownConfig as u, DocsReviewCiConfig as un, OpenGraphImage as ur, DocsAnalyticsInput as ut, DocsAgentA2AInterfaceConfig as v, DocsSearchAdapter as vn, PageFrontmatter as vr, DocsAskAIMcpConfig as vt, DocsAgentA2AOAuthFlows as w, DocsSearchDocument as wn, ResolvedDocsRelatedLink as wr, DocsCodeBlocksConfig as wt, DocsAgentA2AOAuthAuthorizationCodeFlow as x, DocsSearchAdapterPage as xn, PageTwitter as xr, DocsCloudFeatureConfig as xt, DocsAgentA2AMutualTlsSecurityScheme as y, DocsSearchAdapterContext as yn, PageOpenGraph as yr, DocsCloudApiKeyConfig as yt, DocsAgentEvaluationAnswerResult as z, DocsSearchWarningCode as zn, DocsContentSnapshot as zt };
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|