@savvy-web/mcp 1.3.3 → 1.3.4

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 (774) hide show
  1. package/README.md +2 -2
  2. package/index.d.ts +1 -1
  3. package/package.json +2 -2
  4. package/public/content/guides/api-docs-from-api-extractor.md +47 -33
  5. package/public/content/guides/building-a-github-action.md +2 -2
  6. package/public/content/guides/choosing-a-builder.md +53 -100
  7. package/public/content/manifest.json +9980 -116
  8. package/public/content/packages/bundler/api/function/definebuild.md +18 -0
  9. package/public/content/packages/bundler/api/function/parseargs.md +18 -0
  10. package/public/content/packages/bundler/api/function/runbuild.md +18 -0
  11. package/public/content/packages/bundler/api/interface/buildconfig.md +147 -0
  12. package/public/content/packages/bundler/api/interface/buildconfiginput.md +153 -0
  13. package/public/content/packages/bundler/api/interface/buildentryoverride.md +86 -0
  14. package/public/content/packages/bundler/api/interface/outputconfig.md +34 -0
  15. package/public/content/packages/bundler/api/interface/parsedargs.md +44 -0
  16. package/public/content/packages/bundler/api/interface/runoptions.md +150 -0
  17. package/public/content/packages/bundler/api.md +27 -0
  18. package/public/content/packages/bundler/overview.md +89 -0
  19. package/public/content/packages/github-action-builder/api/class/actionymlmissing.md +30 -0
  20. package/public/content/packages/github-action-builder/api/class/actionymlpatherror.md +48 -0
  21. package/public/content/packages/github-action-builder/api/class/actionymlschemaerror.md +45 -0
  22. package/public/content/packages/github-action-builder/api/class/actionymlsyntaxerror.md +57 -0
  23. package/public/content/packages/github-action-builder/api/class/buildfailed.md +39 -0
  24. package/public/content/packages/github-action-builder/api/class/bundlefailed.md +39 -0
  25. package/public/content/packages/github-action-builder/api/class/cleanerror.md +39 -0
  26. package/public/content/packages/github-action-builder/api/class/configinvalid.md +39 -0
  27. package/public/content/packages/github-action-builder/api/class/configloadfailed.md +39 -0
  28. package/public/content/packages/github-action-builder/api/class/confignotfound.md +39 -0
  29. package/public/content/packages/github-action-builder/api/class/entryfilemissing.md +39 -0
  30. package/public/content/packages/github-action-builder/api/class/githubaction.md +101 -0
  31. package/public/content/packages/github-action-builder/api/class/mainentrymissing.md +39 -0
  32. package/public/content/packages/github-action-builder/api/class/persistlocalerror.md +39 -0
  33. package/public/content/packages/github-action-builder/api/class/validationfailed.md +48 -0
  34. package/public/content/packages/github-action-builder/api/class/workerentryinvalidname.md +37 -0
  35. package/public/content/packages/github-action-builder/api/class/workerentrymissing.md +44 -0
  36. package/public/content/packages/github-action-builder/api/class/writeerror.md +39 -0
  37. package/public/content/packages/github-action-builder/api/function/defineconfig.md +68 -0
  38. package/public/content/packages/github-action-builder/api/interface/buildservice.md +83 -0
  39. package/public/content/packages/github-action-builder/api/interface/configservice.md +66 -0
  40. package/public/content/packages/github-action-builder/api/interface/githubactionoptions.md +60 -0
  41. package/public/content/packages/github-action-builder/api/interface/loadconfigresult.md +44 -0
  42. package/public/content/packages/github-action-builder/api/interface/persistlocalservice.md +37 -0
  43. package/public/content/packages/github-action-builder/api/interface/validationservice.md +82 -0
  44. package/public/content/packages/github-action-builder/api/type/actionymlresult.md +18 -0
  45. package/public/content/packages/github-action-builder/api/type/apperror.md +18 -0
  46. package/public/content/packages/github-action-builder/api/type/builderror.md +18 -0
  47. package/public/content/packages/github-action-builder/api/type/buildoptions.md +18 -0
  48. package/public/content/packages/github-action-builder/api/type/buildresult.md +18 -0
  49. package/public/content/packages/github-action-builder/api/type/buildrunneroptions.md +18 -0
  50. package/public/content/packages/github-action-builder/api/type/bundleresult.md +18 -0
  51. package/public/content/packages/github-action-builder/api/type/bundlestats.md +18 -0
  52. package/public/content/packages/github-action-builder/api/type/config.md +18 -0
  53. package/public/content/packages/github-action-builder/api/type/configerror.md +18 -0
  54. package/public/content/packages/github-action-builder/api/type/configinput.md +18 -0
  55. package/public/content/packages/github-action-builder/api/type/detectedentry.md +18 -0
  56. package/public/content/packages/github-action-builder/api/type/detectentriesresult.md +18 -0
  57. package/public/content/packages/github-action-builder/api/type/entries.md +18 -0
  58. package/public/content/packages/github-action-builder/api/type/githubactionbuildresult.md +18 -0
  59. package/public/content/packages/github-action-builder/api/type/loadconfigoptions.md +18 -0
  60. package/public/content/packages/github-action-builder/api/type/persisterror.md +18 -0
  61. package/public/content/packages/github-action-builder/api/type/persistlocaloptions.md +18 -0
  62. package/public/content/packages/github-action-builder/api/type/persistlocalresult.md +18 -0
  63. package/public/content/packages/github-action-builder/api/type/persistlocalrunneroptions.md +18 -0
  64. package/public/content/packages/github-action-builder/api/type/validateoptions.md +18 -0
  65. package/public/content/packages/github-action-builder/api/type/validationerror.md +20 -0
  66. package/public/content/packages/github-action-builder/api/type/validationerroritem.md +18 -0
  67. package/public/content/packages/github-action-builder/api/type/validationoptions.md +18 -0
  68. package/public/content/packages/github-action-builder/api/type/validationresult.md +18 -0
  69. package/public/content/packages/github-action-builder/api/type/validationwarning.md +18 -0
  70. package/public/content/packages/github-action-builder/api/variable/actionymlmissingbase.md +20 -0
  71. package/public/content/packages/github-action-builder/api/variable/actionymlpatherrorbase.md +20 -0
  72. package/public/content/packages/github-action-builder/api/variable/actionymlresultschema.md +33 -0
  73. package/public/content/packages/github-action-builder/api/variable/actionymlschemaerrorbase.md +20 -0
  74. package/public/content/packages/github-action-builder/api/variable/actionymlsyntaxerrorbase.md +20 -0
  75. package/public/content/packages/github-action-builder/api/variable/applayer.md +38 -0
  76. package/public/content/packages/github-action-builder/api/variable/buildfailedbase.md +20 -0
  77. package/public/content/packages/github-action-builder/api/variable/buildlayer.md +18 -0
  78. package/public/content/packages/github-action-builder/api/variable/buildoptionsschema.md +31 -0
  79. package/public/content/packages/github-action-builder/api/variable/buildresultschema.md +32 -0
  80. package/public/content/packages/github-action-builder/api/variable/buildrunneroptionsschema.md +21 -0
  81. package/public/content/packages/github-action-builder/api/variable/buildservice.md +18 -0
  82. package/public/content/packages/github-action-builder/api/variable/bundlefailedbase.md +20 -0
  83. package/public/content/packages/github-action-builder/api/variable/bundleresultschema.md +27 -0
  84. package/public/content/packages/github-action-builder/api/variable/bundlestatsschema.md +23 -0
  85. package/public/content/packages/github-action-builder/api/variable/cleanerrorbase.md +20 -0
  86. package/public/content/packages/github-action-builder/api/variable/configinputschema.md +41 -0
  87. package/public/content/packages/github-action-builder/api/variable/configinvalidbase.md +20 -0
  88. package/public/content/packages/github-action-builder/api/variable/configlayer.md +18 -0
  89. package/public/content/packages/github-action-builder/api/variable/configloadfailedbase.md +20 -0
  90. package/public/content/packages/github-action-builder/api/variable/confignotfoundbase.md +20 -0
  91. package/public/content/packages/github-action-builder/api/variable/configschema.md +59 -0
  92. package/public/content/packages/github-action-builder/api/variable/configservice.md +18 -0
  93. package/public/content/packages/github-action-builder/api/variable/detectedentryschema.md +22 -0
  94. package/public/content/packages/github-action-builder/api/variable/detectentriesresultschema.md +25 -0
  95. package/public/content/packages/github-action-builder/api/variable/entriesschema.md +25 -0
  96. package/public/content/packages/github-action-builder/api/variable/entryfilemissingbase.md +20 -0
  97. package/public/content/packages/github-action-builder/api/variable/githubactionbuildresultschema.md +60 -0
  98. package/public/content/packages/github-action-builder/api/variable/loadconfigoptionsschema.md +21 -0
  99. package/public/content/packages/github-action-builder/api/variable/mainentrymissingbase.md +20 -0
  100. package/public/content/packages/github-action-builder/api/variable/persistlocalerrorbase.md +20 -0
  101. package/public/content/packages/github-action-builder/api/variable/persistlocallayer.md +18 -0
  102. package/public/content/packages/github-action-builder/api/variable/persistlocaloptionsschema.md +28 -0
  103. package/public/content/packages/github-action-builder/api/variable/persistlocalresultschema.md +25 -0
  104. package/public/content/packages/github-action-builder/api/variable/persistlocalrunneroptionsschema.md +20 -0
  105. package/public/content/packages/github-action-builder/api/variable/persistlocalservice.md +18 -0
  106. package/public/content/packages/github-action-builder/api/variable/validateoptionsschema.md +21 -0
  107. package/public/content/packages/github-action-builder/api/variable/validationerrorschema.md +23 -0
  108. package/public/content/packages/github-action-builder/api/variable/validationfailedbase.md +20 -0
  109. package/public/content/packages/github-action-builder/api/variable/validationlayer.md +18 -0
  110. package/public/content/packages/github-action-builder/api/variable/validationoptionsschema.md +24 -0
  111. package/public/content/packages/github-action-builder/api/variable/validationresultschema.md +32 -0
  112. package/public/content/packages/github-action-builder/api/variable/validationservice.md +18 -0
  113. package/public/content/packages/github-action-builder/api/variable/validationwarningschema.md +23 -0
  114. package/public/content/packages/github-action-builder/api/variable/workerentryinvalidnamebase.md +20 -0
  115. package/public/content/packages/github-action-builder/api/variable/workerentrymissingbase.md +20 -0
  116. package/public/content/packages/github-action-builder/api/variable/writeerrorbase.md +20 -0
  117. package/public/content/packages/github-action-builder/api.md +125 -0
  118. package/public/content/packages/github-action-effects/api/class/actioncache.md +18 -0
  119. package/public/content/packages/github-action-effects/api/class/actioncacheerror.md +44 -0
  120. package/public/content/packages/github-action-effects/api/class/actionenvironment.md +18 -0
  121. package/public/content/packages/github-action-effects/api/class/actionenvironmenterror.md +37 -0
  122. package/public/content/packages/github-action-effects/api/class/actioninputerror.md +44 -0
  123. package/public/content/packages/github-action-effects/api/class/actionlogger.md +18 -0
  124. package/public/content/packages/github-action-effects/api/class/actionoutputerror.md +37 -0
  125. package/public/content/packages/github-action-effects/api/class/actionoutputs.md +18 -0
  126. package/public/content/packages/github-action-effects/api/class/actionstate.md +18 -0
  127. package/public/content/packages/github-action-effects/api/class/actionstateerror.md +44 -0
  128. package/public/content/packages/github-action-effects/api/class/artifact.md +18 -0
  129. package/public/content/packages/github-action-effects/api/class/artifacterror.md +53 -0
  130. package/public/content/packages/github-action-effects/api/class/attest.md +18 -0
  131. package/public/content/packages/github-action-effects/api/class/attesterror.md +42 -0
  132. package/public/content/packages/github-action-effects/api/class/blobstore.md +18 -0
  133. package/public/content/packages/github-action-effects/api/class/blobstoreerror.md +44 -0
  134. package/public/content/packages/github-action-effects/api/class/changesetanalyzer.md +18 -0
  135. package/public/content/packages/github-action-effects/api/class/changeseterror.md +37 -0
  136. package/public/content/packages/github-action-effects/api/class/checkrun.md +18 -0
  137. package/public/content/packages/github-action-effects/api/class/checkrunerror.md +44 -0
  138. package/public/content/packages/github-action-effects/api/class/commandrunner.md +18 -0
  139. package/public/content/packages/github-action-effects/api/class/commandrunnererror.md +73 -0
  140. package/public/content/packages/github-action-effects/api/class/configloader.md +18 -0
  141. package/public/content/packages/github-action-effects/api/class/configloadererror.md +44 -0
  142. package/public/content/packages/github-action-effects/api/class/dryrun.md +18 -0
  143. package/public/content/packages/github-action-effects/api/class/gitbranch.md +18 -0
  144. package/public/content/packages/github-action-effects/api/class/gitbrancherror.md +44 -0
  145. package/public/content/packages/github-action-effects/api/class/gitcommit.md +18 -0
  146. package/public/content/packages/github-action-effects/api/class/gitcommiterror.md +37 -0
  147. package/public/content/packages/github-action-effects/api/class/githubapp.md +18 -0
  148. package/public/content/packages/github-action-effects/api/class/githubapperror.md +37 -0
  149. package/public/content/packages/github-action-effects/api/class/githubartifactmetadata.md +18 -0
  150. package/public/content/packages/github-action-effects/api/class/githubartifactmetadataerror.md +44 -0
  151. package/public/content/packages/github-action-effects/api/class/githubclient.md +18 -0
  152. package/public/content/packages/github-action-effects/api/class/githubclienterror.md +60 -0
  153. package/public/content/packages/github-action-effects/api/class/githubcommit.md +18 -0
  154. package/public/content/packages/github-action-effects/api/class/githubcommiterror.md +44 -0
  155. package/public/content/packages/github-action-effects/api/class/githubcontent.md +18 -0
  156. package/public/content/packages/github-action-effects/api/class/githubcontenterror.md +44 -0
  157. package/public/content/packages/github-action-effects/api/class/githubgraphql.md +18 -0
  158. package/public/content/packages/github-action-effects/api/class/githubgraphqlerror.md +48 -0
  159. package/public/content/packages/github-action-effects/api/class/githubissue.md +18 -0
  160. package/public/content/packages/github-action-effects/api/class/githubissueerror.md +51 -0
  161. package/public/content/packages/github-action-effects/api/class/githubrelease.md +18 -0
  162. package/public/content/packages/github-action-effects/api/class/githubreleaseerror.md +51 -0
  163. package/public/content/packages/github-action-effects/api/class/gittag.md +18 -0
  164. package/public/content/packages/github-action-effects/api/class/gittagerror.md +44 -0
  165. package/public/content/packages/github-action-effects/api/class/glob.md +18 -0
  166. package/public/content/packages/github-action-effects/api/class/globerror.md +44 -0
  167. package/public/content/packages/github-action-effects/api/class/intotostatement.md +18 -0
  168. package/public/content/packages/github-action-effects/api/class/intotosubject.md +18 -0
  169. package/public/content/packages/github-action-effects/api/class/ioerror.md +44 -0
  170. package/public/content/packages/github-action-effects/api/class/npmregistry.md +18 -0
  171. package/public/content/packages/github-action-effects/api/class/npmregistryerror.md +50 -0
  172. package/public/content/packages/github-action-effects/api/class/octokitauthapp.md +18 -0
  173. package/public/content/packages/github-action-effects/api/class/oidctokenerror.md +42 -0
  174. package/public/content/packages/github-action-effects/api/class/oidctokenissuer.md +18 -0
  175. package/public/content/packages/github-action-effects/api/class/packagemanageradapter.md +18 -0
  176. package/public/content/packages/github-action-effects/api/class/packagemanagererror.md +44 -0
  177. package/public/content/packages/github-action-effects/api/class/packagepublish.md +18 -0
  178. package/public/content/packages/github-action-effects/api/class/packagepublisherror.md +68 -0
  179. package/public/content/packages/github-action-effects/api/class/pullrequest.md +18 -0
  180. package/public/content/packages/github-action-effects/api/class/pullrequestcomment.md +18 -0
  181. package/public/content/packages/github-action-effects/api/class/pullrequestcommenterror.md +44 -0
  182. package/public/content/packages/github-action-effects/api/class/pullrequesterror.md +44 -0
  183. package/public/content/packages/github-action-effects/api/class/ratelimiter.md +18 -0
  184. package/public/content/packages/github-action-effects/api/class/ratelimiterror.md +51 -0
  185. package/public/content/packages/github-action-effects/api/class/runtimeenvironmenterror.md +37 -0
  186. package/public/content/packages/github-action-effects/api/class/sbom.md +18 -0
  187. package/public/content/packages/github-action-effects/api/class/sbomerror.md +42 -0
  188. package/public/content/packages/github-action-effects/api/class/semverresolvererror.md +44 -0
  189. package/public/content/packages/github-action-effects/api/class/sigstorebundle.md +18 -0
  190. package/public/content/packages/github-action-effects/api/class/sigstoresigner.md +18 -0
  191. package/public/content/packages/github-action-effects/api/class/sigstoresignererror.md +42 -0
  192. package/public/content/packages/github-action-effects/api/class/slsaerror.md +42 -0
  193. package/public/content/packages/github-action-effects/api/class/tokenpermissionchecker.md +18 -0
  194. package/public/content/packages/github-action-effects/api/class/tokenpermissionerror.md +58 -0
  195. package/public/content/packages/github-action-effects/api/class/toolinstaller.md +18 -0
  196. package/public/content/packages/github-action-effects/api/class/toolinstallererror.md +58 -0
  197. package/public/content/packages/github-action-effects/api/class/workflowdispatch.md +18 -0
  198. package/public/content/packages/github-action-effects/api/class/workflowdispatcherror.md +44 -0
  199. package/public/content/packages/github-action-effects/api/class/workspacedetector.md +18 -0
  200. package/public/content/packages/github-action-effects/api/class/workspacedetectorerror.md +35 -0
  201. package/public/content/packages/github-action-effects/api/function/attesttestfulllayer.md +19 -0
  202. package/public/content/packages/github-action-effects/api/function/buildslsaprovenancepredicate.md +23 -0
  203. package/public/content/packages/github-action-effects/api/function/buildstatement.md +29 -0
  204. package/public/content/packages/github-action-effects/api/function/decodejwtclaims.md +18 -0
  205. package/public/content/packages/github-action-effects/api/function/dryrunlive.md +18 -0
  206. package/public/content/packages/github-action-effects/api/function/generatepackageviewurl.md +27 -0
  207. package/public/content/packages/github-action-effects/api/function/getregistrydisplayname.md +26 -0
  208. package/public/content/packages/github-action-effects/api/function/getregistrytype.md +26 -0
  209. package/public/content/packages/github-action-effects/api/function/iscustomregistry.md +26 -0
  210. package/public/content/packages/github-action-effects/api/function/isgithubpackagesregistry.md +26 -0
  211. package/public/content/packages/github-action-effects/api/function/isjsrregistry.md +26 -0
  212. package/public/content/packages/github-action-effects/api/function/isnpmregistry.md +26 -0
  213. package/public/content/packages/github-action-effects/api/function/makeattestteststate.md +18 -0
  214. package/public/content/packages/github-action-effects/api/function/makesbomteststate.md +18 -0
  215. package/public/content/packages/github-action-effects/api/function/makesigstoresignerlive.md +18 -0
  216. package/public/content/packages/github-action-effects/api/function/npmpurl.md +18 -0
  217. package/public/content/packages/github-action-effects/api/function/resilienceschedule.md +18 -0
  218. package/public/content/packages/github-action-effects/api/function/s3blobstorelive.md +18 -0
  219. package/public/content/packages/github-action-effects/api/function/savetoken.md +18 -0
  220. package/public/content/packages/github-action-effects/api/function/serializestatement.md +18 -0
  221. package/public/content/packages/github-action-effects/api/function/subject.md +23 -0
  222. package/public/content/packages/github-action-effects/api/function/tokenpermissioncheckerlive.md +18 -0
  223. package/public/content/packages/github-action-effects/api/interface/accumulateresult.md +35 -0
  224. package/public/content/packages/github-action-effects/api/interface/actioncacheteststate.md +26 -0
  225. package/public/content/packages/github-action-effects/api/interface/actionloggerteststate.md +59 -0
  226. package/public/content/packages/github-action-effects/api/interface/actionoutputsteststate.md +56 -0
  227. package/public/content/packages/github-action-effects/api/interface/actionrunoptions.md +28 -0
  228. package/public/content/packages/github-action-effects/api/interface/actionstateteststate.md +28 -0
  229. package/public/content/packages/github-action-effects/api/interface/annotationproperties.md +68 -0
  230. package/public/content/packages/github-action-effects/api/interface/appauth.md +44 -0
  231. package/public/content/packages/github-action-effects/api/interface/artifactitem.md +44 -0
  232. package/public/content/packages/github-action-effects/api/interface/artifactteststate.md +38 -0
  233. package/public/content/packages/github-action-effects/api/interface/attestationlistentry.md +36 -0
  234. package/public/content/packages/github-action-effects/api/interface/attestationrecord.md +44 -0
  235. package/public/content/packages/github-action-effects/api/interface/attestinput.md +38 -0
  236. package/public/content/packages/github-action-effects/api/interface/attestteststate.md +111 -0
  237. package/public/content/packages/github-action-effects/api/interface/blobstoreteststate.md +26 -0
  238. package/public/content/packages/github-action-effects/api/interface/botidentity.md +32 -0
  239. package/public/content/packages/github-action-effects/api/interface/changesetanalyzerteststate.md +32 -0
  240. package/public/content/packages/github-action-effects/api/interface/checkrunannotation.md +56 -0
  241. package/public/content/packages/github-action-effects/api/interface/checkrundata.md +50 -0
  242. package/public/content/packages/github-action-effects/api/interface/checkrunoutput.md +44 -0
  243. package/public/content/packages/github-action-effects/api/interface/checkrunrecord.md +62 -0
  244. package/public/content/packages/github-action-effects/api/interface/checkrunteststate.md +32 -0
  245. package/public/content/packages/github-action-effects/api/interface/commandresponse.md +38 -0
  246. package/public/content/packages/github-action-effects/api/interface/commentrecord.md +32 -0
  247. package/public/content/packages/github-action-effects/api/interface/commitcomparison.md +32 -0
  248. package/public/content/packages/github-action-effects/api/interface/commitdetail.md +28 -0
  249. package/public/content/packages/github-action-effects/api/interface/commitfile.md +32 -0
  250. package/public/content/packages/github-action-effects/api/interface/commitsummary.md +38 -0
  251. package/public/content/packages/github-action-effects/api/interface/configloaderteststate.md +28 -0
  252. package/public/content/packages/github-action-effects/api/interface/dispatchrecord.md +38 -0
  253. package/public/content/packages/github-action-effects/api/interface/downloadoptions.md +28 -0
  254. package/public/content/packages/github-action-effects/api/interface/dryrunresult.md +60 -0
  255. package/public/content/packages/github-action-effects/api/interface/dryrunteststate.md +26 -0
  256. package/public/content/packages/github-action-effects/api/interface/execoptions.md +52 -0
  257. package/public/content/packages/github-action-effects/api/interface/execoutput.md +38 -0
  258. package/public/content/packages/github-action-effects/api/interface/findby.md +44 -0
  259. package/public/content/packages/github-action-effects/api/interface/gitbranchteststate.md +26 -0
  260. package/public/content/packages/github-action-effects/api/interface/gitcommitteststate.md +51 -0
  261. package/public/content/packages/github-action-effects/api/interface/githubappteststate.md +54 -0
  262. package/public/content/packages/github-action-effects/api/interface/githubartifactmetadatateststate.md +36 -0
  263. package/public/content/packages/github-action-effects/api/interface/githubclientteststate.md +47 -0
  264. package/public/content/packages/github-action-effects/api/interface/githubcommitteststate.md +52 -0
  265. package/public/content/packages/github-action-effects/api/interface/githubcontentteststate.md +28 -0
  266. package/public/content/packages/github-action-effects/api/interface/githubgraphqlteststate.md +52 -0
  267. package/public/content/packages/github-action-effects/api/interface/githubissueteststate.md +53 -0
  268. package/public/content/packages/github-action-effects/api/interface/githubreleaseteststate.md +52 -0
  269. package/public/content/packages/github-action-effects/api/interface/gittagteststate.md +41 -0
  270. package/public/content/packages/github-action-effects/api/interface/globoptions.md +52 -0
  271. package/public/content/packages/github-action-effects/api/interface/globteststate.md +32 -0
  272. package/public/content/packages/github-action-effects/api/interface/hashfilesoptions.md +36 -0
  273. package/public/content/packages/github-action-effects/api/interface/idempotentpublishinput.md +66 -0
  274. package/public/content/packages/github-action-effects/api/interface/idempotentpublishresult.md +48 -0
  275. package/public/content/packages/github-action-effects/api/interface/inflightpackage.md +38 -0
  276. package/public/content/packages/github-action-effects/api/interface/installoptions.md +36 -0
  277. package/public/content/packages/github-action-effects/api/interface/issuedata.md +60 -0
  278. package/public/content/packages/github-action-effects/api/interface/npmregistryteststate.md +32 -0
  279. package/public/content/packages/github-action-effects/api/interface/oidcclaims.md +98 -0
  280. package/public/content/packages/github-action-effects/api/interface/packagemanageradapterteststate.md +47 -0
  281. package/public/content/packages/github-action-effects/api/interface/packagepublishteststate.md +121 -0
  282. package/public/content/packages/github-action-effects/api/interface/packresult.md +84 -0
  283. package/public/content/packages/github-action-effects/api/interface/polloptions.md +36 -0
  284. package/public/content/packages/github-action-effects/api/interface/provenanceattestationinput.md +44 -0
  285. package/public/content/packages/github-action-effects/api/interface/provisionoptions.md +52 -0
  286. package/public/content/packages/github-action-effects/api/interface/publishtarballresult.md +28 -0
  287. package/public/content/packages/github-action-effects/api/interface/pullrequestcommentteststate.md +35 -0
  288. package/public/content/packages/github-action-effects/api/interface/pullrequestfile.md +32 -0
  289. package/public/content/packages/github-action-effects/api/interface/pullrequestinfo.md +106 -0
  290. package/public/content/packages/github-action-effects/api/interface/pullrequestlistoptions.md +60 -0
  291. package/public/content/packages/github-action-effects/api/interface/pullrequestrecord.md +74 -0
  292. package/public/content/packages/github-action-effects/api/interface/pullrequestteststate.md +54 -0
  293. package/public/content/packages/github-action-effects/api/interface/ratelimiterteststate.md +44 -0
  294. package/public/content/packages/github-action-effects/api/interface/registrytarget.md +52 -0
  295. package/public/content/packages/github-action-effects/api/interface/releaseasset.md +44 -0
  296. package/public/content/packages/github-action-effects/api/interface/releasedata.md +62 -0
  297. package/public/content/packages/github-action-effects/api/interface/report_2.md +76 -0
  298. package/public/content/packages/github-action-effects/api/interface/resilienceoptions.md +52 -0
  299. package/public/content/packages/github-action-effects/api/interface/resolveddependency.md +44 -0
  300. package/public/content/packages/github-action-effects/api/interface/restresponse.md +26 -0
  301. package/public/content/packages/github-action-effects/api/interface/s3blobstoreconfig.md +62 -0
  302. package/public/content/packages/github-action-effects/api/interface/sbomattestationinput.md +44 -0
  303. package/public/content/packages/github-action-effects/api/interface/sbomauthor.md +38 -0
  304. package/public/content/packages/github-action-effects/api/interface/sbomcontact.md +38 -0
  305. package/public/content/packages/github-action-effects/api/interface/sbominput.md +88 -0
  306. package/public/content/packages/github-action-effects/api/interface/sbomsupplier.md +44 -0
  307. package/public/content/packages/github-action-effects/api/interface/sbomteststate.md +52 -0
  308. package/public/content/packages/github-action-effects/api/interface/sigstoresignerconfig.md +32 -0
  309. package/public/content/packages/github-action-effects/api/interface/storagerecordinput.md +68 -0
  310. package/public/content/packages/github-action-effects/api/interface/tagref.md +34 -0
  311. package/public/content/packages/github-action-effects/api/interface/tokenpermissioncheckerteststate.md +32 -0
  312. package/public/content/packages/github-action-effects/api/interface/toolinstallerteststate.md +97 -0
  313. package/public/content/packages/github-action-effects/api/interface/uploadoptions.md +36 -0
  314. package/public/content/packages/github-action-effects/api/interface/uploadresult.md +32 -0
  315. package/public/content/packages/github-action-effects/api/interface/workflowdispatchteststate.md +40 -0
  316. package/public/content/packages/github-action-effects/api/interface/workflowrunstatus.md +32 -0
  317. package/public/content/packages/github-action-effects/api/interface/workspacedetectorteststate.md +32 -0
  318. package/public/content/packages/github-action-effects/api/namespace/step.md +16 -0
  319. package/public/content/packages/github-action-effects/api/type/actionloglevel.md +16 -0
  320. package/public/content/packages/github-action-effects/api/type/annotationlevel.md +18 -0
  321. package/public/content/packages/github-action-effects/api/type/bumptype.md +16 -0
  322. package/public/content/packages/github-action-effects/api/type/capturedoutput.md +16 -0
  323. package/public/content/packages/github-action-effects/api/type/changeset.md +16 -0
  324. package/public/content/packages/github-action-effects/api/type/changesetfile.md +16 -0
  325. package/public/content/packages/github-action-effects/api/type/checklistitem.md +16 -0
  326. package/public/content/packages/github-action-effects/api/type/checkrunconclusion.md +18 -0
  327. package/public/content/packages/github-action-effects/api/type/coreservices.md +18 -0
  328. package/public/content/packages/github-action-effects/api/type/cyclonedxbom.md +18 -0
  329. package/public/content/packages/github-action-effects/api/type/extrapermission.md +18 -0
  330. package/public/content/packages/github-action-effects/api/type/filechange.md +16 -0
  331. package/public/content/packages/github-action-effects/api/type/githubcontext.md +18 -0
  332. package/public/content/packages/github-action-effects/api/type/installationtoken.md +18 -0
  333. package/public/content/packages/github-action-effects/api/type/loglevelinput.md +16 -0
  334. package/public/content/packages/github-action-effects/api/type/npmpackageinfo.md +16 -0
  335. package/public/content/packages/github-action-effects/api/type/packagemanagerinfo.md +18 -0
  336. package/public/content/packages/github-action-effects/api/type/packagemanagername.md +18 -0
  337. package/public/content/packages/github-action-effects/api/type/permissioncheckresult.md +18 -0
  338. package/public/content/packages/github-action-effects/api/type/permissiongap.md +18 -0
  339. package/public/content/packages/github-action-effects/api/type/permissionlevel.md +18 -0
  340. package/public/content/packages/github-action-effects/api/type/ratelimitstatus.md +18 -0
  341. package/public/content/packages/github-action-effects/api/type/registrytype.md +18 -0
  342. package/public/content/packages/github-action-effects/api/type/runnercontext.md +18 -0
  343. package/public/content/packages/github-action-effects/api/type/status.md +16 -0
  344. package/public/content/packages/github-action-effects/api/type/treeentry.md +16 -0
  345. package/public/content/packages/github-action-effects/api/type/webhookpayload.md +18 -0
  346. package/public/content/packages/github-action-effects/api/type/workspaceinfo.md +16 -0
  347. package/public/content/packages/github-action-effects/api/type/workspacepackage.md +16 -0
  348. package/public/content/packages/github-action-effects/api/type/workspacetype.md +16 -0
  349. package/public/content/packages/github-action-effects/api/variable/action.md +41 -0
  350. package/public/content/packages/github-action-effects/api/variable/actioncachelive.md +18 -0
  351. package/public/content/packages/github-action-effects/api/variable/actioncachetest.md +29 -0
  352. package/public/content/packages/github-action-effects/api/variable/actionenvironmentlive.md +16 -0
  353. package/public/content/packages/github-action-effects/api/variable/actionenvironmenttest.md +21 -0
  354. package/public/content/packages/github-action-effects/api/variable/actioninput.md +31 -0
  355. package/public/content/packages/github-action-effects/api/variable/actionloggerlive.md +18 -0
  356. package/public/content/packages/github-action-effects/api/variable/actionloggertest.md +29 -0
  357. package/public/content/packages/github-action-effects/api/variable/actionloglevel.md +18 -0
  358. package/public/content/packages/github-action-effects/api/variable/actionoutputslive.md +16 -0
  359. package/public/content/packages/github-action-effects/api/variable/actionoutputstest.md +29 -0
  360. package/public/content/packages/github-action-effects/api/variable/actionsconfigprovider.md +27 -0
  361. package/public/content/packages/github-action-effects/api/variable/actionslogger.md +18 -0
  362. package/public/content/packages/github-action-effects/api/variable/actionsruntime.md +36 -0
  363. package/public/content/packages/github-action-effects/api/variable/actionstatelive.md +16 -0
  364. package/public/content/packages/github-action-effects/api/variable/actionstatetest.md +29 -0
  365. package/public/content/packages/github-action-effects/api/variable/artifactlive.md +18 -0
  366. package/public/content/packages/github-action-effects/api/variable/artifacttest.md +29 -0
  367. package/public/content/packages/github-action-effects/api/variable/attestlive.md +18 -0
  368. package/public/content/packages/github-action-effects/api/variable/attesttest.md +21 -0
  369. package/public/content/packages/github-action-effects/api/variable/automerge.md +21 -0
  370. package/public/content/packages/github-action-effects/api/variable/blobstoretest.md +21 -0
  371. package/public/content/packages/github-action-effects/api/variable/bumptype.md +18 -0
  372. package/public/content/packages/github-action-effects/api/variable/capturedoutput.md +21 -0
  373. package/public/content/packages/github-action-effects/api/variable/changeset.md +25 -0
  374. package/public/content/packages/github-action-effects/api/variable/changesetanalyzerlive.md +16 -0
  375. package/public/content/packages/github-action-effects/api/variable/changesetanalyzertest.md +21 -0
  376. package/public/content/packages/github-action-effects/api/variable/changesetfile.md +21 -0
  377. package/public/content/packages/github-action-effects/api/variable/checklistitem.md +21 -0
  378. package/public/content/packages/github-action-effects/api/variable/checkrunlive.md +16 -0
  379. package/public/content/packages/github-action-effects/api/variable/checkruntest.md +21 -0
  380. package/public/content/packages/github-action-effects/api/variable/commandrunnerlive.md +16 -0
  381. package/public/content/packages/github-action-effects/api/variable/commandrunnertest.md +21 -0
  382. package/public/content/packages/github-action-effects/api/variable/configloaderlive.md +18 -0
  383. package/public/content/packages/github-action-effects/api/variable/configloadertest.md +21 -0
  384. package/public/content/packages/github-action-effects/api/variable/cyclonedx_bom.md +18 -0
  385. package/public/content/packages/github-action-effects/api/variable/dryruntest.md +24 -0
  386. package/public/content/packages/github-action-effects/api/variable/erroraccumulator.md +21 -0
  387. package/public/content/packages/github-action-effects/api/variable/extrapermission.md +21 -0
  388. package/public/content/packages/github-action-effects/api/variable/filechange.md +24 -0
  389. package/public/content/packages/github-action-effects/api/variable/filechangecontent.md +21 -0
  390. package/public/content/packages/github-action-effects/api/variable/filechangedeletion.md +21 -0
  391. package/public/content/packages/github-action-effects/api/variable/gitbranchlive.md +16 -0
  392. package/public/content/packages/github-action-effects/api/variable/gitbranchtest.md +21 -0
  393. package/public/content/packages/github-action-effects/api/variable/gitcommitlive.md +16 -0
  394. package/public/content/packages/github-action-effects/api/variable/gitcommittest.md +21 -0
  395. package/public/content/packages/github-action-effects/api/variable/github_build_type.md +18 -0
  396. package/public/content/packages/github-action-effects/api/variable/githubapplive.md +18 -0
  397. package/public/content/packages/github-action-effects/api/variable/githubapptest.md +21 -0
  398. package/public/content/packages/github-action-effects/api/variable/githubartifactmetadatalive.md +18 -0
  399. package/public/content/packages/github-action-effects/api/variable/githubartifactmetadatatest.md +24 -0
  400. package/public/content/packages/github-action-effects/api/variable/githubblobstorelive.md +18 -0
  401. package/public/content/packages/github-action-effects/api/variable/githubclientlive.md +26 -0
  402. package/public/content/packages/github-action-effects/api/variable/githubclienttest.md +21 -0
  403. package/public/content/packages/github-action-effects/api/variable/githubcommitlive.md +16 -0
  404. package/public/content/packages/github-action-effects/api/variable/githubcommittest.md +21 -0
  405. package/public/content/packages/github-action-effects/api/variable/githubcontentlive.md +16 -0
  406. package/public/content/packages/github-action-effects/api/variable/githubcontenttest.md +21 -0
  407. package/public/content/packages/github-action-effects/api/variable/githubcontext.md +35 -0
  408. package/public/content/packages/github-action-effects/api/variable/githubgraphqllive.md +18 -0
  409. package/public/content/packages/github-action-effects/api/variable/githubgraphqltest.md +24 -0
  410. package/public/content/packages/github-action-effects/api/variable/githubissuelive.md +16 -0
  411. package/public/content/packages/github-action-effects/api/variable/githubissuetest.md +24 -0
  412. package/public/content/packages/github-action-effects/api/variable/githubmarkdown.md +45 -0
  413. package/public/content/packages/github-action-effects/api/variable/githubreleaselive.md +16 -0
  414. package/public/content/packages/github-action-effects/api/variable/githubreleasetest.md +24 -0
  415. package/public/content/packages/github-action-effects/api/variable/githubtoken.md +27 -0
  416. package/public/content/packages/github-action-effects/api/variable/gittaglive.md +16 -0
  417. package/public/content/packages/github-action-effects/api/variable/gittagtest.md +24 -0
  418. package/public/content/packages/github-action-effects/api/variable/globlive.md +18 -0
  419. package/public/content/packages/github-action-effects/api/variable/globtest.md +30 -0
  420. package/public/content/packages/github-action-effects/api/variable/in_toto_payload_type.md +18 -0
  421. package/public/content/packages/github-action-effects/api/variable/in_toto_statement_v1.md +18 -0
  422. package/public/content/packages/github-action-effects/api/variable/installationtoken.md +28 -0
  423. package/public/content/packages/github-action-effects/api/variable/ioutil.md +22 -0
  424. package/public/content/packages/github-action-effects/api/variable/loglevelinput.md +18 -0
  425. package/public/content/packages/github-action-effects/api/variable/npmpackageinfo.md +24 -0
  426. package/public/content/packages/github-action-effects/api/variable/npmregistrylive.md +18 -0
  427. package/public/content/packages/github-action-effects/api/variable/npmregistrytest.md +21 -0
  428. package/public/content/packages/github-action-effects/api/variable/octokitauthapplive.md +18 -0
  429. package/public/content/packages/github-action-effects/api/variable/oidctokenissuerlive.md +18 -0
  430. package/public/content/packages/github-action-effects/api/variable/oidctokenissuertest.md +18 -0
  431. package/public/content/packages/github-action-effects/api/variable/packagemanageradapterlive.md +19 -0
  432. package/public/content/packages/github-action-effects/api/variable/packagemanageradaptertest.md +21 -0
  433. package/public/content/packages/github-action-effects/api/variable/packagemanagerinfo.md +22 -0
  434. package/public/content/packages/github-action-effects/api/variable/packagemanagername.md +18 -0
  435. package/public/content/packages/github-action-effects/api/variable/packagepublishlive.md +19 -0
  436. package/public/content/packages/github-action-effects/api/variable/packagepublishtest.md +27 -0
  437. package/public/content/packages/github-action-effects/api/variable/pathutils.md +31 -0
  438. package/public/content/packages/github-action-effects/api/variable/permissioncheckresult.md +31 -0
  439. package/public/content/packages/github-action-effects/api/variable/permissiongap.md +22 -0
  440. package/public/content/packages/github-action-effects/api/variable/permissionlevel.md +18 -0
  441. package/public/content/packages/github-action-effects/api/variable/pullrequestcommentlive.md +16 -0
  442. package/public/content/packages/github-action-effects/api/variable/pullrequestcommenttest.md +21 -0
  443. package/public/content/packages/github-action-effects/api/variable/pullrequestlive.md +16 -0
  444. package/public/content/packages/github-action-effects/api/variable/pullrequesttest.md +21 -0
  445. package/public/content/packages/github-action-effects/api/variable/ratelimiterlive.md +18 -0
  446. package/public/content/packages/github-action-effects/api/variable/ratelimitertest.md +21 -0
  447. package/public/content/packages/github-action-effects/api/variable/ratelimitstatus.md +23 -0
  448. package/public/content/packages/github-action-effects/api/variable/reportbuilder.md +33 -0
  449. package/public/content/packages/github-action-effects/api/variable/runnercontext.md +25 -0
  450. package/public/content/packages/github-action-effects/api/variable/sbomlive.md +18 -0
  451. package/public/content/packages/github-action-effects/api/variable/sbomtest.md +21 -0
  452. package/public/content/packages/github-action-effects/api/variable/semverresolver.md +30 -0
  453. package/public/content/packages/github-action-effects/api/variable/sigstore_bundle_v0_3_media_type.md +18 -0
  454. package/public/content/packages/github-action-effects/api/variable/sigstore_oidc_audience.md +18 -0
  455. package/public/content/packages/github-action-effects/api/variable/sigstoresignerlive.md +18 -0
  456. package/public/content/packages/github-action-effects/api/variable/sigstoresignertest.md +18 -0
  457. package/public/content/packages/github-action-effects/api/variable/slsa_provenance_v1.md +18 -0
  458. package/public/content/packages/github-action-effects/api/variable/spdx_v2_3.md +18 -0
  459. package/public/content/packages/github-action-effects/api/variable/status.md +18 -0
  460. package/public/content/packages/github-action-effects/api/variable/tokenpermissioncheckertest.md +21 -0
  461. package/public/content/packages/github-action-effects/api/variable/toolinstallerlive.md +18 -0
  462. package/public/content/packages/github-action-effects/api/variable/toolinstallertest.md +21 -0
  463. package/public/content/packages/github-action-effects/api/variable/treeentry.md +26 -0
  464. package/public/content/packages/github-action-effects/api/variable/treeentrycontent.md +22 -0
  465. package/public/content/packages/github-action-effects/api/variable/treeentrydeletion.md +22 -0
  466. package/public/content/packages/github-action-effects/api/variable/webhookpayload.md +51 -0
  467. package/public/content/packages/github-action-effects/api/variable/workflowdispatchlive.md +16 -0
  468. package/public/content/packages/github-action-effects/api/variable/workflowdispatchtest.md +21 -0
  469. package/public/content/packages/github-action-effects/api/variable/workspacedetectorlive.md +18 -0
  470. package/public/content/packages/github-action-effects/api/variable/workspacedetectortest.md +21 -0
  471. package/public/content/packages/github-action-effects/api/variable/workspaceinfo.md +22 -0
  472. package/public/content/packages/github-action-effects/api/variable/workspacepackage.md +24 -0
  473. package/public/content/packages/github-action-effects/api/variable/workspacetype.md +18 -0
  474. package/public/content/packages/github-action-effects/api.md +386 -0
  475. package/public/content/packages/rspress-builder/api/function/defineplugin.md +18 -0
  476. package/public/content/packages/rspress-builder/api/interface/rspressbundleoptions.md +28 -0
  477. package/public/content/packages/rspress-builder/api/interface/rspresspluginoptions.md +76 -0
  478. package/public/content/packages/rspress-builder/api.md +21 -0
  479. package/public/content/packages/silk-effects/api/class/analyzedworkspace.md +121 -0
  480. package/public/content/packages/silk-effects/api/class/biomeschemasync.md +33 -0
  481. package/public/content/packages/silk-effects/api/class/biomesyncerror.md +41 -0
  482. package/public/content/packages/silk-effects/api/class/changesetconfig.md +28 -0
  483. package/public/content/packages/silk-effects/api/class/changesetconfigerror.md +41 -0
  484. package/public/content/packages/silk-effects/api/class/changesetconfigreader.md +33 -0
  485. package/public/content/packages/silk-effects/api/class/configdiscovery.md +33 -0
  486. package/public/content/packages/silk-effects/api/class/confignotfounderror.md +41 -0
  487. package/public/content/packages/silk-effects/api/class/managedsection.md +18 -0
  488. package/public/content/packages/silk-effects/api/class/resolvedtool.md +62 -0
  489. package/public/content/packages/silk-effects/api/class/sectionblock.md +95 -0
  490. package/public/content/packages/silk-effects/api/class/sectiondefinition.md +104 -0
  491. package/public/content/packages/silk-effects/api/class/sectionparseerror.md +41 -0
  492. package/public/content/packages/silk-effects/api/class/sectionvalidationerror.md +41 -0
  493. package/public/content/packages/silk-effects/api/class/sectionwriteerror.md +41 -0
  494. package/public/content/packages/silk-effects/api/class/shellsectiondefinition.md +56 -0
  495. package/public/content/packages/silk-effects/api/class/silkpublishability.md +46 -0
  496. package/public/content/packages/silk-effects/api/class/silkpublishconfig.md +18 -0
  497. package/public/content/packages/silk-effects/api/class/silkworkspaceanalyzer.md +33 -0
  498. package/public/content/packages/silk-effects/api/class/tagformaterror.md +48 -0
  499. package/public/content/packages/silk-effects/api/class/tagstrategy.md +32 -0
  500. package/public/content/packages/silk-effects/api/class/toolcommand.md +76 -0
  501. package/public/content/packages/silk-effects/api/class/tooldefinition.md +73 -0
  502. package/public/content/packages/silk-effects/api/class/tooldiscovery.md +35 -0
  503. package/public/content/packages/silk-effects/api/class/toolnotfounderror.md +39 -0
  504. package/public/content/packages/silk-effects/api/class/toolresolutionerror.md +39 -0
  505. package/public/content/packages/silk-effects/api/class/toolversionmismatcherror.md +46 -0
  506. package/public/content/packages/silk-effects/api/class/versioningdetectionerror.md +34 -0
  507. package/public/content/packages/silk-effects/api/class/versioningstrategy.md +34 -0
  508. package/public/content/packages/silk-effects/api/class/workspaceanalysis.md +94 -0
  509. package/public/content/packages/silk-effects/api/class/workspaceanalysiserror.md +41 -0
  510. package/public/content/packages/silk-effects/api/function/buildschemaurl.md +26 -0
  511. package/public/content/packages/silk-effects/api/function/extractsemver.md +26 -0
  512. package/public/content/packages/silk-effects/api/function/readtargetsbinding.md +23 -0
  513. package/public/content/packages/silk-effects/api/function/savvybasepreamble.md +22 -0
  514. package/public/content/packages/silk-effects/api/function/savvyhookshygiene.md +22 -0
  515. package/public/content/packages/silk-effects/api/function/savvytoolsection.md +37 -0
  516. package/public/content/packages/silk-effects/api/interface/commitlintplugin.md +26 -0
  517. package/public/content/packages/silk-effects/api/interface/commitlintuserconfig.md +76 -0
  518. package/public/content/packages/silk-effects/api/interface/promptconfig.md +38 -0
  519. package/public/content/packages/silk-effects/api/interface/promptsettings.md +32 -0
  520. package/public/content/packages/silk-effects/api/interface/publishablepackage.md +44 -0
  521. package/public/content/packages/silk-effects/api/interface/rawpackagejson.md +44 -0
  522. package/public/content/packages/silk-effects/api/interface/rawpublishconfig.md +44 -0
  523. package/public/content/packages/silk-effects/api/interface/rawtargetobject.md +44 -0
  524. package/public/content/packages/silk-effects/api/interface/rulesconfig.md +26 -0
  525. package/public/content/packages/silk-effects/api/interface/targetbinding.md +52 -0
  526. package/public/content/packages/silk-effects/api/interface/targetgroupbinding.md +44 -0
  527. package/public/content/packages/silk-effects/api/interface/targetsbinding.md +32 -0
  528. package/public/content/packages/silk-effects/api/namespace/changesets.md +16 -0
  529. package/public/content/packages/silk-effects/api/namespace/commitlint.md +16 -0
  530. package/public/content/packages/silk-effects/api/namespace/lint.md +16 -0
  531. package/public/content/packages/silk-effects/api/namespace/turbo.md +16 -0
  532. package/public/content/packages/silk-effects/api/type/biomesyncoptions.md +16 -0
  533. package/public/content/packages/silk-effects/api/type/biomesyncresult.md +16 -0
  534. package/public/content/packages/silk-effects/api/type/changesetconfigfile.md +16 -0
  535. package/public/content/packages/silk-effects/api/type/changesetmode.md +18 -0
  536. package/public/content/packages/silk-effects/api/type/checkresult.md +16 -0
  537. package/public/content/packages/silk-effects/api/type/checkresultdefinition.md +24 -0
  538. package/public/content/packages/silk-effects/api/type/commentstyle.md +16 -0
  539. package/public/content/packages/silk-effects/api/type/configdiscoveryoptions.md +16 -0
  540. package/public/content/packages/silk-effects/api/type/configlocation.md +16 -0
  541. package/public/content/packages/silk-effects/api/type/configsource.md +16 -0
  542. package/public/content/packages/silk-effects/api/type/rawpublishtargets.md +18 -0
  543. package/public/content/packages/silk-effects/api/type/rawtargetvalue.md +18 -0
  544. package/public/content/packages/silk-effects/api/type/resolutionpolicy.md +16 -0
  545. package/public/content/packages/silk-effects/api/type/resolutionpolicydefinition.md +23 -0
  546. package/public/content/packages/silk-effects/api/type/ruleapplicability.md +18 -0
  547. package/public/content/packages/silk-effects/api/type/ruleconfigtuple.md +18 -0
  548. package/public/content/packages/silk-effects/api/type/ruleseverity.md +18 -0
  549. package/public/content/packages/silk-effects/api/type/sectiondiff.md +16 -0
  550. package/public/content/packages/silk-effects/api/type/sectiondiffdefinition.md +24 -0
  551. package/public/content/packages/silk-effects/api/type/silkchangesetconfigfile.md +16 -0
  552. package/public/content/packages/silk-effects/api/type/sourcerequirement.md +16 -0
  553. package/public/content/packages/silk-effects/api/type/sourcerequirementdefinition.md +23 -0
  554. package/public/content/packages/silk-effects/api/type/syncresult.md +16 -0
  555. package/public/content/packages/silk-effects/api/type/syncresultdefinition.md +24 -0
  556. package/public/content/packages/silk-effects/api/type/tagstrategytype.md +16 -0
  557. package/public/content/packages/silk-effects/api/type/toolsource.md +16 -0
  558. package/public/content/packages/silk-effects/api/type/versionextractor.md +16 -0
  559. package/public/content/packages/silk-effects/api/type/versionextractordefinition.md +28 -0
  560. package/public/content/packages/silk-effects/api/type/versioningstrategyresult.md +16 -0
  561. package/public/content/packages/silk-effects/api/type/versioningstrategytype.md +16 -0
  562. package/public/content/packages/silk-effects/api/variable/biomeschemasynclive.md +18 -0
  563. package/public/content/packages/silk-effects/api/variable/biomesyncoptions.md +23 -0
  564. package/public/content/packages/silk-effects/api/variable/biomesyncresult.md +22 -0
  565. package/public/content/packages/silk-effects/api/variable/changesetconfigfile.md +36 -0
  566. package/public/content/packages/silk-effects/api/variable/changesetconfiglive.md +18 -0
  567. package/public/content/packages/silk-effects/api/variable/changesetconfigreaderlive.md +18 -0
  568. package/public/content/packages/silk-effects/api/variable/checkresult.md +70 -0
  569. package/public/content/packages/silk-effects/api/variable/commentstyle.md +18 -0
  570. package/public/content/packages/silk-effects/api/variable/configdiscoverylive.md +18 -0
  571. package/public/content/packages/silk-effects/api/variable/configdiscoveryoptions.md +21 -0
  572. package/public/content/packages/silk-effects/api/variable/configlocation.md +21 -0
  573. package/public/content/packages/silk-effects/api/variable/configsource.md +18 -0
  574. package/public/content/packages/silk-effects/api/variable/managedsectionlive.md +18 -0
  575. package/public/content/packages/silk-effects/api/variable/publishabilitydetectoradaptivelive.md +19 -0
  576. package/public/content/packages/silk-effects/api/variable/resolutionpolicy.md +92 -0
  577. package/public/content/packages/silk-effects/api/variable/savvybasesection.md +25 -0
  578. package/public/content/packages/silk-effects/api/variable/savvyhookssection.md +18 -0
  579. package/public/content/packages/silk-effects/api/variable/sectiondiff.md +70 -0
  580. package/public/content/packages/silk-effects/api/variable/silkchangesetconfigfile.md +40 -0
  581. package/public/content/packages/silk-effects/api/variable/silkpublishabilitydetectorlive.md +18 -0
  582. package/public/content/packages/silk-effects/api/variable/silkworkspaceanalyzerlive.md +20 -0
  583. package/public/content/packages/silk-effects/api/variable/sourcerequirement.md +92 -0
  584. package/public/content/packages/silk-effects/api/variable/syncresult.md +81 -0
  585. package/public/content/packages/silk-effects/api/variable/tagstrategylive.md +18 -0
  586. package/public/content/packages/silk-effects/api/variable/tagstrategytype.md +18 -0
  587. package/public/content/packages/silk-effects/api/variable/tooldiscoverylive.md +19 -0
  588. package/public/content/packages/silk-effects/api/variable/toolsource.md +18 -0
  589. package/public/content/packages/silk-effects/api/variable/versionextractor.md +99 -0
  590. package/public/content/packages/silk-effects/api/variable/versioningstrategylive.md +18 -0
  591. package/public/content/packages/silk-effects/api/variable/versioningstrategyresult.md +22 -0
  592. package/public/content/packages/silk-effects/api/variable/versioningstrategytype.md +18 -0
  593. package/public/content/packages/silk-effects/api.md +144 -0
  594. package/public/content/packages/templates/api/function/createbiome.md +26 -0
  595. package/public/content/packages/templates/api/function/createchangeset.md +26 -0
  596. package/public/content/packages/templates/api/function/creategitignore.md +26 -0
  597. package/public/content/packages/templates/api/function/createpackagejson.md +26 -0
  598. package/public/content/packages/templates/api/function/createpnpmworkspace.md +26 -0
  599. package/public/content/packages/templates/api/function/createreadme.md +26 -0
  600. package/public/content/packages/templates/api/function/createtsconfig.md +26 -0
  601. package/public/content/packages/templates/api/function/createturboroot.md +26 -0
  602. package/public/content/packages/templates/api/function/createturboworkspace.md +26 -0
  603. package/public/content/packages/templates/api/function/createvscode.md +26 -0
  604. package/public/content/packages/templates/api/function/createworkspace.md +26 -0
  605. package/public/content/packages/templates/api/interface/templateentry.md +44 -0
  606. package/public/content/packages/templates/api/type/biomeoptionstype.md +18 -0
  607. package/public/content/packages/templates/api/type/changesetoptionstype.md +18 -0
  608. package/public/content/packages/templates/api/type/gitignoreoptionstype.md +18 -0
  609. package/public/content/packages/templates/api/type/packagejsonoptionstype.md +18 -0
  610. package/public/content/packages/templates/api/type/pnpmworkspaceoptionstype.md +18 -0
  611. package/public/content/packages/templates/api/type/readmeoptionstype.md +18 -0
  612. package/public/content/packages/templates/api/type/template.md +18 -0
  613. package/public/content/packages/templates/api/type/tsconfigoptionstype.md +18 -0
  614. package/public/content/packages/templates/api/type/turborootoptionstype.md +18 -0
  615. package/public/content/packages/templates/api/type/turboworkspaceoptionstype.md +18 -0
  616. package/public/content/packages/templates/api/type/updatetemplate.md +18 -0
  617. package/public/content/packages/templates/api/type/vscodeoptionstype.md +18 -0
  618. package/public/content/packages/templates/api/type/workspaceoptionstype.md +18 -0
  619. package/public/content/packages/templates/api/variable/biomeoptions.md +22 -0
  620. package/public/content/packages/templates/api/variable/changesetoptions.md +29 -0
  621. package/public/content/packages/templates/api/variable/gitignoreoptions.md +27 -0
  622. package/public/content/packages/templates/api/variable/packagejsonoptions.md +60 -0
  623. package/public/content/packages/templates/api/variable/pnpmworkspaceoptions.md +23 -0
  624. package/public/content/packages/templates/api/variable/readmeoptions.md +21 -0
  625. package/public/content/packages/templates/api/variable/tsconfigoptions.md +26 -0
  626. package/public/content/packages/templates/api/variable/turborootoptions.md +25 -0
  627. package/public/content/packages/templates/api/variable/turboworkspaceoptions.md +20 -0
  628. package/public/content/packages/templates/api/variable/vscodeoptions.md +25 -0
  629. package/public/content/packages/templates/api/variable/workspaceoptions.md +33 -0
  630. package/public/content/packages/templates/api.md +60 -0
  631. package/public/content/packages/tsdown-plugins/api/class/buildcollector.md +62 -0
  632. package/public/content/packages/tsdown-plugins/api/class/buildcollectortag.md +16 -0
  633. package/public/content/packages/tsdown-plugins/api/class/buildreport.md +16 -0
  634. package/public/content/packages/tsdown-plugins/api/class/configvalidationerror.md +41 -0
  635. package/public/content/packages/tsdown-plugins/api/class/configvalidator.md +18 -0
  636. package/public/content/packages/tsdown-plugins/api/class/diagnosticentry.md +18 -0
  637. package/public/content/packages/tsdown-plugins/api/class/emittedfile.md +18 -0
  638. package/public/content/packages/tsdown-plugins/api/class/environmentdetector.md +16 -0
  639. package/public/content/packages/tsdown-plugins/api/class/executorresolver.md +16 -0
  640. package/public/content/packages/tsdown-plugins/api/class/formatselector.md +16 -0
  641. package/public/content/packages/tsdown-plugins/api/class/metagenerationerror.md +41 -0
  642. package/public/content/packages/tsdown-plugins/api/class/outputrenderer.md +16 -0
  643. package/public/content/packages/tsdown-plugins/api/class/passreport.md +18 -0
  644. package/public/content/packages/tsdown-plugins/api/class/reporttimings.md +16 -0
  645. package/public/content/packages/tsdown-plugins/api/class/targetgroupreport.md +16 -0
  646. package/public/content/packages/tsdown-plugins/api/class/tsconfigresolver.md +84 -0
  647. package/public/content/packages/tsdown-plugins/api/function/applysubdirmetaentries.md +21 -0
  648. package/public/content/packages/tsdown-plugins/api/function/buildemittedmanifest.md +18 -0
  649. package/public/content/packages/tsdown-plugins/api/function/buildmetricsplugin.md +18 -0
  650. package/public/content/packages/tsdown-plugins/api/function/buildresolvedtsconfig.md +18 -0
  651. package/public/content/packages/tsdown-plugins/api/function/buildtargetgroups.md +18 -0
  652. package/public/content/packages/tsdown-plugins/api/function/cjsdefaultinterop.md +18 -0
  653. package/public/content/packages/tsdown-plugins/api/function/computeexefilename.md +18 -0
  654. package/public/content/packages/tsdown-plugins/api/function/createtimer.md +18 -0
  655. package/public/content/packages/tsdown-plugins/api/function/createtsdownlogger.md +18 -0
  656. package/public/content/packages/tsdown-plugins/api/function/defaultmanifesttransform.md +20 -0
  657. package/public/content/packages/tsdown-plugins/api/function/deriveexportpaths.md +18 -0
  658. package/public/content/packages/tsdown-plugins/api/function/derivetargetgroupoptions.md +18 -0
  659. package/public/content/packages/tsdown-plugins/api/function/emitmanifest.md +18 -0
  660. package/public/content/packages/tsdown-plugins/api/function/extractentries.md +16 -0
  661. package/public/content/packages/tsdown-plugins/api/function/flattenissues.md +21 -0
  662. package/public/content/packages/tsdown-plugins/api/function/formattime.md +16 -0
  663. package/public/content/packages/tsdown-plugins/api/function/generatemeta.md +18 -0
  664. package/public/content/packages/tsdown-plugins/api/function/istargetobject.md +18 -0
  665. package/public/content/packages/tsdown-plugins/api/function/nodebuiltindefaultinterop.md +18 -0
  666. package/public/content/packages/tsdown-plugins/api/function/normalizebinpaths.md +18 -0
  667. package/public/content/packages/tsdown-plugins/api/function/normalizeexeoptions.md +18 -0
  668. package/public/content/packages/tsdown-plugins/api/function/normalizeloosefiles.md +18 -0
  669. package/public/content/packages/tsdown-plugins/api/function/normalizemetaoptions.md +21 -0
  670. package/public/content/packages/tsdown-plugins/api/function/packagejsonentries.md +18 -0
  671. package/public/content/packages/tsdown-plugins/api/function/readtsconfigjsx.md +18 -0
  672. package/public/content/packages/tsdown-plugins/api/function/removedeclarationmaps.md +18 -0
  673. package/public/content/packages/tsdown-plugins/api/function/renderreport.md +17 -0
  674. package/public/content/packages/tsdown-plugins/api/function/resolvejsxconfig.md +18 -0
  675. package/public/content/packages/tsdown-plugins/api/function/resolvemanifest.md +18 -0
  676. package/public/content/packages/tsdown-plugins/api/function/resolvenextversions.md +18 -0
  677. package/public/content/packages/tsdown-plugins/api/function/resolveportabletsconfig.md +27 -0
  678. package/public/content/packages/tsdown-plugins/api/function/resolvetargets.md +21 -0
  679. package/public/content/packages/tsdown-plugins/api/function/rewritemetaversions.md +18 -0
  680. package/public/content/packages/tsdown-plugins/api/function/runexebuild.md +18 -0
  681. package/public/content/packages/tsdown-plugins/api/function/runmetapass.md +18 -0
  682. package/public/content/packages/tsdown-plugins/api/function/serializeissues.md +18 -0
  683. package/public/content/packages/tsdown-plugins/api/function/syncpublicdir.md +18 -0
  684. package/public/content/packages/tsdown-plugins/api/function/transformbin.md +18 -0
  685. package/public/content/packages/tsdown-plugins/api/function/transformexports.md +18 -0
  686. package/public/content/packages/tsdown-plugins/api/function/transformmanifest.md +18 -0
  687. package/public/content/packages/tsdown-plugins/api/function/writeissuesartifact.md +23 -0
  688. package/public/content/packages/tsdown-plugins/api/function/writeresolvedtsconfig.md +18 -0
  689. package/public/content/packages/tsdown-plugins/api/function/writetargetsbinding.md +18 -0
  690. package/public/content/packages/tsdown-plugins/api/interface/buildemittedmanifestoptions.md +69 -0
  691. package/public/content/packages/tsdown-plugins/api/interface/buildgroupspec.md +32 -0
  692. package/public/content/packages/tsdown-plugins/api/interface/buildissues.md +56 -0
  693. package/public/content/packages/tsdown-plugins/api/interface/buildtargetgroupsoptions.md +213 -0
  694. package/public/content/packages/tsdown-plugins/api/interface/cssoptions.md +36 -0
  695. package/public/content/packages/tsdown-plugins/api/interface/derivedtsdownoptions.md +114 -0
  696. package/public/content/packages/tsdown-plugins/api/interface/deriveoptions.md +108 -0
  697. package/public/content/packages/tsdown-plugins/api/interface/diagnosticinput.md +66 -0
  698. package/public/content/packages/tsdown-plugins/api/interface/emitmanifestoptions.md +71 -0
  699. package/public/content/packages/tsdown-plugins/api/interface/entryoverride.md +86 -0
  700. package/public/content/packages/tsdown-plugins/api/interface/execonfig.md +60 -0
  701. package/public/content/packages/tsdown-plugins/api/interface/exerewrite.md +44 -0
  702. package/public/content/packages/tsdown-plugins/api/interface/exeseaconfig.md +38 -0
  703. package/public/content/packages/tsdown-plugins/api/interface/exetarget.md +38 -0
  704. package/public/content/packages/tsdown-plugins/api/interface/exetargetinput.md +32 -0
  705. package/public/content/packages/tsdown-plugins/api/interface/extractoptions.md +32 -0
  706. package/public/content/packages/tsdown-plugins/api/interface/extractresult.md +34 -0
  707. package/public/content/packages/tsdown-plugins/api/interface/formatter.md +30 -0
  708. package/public/content/packages/tsdown-plugins/api/interface/formattercontext.md +30 -0
  709. package/public/content/packages/tsdown-plugins/api/interface/generatemetaoptions.md +124 -0
  710. package/public/content/packages/tsdown-plugins/api/interface/jsxconfig.md +36 -0
  711. package/public/content/packages/tsdown-plugins/api/interface/loosefilespec.md +36 -0
  712. package/public/content/packages/tsdown-plugins/api/interface/metaoptions.md +42 -0
  713. package/public/content/packages/tsdown-plugins/api/interface/metaresult.md +30 -0
  714. package/public/content/packages/tsdown-plugins/api/interface/nextversions.md +36 -0
  715. package/public/content/packages/tsdown-plugins/api/interface/normalizedexe.md +48 -0
  716. package/public/content/packages/tsdown-plugins/api/interface/normalizedloosefile.md +60 -0
  717. package/public/content/packages/tsdown-plugins/api/interface/normalizedmeta.md +41 -0
  718. package/public/content/packages/tsdown-plugins/api/interface/packagejsonentriesoptions.md +34 -0
  719. package/public/content/packages/tsdown-plugins/api/interface/packagejsonlike.md +30 -0
  720. package/public/content/packages/tsdown-plugins/api/interface/pkgoscpu.md +32 -0
  721. package/public/content/packages/tsdown-plugins/api/interface/plaindiagnostic.md +68 -0
  722. package/public/content/packages/tsdown-plugins/api/interface/portabletsconfig.md +36 -0
  723. package/public/content/packages/tsdown-plugins/api/interface/publishtargetobject.md +44 -0
  724. package/public/content/packages/tsdown-plugins/api/interface/renderedoutput.md +36 -0
  725. package/public/content/packages/tsdown-plugins/api/interface/renderreportoptions.md +44 -0
  726. package/public/content/packages/tsdown-plugins/api/interface/resolvedcompileroptions.md +26 -0
  727. package/public/content/packages/tsdown-plugins/api/interface/resolvedgroup.md +44 -0
  728. package/public/content/packages/tsdown-plugins/api/interface/resolvedtarget.md +52 -0
  729. package/public/content/packages/tsdown-plugins/api/interface/resolvedtsconfig.md +36 -0
  730. package/public/content/packages/tsdown-plugins/api/interface/resolvedtsconfigoptions.md +50 -0
  731. package/public/content/packages/tsdown-plugins/api/interface/runexebuildoptions.md +74 -0
  732. package/public/content/packages/tsdown-plugins/api/interface/runmetapassoptions.md +104 -0
  733. package/public/content/packages/tsdown-plugins/api/interface/targetgroupref.md +38 -0
  734. package/public/content/packages/tsdown-plugins/api/interface/targetresolution.md +32 -0
  735. package/public/content/packages/tsdown-plugins/api/interface/timer.md +30 -0
  736. package/public/content/packages/tsdown-plugins/api/interface/transformmanifestoptions.md +50 -0
  737. package/public/content/packages/tsdown-plugins/api/interface/tsconfigjsx.md +32 -0
  738. package/public/content/packages/tsdown-plugins/api/interface/tsdocoptions.md +32 -0
  739. package/public/content/packages/tsdown-plugins/api/interface/tsdoctagdefinition.md +38 -0
  740. package/public/content/packages/tsdown-plugins/api/interface/tsdownlogger.md +62 -0
  741. package/public/content/packages/tsdown-plugins/api/interface/validationinput.md +69 -0
  742. package/public/content/packages/tsdown-plugins/api/interface/warningsuppressionrule.md +32 -0
  743. package/public/content/packages/tsdown-plugins/api/type/buildformat.md +18 -0
  744. package/public/content/packages/tsdown-plugins/api/type/buildplatform.md +18 -0
  745. package/public/content/packages/tsdown-plugins/api/type/dualexports.md +18 -0
  746. package/public/content/packages/tsdown-plugins/api/type/environment.md +16 -0
  747. package/public/content/packages/tsdown-plugins/api/type/exebuild.md +18 -0
  748. package/public/content/packages/tsdown-plugins/api/type/executor.md +16 -0
  749. package/public/content/packages/tsdown-plugins/api/type/json.md +16 -0
  750. package/public/content/packages/tsdown-plugins/api/type/loosefiles.md +18 -0
  751. package/public/content/packages/tsdown-plugins/api/type/outputformat.md +16 -0
  752. package/public/content/packages/tsdown-plugins/api/type/passkind.md +16 -0
  753. package/public/content/packages/tsdown-plugins/api/type/publishtargets.md +18 -0
  754. package/public/content/packages/tsdown-plugins/api/type/publishtargetvalue.md +18 -0
  755. package/public/content/packages/tsdown-plugins/api/type/targetgroupid.md +18 -0
  756. package/public/content/packages/tsdown-plugins/api/type/tsdownbuild.md +18 -0
  757. package/public/content/packages/tsdown-plugins/api/variable/ciannotationsformatter.md +16 -0
  758. package/public/content/packages/tsdown-plugins/api/variable/configvalidatorlive.md +18 -0
  759. package/public/content/packages/tsdown-plugins/api/variable/default_exe_node_version.md +18 -0
  760. package/public/content/packages/tsdown-plugins/api/variable/environmentdetectorlive.md +16 -0
  761. package/public/content/packages/tsdown-plugins/api/variable/executorresolverlive.md +16 -0
  762. package/public/content/packages/tsdown-plugins/api/variable/formatselectorlive.md +16 -0
  763. package/public/content/packages/tsdown-plugins/api/variable/jsonformatter.md +16 -0
  764. package/public/content/packages/tsdown-plugins/api/variable/markdownformatter.md +16 -0
  765. package/public/content/packages/tsdown-plugins/api/variable/outputrendererlive.md +16 -0
  766. package/public/content/packages/tsdown-plugins/api/variable/reportpipelinelive.md +17 -0
  767. package/public/content/packages/tsdown-plugins/api/variable/silentformatter.md +16 -0
  768. package/public/content/packages/tsdown-plugins/api/variable/terminalformatter.md +16 -0
  769. package/public/content/packages/tsdown-plugins/api.md +165 -0
  770. package/public/content/standards/api-model-pipeline.md +6 -5
  771. package/resources/doc-index.js +2 -2
  772. package/resources/index.js +10 -1
  773. package/tools/docs-search.js +1 -1
  774. package/public/content/packages/rslib-builder/overview.md +0 -68
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/type/executor
3
+ title: "Executor — tsdown-plugins type"
4
+ summary: "type Executor from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # Executor
13
+
14
+ ```ts
15
+ type Executor = "human" | "agent" | "ci";
16
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/type/json
3
+ title: "Json — tsdown-plugins type"
4
+ summary: "type Json from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # Json
13
+
14
+ ```ts
15
+ type Json = Record<string, unknown>;
16
+ ```
@@ -0,0 +1,18 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/type/loosefiles
3
+ title: "LooseFiles — tsdown-plugins type"
4
+ summary: "Map of literal output filename to its source (bare string) or a `{ source, format }` spec."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # LooseFiles
13
+
14
+ Map of literal output filename to its source (bare string) or a `{ source, format }` spec.
15
+
16
+ ```ts
17
+ type LooseFiles = Record<string, string | LooseFileSpec>;
18
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/type/outputformat
3
+ title: "OutputFormat — tsdown-plugins type"
4
+ summary: "type OutputFormat from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # OutputFormat
13
+
14
+ ```ts
15
+ type OutputFormat = "terminal" | "json" | "markdown" | "ci-annotations" | "silent";
16
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/type/passkind
3
+ title: "PassKind — tsdown-plugins type"
4
+ summary: "type PassKind from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # PassKind
13
+
14
+ ```ts
15
+ type PassKind = PassReport["id"];
16
+ ```
@@ -0,0 +1,18 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/type/publishtargets
3
+ title: "PublishTargets — tsdown-plugins type"
4
+ summary: "The `publishConfig.targets` map, keyed by target id (`npm`, `github`, or a custom key)."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # PublishTargets
13
+
14
+ The `publishConfig.targets` map, keyed by target id (`npm`, `github`, or a custom key).
15
+
16
+ ```ts
17
+ type PublishTargets = Record<string, PublishTargetValue>;
18
+ ```
@@ -0,0 +1,18 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/type/publishtargetvalue
3
+ title: "PublishTargetValue — tsdown-plugins type"
4
+ summary: "A `publishConfig.targets` value: `true` (well-known registry, base name), a string (name override), or an object."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # PublishTargetValue
13
+
14
+ A `publishConfig.targets` value: `true` (well-known registry, base name), a string (name override), or an object.
15
+
16
+ ```ts
17
+ type PublishTargetValue = true | string | PublishTargetObject;
18
+ ```
@@ -0,0 +1,18 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/type/targetgroupid
3
+ title: "TargetGroupId — tsdown-plugins type"
4
+ summary: "A build group id: \"dev\" or any prod byte-variant id (e.g. \"npm\", \"github\", a custom key)."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # TargetGroupId
13
+
14
+ A build group id: "dev" or any prod byte-variant id (e.g. "npm", "github", a custom key).
15
+
16
+ ```ts
17
+ type TargetGroupId = string;
18
+ ```
@@ -0,0 +1,18 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/type/tsdownbuild
3
+ title: "TsdownBuild — tsdown-plugins type"
4
+ summary: "Signature compatible with tsdown's `build(inlineConfig)`."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # TsdownBuild
13
+
14
+ Signature compatible with tsdown's `build(inlineConfig)`.
15
+
16
+ ```ts
17
+ type TsdownBuild = (config: Record<string, unknown>) => Promise<unknown>;
18
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/ciannotationsformatter
3
+ title: "CiAnnotationsFormatter — tsdown-plugins variable"
4
+ summary: "variable CiAnnotationsFormatter from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # CiAnnotationsFormatter
13
+
14
+ ```ts
15
+ CiAnnotationsFormatter: Formatter
16
+ ```
@@ -0,0 +1,18 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/configvalidatorlive
3
+ title: "ConfigValidatorLive — tsdown-plugins variable"
4
+ summary: "Live ConfigValidator: wraps the synchronous rule set, surfacing ConfigValidationError as a typed Effect failure."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # ConfigValidatorLive
13
+
14
+ Live [ConfigValidator](silk://packages/tsdown-plugins/api/class/configvalidator): wraps the synchronous rule set, surfacing [ConfigValidationError](silk://packages/tsdown-plugins/api/class/configvalidationerror) as a typed Effect failure.
15
+
16
+ ```ts
17
+ ConfigValidatorLive: Layer.Layer<ConfigValidator, never, never>
18
+ ```
@@ -0,0 +1,18 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/default_exe_node_version
3
+ title: "DEFAULT_EXE_NODE_VERSION — tsdown-plugins variable"
4
+ summary: "Default Node runtime embedded in the SEA (parity with the vitest-agent reference)."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # DEFAULT_EXE_NODE_VERSION
13
+
14
+ Default Node runtime embedded in the SEA (parity with the vitest-agent reference).
15
+
16
+ ```ts
17
+ DEFAULT_EXE_NODE_VERSION = "25.9.0"
18
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/environmentdetectorlive
3
+ title: "EnvironmentDetectorLive — tsdown-plugins variable"
4
+ summary: "variable EnvironmentDetectorLive from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # EnvironmentDetectorLive
13
+
14
+ ```ts
15
+ EnvironmentDetectorLive: Layer.Layer<EnvironmentDetector, never, never>
16
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/executorresolverlive
3
+ title: "ExecutorResolverLive — tsdown-plugins variable"
4
+ summary: "variable ExecutorResolverLive from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # ExecutorResolverLive
13
+
14
+ ```ts
15
+ ExecutorResolverLive: Layer.Layer<ExecutorResolver, never, never>
16
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/formatselectorlive
3
+ title: "FormatSelectorLive — tsdown-plugins variable"
4
+ summary: "variable FormatSelectorLive from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # FormatSelectorLive
13
+
14
+ ```ts
15
+ FormatSelectorLive: Layer.Layer<FormatSelector, never, never>
16
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/jsonformatter
3
+ title: "JsonFormatter — tsdown-plugins variable"
4
+ summary: "variable JsonFormatter from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # JsonFormatter
13
+
14
+ ```ts
15
+ JsonFormatter: Formatter
16
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/markdownformatter
3
+ title: "MarkdownFormatter — tsdown-plugins variable"
4
+ summary: "variable MarkdownFormatter from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # MarkdownFormatter
13
+
14
+ ```ts
15
+ MarkdownFormatter: Formatter
16
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/outputrendererlive
3
+ title: "OutputRendererLive — tsdown-plugins variable"
4
+ summary: "variable OutputRendererLive from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # OutputRendererLive
13
+
14
+ ```ts
15
+ OutputRendererLive: Layer.Layer<OutputRenderer, never, never>
16
+ ```
@@ -0,0 +1,17 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/reportpipelinelive
3
+ title: "ReportPipelineLive — tsdown-plugins variable"
4
+ summary: "variable ReportPipelineLive from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # ReportPipelineLive
13
+
14
+ ```ts
15
+ ReportPipelineLive: Layer.Layer<EnvironmentDetector | ExecutorResolver | FormatSelector |
16
+ OutputRenderer, never, never>
17
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/silentformatter
3
+ title: "SilentFormatter — tsdown-plugins variable"
4
+ summary: "variable SilentFormatter from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # SilentFormatter
13
+
14
+ ```ts
15
+ SilentFormatter: Formatter
16
+ ```
@@ -0,0 +1,16 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api/variable/terminalformatter
3
+ title: "TerminalFormatter — tsdown-plugins variable"
4
+ summary: "variable TerminalFormatter from @savvy-web/tsdown-plugins."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.3
9
+ related: []
10
+ ---
11
+
12
+ # TerminalFormatter
13
+
14
+ ```ts
15
+ TerminalFormatter: Formatter
16
+ ```
@@ -0,0 +1,165 @@
1
+ ---
2
+ id: packages/tsdown-plugins/api
3
+ title: "@savvy-web/tsdown-plugins — API reference"
4
+ summary: "@savvy-web/tsdown-plugins API reference: 138 documented symbols."
5
+ tier: packages
6
+ source: generated
7
+ tags: [tsdown-plugins, api]
8
+ priority: 0.4
9
+ related: []
10
+ ---
11
+
12
+ # @savvy-web/tsdown-plugins — API reference
13
+
14
+ ## class
15
+
16
+ - [`BuildCollector`](silk://packages/tsdown-plugins/api/class/buildcollector) — Stateful build-event accumulator. The write surface is synchronous so it can be called directly from tsdown's customLogger and API Extractor's messageCallback (both invoked synchronously). `snapshot` builds the immutable BuildReport the Effect render pipeline consumes.
17
+ - [`BuildCollectorTag`](silk://packages/tsdown-plugins/api/class/buildcollectortag)
18
+ - [`BuildReport`](silk://packages/tsdown-plugins/api/class/buildreport)
19
+ - [`ConfigValidationError`](silk://packages/tsdown-plugins/api/class/configvalidationerror) — A savvy.build.ts or publishConfig.targets config is structurally invalid; raised before any build work.
20
+ - [`ConfigValidator`](silk://packages/tsdown-plugins/api/class/configvalidator) — Fast-fail config validator; runs first in the bundler over the resolved config.
21
+ - [`DiagnosticEntry`](silk://packages/tsdown-plugins/api/class/diagnosticentry) — A captured warning or error, from tsdown's logger, rolldown's onLog, or API Extractor.
22
+ - [`EmittedFile`](silk://packages/tsdown-plugins/api/class/emittedfile) — One emitted output file with its in-memory byte size (gzip only when --verbose).
23
+ - [`EnvironmentDetector`](silk://packages/tsdown-plugins/api/class/environmentdetector)
24
+ - [`ExecutorResolver`](silk://packages/tsdown-plugins/api/class/executorresolver)
25
+ - [`FormatSelector`](silk://packages/tsdown-plugins/api/class/formatselector)
26
+ - [`MetaGenerationError`](silk://packages/tsdown-plugins/api/class/metagenerationerror) — API Extractor meta generation failed for an entry.
27
+ - [`OutputRenderer`](silk://packages/tsdown-plugins/api/class/outputrenderer)
28
+ - [`PassReport`](silk://packages/tsdown-plugins/api/class/passreport) — One build pass within a target group (js / dts / loose / exe / meta).
29
+ - [`ReportTimings`](silk://packages/tsdown-plugins/api/class/reporttimings)
30
+ - [`TargetGroupReport`](silk://packages/tsdown-plugins/api/class/targetgroupreport)
31
+ - [`TsconfigResolver`](silk://packages/tsdown-plugins/api/class/tsconfigresolver) — Resolves a TypeScript `ParsedCommandLine` to a portable, JSON-serializable tsconfig (compilerOptions-only) for virtual TypeScript environments.
32
+
33
+ ## function
34
+
35
+ - [`applySubdirMetaEntries`](silk://packages/tsdown-plugins/api/function/applysubdirmetaentries) — For each `outSubdir` override, point its meta entry at the isolated sub-package barrel.
36
+ - [`buildEmittedManifest`](silk://packages/tsdown-plugins/api/function/buildemittedmanifest) — Compute the final manifest bytes for a TargetGroup (catalog resolution + standard transforms).
37
+ - [`buildMetricsPlugin`](silk://packages/tsdown-plugins/api/function/buildmetricsplugin) — Rolldown plugin that records emitted-file metrics into the BuildCollector via writeBundle (which fires for the JS pass AND the emitDtsOnly dts pass — verified against tsdown 0.22.3), plus a defensive onLog for rolldown-level diagnostics that bypass tsdown's logger. Append it to each build pass's `plugins` array. `bytes` is taken from the in-memory chunk/asset content (no fs); `gzip` is computed only when `verbose`.
38
+ - [`buildResolvedTsconfig`](silk://packages/tsdown-plugins/api/function/buildresolvedtsconfig) — Build the portable absolute-path tsconfig object (ported from rslib writeBundleTempConfig).
39
+ - [`buildTargetGroups`](silk://packages/tsdown-plugins/api/function/buildtargetgroups) — Run tsdown.build() per TargetGroup. Composable so the escape hatch gets multi-group too. Each group runs TWO passes to the SAME outDir: 1. JS pass — per-module JS (`unbundle: true`, `dts: false`), with the `emitManifest` plugin and the `public/` copy. Default `clean: true` gives it a fresh outDir. 2. dts pass — bundled declarations only (`unbundle: false`, `dts: { emitDtsOnly: true }`, `clean: false`). No manifest plugin, no copy, no sourcemaps. `clean: false` is load-bearing: it must NOT wipe the JS the first pass just wrote. Why two passes: tsdown's `unbundle` maps to rolldown `output.preserveModules` for the whole build (JS and the dts plugin share it), so a single pass cannot give per-module JS + bundled dts. Per-module dts breaks type portability (TS2883); bundling the JS re-bundles workspace consumers. The split keeps per-module JS AND rolled-up, self-contained declarations.
40
+ - [`cjsDefaultInterop`](silk://packages/tsdown-plugins/api/function/cjsdefaultinterop) — Rolldown plugin: append the CJS default-interop footer to ENTRY chunks of the `cjs` format that export a default alongside named exports. Gated tightly so it never touches the wrong chunk: - format must be `cjs` (ESM is untouched; `import().default` on ESM is already correct); - the chunk must be an ENTRY chunk — never a SHARED chunk. Shared chunks are required by entry chunks via their named bindings (e.g. `require_changesets.changesets_exports.X`); reassigning a shared chunk's `module.exports` to its own default would break those reads (many bundled vendor chunks carry an `exports.default`); - the chunk must export a `default` AND at least one named export. A default-only chunk already gets `module.exports = <default>` from rolldown, and a named-only chunk has no default to promote. The emitted footer is also self-guarded (`module.exports.default !== void 0`), so it is a runtime no-op whenever the static gate is ever too generous.
41
+ - [`computeExeFileName`](silk://packages/tsdown-plugins/api/function/computeexefilename) — The exact filename `@tsdown/exe` emits for a SEA target, mirroring tsdown's `resolveOutputFileName`: base fileName + `-<platform>-<arch>` + `.exe` on win. Single source of truth so the manifest value never drifts from the on-disk file.
42
+ - [`createTimer`](silk://packages/tsdown-plugins/api/function/createtimer) — Create a wall-clock timer. (Date.now is fine in runtime build code.)
43
+ - [`createTsdownLogger`](silk://packages/tsdown-plugins/api/function/createtsdownlogger) — A tsdown `customLogger` that routes warnings/errors into the BuildCollector instead of the console. Paired with `logLevel: "silent"` in the same build config: silent suppresses tsdown's own console output while this logger still receives every message (verified against tsdown 0.22.3). info/success are dropped — file metrics come from the writeBundle plugin and timing from our timer.
44
+ - [`defaultManifestTransform`](silk://packages/tsdown-plugins/api/function/defaultmanifesttransform) — The default `transform` applied to every package's manifest when its `savvy.build.ts` does not provide one of its own. Strips the build/dev-only fields in `NON_PUBLISHED_FIELDS` from the emitted package.json. This is the pattern nearly every package repeated by hand (inherited from rslib-builder); `defineBuild` now applies it automatically so a package needs a `transform` only when it has genuinely custom manifest work to do (e.g. silk promoting workspace deps to peerDependencies). A custom transform REPLACES this default — re-export it and call it from a custom transform to keep the stripping. `targetGroup` is accepted (so this is assignable wherever the full transform signature is expected) but unused; the strip is identical for every group. Pure: the supplied `pkg` is NOT mutated — a shallow copy with the fields removed is returned, so external callers invoking this from a custom transform keep their input intact.
45
+ - [`deriveExportPaths`](silk://packages/tsdown-plugins/api/function/deriveexportpaths) — Map entry names to export paths using the package exports map. index maps to ".".
46
+ - [`deriveTargetGroupOptions`](silk://packages/tsdown-plugins/api/function/derivetargetgroupoptions) — Derive the JS-pass tsdown options for one TargetGroup (per-module JS, no dts).
47
+ - [`emitManifest`](silk://packages/tsdown-plugins/api/function/emitmanifest) — Rolldown plugin: emit the transformed package.json + LICENSE/README into the output pkg/ root.
48
+ - [`extractEntries`](silk://packages/tsdown-plugins/api/function/extractentries)
49
+ - [`flattenIssues`](silk://packages/tsdown-plugins/api/function/flattenissues) — Flatten a build snapshot into the aggregated, de-duplicated issues artifact. Pure.
50
+ - [`formatTime`](silk://packages/tsdown-plugins/api/function/formattime)
51
+ - [`generateMeta`](silk://packages/tsdown-plugins/api/function/generatemeta) — Generate the api-model meta bundle from already-emitted .d.ts. Writes tsdoc.json (idempotent), runs the extractor per entry, merges if needed, and writes the "virtual TS env" trio to outMetaDir (`<unscoped>.api.json` + the final `package.json` + a portable `tsconfig.json`), copying that trio into each localPaths dir. The api-extractor `tsdoc-metadata.json` is a published-package artifact and is written into `dtsDir` (the built pkg/), not the meta bundle.
52
+ - [`isTargetObject`](silk://packages/tsdown-plugins/api/function/istargetobject) — True when a target value is the object form (carries registry/name/from).
53
+ - [`nodeBuiltinDefaultInterop`](silk://packages/tsdown-plugins/api/function/nodebuiltindefaultinterop) — Rewrite a default import / default re-export of a Node built-in into the equivalent NAMESPACE form, so rolldown's CJS codegen produces correct interop. Why this exists — a rolldown 1.1.0 codegen defect (verified against the latest published rolldown 1.1.0 / tsdown 0.22.2, with no newer release to upgrade to): For a default import of an EXTERNAL Node builtin, rolldown emits a bare `require("node:x")` WITHOUT its `__toESM` interop wrapper, yet still accesses `.default` — which is `undefined` on a builtin's CJS export object, so the call throws `Cannot read properties of undefined (reading 'cwd')` at runtime. NAMED imports are unaffected (`(0, node_process.cwd)()` reads a real property), and a NAMESPACE import is handled correctly: rolldown wraps it as `node_process = __toESM(require("node:process"), 1)`, which synthesizes `.default` and copies every own property, so member access works. This transform converts the broken default form into the working namespace form BEFORE codegen, so it is immune to minification and applies identically to per-module and bundled output. rolldown exposes no Rollup-style `output.interop` knob to fix this at the output layer, which is why the correction happens here on the source. Rewrites (the two static forms that occur in practice, anchored to statement start): The namespace binding NAME carries the builtin's named exports (`NAME.cwd`, `NAME.join`, ...), which is exactly how a default import of a builtin is consumed in practice. ESM output is unaffected at runtime (a namespace import of a builtin resolves to the same members), so the plugin is safe to attach to dual builds.
54
+ - [`normalizeBinPaths`](silk://packages/tsdown-plugins/api/function/normalizebinpaths) — FINAL guard: strip leading ./ from bin paths (npm 11.x drops ./-prefixed bins).
55
+ - [`normalizeExeOptions`](silk://packages/tsdown-plugins/api/function/normalizeexeoptions) — Normalize `exe` (object or array) into one fully-resolved spec per binary. Pure function; structural validation (missing fileName, empty targets) lives in the config-validation layer.
56
+ - [`normalizeLooseFiles`](silk://packages/tsdown-plugins/api/function/normalizeloosefiles) — Resolve a `looseFiles` map into normalized build descriptors. Pure (no filesystem): a missing `source` is surfaced later by tsdown's entry resolution. Throws ConfigValidationError on any structural problem so the bundler's ConfigValidator surfaces it as a typed, fast-fail config error.
57
+ - [`normalizeMetaOptions`](silk://packages/tsdown-plugins/api/function/normalizemetaoptions) — Fill defaults so downstream code never branches on undefined.
58
+ - [`packageJsonEntries`](silk://packages/tsdown-plugins/api/function/packagejsonentries) — Derive a tsdown `entry` record (name to source path) from a package.json.
59
+ - [`readTsconfigJsx`](silk://packages/tsdown-plugins/api/function/readtsconfigjsx) — Read the jsx-relevant compilerOptions from a package's own tsconfig.json (best-effort; returns empty on absence or parse error).
60
+ - [`removeDeclarationMaps`](silk://packages/tsdown-plugins/api/function/removedeclarationmaps) — Remove declaration source-map files (`.d.ts.map` / `.d.cts.map`) from a built `pkg` directory, returning the removed paths. The dts pass emits these next to each `.d.ts` (the resolved dts tsconfig sets `declarationMap: true`) because API Extractor reads them during meta generation to resolve original-source positions. But they are dead weight in a PUBLISHED package — they reference `.ts` sources the tarball does not ship — and they leak local source paths, so the prod build strips them AFTER meta generation has consumed them. The dev build keeps them (it is never published, and `savvy build --target meta` reads them). Recurses, but skips `node_modules` so it does not traverse a self-contained bundle's vendored tree — only the package's own emitted declarations carry maps worth stripping.
61
+ - [`renderReport`](silk://packages/tsdown-plugins/api/function/renderreport)
62
+ - [`resolveJsxConfig`](silk://packages/tsdown-plugins/api/function/resolvejsxconfig) — Resolve the effective JSX config: an explicit override wins; otherwise infer from the tsconfig values. Returns undefined when no JSX transform is needed (preserve/none).
63
+ - [`resolveManifest`](silk://packages/tsdown-plugins/api/function/resolvemanifest) — Resolve every `catalog:`/`workspace:` specifier in a manifest to a concrete spec, delegating to workspaces-effect's CatalogResolver. The resolver discovers the workspace root from `process.cwd()` (run this from inside the target workspace) and assembles catalogs durably (inline + config-dependency hook-replay + lockfile), so no transient `.pnpm-workspace-state-v1.json` is required. Rejects with `CatalogResolutionError` on an unresolvable reference, or `CatalogAssemblyError` if the workspace catalog set cannot be assembled.
64
+ - [`resolveNextVersions`](silk://packages/tsdown-plugins/api/function/resolvenextversions) — Resolve the next release version of every workspace package from pending changesets. Walks up from `cwd` to the monorepo root via `@manypkg/get-packages`, seeds the map with each package's CURRENT version, then overlays `newVersion` for changeset-affected packages via `@changesets/get-release-plan`. Never rejects: any failure (not a workspace, missing `.changeset/config.json`, parse error) degrades to current versions (or an empty map).
65
+ - [`resolvePortableTsconfig`](silk://packages/tsdown-plugins/api/function/resolveportabletsconfig) — Resolves the package's effective compiler options (following `extends`) into a portable, JSON-serializable tsconfig for the meta release bundle.
66
+ - [`resolveTargets`](silk://packages/tsdown-plugins/api/function/resolvetargets) — Resolve a `publishConfig.targets` map into the distinct groups to build and every target bound to one. Pure; throws ConfigValidationError on structurally-invalid config.
67
+ - [`rewriteMetaVersions`](silk://packages/tsdown-plugins/api/function/rewritemetaversions) — Rewrite a meta `package.json` so the package's own `version` and any workspace-sibling dependency version reflect their NEXT release version from `versions`. Pure: returns a new object, never mutates the input. External/catalog-resolved deps (names absent from `versions`) are left as-is.
68
+ - [`runExeBuild`](silk://packages/tsdown-plugins/api/function/runexebuild) — Compile each SEA binary via tsdown's exe mode. One tsdown build per spec.
69
+ - [`runMetaPass`](silk://packages/tsdown-plugins/api/function/runmetapass) — Meta-pass orchestrator: derives export paths, filters bin/ entries, resolves optimistic next-versions, and calls generateMeta once per publish group.
70
+ - [`serializeIssues`](silk://packages/tsdown-plugins/api/function/serializeissues) — Serialize the issues artifact to pretty JSON with a trailing newline.
71
+ - [`syncPublicDir`](silk://packages/tsdown-plugins/api/function/syncpublicdir) — Mirror `sourceDir` into `targetDir`, idempotently. Replaces tsdown's built-in `copy`, whose non-recursive mkdir throws `EEXIST` when the target already exists (re-builds, `prepare`-on-install, concurrent turbo invocations). Behavior: - source absent: no-op. - target absent: copy `sourceDir` wholesale. - target present: copy only files that are new or whose bytes differ, then delete target files that no longer exist in the source and prune the directories left empty. The byte-diff keeps unchanged files (and their timestamps) untouched, so a large copied asset tree — e.g. the mcp markdown corpus — is not rewritten on every build.
72
+ - [`transformBin`](silk://packages/tsdown-plugins/api/function/transformbin) — Rewrite bin: TS targets to bin/[command].js (string to bin/cli.js); strip leading ./ otherwise.
73
+ - [`transformExports`](silk://packages/tsdown-plugins/api/function/transformexports) — Rewrite an exports map: TS string targets become a types/import conditions object. Each TS condition also gets a `require` entry when `dual` is `true` (uniform) or when the export key is in the `dual` Set (per-entry). The output path is derived from the export KEY via the shared entry-name function, never from the source path, so the manifest target always matches the emitted file. Export keys in `subdirExports` are built into an isolated `<key>/index.*` subdir (e.g. an RSPress `./runtime`), so their conditions gain an `/index` segment.
74
+ - [`transformManifest`](silk://packages/tsdown-plugins/api/function/transformmanifest) — Apply the full standard manifest transform (excluding catalog resolution, done upstream).
75
+ - [`writeIssuesArtifact`](silk://packages/tsdown-plugins/api/function/writeissuesartifact) — Write the aggregated issues artifact to `<cwd>/dist/<target>/issues.json`. Returns the path written.
76
+ - [`writeResolvedTsconfig`](silk://packages/tsdown-plugins/api/function/writeresolvedtsconfig) — Write the resolved tsconfig to a temp file and return its absolute path.
77
+ - [`writeTargetsBinding`](silk://packages/tsdown-plugins/api/function/writetargetsbinding) — Write the target-to-group binding to dist/prod/targets.json for the release action to consume. Returns the path.
78
+
79
+ ## interface
80
+
81
+ - [`BuildEmittedManifestOptions`](silk://packages/tsdown-plugins/api/interface/buildemittedmanifestoptions)
82
+ - [`BuildGroupSpec`](silk://packages/tsdown-plugins/api/interface/buildgroupspec) — A prod/dev group to build: its folder id and the resolved package name its manifest carries.
83
+ - [`BuildIssues`](silk://packages/tsdown-plugins/api/interface/buildissues) — The aggregated build-issues artifact written to `dist/<target>/issues.json`.
84
+ - [`BuildTargetGroupsOptions`](silk://packages/tsdown-plugins/api/interface/buildtargetgroupsoptions)
85
+ - [`CssOptions`](silk://packages/tsdown-plugins/api/interface/cssoptions) — CSS handling for a partition's JS pass, forwarded VERBATIM to tsdown's `css` option (consumed by `@tsdown/css`). Structurally typed so tsdown-plugins takes no dependency on `@tsdown/css`. The package whose runtime is built must install `@tsdown/css`; tsdown loads it lazily.
86
+ - [`DerivedTsdownOptions`](silk://packages/tsdown-plugins/api/interface/derivedtsdownoptions) — The JS pass: per-module JavaScript, no declarations. The build runs TWO tsdown passes per TargetGroup to the SAME outDir: - pass 1 (this) emits per-module JS (`unbundle: true`) with `dts: false` and the default `clean: true`, so it starts from a fresh outDir; - pass 2 (`DerivedDtsPassOptions`) emits ONLY bundled declarations (`unbundle: false`, `dts: { emitDtsOnly: true }`) with `clean: false`, so it must NOT wipe pass 1. We cannot do this in a single pass: tsdown's `unbundle` maps to rolldown `output.preserveModules` for the WHOLE build, and the dts plugin shares it — so one pass gives EITHER per-module JS + per-module dts OR bundled JS + bundled dts. Per-module dts breaks type portability (TS2883) when a package exports only its root entry, and bundling the JS re-bundles workspace consumers (e.g. silk re-bundling silk-effects crashes at runtime). The split keeps per-module JS (no re-bundle hazard) AND bundled, self-contained declarations (no TS2883).
87
+ - [`DeriveOptions`](silk://packages/tsdown-plugins/api/interface/deriveoptions)
88
+ - [`DiagnosticInput`](silk://packages/tsdown-plugins/api/interface/diagnosticinput)
89
+ - [`EmitManifestOptions`](silk://packages/tsdown-plugins/api/interface/emitmanifestoptions)
90
+ - [`EntryOverride`](silk://packages/tsdown-plugins/api/interface/entryoverride) — One entry partition built with its own format + bundling posture, layered into the SAME outDir as the base build (clean:false). Anything omitted falls back to the base build's value. `entry` is a subset of the package's entries (`entryName -> source path`).
91
+ - [`ExeConfig`](silk://packages/tsdown-plugins/api/interface/execonfig) — One SEA binary to compile.
92
+ - [`ExeRewrite`](silk://packages/tsdown-plugins/api/interface/exerewrite) — Describes a SEA binary the bundler compiled for this package. When present, transformManifest rewrites every `exports`/`bin` value equal to `source` to the emitted binary path and adds it to `files` so it ships in the tarball.
93
+ - [`ExeSeaConfig`](silk://packages/tsdown-plugins/api/interface/exeseaconfig) — SEA seaConfig overrides (subset; the rest are defaulted).
94
+ - [`ExeTarget`](silk://packages/tsdown-plugins/api/interface/exetarget) — A resolved per-platform SEA target. `platform` uses the tsdown/tsdown/exe token (win, not win32).
95
+ - [`ExeTargetInput`](silk://packages/tsdown-plugins/api/interface/exetargetinput) — A target before nodeVersion defaulting (platform/arch only).
96
+ - [`ExtractOptions`](silk://packages/tsdown-plugins/api/interface/extractoptions)
97
+ - [`ExtractResult`](silk://packages/tsdown-plugins/api/interface/extractresult)
98
+ - [`Formatter`](silk://packages/tsdown-plugins/api/interface/formatter)
99
+ - [`FormatterContext`](silk://packages/tsdown-plugins/api/interface/formattercontext)
100
+ - [`GenerateMetaOptions`](silk://packages/tsdown-plugins/api/interface/generatemetaoptions)
101
+ - [`JsxConfig`](silk://packages/tsdown-plugins/api/interface/jsxconfig) — Resolved JSX transform settings, mirroring the subset of rolldown's JsxOptions the bundler forwards.
102
+ - [`LooseFileSpec`](silk://packages/tsdown-plugins/api/interface/loosefilespec) — One standalone bundled output file, declared by its literal output filename.
103
+ - [`MetaOptions`](silk://packages/tsdown-plugins/api/interface/metaoptions) — The `meta` field on defineBuild. Absent means no api-model generation.
104
+ - [`MetaResult`](silk://packages/tsdown-plugins/api/interface/metaresult)
105
+ - [`NextVersions`](silk://packages/tsdown-plugins/api/interface/nextversions) — Result of resolving next release versions for a workspace.
106
+ - [`NormalizedExe`](silk://packages/tsdown-plugins/api/interface/normalizedexe) — Fully-resolved SEA binary spec (no optionals).
107
+ - [`NormalizedLooseFile`](silk://packages/tsdown-plugins/api/interface/normalizedloosefile) — A loose file resolved to a concrete build descriptor.
108
+ - [`NormalizedMeta`](silk://packages/tsdown-plugins/api/interface/normalizedmeta) — Fully-resolved meta options (no optionals).
109
+ - [`PackageJsonEntriesOptions`](silk://packages/tsdown-plugins/api/interface/packagejsonentriesoptions)
110
+ - [`PackageJsonLike`](silk://packages/tsdown-plugins/api/interface/packagejsonlike)
111
+ - [`PkgOsCpu`](silk://packages/tsdown-plugins/api/interface/pkgoscpu) — The package's own os/cpu fields, used to infer a single platform target.
112
+ - [`PlainDiagnostic`](silk://packages/tsdown-plugins/api/interface/plaindiagnostic) — A diagnostic flattened to a plain JSON object (only defined fields are present).
113
+ - [`PortableTsconfig`](silk://packages/tsdown-plugins/api/interface/portabletsconfig) — Portable, JSON-serializable tsconfig.json (compilerOptions-only).
114
+ - [`PublishTargetObject`](silk://packages/tsdown-plugins/api/interface/publishtargetobject) — A single object-form publish target. Uses `from` XOR `name` (never both).
115
+ - [`RenderedOutput`](silk://packages/tsdown-plugins/api/interface/renderedoutput)
116
+ - [`RenderReportOptions`](silk://packages/tsdown-plugins/api/interface/renderreportoptions)
117
+ - [`ResolvedCompilerOptions`](silk://packages/tsdown-plugins/api/interface/resolvedcompileroptions) — Compiler options with enum values converted to their string equivalents.
118
+ - [`ResolvedGroup`](silk://packages/tsdown-plugins/api/interface/resolvedgroup) — A distinct byte-variant build group (one per distinct resolved name).
119
+ - [`ResolvedTarget`](silk://packages/tsdown-plugins/api/interface/resolvedtarget) — A resolved registry target (one per `publishConfig.targets` key).
120
+ - [`ResolvedTsconfig`](silk://packages/tsdown-plugins/api/interface/resolvedtsconfig)
121
+ - [`ResolvedTsconfigOptions`](silk://packages/tsdown-plugins/api/interface/resolvedtsconfigoptions)
122
+ - [`RunExeBuildOptions`](silk://packages/tsdown-plugins/api/interface/runexebuildoptions) — Options for compiling SEA binaries.
123
+ - [`RunMetaPassOptions`](silk://packages/tsdown-plugins/api/interface/runmetapassoptions) — Options for the meta-pass orchestrator.
124
+ - [`TargetGroupRef`](silk://packages/tsdown-plugins/api/interface/targetgroupref)
125
+ - [`TargetResolution`](silk://packages/tsdown-plugins/api/interface/targetresolution) — The full resolution of `publishConfig.targets`: the distinct groups to build, and every target bound to one.
126
+ - [`Timer`](silk://packages/tsdown-plugins/api/interface/timer)
127
+ - [`TransformManifestOptions`](silk://packages/tsdown-plugins/api/interface/transformmanifestoptions)
128
+ - [`TsconfigJsx`](silk://packages/tsdown-plugins/api/interface/tsconfigjsx) — The jsx-relevant slice of a tsconfig's compilerOptions.
129
+ - [`TsdocOptions`](silk://packages/tsdown-plugins/api/interface/tsdocoptions) — TSDoc / doc-warning configuration. suppressWarnings is doc functionality, so it lives here.
130
+ - [`TsdocTagDefinition`](silk://packages/tsdown-plugins/api/interface/tsdoctagdefinition) — A single TSDoc tag definition (parity with api-extractor's TSDoc config).
131
+ - [`TsdownLogger`](silk://packages/tsdown-plugins/api/interface/tsdownlogger) — Structural match for tsdown's Logger interface (tsdown 0.22.x).
132
+ - [`ValidationInput`](silk://packages/tsdown-plugins/api/interface/validationinput) — The normalized facts the validator checks, assembled by the bundler before any build work.
133
+ - [`WarningSuppressionRule`](silk://packages/tsdown-plugins/api/interface/warningsuppressionrule) — An api-extractor message-suppression rule. messageId is exact-matched; pattern (regex or substring) is AND-matched against the text.
134
+
135
+ ## type
136
+
137
+ - [`BuildFormat`](silk://packages/tsdown-plugins/api/type/buildformat) — An output module format the build can emit.
138
+ - [`BuildPlatform`](silk://packages/tsdown-plugins/api/type/buildplatform) — Bundling platform for the JS pass. Defaults to "node". Use "browser" for web runtime partitions.
139
+ - [`DualExports`](silk://packages/tsdown-plugins/api/type/dualexports) — Which exports get a CJS `require` condition. `true`/`false` apply uniformly to every TS export; a Set marks ONLY the listed export keys (e.g. "./changesets/markdownlint") as dual — used by per-entry format overrides.
140
+ - [`Environment`](silk://packages/tsdown-plugins/api/type/environment)
141
+ - [`ExeBuild`](silk://packages/tsdown-plugins/api/type/exebuild) — A minimal structural type for tsdown's build, kept loose so this package keeps no tsdown runtime dep (interface-only).
142
+ - [`Executor`](silk://packages/tsdown-plugins/api/type/executor)
143
+ - [`Json`](silk://packages/tsdown-plugins/api/type/json)
144
+ - [`LooseFiles`](silk://packages/tsdown-plugins/api/type/loosefiles) — Map of literal output filename to its source (bare string) or a `{ source, format }` spec.
145
+ - [`OutputFormat`](silk://packages/tsdown-plugins/api/type/outputformat)
146
+ - [`PassKind`](silk://packages/tsdown-plugins/api/type/passkind)
147
+ - [`PublishTargets`](silk://packages/tsdown-plugins/api/type/publishtargets) — The `publishConfig.targets` map, keyed by target id (`npm`, `github`, or a custom key).
148
+ - [`PublishTargetValue`](silk://packages/tsdown-plugins/api/type/publishtargetvalue) — A `publishConfig.targets` value: `true` (well-known registry, base name), a string (name override), or an object.
149
+ - [`TargetGroupId`](silk://packages/tsdown-plugins/api/type/targetgroupid) — A build group id: "dev" or any prod byte-variant id (e.g. "npm", "github", a custom key).
150
+ - [`TsdownBuild`](silk://packages/tsdown-plugins/api/type/tsdownbuild) — Signature compatible with tsdown's `build(inlineConfig)`.
151
+
152
+ ## variable
153
+
154
+ - [`CiAnnotationsFormatter`](silk://packages/tsdown-plugins/api/variable/ciannotationsformatter)
155
+ - [`ConfigValidatorLive`](silk://packages/tsdown-plugins/api/variable/configvalidatorlive) — Live ConfigValidator: wraps the synchronous rule set, surfacing ConfigValidationError as a typed Effect failure.
156
+ - [`DEFAULT_EXE_NODE_VERSION`](silk://packages/tsdown-plugins/api/variable/default_exe_node_version) — Default Node runtime embedded in the SEA (parity with the vitest-agent reference).
157
+ - [`EnvironmentDetectorLive`](silk://packages/tsdown-plugins/api/variable/environmentdetectorlive)
158
+ - [`ExecutorResolverLive`](silk://packages/tsdown-plugins/api/variable/executorresolverlive)
159
+ - [`FormatSelectorLive`](silk://packages/tsdown-plugins/api/variable/formatselectorlive)
160
+ - [`JsonFormatter`](silk://packages/tsdown-plugins/api/variable/jsonformatter)
161
+ - [`MarkdownFormatter`](silk://packages/tsdown-plugins/api/variable/markdownformatter)
162
+ - [`OutputRendererLive`](silk://packages/tsdown-plugins/api/variable/outputrendererlive)
163
+ - [`ReportPipelineLive`](silk://packages/tsdown-plugins/api/variable/reportpipelinelive)
164
+ - [`SilentFormatter`](silk://packages/tsdown-plugins/api/variable/silentformatter)
165
+ - [`TerminalFormatter`](silk://packages/tsdown-plugins/api/variable/terminalformatter)
@@ -17,7 +17,8 @@ the next build.
17
17
 
18
18
  ### Pipeline
19
19
 
20
- 1. A library package sets `apiModel` in its rslib config.
20
+ 1. A library package built by `@savvy-web/bundler` emits a model by default; the
21
+ `meta` option in its `savvy.build.ts` controls it (`false` opts out).
21
22
  2. `build:prod` emits `<unscoped>.api.json` (a Microsoft API Extractor model file).
22
23
  3. The `api-extractor-llms` library renders that model into LLM-lean
23
24
  markdown.
@@ -43,8 +44,8 @@ management, making the pipeline compatible with upstream tooling.
43
44
 
44
45
  ## Examples
45
46
 
46
- A package `@savvy-web/silk-effects` with `apiModel` in its rslib config builds
47
- `silk-effects.api.json`. The renderer produces entries such as:
47
+ A package `@savvy-web/silk-effects` built by `@savvy-web/bundler` emits
48
+ `silk-effects.api.json` on its prod build. The renderer produces entries such as:
48
49
 
49
50
  ```text
50
51
  silk://packages/silk-effects/api/class/SilkPublishability
@@ -59,5 +60,5 @@ docs.
59
60
 
60
61
  The resource taxonomy that governs where generated and hand-authored docs live is at
61
62
  `silk://packages/mcp/resource-taxonomy`. The `api-extractor-llms` library
62
- is the renderer; the `@savvy-web/rslib-builder` build tool exposes the `apiModel`
63
- config option.
63
+ is the renderer; the `@savvy-web/bundler` build tool emits the model via its
64
+ `meta` option.
@@ -70,7 +70,7 @@ var DocIndex = class DocIndex {
70
70
  const tokens = query.toLowerCase().split(/\s+/).filter((t) => t.length >= 2 && !STOP_WORDS.has(t));
71
71
  const raw = tokens.length > 0 ? this.fuse.search(tokens.map((t) => `'${t}`).join(" | ")) : [];
72
72
  const filteredByTier = opts.tier ? raw.filter((r) => r.item.tier === opts.tier) : raw;
73
- const ranked = filteredByTier.length > 0 ? filteredByTier.map((r) => toRanked(r.item, r.score, r.matches ?? [])) : this.fallback(opts.tier);
73
+ const ranked = filteredByTier.length > 0 ? filteredByTier.map((r) => toRanked(r.item, r.score, r.matches ?? [])) : tokens.length === 0 ? this.fallback(opts.tier) : [];
74
74
  ranked.sort((a, b) => b.confidence - a.confidence || (b.item.priority ?? .5) - (a.item.priority ?? .5));
75
75
  const present = new Set(ranked.map((r) => r.item.uri));
76
76
  const seeAlso = [];
@@ -98,7 +98,7 @@ var DocIndex = class DocIndex {
98
98
  related: item.related
99
99
  }));
100
100
  }
101
- /** Never return empty: surface the top entries (by priority) as low-confidence. */
101
+ /** Browse fallback: surface the top entries (by priority) as low-confidence. */
102
102
  fallback(tier) {
103
103
  return this.entries.filter((e) => tier ? e.tier === tier : true).slice().sort((a, b) => (b.priority ?? .5) - (a.priority ?? .5)).slice(0, 5).map((item) => ({
104
104
  item,