@farming-labs/docs 0.2.106 → 0.2.108
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-CaCWThBY.mjs → agent--fSgaVIK.mjs} +207 -12
- package/dist/{agent-DCTGj6J7.mjs → agent-BDrflLmt.mjs} +1 -1
- package/dist/{agent-evals-D-sPJfXz.mjs → agent-evals-3m5FXStK.mjs} +26 -7
- package/dist/{agent-export-GcTZPLfB.mjs → agent-export-CSdby81L.mjs} +6 -6
- package/dist/agent-skills-bundle.d.mts +1 -1
- package/dist/{agent-skills-server-D34054x5.d.mts → agent-skills-server-CF6iVTBR.d.mts} +2 -2
- package/dist/agent-skills-vite.d.mts +3 -3
- package/dist/{agents-e1SYT64z.mjs → agents-DDt41QR8.mjs} +5 -5
- package/dist/{analytics-aeXwEvQX.d.mts → analytics-CwXxM9oL.d.mts} +1 -1
- package/dist/{authoring-Do87QzBd.mjs → authoring-ct8s0Z_X.mjs} +3 -3
- package/dist/{authoring-mcp-Be7quE5R.mjs → authoring-mcp-Wy-h93DM.mjs} +1 -1
- package/dist/browser.d.mts +2 -2
- package/dist/cli/index.d.mts +2 -1
- package/dist/cli/index.mjs +40 -28
- package/dist/client/react.d.mts +1 -1
- package/dist/{cloud-ask-ai-BqfiQaNZ.d.mts → cloud-ask-ai-C9dvEBpW.d.mts} +1 -1
- package/dist/{content-change-hydration-CoYRs3pC.d.mts → content-change-hydration-CDuohygf.d.mts} +2 -2
- package/dist/docs-cloud-server.d.mts +2 -2
- package/dist/{doctor-CtK1CRPj.mjs → doctor-DESIZy7v.mjs} +126 -30
- package/dist/{golden-evaluations-De4KwoYr.mjs → golden-evaluations-Dc06CZM-.mjs} +4 -1
- package/dist/index.d.mts +6 -6
- package/dist/index.mjs +4 -4
- package/dist/{mcp-DsjWxF7g.mjs → mcp-CC74oNj3.mjs} +5 -5
- package/dist/mcp.d.mts +3 -3
- package/dist/mcp.mjs +16 -2
- package/dist/{openapi-mcp-DQ3xptKo.mjs → openapi-mcp-CFWUsMUr.mjs} +1 -1
- package/dist/{prompt-references-1Wce71c7.mjs → prompt-references-DVhk8W6r.mjs} +2 -2
- package/dist/{retrieval-digest-DyNRD-mt.d.mts → retrieval-digest-VUlhYMUW.d.mts} +10 -3
- package/dist/{review-XI9FXeos.mjs → review-glShh1or.mjs} +4 -4
- package/dist/{robots-CzKesbdX.mjs → robots-D6RgVpll.mjs} +2 -2
- package/dist/{robots-BOjWB1ky.mjs → robots-dNbBnlVh.mjs} +1 -1
- package/dist/{search-DwAoC9X7.mjs → search-BOOiOwTS.mjs} +5 -5
- package/dist/server.d.mts +6 -6
- package/dist/server.mjs +5 -5
- package/dist/{sidebar-CJze8SBi.d.mts → sidebar-Bne72SU-.d.mts} +1 -1
- package/dist/{sitemap-DOaJIKJf.mjs → sitemap-Ck1YKSAJ.mjs} +5 -5
- package/dist/{sitemap-server-NeVu8W38.mjs → sitemap-server-BKNIqgvq.mjs} +1 -1
- package/dist/{skills-BILSESek.mjs → skills-Bucp3wjq.mjs} +5 -5
- package/dist/{standards-discovery-Xm84bS4M.d.mts → standards-discovery-CjyUCxdy.d.mts} +1 -1
- package/dist/{types-QhYMnKvb.d.mts → types-BkAk6B2d.d.mts} +13 -1
- package/package.json +1 -1
|
@@ -2901,6 +2901,8 @@ interface DocsAgentCompactConfig {
|
|
|
2901
2901
|
* Preserve JSON objects during compression when supported by the provider.
|
|
2902
2902
|
*/
|
|
2903
2903
|
protectJson?: boolean;
|
|
2904
|
+
/** Project-relative JSON manifest for hash-bound reviewed compaction exceptions. */
|
|
2905
|
+
reviewManifestPath?: string;
|
|
2904
2906
|
}
|
|
2905
2907
|
interface DocsAgentGoldenTaskFilters {
|
|
2906
2908
|
/** Limit retrieval to a framework such as `nextjs`, `astro`, or `nuxt`. */
|
|
@@ -2941,6 +2943,16 @@ interface DocsAgentGoldenTaskExpectation {
|
|
|
2941
2943
|
answer?: DocsAgentGoldenAnswerExpectation;
|
|
2942
2944
|
/** Adversarial retrieval and answer-safety assertions. */
|
|
2943
2945
|
safety?: DocsAgentGoldenSafetyExpectation;
|
|
2946
|
+
/** Declare whether runtime example execution is meaningful for this task's confidence coverage. */
|
|
2947
|
+
coverage?: DocsAgentGoldenCoverageExpectation;
|
|
2948
|
+
}
|
|
2949
|
+
type DocsAgentGoldenCoverageApplicability = "applicable" | "not-applicable";
|
|
2950
|
+
interface DocsAgentGoldenCoverageExpectation {
|
|
2951
|
+
/**
|
|
2952
|
+
* Exclude runtime execution from this task's coverage denominator only when executing an
|
|
2953
|
+
* example would not meaningfully validate the task. Defaults to `"applicable"`.
|
|
2954
|
+
*/
|
|
2955
|
+
executableExamples?: DocsAgentGoldenCoverageApplicability;
|
|
2944
2956
|
}
|
|
2945
2957
|
interface DocsAgentGoldenPromptInjectionExpectation {
|
|
2946
2958
|
/** Canary instruction fragments that must be present in retrieved context. */
|
|
@@ -4133,4 +4145,4 @@ interface DocsConfig {
|
|
|
4133
4145
|
og?: OGConfig;
|
|
4134
4146
|
}
|
|
4135
4147
|
//#endregion
|
|
4136
|
-
export {
|
|
4148
|
+
export { DocsAgentGoldenExpectedExample as $, DocsSearchFacetsResponse as $n, PageFrontmatter as $r, DocsMcpAllowedOrigins as $t, DocsAgentA2AProtocolBinding as A, DocsRetrievalSourceScope as An, LastUpdatedConfig as Ar, DocsCloudFeatureConfig as At, DocsAgentEvaluationAnswerRequest as B, DocsSearchAdapterContext as Bn, OpenDocsProviderId as Br, DocsCodeBlocksValidationPolicy as Bt, DocsAgentA2AOAuthAuthorizationCodeFlow as C, DocsOpenApiMcpConfig as Cn, DocsTelemetryEventType as Cr, DocsAskAIFeedbackConfig as Ct, DocsAgentA2AOAuthImplicitFlow as D, DocsPaginatedSearchResponse as Dn, FeedbackConfig as Dr, DocsAskAIMcpConfig as Dt, DocsAgentA2AOAuthFlows as E, DocsPageAccessPolicy as En, DocsTheme as Er, DocsAskAIFeedbackValue as Et, DocsAgentCompactConfig as F, DocsReviewScoreConfig as Fn, McpDocsSearchConfig as Fr, DocsCodeBlocksPlannerProvider as Ft, DocsAgentEvaluationTaskInput as G, DocsSearchAmbiguityResolution as Gn, PageActionInstallSkillsConfig as Gr, DocsContentChangeSnapshotSaver as Gt, DocsAgentEvaluationAnswerRunner as H, DocsSearchAdapterPage as Hn, OpenGraphImage as Hr, DocsContentChangeDocument as Ht, DocsAgentConfig as I, DocsReviewSeverity as In, OGConfig as Ir, DocsCodeBlocksRunnerConfig as It, DocsAgentFeedbackData as J, DocsSearchDocument as Jn, PageAgentAppliesTo as Jr, DocsContentSnapshot as Jt, DocsAgentEvaluationsConfig as K, DocsSearchChunkingConfig as Kn, PageActionMcpProvider as Kr, DocsContentChangedDocument as Kt, DocsAgentContentChangesConfig as L, DocsRobotsConfig as Ln, OpenDocsConfig as Lr, DocsCodeBlocksRunnerProvider as Lt, DocsAgentA2ASecurityScheme as M, DocsReviewCiMode as Mn, LlmsTxtMaxCharsConfig as Mr, DocsCloudPublishConfig as Mt, DocsAgentA2ASecurityScopeList as N, DocsReviewConfig as Nn, LlmsTxtMaxCharsMode as Nr, DocsCodeBlocksConfig as Nt, DocsAgentA2AOAuthPasswordFlow as O, DocsRelatedItem as On, FontStyle as Or, DocsCloudApiKeyConfig as Ot, DocsAgentA2ASkill as P, DocsReviewRulesConfig as Pn, LlmsTxtSectionConfig as Pr, DocsCodeBlocksPlannerConfig as Pt, DocsAgentGoldenExampleVerification as Q, DocsSearchFacetValue as Qn, PageAgentVerification as Qr, DocsI18nConfig as Qt, DocsAgentEvaluationAnswerInput as R, DocsRobotsRule as Rn, OpenDocsProvider as Rr, DocsCodeBlocksValidateConfig as Rt, DocsAgentA2AOAuth2SecurityScheme as S, DocsOkfTrustTier as Sn, DocsTelemetryEventInput as Sr, DocsAskAIActionType as St, DocsAgentA2AOAuthDeviceCodeFlow as T, DocsOpenApiMcpHeaders as Tn, DocsTelemetryFramework as Tr, DocsAskAIFeedbackMessage as Tt, DocsAgentEvaluationSourceReference as U, DocsSearchAmbiguityDecision as Un, OrderingItem as Ur, DocsContentChangeSnapshotContext as Ut, DocsAgentEvaluationAnswerResult as V, DocsSearchAdapterFactory as Vn, OpenDocsTarget as Vr, DocsConfig as Vt, DocsAgentEvaluationSurface as W, DocsSearchAmbiguityDecisionStatus as Wn, PageActionConnectMcpConfig as Wr, DocsContentChangeSnapshotLoader as Wt, DocsAgentGoldenAuthenticatedContentExpectation as X, DocsSearchExplanation as Xn, PageAgentFailureMode as Xr, DocsFeedbackData as Xt, DocsAgentGoldenAnswerExpectation as Y, DocsSearchEmbeddingsConfig as Yn, PageAgentCommand as Yr, DocsContentSnapshotDocument as Yt, DocsAgentGoldenCoverageApplicability as Z, DocsSearchFacet as Zn, PageAgentFrontmatter as Zr, DocsFeedbackValue as Zt, DocsAgentA2AConfig as _, UIConfig as _i, DocsOkfConfig as _n, DocsSearchWarningCode as _r, DocsAnalyticsEventInput as _t, ApiReferenceRenderer as a, ResolvedDocsRelatedLink as ai, DocsMcpCorsConfig as an, DocsSearchMatchField as ar, DocsAgentGoldenTask as at, DocsAgentA2AInterfaceConfig as b, DocsOkfTrustMetadata as bn, DocsTelemetryConfig as br, DocsAnalyticsSource as bt, ChangelogFrontmatter as c, SidebarFolderIndexBehavior as ci, DocsMcpProtectedResourceConfig as cn, DocsSearchRankingReason as cr, DocsAgentSkillsCompatibilityPolicy as ct, CopyMarkdownFormat as d, SidebarPageNode as di, DocsMetadata as dn, DocsSearchRequest as dr, DocsAgentSkillsProgressiveDisclosureConfig as dt, PageOpenGraph as ei, DocsMcpAuthPrincipal as en, DocsSearchFilterDecision as er, DocsAgentGoldenFreshnessExpectation as et, CustomDocsSearchConfig as f, SidebarTree as fi, DocsNav as fn, DocsSearchResponse as fr, DocsAgentTraceEventInput as ft, DocsAgentA2ACapabilities as g, TypographyConfig as gi, DocsOkfActorTimestamp as gn, DocsSearchWarning as gr, DocsAnalyticsEvent as gt, DocsAgentA2AApiKeySecurityScheme as h, TypesenseDocsSearchConfig as hi, DocsObservabilityEventInput as hn, DocsSearchSourcePage as hr, DocsAnalyticsConfig as ht, ApiReferenceConfig as i, ReadingTimeFormat as ii, DocsMcpConfig as in, DocsSearchFilters as ir, DocsAgentGoldenSafetyExpectation as it, DocsAgentA2ASecurityRequirement as j, DocsReviewCiConfig as jn, LlmsTxtConfig as jr, DocsCloudPreviewConfig as jt, DocsAgentA2AOpenIdConnectSecurityScheme as k, DocsRetrievalSourceProvenance as kn, GithubConfig as kr, DocsCloudConfig as kt, CodeBlockCopyData as l, SidebarFolderNode as li, DocsMcpSecurityConfig as ln, DocsSearchRankingReasonCode as lr, DocsAgentSkillsConfig as lt, DocsAccessPrincipal as m, ThemeToggleConfig as mi, DocsObservabilityEvent as mn, DocsSearchResultType as mr, DocsAgentTraceStatus as mt, AgentFeedbackConfig as n, PageTwitter as ni, DocsMcpAuthenticateContext as nn, DocsSearchFilterField as nr, DocsAgentGoldenQueryVariant as nt, BreadcrumbConfig as o, SidebarComponentProps as oi, DocsMcpOriginContext as on, DocsSearchMatchedTerm as or, DocsAgentGoldenTaskExpectation as ot, DocsAccessClaimValue as p, SimpleDocsSearchConfig as pi, DocsObservabilityConfig as pn, DocsSearchResult as pr, DocsAgentTraceEventType as pt, DocsAgentFeedbackContext as q, DocsSearchConfig as qn, PageActionsConfig as qr, DocsContentChangesResponse as qt, AlgoliaDocsSearchConfig as r, ReadingTimeConfig as ri, DocsMcpAuthenticateResult as rn, DocsSearchFilterInput as rr, DocsAgentGoldenQueryVariantKind as rt, ChangelogConfig as s, SidebarConfig as si, DocsMcpPromptsConfig as sn, DocsSearchQuery as sr, DocsAgentGoldenTaskFilters as st, AIConfig as t, PageSidebarFrontmatter as ti, DocsMcpAuthenticate as tn, DocsSearchFilterDecisionOutcome as tr, DocsAgentGoldenPromptInjectionExpectation as tt, CopyMarkdownConfig as u, SidebarNode as ui, DocsMcpToolsConfig as un, DocsSearchRankingStrategy as ur, DocsAgentSkillsInput as ut, DocsAgentA2AExtension as v, DocsOkfSource as vn, DocsSitemapConfig as vr, DocsAnalyticsEventType as vt, DocsAgentA2AOAuthClientCredentialsFlow as w, DocsOpenApiMcpCredentialContext as wn, DocsTelemetryFeatures as wr, DocsAskAIFeedbackData as wt, DocsAgentA2AMutualTlsSecurityScheme as x, DocsOkfTrustMetadataInput as xn, DocsTelemetryEvent as xr, DocsAskAIActionData as xt, DocsAgentA2AHttpAuthSecurityScheme as y, DocsOkfStatus as yn, DocsTelemetryAgentSurface as yr, DocsAnalyticsInput as yt, DocsAgentEvaluationAnswerProvider as z, DocsSearchAdapter as zn, OpenDocsProviderConfig as zr, DocsCodeBlocksValidationMode as zt };
|