@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.
Files changed (41) hide show
  1. package/dist/{agent-CaCWThBY.mjs → agent--fSgaVIK.mjs} +207 -12
  2. package/dist/{agent-DCTGj6J7.mjs → agent-BDrflLmt.mjs} +1 -1
  3. package/dist/{agent-evals-D-sPJfXz.mjs → agent-evals-3m5FXStK.mjs} +26 -7
  4. package/dist/{agent-export-GcTZPLfB.mjs → agent-export-CSdby81L.mjs} +6 -6
  5. package/dist/agent-skills-bundle.d.mts +1 -1
  6. package/dist/{agent-skills-server-D34054x5.d.mts → agent-skills-server-CF6iVTBR.d.mts} +2 -2
  7. package/dist/agent-skills-vite.d.mts +3 -3
  8. package/dist/{agents-e1SYT64z.mjs → agents-DDt41QR8.mjs} +5 -5
  9. package/dist/{analytics-aeXwEvQX.d.mts → analytics-CwXxM9oL.d.mts} +1 -1
  10. package/dist/{authoring-Do87QzBd.mjs → authoring-ct8s0Z_X.mjs} +3 -3
  11. package/dist/{authoring-mcp-Be7quE5R.mjs → authoring-mcp-Wy-h93DM.mjs} +1 -1
  12. package/dist/browser.d.mts +2 -2
  13. package/dist/cli/index.d.mts +2 -1
  14. package/dist/cli/index.mjs +40 -28
  15. package/dist/client/react.d.mts +1 -1
  16. package/dist/{cloud-ask-ai-BqfiQaNZ.d.mts → cloud-ask-ai-C9dvEBpW.d.mts} +1 -1
  17. package/dist/{content-change-hydration-CoYRs3pC.d.mts → content-change-hydration-CDuohygf.d.mts} +2 -2
  18. package/dist/docs-cloud-server.d.mts +2 -2
  19. package/dist/{doctor-CtK1CRPj.mjs → doctor-DESIZy7v.mjs} +126 -30
  20. package/dist/{golden-evaluations-De4KwoYr.mjs → golden-evaluations-Dc06CZM-.mjs} +4 -1
  21. package/dist/index.d.mts +6 -6
  22. package/dist/index.mjs +4 -4
  23. package/dist/{mcp-DsjWxF7g.mjs → mcp-CC74oNj3.mjs} +5 -5
  24. package/dist/mcp.d.mts +3 -3
  25. package/dist/mcp.mjs +16 -2
  26. package/dist/{openapi-mcp-DQ3xptKo.mjs → openapi-mcp-CFWUsMUr.mjs} +1 -1
  27. package/dist/{prompt-references-1Wce71c7.mjs → prompt-references-DVhk8W6r.mjs} +2 -2
  28. package/dist/{retrieval-digest-DyNRD-mt.d.mts → retrieval-digest-VUlhYMUW.d.mts} +10 -3
  29. package/dist/{review-XI9FXeos.mjs → review-glShh1or.mjs} +4 -4
  30. package/dist/{robots-CzKesbdX.mjs → robots-D6RgVpll.mjs} +2 -2
  31. package/dist/{robots-BOjWB1ky.mjs → robots-dNbBnlVh.mjs} +1 -1
  32. package/dist/{search-DwAoC9X7.mjs → search-BOOiOwTS.mjs} +5 -5
  33. package/dist/server.d.mts +6 -6
  34. package/dist/server.mjs +5 -5
  35. package/dist/{sidebar-CJze8SBi.d.mts → sidebar-Bne72SU-.d.mts} +1 -1
  36. package/dist/{sitemap-DOaJIKJf.mjs → sitemap-Ck1YKSAJ.mjs} +5 -5
  37. package/dist/{sitemap-server-NeVu8W38.mjs → sitemap-server-BKNIqgvq.mjs} +1 -1
  38. package/dist/{skills-BILSESek.mjs → skills-Bucp3wjq.mjs} +5 -5
  39. package/dist/{standards-discovery-Xm84bS4M.d.mts → standards-discovery-CjyUCxdy.d.mts} +1 -1
  40. package/dist/{types-QhYMnKvb.d.mts → types-BkAk6B2d.d.mts} +13 -1
  41. 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 { DocsAgentGoldenFreshnessExpectation as $, DocsSearchFilterDecision as $n, PageOpenGraph as $r, DocsMcpAuthPrincipal as $t, DocsAgentA2AProtocolBinding as A, DocsReviewCiConfig as An, LlmsTxtConfig as Ar, DocsCloudPreviewConfig as At, DocsAgentEvaluationAnswerRequest as B, DocsSearchAdapterFactory as Bn, OpenDocsTarget as Br, DocsConfig as Bt, DocsAgentA2AOAuthAuthorizationCodeFlow as C, DocsOpenApiMcpCredentialContext as Cn, DocsTelemetryFeatures as Cr, DocsAskAIFeedbackData as Ct, DocsAgentA2AOAuthImplicitFlow as D, DocsRelatedItem as Dn, FontStyle as Dr, DocsCloudApiKeyConfig as Dt, DocsAgentA2AOAuthFlows as E, DocsPaginatedSearchResponse as En, FeedbackConfig as Er, DocsAskAIMcpConfig as Et, DocsAgentCompactConfig as F, DocsReviewSeverity as Fn, OGConfig as Fr, DocsCodeBlocksRunnerConfig as Ft, DocsAgentEvaluationTaskInput as G, DocsSearchChunkingConfig as Gn, PageActionMcpProvider as Gr, DocsContentChangedDocument as Gt, DocsAgentEvaluationAnswerRunner as H, DocsSearchAmbiguityDecision as Hn, OrderingItem as Hr, DocsContentChangeSnapshotContext as Ht, DocsAgentConfig as I, DocsRobotsConfig as In, OpenDocsConfig as Ir, DocsCodeBlocksRunnerProvider as It, DocsAgentFeedbackData as J, DocsSearchEmbeddingsConfig as Jn, PageAgentCommand as Jr, DocsContentSnapshotDocument as Jt, DocsAgentEvaluationsConfig as K, DocsSearchConfig as Kn, PageActionsConfig as Kr, DocsContentChangesResponse as Kt, DocsAgentContentChangesConfig as L, DocsRobotsRule as Ln, OpenDocsProvider as Lr, DocsCodeBlocksValidateConfig as Lt, DocsAgentA2ASecurityScheme as M, DocsReviewConfig as Mn, LlmsTxtMaxCharsMode as Mr, DocsCodeBlocksConfig as Mt, DocsAgentA2ASecurityScopeList as N, DocsReviewRulesConfig as Nn, LlmsTxtSectionConfig as Nr, DocsCodeBlocksPlannerConfig as Nt, DocsAgentA2AOAuthPasswordFlow as O, DocsRetrievalSourceProvenance as On, GithubConfig as Or, DocsCloudConfig as Ot, DocsAgentA2ASkill as P, DocsReviewScoreConfig as Pn, McpDocsSearchConfig as Pr, DocsCodeBlocksPlannerProvider as Pt, DocsAgentGoldenExpectedExample as Q, DocsSearchFacetsResponse as Qn, PageFrontmatter as Qr, DocsMcpAllowedOrigins as Qt, DocsAgentEvaluationAnswerInput as R, DocsSearchAdapter as Rn, OpenDocsProviderConfig as Rr, DocsCodeBlocksValidationMode as Rt, DocsAgentA2AOAuth2SecurityScheme as S, DocsOpenApiMcpConfig as Sn, DocsTelemetryEventType as Sr, DocsAskAIFeedbackConfig as St, DocsAgentA2AOAuthDeviceCodeFlow as T, DocsPageAccessPolicy as Tn, DocsTheme as Tr, DocsAskAIFeedbackValue as Tt, DocsAgentEvaluationSourceReference as U, DocsSearchAmbiguityDecisionStatus as Un, PageActionConnectMcpConfig as Ur, DocsContentChangeSnapshotLoader as Ut, DocsAgentEvaluationAnswerResult as V, DocsSearchAdapterPage as Vn, OpenGraphImage as Vr, DocsContentChangeDocument as Vt, DocsAgentEvaluationSurface as W, DocsSearchAmbiguityResolution as Wn, PageActionInstallSkillsConfig as Wr, DocsContentChangeSnapshotSaver as Wt, DocsAgentGoldenAuthenticatedContentExpectation as X, DocsSearchFacet as Xn, PageAgentFrontmatter as Xr, DocsFeedbackValue as Xt, DocsAgentGoldenAnswerExpectation as Y, DocsSearchExplanation as Yn, PageAgentFailureMode as Yr, DocsFeedbackData as Yt, DocsAgentGoldenExampleVerification as Z, DocsSearchFacetValue as Zn, PageAgentVerification as Zr, DocsI18nConfig as Zt, DocsAgentA2AConfig as _, DocsOkfSource as _n, DocsSitemapConfig as _r, DocsAnalyticsEventType as _t, ApiReferenceRenderer as a, SidebarComponentProps as ai, DocsMcpOriginContext as an, DocsSearchMatchedTerm as ar, DocsAgentGoldenTaskExpectation as at, DocsAgentA2AInterfaceConfig as b, DocsOkfTrustMetadataInput as bn, DocsTelemetryEvent as br, DocsAskAIActionData as bt, ChangelogFrontmatter as c, SidebarFolderNode as ci, DocsMcpSecurityConfig as cn, DocsSearchRankingReasonCode as cr, DocsAgentSkillsConfig as ct, CopyMarkdownFormat as d, SidebarTree as di, DocsNav as dn, DocsSearchResponse as dr, DocsAgentTraceEventInput as dt, PageSidebarFrontmatter as ei, DocsMcpAuthenticate as en, DocsSearchFilterDecisionOutcome as er, DocsAgentGoldenPromptInjectionExpectation as et, CustomDocsSearchConfig as f, SimpleDocsSearchConfig as fi, DocsObservabilityConfig as fn, DocsSearchResult as fr, DocsAgentTraceEventType as ft, DocsAgentA2ACapabilities as g, UIConfig as gi, DocsOkfConfig as gn, DocsSearchWarningCode as gr, DocsAnalyticsEventInput as gt, DocsAgentA2AApiKeySecurityScheme as h, TypographyConfig as hi, DocsOkfActorTimestamp as hn, DocsSearchWarning as hr, DocsAnalyticsEvent as ht, ApiReferenceConfig as i, ResolvedDocsRelatedLink as ii, DocsMcpCorsConfig as in, DocsSearchMatchField as ir, DocsAgentGoldenTask as it, DocsAgentA2ASecurityRequirement as j, DocsReviewCiMode as jn, LlmsTxtMaxCharsConfig as jr, DocsCloudPublishConfig as jt, DocsAgentA2AOpenIdConnectSecurityScheme as k, DocsRetrievalSourceScope as kn, LastUpdatedConfig as kr, DocsCloudFeatureConfig as kt, CodeBlockCopyData as l, SidebarNode as li, DocsMcpToolsConfig as ln, DocsSearchRankingStrategy as lr, DocsAgentSkillsInput as lt, DocsAccessPrincipal as m, TypesenseDocsSearchConfig as mi, DocsObservabilityEventInput as mn, DocsSearchSourcePage as mr, DocsAnalyticsConfig as mt, AgentFeedbackConfig as n, ReadingTimeConfig as ni, DocsMcpAuthenticateResult as nn, DocsSearchFilterInput as nr, DocsAgentGoldenQueryVariantKind as nt, BreadcrumbConfig as o, SidebarConfig as oi, DocsMcpPromptsConfig as on, DocsSearchQuery as or, DocsAgentGoldenTaskFilters as ot, DocsAccessClaimValue as p, ThemeToggleConfig as pi, DocsObservabilityEvent as pn, DocsSearchResultType as pr, DocsAgentTraceStatus as pt, DocsAgentFeedbackContext as q, DocsSearchDocument as qn, PageAgentAppliesTo as qr, DocsContentSnapshot as qt, AlgoliaDocsSearchConfig as r, ReadingTimeFormat as ri, DocsMcpConfig as rn, DocsSearchFilters as rr, DocsAgentGoldenSafetyExpectation as rt, ChangelogConfig as s, SidebarFolderIndexBehavior as si, DocsMcpProtectedResourceConfig as sn, DocsSearchRankingReason as sr, DocsAgentSkillsCompatibilityPolicy as st, AIConfig as t, PageTwitter as ti, DocsMcpAuthenticateContext as tn, DocsSearchFilterField as tr, DocsAgentGoldenQueryVariant as tt, CopyMarkdownConfig as u, SidebarPageNode as ui, DocsMetadata as un, DocsSearchRequest as ur, DocsAgentSkillsProgressiveDisclosureConfig as ut, DocsAgentA2AExtension as v, DocsOkfStatus as vn, DocsTelemetryAgentSurface as vr, DocsAnalyticsInput as vt, DocsAgentA2AOAuthClientCredentialsFlow as w, DocsOpenApiMcpHeaders as wn, DocsTelemetryFramework as wr, DocsAskAIFeedbackMessage as wt, DocsAgentA2AMutualTlsSecurityScheme as x, DocsOkfTrustTier as xn, DocsTelemetryEventInput as xr, DocsAskAIActionType as xt, DocsAgentA2AHttpAuthSecurityScheme as y, DocsOkfTrustMetadata as yn, DocsTelemetryConfig as yr, DocsAnalyticsSource as yt, DocsAgentEvaluationAnswerProvider as z, DocsSearchAdapterContext as zn, OpenDocsProviderId as zr, DocsCodeBlocksValidationPolicy as zt };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farming-labs/docs",
3
- "version": "0.2.106",
3
+ "version": "0.2.108",
4
4
  "description": "Modern, flexible MDX-based docs framework — core types, config, and CLI",
5
5
  "keywords": [
6
6
  "docs",