@unbrained/pm-cli 2026.6.13 → 2026.6.17

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 (808) hide show
  1. package/CHANGELOG.md +102 -0
  2. package/README.md +1 -1
  3. package/dist/cli/bootstrap-args.d.ts +29 -0
  4. package/dist/cli/bootstrap-args.js +11 -4
  5. package/dist/cli/bootstrap-args.js.map +1 -1
  6. package/dist/cli/commander-usage.d.ts +12 -0
  7. package/dist/cli/commander-usage.js +18 -7
  8. package/dist/cli/commander-usage.js.map +1 -1
  9. package/dist/cli/commands/activity.d.ts +19 -0
  10. package/dist/cli/commands/activity.js +12 -2
  11. package/dist/cli/commands/activity.js.map +1 -1
  12. package/dist/cli/commands/aggregate.d.ts +58 -0
  13. package/dist/cli/commands/aggregate.js +48 -15
  14. package/dist/cli/commands/aggregate.js.map +1 -1
  15. package/dist/cli/commands/annotation-command.d.ts +6 -1
  16. package/dist/cli/commands/annotation-command.js +72 -2
  17. package/dist/cli/commands/annotation-command.js.map +1 -1
  18. package/dist/cli/commands/append.js +4 -3
  19. package/dist/cli/commands/append.js.map +1 -1
  20. package/dist/cli/commands/close-many.d.ts +20 -0
  21. package/dist/cli/commands/close-many.js +14 -23
  22. package/dist/cli/commands/close-many.js.map +1 -1
  23. package/dist/cli/commands/close.js +37 -4
  24. package/dist/cli/commands/close.js.map +1 -1
  25. package/dist/cli/commands/comments-audit.js +3 -2
  26. package/dist/cli/commands/comments-audit.js.map +1 -1
  27. package/dist/cli/commands/comments.d.ts +2 -0
  28. package/dist/cli/commands/comments.js +49 -23
  29. package/dist/cli/commands/comments.js.map +1 -1
  30. package/dist/cli/commands/completion.js +362 -15
  31. package/dist/cli/commands/completion.js.map +1 -1
  32. package/dist/cli/commands/config.d.ts +51 -1
  33. package/dist/cli/commands/config.js +50 -12
  34. package/dist/cli/commands/config.js.map +1 -1
  35. package/dist/cli/commands/context.d.ts +79 -1
  36. package/dist/cli/commands/context.js +151 -25
  37. package/dist/cli/commands/context.js.map +1 -1
  38. package/dist/cli/commands/contracts.d.ts +80 -1
  39. package/dist/cli/commands/contracts.js +54 -4
  40. package/dist/cli/commands/contracts.js.map +1 -1
  41. package/dist/cli/commands/create.d.ts +51 -0
  42. package/dist/cli/commands/create.js +137 -18
  43. package/dist/cli/commands/create.js.map +1 -1
  44. package/dist/cli/commands/dedupe-audit.d.ts +33 -0
  45. package/dist/cli/commands/dedupe-audit.js +18 -14
  46. package/dist/cli/commands/dedupe-audit.js.map +1 -1
  47. package/dist/cli/commands/deps.js +7 -4
  48. package/dist/cli/commands/deps.js.map +1 -1
  49. package/dist/cli/commands/event-validation-messages.js +3 -3
  50. package/dist/cli/commands/event-validation-messages.js.map +1 -1
  51. package/dist/cli/commands/extension/bundled-catalog.d.ts +7 -0
  52. package/dist/cli/commands/extension/bundled-catalog.js +19 -15
  53. package/dist/cli/commands/extension/bundled-catalog.js.map +1 -1
  54. package/dist/cli/commands/extension/install-sources.d.ts +41 -1
  55. package/dist/cli/commands/extension/install-sources.js +26 -8
  56. package/dist/cli/commands/extension/install-sources.js.map +1 -1
  57. package/dist/cli/commands/extension/shared.d.ts +5 -0
  58. package/dist/cli/commands/extension/shared.js +9 -3
  59. package/dist/cli/commands/extension/shared.js.map +1 -1
  60. package/dist/cli/commands/extension.d.ts +133 -1
  61. package/dist/cli/commands/extension.js +127 -9
  62. package/dist/cli/commands/extension.js.map +1 -1
  63. package/dist/cli/commands/files.d.ts +30 -1
  64. package/dist/cli/commands/files.js +21 -2
  65. package/dist/cli/commands/files.js.map +1 -1
  66. package/dist/cli/commands/focus.d.ts +11 -0
  67. package/dist/cli/commands/focus.js +86 -0
  68. package/dist/cli/commands/focus.js.map +1 -0
  69. package/dist/cli/commands/get.d.ts +9 -2
  70. package/dist/cli/commands/get.js +34 -6
  71. package/dist/cli/commands/get.js.map +1 -1
  72. package/dist/cli/commands/guide.d.ts +5 -0
  73. package/dist/cli/commands/guide.js +6 -3
  74. package/dist/cli/commands/guide.js.map +1 -1
  75. package/dist/cli/commands/health.d.ts +109 -0
  76. package/dist/cli/commands/health.js +87 -35
  77. package/dist/cli/commands/health.js.map +1 -1
  78. package/dist/cli/commands/history-compact.js +27 -36
  79. package/dist/cli/commands/history-compact.js.map +1 -1
  80. package/dist/cli/commands/history-redact.d.ts +46 -0
  81. package/dist/cli/commands/history-redact.js +99 -67
  82. package/dist/cli/commands/history-redact.js.map +1 -1
  83. package/dist/cli/commands/history-repair.js +34 -37
  84. package/dist/cli/commands/history-repair.js.map +1 -1
  85. package/dist/cli/commands/history.js +6 -2
  86. package/dist/cli/commands/history.js.map +1 -1
  87. package/dist/cli/commands/index.d.ts +4 -1
  88. package/dist/cli/commands/index.js +6 -3
  89. package/dist/cli/commands/index.js.map +1 -1
  90. package/dist/cli/commands/init-agent-guidance.d.ts +54 -0
  91. package/dist/cli/commands/init-agent-guidance.js +31 -4
  92. package/dist/cli/commands/init-agent-guidance.js.map +1 -1
  93. package/dist/cli/commands/init.d.ts +38 -2
  94. package/dist/cli/commands/init.js +50 -64
  95. package/dist/cli/commands/init.js.map +1 -1
  96. package/dist/cli/commands/learnings.js +4 -3
  97. package/dist/cli/commands/learnings.js.map +1 -1
  98. package/dist/cli/commands/lifecycle-transitions.d.ts +23 -0
  99. package/dist/cli/commands/lifecycle-transitions.js +41 -0
  100. package/dist/cli/commands/lifecycle-transitions.js.map +1 -0
  101. package/dist/cli/commands/linked-artifacts.d.ts +5 -0
  102. package/dist/cli/commands/linked-artifacts.js +18 -4
  103. package/dist/cli/commands/linked-artifacts.js.map +1 -1
  104. package/dist/cli/commands/linked-test-parsers.d.ts +5 -0
  105. package/dist/cli/commands/linked-test-parsers.js +5 -2
  106. package/dist/cli/commands/linked-test-parsers.js.map +1 -1
  107. package/dist/cli/commands/list-filter-shared.d.ts +8 -0
  108. package/dist/cli/commands/list-filter-shared.js +70 -0
  109. package/dist/cli/commands/list-filter-shared.js.map +1 -0
  110. package/dist/cli/commands/list.d.ts +116 -0
  111. package/dist/cli/commands/list.js +194 -6
  112. package/dist/cli/commands/list.js.map +1 -1
  113. package/dist/cli/commands/normalize.js +16 -2
  114. package/dist/cli/commands/normalize.js.map +1 -1
  115. package/dist/cli/commands/notes.js +4 -3
  116. package/dist/cli/commands/notes.js.map +1 -1
  117. package/dist/cli/commands/plan.js +3 -2
  118. package/dist/cli/commands/plan.js.map +1 -1
  119. package/dist/cli/commands/recurrence-parsers.d.ts +9 -0
  120. package/dist/cli/commands/recurrence-parsers.js +19 -2
  121. package/dist/cli/commands/recurrence-parsers.js.map +1 -1
  122. package/dist/cli/commands/reindex.d.ts +83 -0
  123. package/dist/cli/commands/reindex.js +45 -10
  124. package/dist/cli/commands/reindex.js.map +1 -1
  125. package/dist/cli/commands/repeatable-metadata-parsers.js +28 -4
  126. package/dist/cli/commands/repeatable-metadata-parsers.js.map +1 -1
  127. package/dist/cli/commands/restore.d.ts +40 -1
  128. package/dist/cli/commands/restore.js +27 -2
  129. package/dist/cli/commands/restore.js.map +1 -1
  130. package/dist/cli/commands/scheduling-shortcuts.d.ts +43 -0
  131. package/dist/cli/commands/scheduling-shortcuts.js +87 -0
  132. package/dist/cli/commands/scheduling-shortcuts.js.map +1 -0
  133. package/dist/cli/commands/schema.d.ts +152 -2
  134. package/dist/cli/commands/schema.js +510 -4
  135. package/dist/cli/commands/schema.js.map +1 -1
  136. package/dist/cli/commands/search.d.ts +289 -1
  137. package/dist/cli/commands/search.js +367 -60
  138. package/dist/cli/commands/search.js.map +1 -1
  139. package/dist/cli/commands/stats.d.ts +38 -0
  140. package/dist/cli/commands/stats.js +38 -10
  141. package/dist/cli/commands/stats.js.map +1 -1
  142. package/dist/cli/commands/telemetry.js +5 -3
  143. package/dist/cli/commands/telemetry.js.map +1 -1
  144. package/dist/cli/commands/templates.d.ts +18 -0
  145. package/dist/cli/commands/templates.js +9 -2
  146. package/dist/cli/commands/templates.js.map +1 -1
  147. package/dist/cli/commands/test-all.d.ts +5 -0
  148. package/dist/cli/commands/test-all.js +9 -3
  149. package/dist/cli/commands/test-all.js.map +1 -1
  150. package/dist/cli/commands/test.d.ts +70 -1
  151. package/dist/cli/commands/test.js +84 -3
  152. package/dist/cli/commands/test.js.map +1 -1
  153. package/dist/cli/commands/update-many.d.ts +34 -1
  154. package/dist/cli/commands/update-many.js +60 -31
  155. package/dist/cli/commands/update-many.js.map +1 -1
  156. package/dist/cli/commands/update.d.ts +71 -0
  157. package/dist/cli/commands/update.js +91 -11
  158. package/dist/cli/commands/update.js.map +1 -1
  159. package/dist/cli/commands/upgrade.d.ts +28 -1
  160. package/dist/cli/commands/upgrade.js +17 -4
  161. package/dist/cli/commands/upgrade.js.map +1 -1
  162. package/dist/cli/commands/validate.d.ts +114 -0
  163. package/dist/cli/commands/validate.js +153 -8
  164. package/dist/cli/commands/validate.js.map +1 -1
  165. package/dist/cli/error-guidance.d.ts +30 -0
  166. package/dist/cli/error-guidance.js +41 -6
  167. package/dist/cli/error-guidance.js.map +1 -1
  168. package/dist/cli/extension-command-options.js +9 -7
  169. package/dist/cli/extension-command-options.js.map +1 -1
  170. package/dist/cli/help-content.d.ts +8 -0
  171. package/dist/cli/help-content.js +54 -6
  172. package/dist/cli/help-content.js.map +1 -1
  173. package/dist/cli/help-json-payload.d.ts +19 -1
  174. package/dist/cli/help-json-payload.js +16 -7
  175. package/dist/cli/help-json-payload.js.map +1 -1
  176. package/dist/cli/main.d.ts +242 -0
  177. package/dist/cli/main.js +241 -45
  178. package/dist/cli/main.js.map +1 -1
  179. package/dist/cli/register-list-query.js +62 -5
  180. package/dist/cli/register-list-query.js.map +1 -1
  181. package/dist/cli/register-mutation.d.ts +16 -0
  182. package/dist/cli/register-mutation.js +376 -100
  183. package/dist/cli/register-mutation.js.map +1 -1
  184. package/dist/cli/register-operations.d.ts +8 -0
  185. package/dist/cli/register-operations.js +134 -11
  186. package/dist/cli/register-operations.js.map +1 -1
  187. package/dist/cli/register-setup.js +9 -6
  188. package/dist/cli/register-setup.js.map +1 -1
  189. package/dist/cli/registration-helpers.d.ts +4 -0
  190. package/dist/cli/registration-helpers.js +124 -38
  191. package/dist/cli/registration-helpers.js.map +1 -1
  192. package/dist/cli-bundle/chunks/activity-PZYSZA26.js +18 -0
  193. package/dist/cli-bundle/chunks/{activity-PPO7QWJF.js → activity-SFM4THAU.js} +13 -11
  194. package/dist/cli-bundle/chunks/{aggregate-IRHJWEKG.js → aggregate-Y5ADDKBM.js} +55 -26
  195. package/dist/cli-bundle/chunks/aggregate-Y5ADDKBM.js.map +1 -0
  196. package/dist/cli-bundle/chunks/{aggregate-XEBW22UQ.js → aggregate-YTAUQLRW.js} +54 -25
  197. package/dist/cli-bundle/chunks/aggregate-YTAUQLRW.js.map +7 -0
  198. package/dist/cli-bundle/chunks/{append-NL67JNJU.js → append-4M7OVV7M.js} +11 -11
  199. package/dist/cli-bundle/chunks/append-4M7OVV7M.js.map +1 -0
  200. package/dist/cli-bundle/chunks/{append-N2AWXKZC.js → append-HSPK4L4V.js} +10 -10
  201. package/dist/cli-bundle/chunks/{append-N2AWXKZC.js.map → append-HSPK4L4V.js.map} +2 -2
  202. package/dist/cli-bundle/chunks/{chunk-IIOIBAQW.js → chunk-26BM6YLO.js} +3 -3
  203. package/dist/cli-bundle/chunks/{chunk-CEGUH2E5.js → chunk-2C6FU3D3.js} +5 -5
  204. package/dist/cli-bundle/chunks/{chunk-CEGUH2E5.js.map → chunk-2C6FU3D3.js.map} +1 -1
  205. package/dist/cli-bundle/chunks/{chunk-SQDKAEKG.js → chunk-2OPYLXDO.js} +117 -37
  206. package/dist/cli-bundle/chunks/chunk-2OPYLXDO.js.map +7 -0
  207. package/dist/cli-bundle/chunks/{chunk-4ZKKZMLH.js → chunk-2S46FKLB.js} +104 -30
  208. package/dist/cli-bundle/chunks/chunk-2S46FKLB.js.map +1 -0
  209. package/dist/cli-bundle/chunks/{chunk-LSSTKL3Y.js → chunk-2TMKMTEI.js} +3 -3
  210. package/dist/cli-bundle/chunks/{chunk-QU3OPNVV.js → chunk-2VH7DFSJ.js} +2 -2
  211. package/dist/cli-bundle/chunks/{chunk-RHYBR6G7.js → chunk-3ENF4NO4.js} +74 -14
  212. package/dist/cli-bundle/chunks/chunk-3ENF4NO4.js.map +1 -0
  213. package/dist/cli-bundle/chunks/chunk-3GR2HTYY.js +404 -0
  214. package/dist/cli-bundle/chunks/chunk-3GR2HTYY.js.map +7 -0
  215. package/dist/cli-bundle/chunks/{chunk-AAUYXSFF.js → chunk-3R3FYCBV.js} +223 -50
  216. package/dist/cli-bundle/chunks/chunk-3R3FYCBV.js.map +7 -0
  217. package/dist/cli-bundle/chunks/{chunk-5HSAHRYA.js → chunk-3UKJX3RP.js} +82 -21
  218. package/dist/cli-bundle/chunks/chunk-3UKJX3RP.js.map +7 -0
  219. package/dist/cli-bundle/chunks/chunk-4RTLBTYS.js +83 -0
  220. package/dist/cli-bundle/chunks/chunk-4RTLBTYS.js.map +1 -0
  221. package/dist/cli-bundle/chunks/{chunk-UCVJP4JL.js → chunk-5FDYWOJT.js} +52 -8
  222. package/dist/cli-bundle/chunks/chunk-5FDYWOJT.js.map +7 -0
  223. package/dist/cli-bundle/chunks/{chunk-LGOXXQUW.js → chunk-5XGWFUW2.js} +2 -2
  224. package/dist/cli-bundle/chunks/{chunk-LYNQ3NGI.js → chunk-6BD77FGL.js} +309 -20
  225. package/dist/cli-bundle/chunks/chunk-6BD77FGL.js.map +1 -0
  226. package/dist/cli-bundle/chunks/chunk-6EFCFPNE.js +35 -0
  227. package/dist/cli-bundle/chunks/chunk-6EFCFPNE.js.map +7 -0
  228. package/dist/cli-bundle/chunks/{chunk-36BCSMKP.js → chunk-6HF6CIY2.js} +26 -11
  229. package/dist/cli-bundle/chunks/chunk-6HF6CIY2.js.map +7 -0
  230. package/dist/cli-bundle/chunks/{chunk-M3SI2REU.js → chunk-6PBPD4MN.js} +322 -19
  231. package/dist/cli-bundle/chunks/chunk-6PBPD4MN.js.map +7 -0
  232. package/dist/cli-bundle/chunks/{chunk-TSXWFN3L.js → chunk-6VFUEGOA.js} +53 -9
  233. package/dist/cli-bundle/chunks/chunk-6VFUEGOA.js.map +1 -0
  234. package/dist/cli-bundle/chunks/{chunk-2J2AH4V5.js → chunk-AAOXSPAE.js} +56 -72
  235. package/dist/cli-bundle/chunks/chunk-AAOXSPAE.js.map +1 -0
  236. package/dist/cli-bundle/chunks/{chunk-Z647PYLD.js → chunk-AJCQ5GT6.js} +4 -4
  237. package/dist/cli-bundle/chunks/chunk-ALTGYHN3.js +61 -0
  238. package/dist/cli-bundle/chunks/chunk-ALTGYHN3.js.map +7 -0
  239. package/dist/cli-bundle/chunks/{chunk-KHGTYCJ6.js → chunk-AOJQL33L.js} +83 -22
  240. package/dist/cli-bundle/chunks/chunk-AOJQL33L.js.map +1 -0
  241. package/dist/cli-bundle/chunks/{chunk-5LMF75Q7.js → chunk-AXLDUGXA.js} +7 -4
  242. package/dist/cli-bundle/chunks/{chunk-5LMF75Q7.js.map → chunk-AXLDUGXA.js.map} +2 -2
  243. package/dist/cli-bundle/chunks/{chunk-DWG4FHPY.js → chunk-BITCVGHT.js} +2 -2
  244. package/dist/cli-bundle/chunks/{chunk-JE5IZXDS.js → chunk-CGQTFWYI.js} +4 -4
  245. package/dist/cli-bundle/chunks/{chunk-LFW5NQUP.js → chunk-CHM2VFVL.js} +407 -290
  246. package/dist/cli-bundle/chunks/chunk-CHM2VFVL.js.map +7 -0
  247. package/dist/cli-bundle/chunks/{chunk-VYZNX4C5.js → chunk-COVLE33A.js} +3 -3
  248. package/dist/cli-bundle/chunks/{chunk-SGMGMCIF.js → chunk-DDNBWH4W.js} +157 -25
  249. package/dist/cli-bundle/chunks/chunk-DDNBWH4W.js.map +1 -0
  250. package/dist/cli-bundle/chunks/{chunk-6ZFTM65G.js → chunk-F5MSD5HE.js} +2 -2
  251. package/dist/cli-bundle/chunks/{chunk-6TBR5AZ2.js → chunk-FAXB6F6R.js} +76 -8
  252. package/dist/cli-bundle/chunks/chunk-FAXB6F6R.js.map +7 -0
  253. package/dist/cli-bundle/chunks/{chunk-L6YQONLM.js → chunk-FPDK5BZQ.js} +18 -19
  254. package/dist/cli-bundle/chunks/chunk-FPDK5BZQ.js.map +1 -0
  255. package/dist/cli-bundle/chunks/{chunk-AGG32LKL.js → chunk-FPY2TOFI.js} +480 -24
  256. package/dist/cli-bundle/chunks/chunk-FPY2TOFI.js.map +1 -0
  257. package/dist/cli-bundle/chunks/{chunk-JWXTOYBI.js → chunk-G2MOUCTU.js} +121 -44
  258. package/dist/cli-bundle/chunks/chunk-G2MOUCTU.js.map +7 -0
  259. package/dist/cli-bundle/chunks/{chunk-3VULHQNS.js → chunk-G57RHEGP.js} +36 -18
  260. package/dist/cli-bundle/chunks/chunk-G57RHEGP.js.map +1 -0
  261. package/dist/cli-bundle/chunks/{chunk-QQG4HEX7.js → chunk-IROHIK2T.js} +37 -63
  262. package/dist/cli-bundle/chunks/chunk-IROHIK2T.js.map +1 -0
  263. package/dist/cli-bundle/chunks/{chunk-GOO4UXBI.js → chunk-JZHL4E3Q.js} +4 -4
  264. package/dist/cli-bundle/chunks/{chunk-XXLMJDUB.js → chunk-KA22USXD.js} +21 -22
  265. package/dist/cli-bundle/chunks/chunk-KA22USXD.js.map +7 -0
  266. package/dist/cli-bundle/chunks/{chunk-WLH7X4RN.js → chunk-KBC4O7SY.js} +56 -72
  267. package/dist/cli-bundle/chunks/chunk-KBC4O7SY.js.map +7 -0
  268. package/dist/cli-bundle/chunks/{chunk-NN6RKGFW.js → chunk-KCAGIH6K.js} +3 -3
  269. package/dist/cli-bundle/chunks/{chunk-BVL5KGVA.js → chunk-KO3VM5GS.js} +27 -12
  270. package/dist/cli-bundle/chunks/chunk-KO3VM5GS.js.map +1 -0
  271. package/dist/cli-bundle/chunks/{chunk-IXVSSHGV.js → chunk-LNH5Q32E.js} +13 -8
  272. package/dist/cli-bundle/chunks/chunk-LNH5Q32E.js.map +7 -0
  273. package/dist/cli-bundle/chunks/{chunk-3FMQMHAG.js → chunk-LORM3M2I.js} +4 -4
  274. package/dist/cli-bundle/chunks/{chunk-3FMQMHAG.js.map → chunk-LORM3M2I.js.map} +1 -1
  275. package/dist/cli-bundle/chunks/{chunk-PNYAAB4S.js → chunk-LWGMDLQ6.js} +8 -3
  276. package/dist/cli-bundle/chunks/chunk-LWGMDLQ6.js.map +1 -0
  277. package/dist/cli-bundle/chunks/{chunk-GFBEXDCQ.js → chunk-M4AVU7VC.js} +19 -8
  278. package/dist/cli-bundle/chunks/{chunk-GFBEXDCQ.js.map → chunk-M4AVU7VC.js.map} +2 -2
  279. package/dist/cli-bundle/chunks/{chunk-3CQPVBK3.js → chunk-MIBX6ZRN.js} +3 -3
  280. package/dist/cli-bundle/chunks/{chunk-AUDDXKNX.js → chunk-MMF2E3FM.js} +77 -9
  281. package/dist/cli-bundle/chunks/chunk-MMF2E3FM.js.map +1 -0
  282. package/dist/cli-bundle/chunks/{chunk-RFR2YQGO.js → chunk-MORZOR7W.js} +21 -8
  283. package/dist/cli-bundle/chunks/chunk-MORZOR7W.js.map +1 -0
  284. package/dist/cli-bundle/chunks/{chunk-4TPFXE2R.js → chunk-MUTUZ2HD.js} +118 -74
  285. package/dist/cli-bundle/chunks/chunk-MUTUZ2HD.js.map +1 -0
  286. package/dist/cli-bundle/chunks/{chunk-HZOX5BYD.js → chunk-OGXEBTX3.js} +35 -17
  287. package/dist/cli-bundle/chunks/chunk-OGXEBTX3.js.map +7 -0
  288. package/dist/cli-bundle/chunks/{chunk-LOAR5TKX.js → chunk-OOIH6J5T.js} +4 -4
  289. package/dist/cli-bundle/chunks/{chunk-LOAR5TKX.js.map → chunk-OOIH6J5T.js.map} +1 -1
  290. package/dist/cli-bundle/chunks/{chunk-VNC2HBL4.js → chunk-OSBJPPX3.js} +20 -9
  291. package/dist/cli-bundle/chunks/chunk-OSBJPPX3.js.map +1 -0
  292. package/dist/cli-bundle/chunks/{chunk-2ANTZBYF.js → chunk-PJS3WDO2.js} +122 -45
  293. package/dist/cli-bundle/chunks/chunk-PJS3WDO2.js.map +1 -0
  294. package/dist/cli-bundle/chunks/{chunk-7SM7VA5I.js → chunk-QGPE2H6Z.js} +19 -8
  295. package/dist/cli-bundle/chunks/chunk-QGPE2H6Z.js.map +7 -0
  296. package/dist/cli-bundle/chunks/chunk-QVTFFLR2.js +58 -0
  297. package/dist/cli-bundle/chunks/chunk-QVTFFLR2.js.map +1 -0
  298. package/dist/cli-bundle/chunks/{chunk-JCTZV7TO.js → chunk-QW2F6ARZ.js} +8 -5
  299. package/dist/cli-bundle/chunks/{chunk-JCTZV7TO.js.map → chunk-QW2F6ARZ.js.map} +1 -1
  300. package/dist/cli-bundle/chunks/{chunk-TOX7YQ7X.js → chunk-QXC3LWB7.js} +223 -50
  301. package/dist/cli-bundle/chunks/chunk-QXC3LWB7.js.map +1 -0
  302. package/dist/cli-bundle/chunks/{chunk-W6KNFAMZ.js → chunk-QXMXRPX5.js} +9 -8
  303. package/dist/cli-bundle/chunks/chunk-QXMXRPX5.js.map +7 -0
  304. package/dist/cli-bundle/chunks/{chunk-O3YCJOVX.js → chunk-R4AKUPKI.js} +3 -3
  305. package/dist/cli-bundle/chunks/{chunk-O3YCJOVX.js.map → chunk-R4AKUPKI.js.map} +1 -1
  306. package/dist/cli-bundle/chunks/chunk-RASR23HV.js +394 -0
  307. package/dist/cli-bundle/chunks/chunk-RASR23HV.js.map +1 -0
  308. package/dist/cli-bundle/chunks/{chunk-JW7D6437.js → chunk-SCDCNGCV.js} +20 -9
  309. package/dist/cli-bundle/chunks/chunk-SCDCNGCV.js.map +1 -0
  310. package/dist/cli-bundle/chunks/{chunk-GRZGHGRG.js → chunk-SCS5PVAA.js} +10 -9
  311. package/dist/cli-bundle/chunks/{chunk-GRZGHGRG.js.map → chunk-SCS5PVAA.js.map} +2 -2
  312. package/dist/cli-bundle/chunks/{chunk-S2CDTRJ6.js → chunk-SJCMTOEU.js} +381 -271
  313. package/dist/cli-bundle/chunks/chunk-SJCMTOEU.js.map +1 -0
  314. package/dist/cli-bundle/chunks/{chunk-XWDZVCBJ.js → chunk-SO2ES46D.js} +11 -10
  315. package/dist/cli-bundle/chunks/{chunk-XWDZVCBJ.js.map → chunk-SO2ES46D.js.map} +1 -1
  316. package/dist/cli-bundle/chunks/{chunk-MACCNKSZ.js → chunk-TBV33CB4.js} +36 -62
  317. package/dist/cli-bundle/chunks/chunk-TBV33CB4.js.map +7 -0
  318. package/dist/cli-bundle/chunks/chunk-TEFEXQWI.js +86 -0
  319. package/dist/cli-bundle/chunks/chunk-TEFEXQWI.js.map +7 -0
  320. package/dist/cli-bundle/chunks/{chunk-HLEGAQXT.js → chunk-TWBDDVIF.js} +20 -7
  321. package/dist/cli-bundle/chunks/chunk-TWBDDVIF.js.map +7 -0
  322. package/dist/cli-bundle/chunks/{chunk-4JHJ7YG2.js → chunk-UGUJ2UOR.js} +118 -74
  323. package/dist/cli-bundle/chunks/chunk-UGUJ2UOR.js.map +7 -0
  324. package/dist/cli-bundle/chunks/{chunk-XOYHMHFF.js → chunk-UN6P3IJ4.js} +3 -3
  325. package/dist/cli-bundle/chunks/{chunk-32XSW44C.js → chunk-V2GYOMEX.js} +10 -9
  326. package/dist/cli-bundle/chunks/chunk-V2GYOMEX.js.map +1 -0
  327. package/dist/cli-bundle/chunks/{chunk-HWHONML5.js → chunk-VF3KQGNY.js} +4 -4
  328. package/dist/cli-bundle/chunks/{chunk-SOHXUA2Q.js → chunk-VHG6LUKR.js} +116 -36
  329. package/dist/cli-bundle/chunks/chunk-VHG6LUKR.js.map +1 -0
  330. package/dist/cli-bundle/chunks/{chunk-7CRFV6JR.js → chunk-VXHMQDXA.js} +483 -27
  331. package/dist/cli-bundle/chunks/chunk-VXHMQDXA.js.map +7 -0
  332. package/dist/cli-bundle/chunks/{chunk-IZHCCG4S.js → chunk-VXRFAE7W.js} +14 -9
  333. package/dist/cli-bundle/chunks/chunk-VXRFAE7W.js.map +1 -0
  334. package/dist/cli-bundle/chunks/{chunk-R4VWYWRN.js → chunk-W3HFLORZ.js} +7 -2
  335. package/dist/cli-bundle/chunks/chunk-W3HFLORZ.js.map +7 -0
  336. package/dist/cli-bundle/chunks/{chunk-4FHLNNW7.js → chunk-WQRL4COW.js} +74 -14
  337. package/dist/cli-bundle/chunks/chunk-WQRL4COW.js.map +7 -0
  338. package/dist/cli-bundle/chunks/chunk-X3W5ESZQ.js +32 -0
  339. package/dist/cli-bundle/chunks/chunk-X3W5ESZQ.js.map +1 -0
  340. package/dist/cli-bundle/chunks/{chunk-MGAQ6KZG.js → chunk-XESAPVZ4.js} +166 -27
  341. package/dist/cli-bundle/chunks/chunk-XESAPVZ4.js.map +7 -0
  342. package/dist/cli-bundle/chunks/{chunk-PEH7SZD2.js → chunk-YLAW3FZN.js} +105 -31
  343. package/dist/cli-bundle/chunks/chunk-YLAW3FZN.js.map +7 -0
  344. package/dist/cli-bundle/chunks/{claim-HE6KEGJW.js → claim-WGAWJCPY.js} +10 -10
  345. package/dist/cli-bundle/chunks/{claim-QJOQBH7J.js → claim-ZI6P4LMU.js} +10 -10
  346. package/dist/cli-bundle/chunks/close-I7PRQ5G7.js +13 -0
  347. package/dist/cli-bundle/chunks/{close-SPUFW5QR.js → close-JMVVSIQE.js} +8 -8
  348. package/dist/cli-bundle/chunks/{close-many-GKAJX54X.js → close-many-IKPJXVOZ.js} +32 -20
  349. package/dist/cli-bundle/chunks/close-many-IKPJXVOZ.js.map +1 -0
  350. package/dist/cli-bundle/chunks/{close-many-GL6NRUU5.js → close-many-TXABDCSJ.js} +31 -19
  351. package/dist/cli-bundle/chunks/close-many-TXABDCSJ.js.map +7 -0
  352. package/dist/cli-bundle/chunks/{comments-5FPT6L7N.js → comments-RLWR2S7W.js} +55 -31
  353. package/dist/cli-bundle/chunks/comments-RLWR2S7W.js.map +1 -0
  354. package/dist/cli-bundle/chunks/{comments-TOLOYWNI.js → comments-YAMXKHUX.js} +54 -30
  355. package/dist/cli-bundle/chunks/comments-YAMXKHUX.js.map +7 -0
  356. package/dist/cli-bundle/chunks/{config-7N6D7YJE.js → config-7ICYC2WU.js} +83 -19
  357. package/dist/cli-bundle/chunks/config-7ICYC2WU.js.map +7 -0
  358. package/dist/cli-bundle/chunks/{config-4MN45TIH.js → config-NGWN3EXC.js} +83 -19
  359. package/dist/cli-bundle/chunks/config-NGWN3EXC.js.map +1 -0
  360. package/dist/cli-bundle/chunks/{context-AQSLE7DZ.js → context-K6QAHN5H.js} +128 -39
  361. package/dist/cli-bundle/chunks/context-K6QAHN5H.js.map +1 -0
  362. package/dist/cli-bundle/chunks/{context-U3PUJMVN.js → context-VGXOOAH2.js} +127 -38
  363. package/dist/cli-bundle/chunks/context-VGXOOAH2.js.map +7 -0
  364. package/dist/cli-bundle/chunks/{contracts-ITSJXO3O.js → contracts-KJGY2AQA.js} +99 -15
  365. package/dist/cli-bundle/chunks/contracts-KJGY2AQA.js.map +1 -0
  366. package/dist/cli-bundle/chunks/{contracts-H7KCQXLY.js → contracts-KMA6OJY7.js} +99 -15
  367. package/dist/cli-bundle/chunks/contracts-KMA6OJY7.js.map +7 -0
  368. package/dist/cli-bundle/chunks/{copy-EB3MUCSW.js → copy-Q2PPU4AY.js} +7 -7
  369. package/dist/cli-bundle/chunks/{copy-C4W522JM.js → copy-SC6UF3PI.js} +7 -7
  370. package/dist/cli-bundle/chunks/{create-4EQNELMY.js → create-76FE7JVF.js} +16 -13
  371. package/dist/cli-bundle/chunks/create-RTRFW6RE.js +30 -0
  372. package/dist/cli-bundle/chunks/{delete-X5QLXIQX.js → delete-T6DJSUJI.js} +7 -7
  373. package/dist/cli-bundle/chunks/{delete-ZLGUYIXU.js → delete-XFUX533E.js} +7 -7
  374. package/dist/cli-bundle/chunks/{deps-GPB3LGWN.js → deps-5GWMMS6D.js} +9 -10
  375. package/dist/cli-bundle/chunks/{deps-GPB3LGWN.js.map → deps-5GWMMS6D.js.map} +2 -2
  376. package/dist/cli-bundle/chunks/{deps-HV2C2L46.js → deps-MCCU633S.js} +10 -11
  377. package/dist/cli-bundle/chunks/deps-MCCU633S.js.map +1 -0
  378. package/dist/cli-bundle/chunks/{docs-SRTLCQOL.js → docs-HE3HCQ4S.js} +9 -9
  379. package/dist/cli-bundle/chunks/{docs-RJQPLROO.js → docs-SXMOABHR.js} +9 -9
  380. package/dist/cli-bundle/chunks/{extension-WKPVPNCC.js → extension-E23K4QRR.js} +7 -5
  381. package/dist/cli-bundle/chunks/{extension-MM3TVWOO.js → extension-PMD3XMLN.js} +7 -5
  382. package/dist/cli-bundle/chunks/{files-OIFN3DQX.js → files-2RSWGPEU.js} +25 -11
  383. package/dist/cli-bundle/chunks/files-2RSWGPEU.js.map +1 -0
  384. package/dist/cli-bundle/chunks/{files-LIFDKNCN.js → files-ZWFJFWBK.js} +24 -10
  385. package/dist/cli-bundle/chunks/files-ZWFJFWBK.js.map +7 -0
  386. package/dist/cli-bundle/chunks/focus-KTTB3P3F.js +106 -0
  387. package/dist/cli-bundle/chunks/focus-KTTB3P3F.js.map +1 -0
  388. package/dist/cli-bundle/chunks/focus-ZMDP4FEL.js +109 -0
  389. package/dist/cli-bundle/chunks/focus-ZMDP4FEL.js.map +7 -0
  390. package/dist/cli-bundle/chunks/{gc-NRFHLVFT.js → gc-BXIAKLAH.js} +3 -3
  391. package/dist/cli-bundle/chunks/{gc-DL6AVOX5.js → gc-C7K6JNUO.js} +3 -3
  392. package/dist/cli-bundle/chunks/{get-SAB7CRBG.js → get-AZQLC4NO.js} +43 -16
  393. package/dist/cli-bundle/chunks/get-AZQLC4NO.js.map +1 -0
  394. package/dist/cli-bundle/chunks/{get-K7UULTQF.js → get-I65HTAWO.js} +42 -15
  395. package/dist/cli-bundle/chunks/get-I65HTAWO.js.map +7 -0
  396. package/dist/cli-bundle/chunks/{health-NUVZYIEV.js → health-3MFFPQVZ.js} +75 -49
  397. package/dist/cli-bundle/chunks/health-3MFFPQVZ.js.map +1 -0
  398. package/dist/cli-bundle/chunks/{health-VJWH3ZFK.js → health-MYZEOCLI.js} +74 -48
  399. package/dist/cli-bundle/chunks/health-MYZEOCLI.js.map +7 -0
  400. package/dist/cli-bundle/chunks/{history-GYFD2DJW.js → history-73Z6OBFZ.js} +10 -10
  401. package/dist/cli-bundle/chunks/history-BIPHVUMF.js +20 -0
  402. package/dist/cli-bundle/chunks/{history-compact-WQZQ6KXM.js → history-compact-24VQ63A3.js} +37 -46
  403. package/dist/cli-bundle/chunks/history-compact-24VQ63A3.js.map +7 -0
  404. package/dist/cli-bundle/chunks/{history-compact-SLL6ESXH.js → history-compact-UIAR2OI4.js} +38 -47
  405. package/dist/cli-bundle/chunks/history-compact-UIAR2OI4.js.map +1 -0
  406. package/dist/cli-bundle/chunks/{history-redact-SDTDR6WM.js → history-redact-7YCXEWJD.js} +13 -11
  407. package/dist/cli-bundle/chunks/history-redact-WZZ6GZ2Z.js +21 -0
  408. package/dist/cli-bundle/chunks/{history-repair-BJCGM6Q3.js → history-repair-4NOFFG2W.js} +44 -49
  409. package/dist/cli-bundle/chunks/history-repair-4NOFFG2W.js.map +1 -0
  410. package/dist/cli-bundle/chunks/{history-repair-UCYS55ZX.js → history-repair-GQN2X4TR.js} +43 -48
  411. package/dist/cli-bundle/chunks/history-repair-GQN2X4TR.js.map +7 -0
  412. package/dist/cli-bundle/chunks/init-K34V4PZR.js +20 -0
  413. package/dist/cli-bundle/chunks/{init-MXV57LKL.js → init-TDEDNVMM.js} +12 -9
  414. package/dist/cli-bundle/chunks/{learnings-QKJOKEAO.js → learnings-TV2CTGJ3.js} +13 -12
  415. package/dist/cli-bundle/chunks/learnings-TV2CTGJ3.js.map +7 -0
  416. package/dist/cli-bundle/chunks/{learnings-L6KTZGOT.js → learnings-U67FTXPB.js} +14 -13
  417. package/dist/cli-bundle/chunks/learnings-U67FTXPB.js.map +1 -0
  418. package/dist/cli-bundle/chunks/list-MSHYOCFU.js +33 -0
  419. package/dist/cli-bundle/chunks/list-VV57WGUD.js +29 -0
  420. package/dist/cli-bundle/chunks/{notes-HMCB7TK6.js → notes-EUANWWKD.js} +13 -12
  421. package/dist/cli-bundle/chunks/notes-EUANWWKD.js.map +7 -0
  422. package/dist/cli-bundle/chunks/{notes-3NLK7WTZ.js → notes-GYVNDAL4.js} +14 -13
  423. package/dist/cli-bundle/chunks/notes-GYVNDAL4.js.map +1 -0
  424. package/dist/cli-bundle/chunks/{plan-NANUWH4T.js → plan-4LF4AV63.js} +15 -14
  425. package/dist/cli-bundle/chunks/plan-4LF4AV63.js.map +7 -0
  426. package/dist/cli-bundle/chunks/{plan-DWBYI5C6.js → plan-W27O6DBS.js} +16 -15
  427. package/dist/cli-bundle/chunks/plan-W27O6DBS.js.map +1 -0
  428. package/dist/cli-bundle/chunks/{register-list-query-SMMMLSWW.js → register-list-query-BXLEHJ7L.js} +32 -23
  429. package/dist/cli-bundle/chunks/register-list-query-BXLEHJ7L.js.map +1 -0
  430. package/dist/cli-bundle/chunks/{register-list-query-PWQ5F2VI.js → register-list-query-C2MS3BVQ.js} +31 -22
  431. package/dist/cli-bundle/chunks/register-list-query-C2MS3BVQ.js.map +7 -0
  432. package/dist/cli-bundle/chunks/{register-mutation-QKFPTIZG.js → register-mutation-6UCOEQ6L.js} +361 -106
  433. package/dist/cli-bundle/chunks/register-mutation-6UCOEQ6L.js.map +7 -0
  434. package/dist/cli-bundle/chunks/{register-mutation-ZYJQ4DVP.js → register-mutation-HE73PREP.js} +355 -107
  435. package/dist/cli-bundle/chunks/register-mutation-HE73PREP.js.map +1 -0
  436. package/dist/cli-bundle/chunks/{register-operations-2FMZ6WEF.js → register-operations-L6C32FDA.js} +111 -39
  437. package/dist/cli-bundle/chunks/register-operations-L6C32FDA.js.map +7 -0
  438. package/dist/cli-bundle/chunks/{register-operations-BAFQURZG.js → register-operations-QQEHEX4P.js} +112 -40
  439. package/dist/cli-bundle/chunks/register-operations-QQEHEX4P.js.map +1 -0
  440. package/dist/cli-bundle/chunks/{register-setup-QN2XV7UL.js → register-setup-A7N4PNT3.js} +18 -21
  441. package/dist/cli-bundle/chunks/register-setup-A7N4PNT3.js.map +1 -0
  442. package/dist/cli-bundle/chunks/{register-setup-DQEIKBIP.js → register-setup-WHG3NBP6.js} +17 -20
  443. package/dist/cli-bundle/chunks/register-setup-WHG3NBP6.js.map +7 -0
  444. package/dist/cli-bundle/chunks/{restore-FJQWXMPY.js → restore-TSWSULYY.js} +13 -11
  445. package/dist/cli-bundle/chunks/restore-XQXICL3V.js +19 -0
  446. package/dist/cli-bundle/chunks/scheduling-shortcuts-NC46K6BD.js +91 -0
  447. package/dist/cli-bundle/chunks/scheduling-shortcuts-NC46K6BD.js.map +7 -0
  448. package/dist/cli-bundle/chunks/scheduling-shortcuts-UGDPQALY.js +88 -0
  449. package/dist/cli-bundle/chunks/scheduling-shortcuts-UGDPQALY.js.map +1 -0
  450. package/dist/cli-bundle/chunks/{schema-ZZ7ZDM2X.js → schema-7U7JUYGK.js} +797 -10
  451. package/dist/cli-bundle/chunks/schema-7U7JUYGK.js.map +1 -0
  452. package/dist/cli-bundle/chunks/{schema-RNVJ55V2.js → schema-TSBYSEMW.js} +810 -9
  453. package/dist/cli-bundle/chunks/schema-TSBYSEMW.js.map +7 -0
  454. package/dist/cli-bundle/chunks/{search-BJ457C2A.js → search-OXLSQKHP.js} +328 -71
  455. package/dist/cli-bundle/chunks/search-OXLSQKHP.js.map +7 -0
  456. package/dist/cli-bundle/chunks/{search-FQDZXX7P.js → search-T3TOFLOQ.js} +328 -71
  457. package/dist/cli-bundle/chunks/search-T3TOFLOQ.js.map +1 -0
  458. package/dist/cli-bundle/chunks/{stats-DUQWCVOS.js → stats-5CLG22YZ.js} +41 -16
  459. package/dist/cli-bundle/chunks/stats-5CLG22YZ.js.map +7 -0
  460. package/dist/cli-bundle/chunks/{stats-CUG3ZHOI.js → stats-XEMUXS42.js} +42 -17
  461. package/dist/cli-bundle/chunks/stats-XEMUXS42.js.map +1 -0
  462. package/dist/cli-bundle/chunks/{telemetry-RK2VX75A.js → telemetry-23OPBBZT.js} +7 -7
  463. package/dist/cli-bundle/chunks/telemetry-23OPBBZT.js.map +1 -0
  464. package/dist/cli-bundle/chunks/{telemetry-33MRGX4Z.js → telemetry-I3D7XZ55.js} +6 -6
  465. package/dist/cli-bundle/chunks/telemetry-I3D7XZ55.js.map +7 -0
  466. package/dist/cli-bundle/chunks/test-AROS3LIV.js +35 -0
  467. package/dist/cli-bundle/chunks/{test-Y3CTFMEC.js → test-CECIMKOA.js} +17 -14
  468. package/dist/cli-bundle/chunks/{test-all-ARSMX33Q.js → test-all-4DEQPIXH.js} +25 -17
  469. package/dist/cli-bundle/chunks/test-all-4DEQPIXH.js.map +1 -0
  470. package/dist/cli-bundle/chunks/{test-all-ANYQ33O2.js → test-all-6RO6X3SM.js} +24 -16
  471. package/dist/cli-bundle/chunks/test-all-6RO6X3SM.js.map +7 -0
  472. package/dist/cli-bundle/chunks/{test-runs-5URSD34O.js → test-runs-AAXVFWKH.js} +62 -65
  473. package/dist/cli-bundle/chunks/test-runs-AAXVFWKH.js.map +1 -0
  474. package/dist/cli-bundle/chunks/{test-runs-XNACGSNQ.js → test-runs-LYBQSYRC.js} +61 -64
  475. package/dist/cli-bundle/chunks/test-runs-LYBQSYRC.js.map +7 -0
  476. package/dist/cli-bundle/chunks/update-MIWEJC76.js +24 -0
  477. package/dist/cli-bundle/chunks/update-P7I5YSRB.js +28 -0
  478. package/dist/cli-bundle/chunks/{update-many-724JCVDE.js → update-many-5B4HLVBK.js} +79 -33
  479. package/dist/cli-bundle/chunks/update-many-5B4HLVBK.js.map +7 -0
  480. package/dist/cli-bundle/chunks/{update-many-6B7PJ33I.js → update-many-G2QOVZSB.js} +80 -34
  481. package/dist/cli-bundle/chunks/update-many-G2QOVZSB.js.map +1 -0
  482. package/dist/cli-bundle/chunks/{upgrade-QHRGDBSA.js → upgrade-GFIDL62L.js} +23 -9
  483. package/dist/cli-bundle/chunks/upgrade-GFIDL62L.js.map +1 -0
  484. package/dist/cli-bundle/chunks/{upgrade-ALBEZAI7.js → upgrade-QUQYL7D3.js} +22 -8
  485. package/dist/cli-bundle/chunks/upgrade-QUQYL7D3.js.map +7 -0
  486. package/dist/cli-bundle/chunks/{validate-UY6DRCG5.js → validate-ADDZBMM3.js} +236 -30
  487. package/dist/cli-bundle/chunks/validate-ADDZBMM3.js.map +7 -0
  488. package/dist/cli-bundle/chunks/{validate-IQRYFXIV.js → validate-MAS3H6ZP.js} +222 -30
  489. package/dist/cli-bundle/chunks/validate-MAS3H6ZP.js.map +1 -0
  490. package/dist/cli-bundle/main.js +312 -139
  491. package/dist/cli-bundle/main.js.map +3 -3
  492. package/dist/cli.d.ts +10 -0
  493. package/dist/cli.js +21 -8
  494. package/dist/cli.js.map +1 -1
  495. package/dist/core/config/nested-settings.js +40 -2
  496. package/dist/core/config/nested-settings.js.map +1 -1
  497. package/dist/core/diagnostics/remediation.js +7 -2
  498. package/dist/core/diagnostics/remediation.js.map +1 -1
  499. package/dist/core/extensions/extension-policy.js +14 -15
  500. package/dist/core/extensions/extension-policy.js.map +1 -1
  501. package/dist/core/extensions/item-fields.js +4 -5
  502. package/dist/core/extensions/item-fields.js.map +1 -1
  503. package/dist/core/extensions/loader.d.ts +75 -1
  504. package/dist/core/extensions/loader.js +56 -32
  505. package/dist/core/extensions/loader.js.map +1 -1
  506. package/dist/core/governance/content-fields.d.ts +84 -0
  507. package/dist/core/governance/content-fields.js +182 -0
  508. package/dist/core/governance/content-fields.js.map +1 -0
  509. package/dist/core/governance/issue-codes.d.ts +51 -0
  510. package/dist/core/governance/issue-codes.js +95 -0
  511. package/dist/core/governance/issue-codes.js.map +1 -0
  512. package/dist/core/governance/metadata-coverage.d.ts +168 -0
  513. package/dist/core/governance/metadata-coverage.js +362 -0
  514. package/dist/core/governance/metadata-coverage.js.map +1 -0
  515. package/dist/core/history/history-rewrite.d.ts +22 -0
  516. package/dist/core/history/history-rewrite.js +38 -2
  517. package/dist/core/history/history-rewrite.js.map +1 -1
  518. package/dist/core/history/history.d.ts +7 -0
  519. package/dist/core/history/history.js +6 -2
  520. package/dist/core/history/history.js.map +1 -1
  521. package/dist/core/io/body-file.d.ts +14 -0
  522. package/dist/core/io/body-file.js +47 -0
  523. package/dist/core/io/body-file.js.map +1 -0
  524. package/dist/core/item/item-format.d.ts +46 -1
  525. package/dist/core/item/item-format.js +51 -60
  526. package/dist/core/item/item-format.js.map +1 -1
  527. package/dist/core/item/parse.d.ts +41 -0
  528. package/dist/core/item/parse.js +69 -16
  529. package/dist/core/item/parse.js.map +1 -1
  530. package/dist/core/item/type-registry.d.ts +1 -0
  531. package/dist/core/item/type-registry.js +8 -10
  532. package/dist/core/item/type-registry.js.map +1 -1
  533. package/dist/core/lock/lock.d.ts +26 -0
  534. package/dist/core/lock/lock.js +10 -2
  535. package/dist/core/lock/lock.js.map +1 -1
  536. package/dist/core/output/output.d.ts +7 -0
  537. package/dist/core/output/output.js +6 -2
  538. package/dist/core/output/output.js.map +1 -1
  539. package/dist/core/schema/fields-file.d.ts +94 -0
  540. package/dist/core/schema/fields-file.js +317 -0
  541. package/dist/core/schema/fields-file.js.map +1 -0
  542. package/dist/core/schema/item-types-file.d.ts +25 -2
  543. package/dist/core/schema/item-types-file.js +78 -6
  544. package/dist/core/schema/item-types-file.js.map +1 -1
  545. package/dist/core/schema/runtime-schema.d.ts +7 -0
  546. package/dist/core/schema/runtime-schema.js +23 -16
  547. package/dist/core/schema/runtime-schema.js.map +1 -1
  548. package/dist/core/schema/type-inference.d.ts +34 -0
  549. package/dist/core/schema/type-inference.js +97 -0
  550. package/dist/core/schema/type-inference.js.map +1 -0
  551. package/dist/core/schema/type-presets.d.ts +30 -0
  552. package/dist/core/schema/type-presets.js +96 -0
  553. package/dist/core/schema/type-presets.js.map +1 -0
  554. package/dist/core/search/cache.d.ts +19 -1
  555. package/dist/core/search/cache.js +11 -3
  556. package/dist/core/search/cache.js.map +1 -1
  557. package/dist/core/search/corpus.d.ts +36 -2
  558. package/dist/core/search/corpus.js +120 -24
  559. package/dist/core/search/corpus.js.map +1 -1
  560. package/dist/core/search/providers.d.ts +19 -0
  561. package/dist/core/search/providers.js +19 -2
  562. package/dist/core/search/providers.js.map +1 -1
  563. package/dist/core/sentry/instrument.d.ts +1 -0
  564. package/dist/core/sentry/instrument.js +6 -2
  565. package/dist/core/sentry/instrument.js.map +1 -1
  566. package/dist/core/session/session-state.d.ts +16 -0
  567. package/dist/core/session/session-state.js +48 -0
  568. package/dist/core/session/session-state.js.map +1 -0
  569. package/dist/core/shared/constants.d.ts +8 -0
  570. package/dist/core/shared/constants.js +11 -2
  571. package/dist/core/shared/constants.js.map +1 -1
  572. package/dist/core/shared/text-normalization.js +4 -3
  573. package/dist/core/shared/text-normalization.js.map +1 -1
  574. package/dist/core/shared/time.d.ts +13 -0
  575. package/dist/core/shared/time.js +19 -7
  576. package/dist/core/shared/time.js.map +1 -1
  577. package/dist/core/store/front-matter-cache.d.ts +13 -0
  578. package/dist/core/store/front-matter-cache.js +21 -11
  579. package/dist/core/store/front-matter-cache.js.map +1 -1
  580. package/dist/core/store/item-store.d.ts +11 -0
  581. package/dist/core/store/item-store.js +12 -3
  582. package/dist/core/store/item-store.js.map +1 -1
  583. package/dist/core/store/settings-validator.d.ts +2 -0
  584. package/dist/core/store/settings-validator.js +25 -2
  585. package/dist/core/store/settings-validator.js.map +1 -1
  586. package/dist/core/store/settings.d.ts +60 -1
  587. package/dist/core/store/settings.js +100 -46
  588. package/dist/core/store/settings.js.map +1 -1
  589. package/dist/core/telemetry/observability.js +10 -8
  590. package/dist/core/telemetry/observability.js.map +1 -1
  591. package/dist/core/telemetry/runtime.d.ts +272 -1
  592. package/dist/core/telemetry/runtime.js +358 -37
  593. package/dist/core/telemetry/runtime.js.map +1 -1
  594. package/dist/core/test/background-runs.d.ts +35 -0
  595. package/dist/core/test/background-runs.js +72 -61
  596. package/dist/core/test/background-runs.js.map +1 -1
  597. package/dist/core/test/run-selectors.js +5 -4
  598. package/dist/core/test/run-selectors.js.map +1 -1
  599. package/dist/core/validate/estimate-defaults.d.ts +39 -0
  600. package/dist/core/validate/estimate-defaults.js +117 -0
  601. package/dist/core/validate/estimate-defaults.js.map +1 -0
  602. package/dist/core/validate/fix-planning.d.ts +21 -3
  603. package/dist/core/validate/fix-planning.js +31 -4
  604. package/dist/core/validate/fix-planning.js.map +1 -1
  605. package/dist/core/validate/missing-link-owners.d.ts +64 -0
  606. package/dist/core/validate/missing-link-owners.js +98 -0
  607. package/dist/core/validate/missing-link-owners.js.map +1 -0
  608. package/dist/mcp/server.d.ts +61 -0
  609. package/dist/mcp/server.js +98 -8
  610. package/dist/mcp/server.js.map +1 -1
  611. package/dist/mcp/tool-definitions.js +64 -10
  612. package/dist/mcp/tool-definitions.js.map +1 -1
  613. package/dist/sdk/cli-contracts/commander-types.js +13 -2
  614. package/dist/sdk/cli-contracts/commander-types.js.map +1 -1
  615. package/dist/sdk/cli-contracts/enum-contracts.d.ts +2 -2
  616. package/dist/sdk/cli-contracts/enum-contracts.js +7 -2
  617. package/dist/sdk/cli-contracts/enum-contracts.js.map +1 -1
  618. package/dist/sdk/cli-contracts/tool-option-contracts.js +110 -2
  619. package/dist/sdk/cli-contracts/tool-option-contracts.js.map +1 -1
  620. package/dist/sdk/cli-contracts/tool-parameter-tables.js +127 -11
  621. package/dist/sdk/cli-contracts/tool-parameter-tables.js.map +1 -1
  622. package/dist/sdk/cli-contracts.d.ts +31 -0
  623. package/dist/sdk/cli-contracts.js +238 -12
  624. package/dist/sdk/cli-contracts.js.map +1 -1
  625. package/dist/types.d.ts +17 -1
  626. package/dist/types.js +3 -3
  627. package/dist/types.js.map +1 -1
  628. package/docs/AGENT_GUIDE.md +15 -3
  629. package/docs/CLAUDE_CODE_PLUGIN.md +2 -2
  630. package/docs/COMMANDS.md +171 -10
  631. package/docs/CONFIGURATION.md +135 -0
  632. package/docs/TESTING.md +6 -4
  633. package/package.json +6 -4
  634. package/packages/pm-calendar/extensions/calendar/runtime.js +6 -0
  635. package/packages/pm-calendar/extensions/calendar/runtime.ts +12 -0
  636. package/packages/pm-todos/extensions/todos/runtime.ts +5 -0
  637. package/plugins/pm-claude/.claude-plugin/plugin.json +1 -1
  638. package/plugins/pm-claude/README.md +3 -3
  639. package/plugins/pm-claude/commands/pm-init.md +1 -1
  640. package/plugins/pm-codex/README.md +1 -1
  641. package/scripts/bundle-cli.mjs +46 -37
  642. package/scripts/finalize-build.mjs +20 -9
  643. package/scripts/prepare-build-cache.mjs +27 -16
  644. package/dist/cli-bundle/chunks/activity-XIOTGZMU.js +0 -16
  645. package/dist/cli-bundle/chunks/aggregate-IRHJWEKG.js.map +0 -1
  646. package/dist/cli-bundle/chunks/aggregate-XEBW22UQ.js.map +0 -7
  647. package/dist/cli-bundle/chunks/append-NL67JNJU.js.map +0 -1
  648. package/dist/cli-bundle/chunks/chunk-2ANTZBYF.js.map +0 -1
  649. package/dist/cli-bundle/chunks/chunk-2J2AH4V5.js.map +0 -1
  650. package/dist/cli-bundle/chunks/chunk-32XSW44C.js.map +0 -1
  651. package/dist/cli-bundle/chunks/chunk-36BCSMKP.js.map +0 -7
  652. package/dist/cli-bundle/chunks/chunk-3VULHQNS.js.map +0 -1
  653. package/dist/cli-bundle/chunks/chunk-4FHLNNW7.js.map +0 -7
  654. package/dist/cli-bundle/chunks/chunk-4JHJ7YG2.js.map +0 -7
  655. package/dist/cli-bundle/chunks/chunk-4TPFXE2R.js.map +0 -1
  656. package/dist/cli-bundle/chunks/chunk-4ZKKZMLH.js.map +0 -1
  657. package/dist/cli-bundle/chunks/chunk-5HSAHRYA.js.map +0 -7
  658. package/dist/cli-bundle/chunks/chunk-6TBR5AZ2.js.map +0 -7
  659. package/dist/cli-bundle/chunks/chunk-7CRFV6JR.js.map +0 -7
  660. package/dist/cli-bundle/chunks/chunk-7SM7VA5I.js.map +0 -7
  661. package/dist/cli-bundle/chunks/chunk-AAUYXSFF.js.map +0 -7
  662. package/dist/cli-bundle/chunks/chunk-AGG32LKL.js.map +0 -1
  663. package/dist/cli-bundle/chunks/chunk-AUDDXKNX.js.map +0 -1
  664. package/dist/cli-bundle/chunks/chunk-BVL5KGVA.js.map +0 -1
  665. package/dist/cli-bundle/chunks/chunk-C24PWDFG.js +0 -138
  666. package/dist/cli-bundle/chunks/chunk-C24PWDFG.js.map +0 -7
  667. package/dist/cli-bundle/chunks/chunk-HLEGAQXT.js.map +0 -7
  668. package/dist/cli-bundle/chunks/chunk-HZOX5BYD.js.map +0 -7
  669. package/dist/cli-bundle/chunks/chunk-IXVSSHGV.js.map +0 -7
  670. package/dist/cli-bundle/chunks/chunk-IZHCCG4S.js.map +0 -1
  671. package/dist/cli-bundle/chunks/chunk-JW7D6437.js.map +0 -1
  672. package/dist/cli-bundle/chunks/chunk-JWXTOYBI.js.map +0 -7
  673. package/dist/cli-bundle/chunks/chunk-KHGTYCJ6.js.map +0 -1
  674. package/dist/cli-bundle/chunks/chunk-L6YQONLM.js.map +0 -1
  675. package/dist/cli-bundle/chunks/chunk-LFW5NQUP.js.map +0 -7
  676. package/dist/cli-bundle/chunks/chunk-LYNQ3NGI.js.map +0 -1
  677. package/dist/cli-bundle/chunks/chunk-M3SI2REU.js.map +0 -7
  678. package/dist/cli-bundle/chunks/chunk-MACCNKSZ.js.map +0 -7
  679. package/dist/cli-bundle/chunks/chunk-MGAQ6KZG.js.map +0 -7
  680. package/dist/cli-bundle/chunks/chunk-PEH7SZD2.js.map +0 -7
  681. package/dist/cli-bundle/chunks/chunk-PNYAAB4S.js.map +0 -1
  682. package/dist/cli-bundle/chunks/chunk-QQG4HEX7.js.map +0 -1
  683. package/dist/cli-bundle/chunks/chunk-R4VWYWRN.js.map +0 -7
  684. package/dist/cli-bundle/chunks/chunk-RFR2YQGO.js.map +0 -1
  685. package/dist/cli-bundle/chunks/chunk-RHYBR6G7.js.map +0 -1
  686. package/dist/cli-bundle/chunks/chunk-S2CDTRJ6.js.map +0 -1
  687. package/dist/cli-bundle/chunks/chunk-SGMGMCIF.js.map +0 -1
  688. package/dist/cli-bundle/chunks/chunk-SOHXUA2Q.js.map +0 -1
  689. package/dist/cli-bundle/chunks/chunk-SQDKAEKG.js.map +0 -7
  690. package/dist/cli-bundle/chunks/chunk-TOX7YQ7X.js.map +0 -1
  691. package/dist/cli-bundle/chunks/chunk-TSXWFN3L.js.map +0 -1
  692. package/dist/cli-bundle/chunks/chunk-UCVJP4JL.js.map +0 -7
  693. package/dist/cli-bundle/chunks/chunk-V4KP3TCN.js +0 -128
  694. package/dist/cli-bundle/chunks/chunk-V4KP3TCN.js.map +0 -1
  695. package/dist/cli-bundle/chunks/chunk-VNC2HBL4.js.map +0 -1
  696. package/dist/cli-bundle/chunks/chunk-W6KNFAMZ.js.map +0 -7
  697. package/dist/cli-bundle/chunks/chunk-WLH7X4RN.js.map +0 -7
  698. package/dist/cli-bundle/chunks/chunk-XXLMJDUB.js.map +0 -7
  699. package/dist/cli-bundle/chunks/close-WOG5WTMZ.js +0 -13
  700. package/dist/cli-bundle/chunks/close-many-GKAJX54X.js.map +0 -1
  701. package/dist/cli-bundle/chunks/close-many-GL6NRUU5.js.map +0 -7
  702. package/dist/cli-bundle/chunks/comments-5FPT6L7N.js.map +0 -1
  703. package/dist/cli-bundle/chunks/comments-TOLOYWNI.js.map +0 -7
  704. package/dist/cli-bundle/chunks/config-4MN45TIH.js.map +0 -1
  705. package/dist/cli-bundle/chunks/config-7N6D7YJE.js.map +0 -7
  706. package/dist/cli-bundle/chunks/context-AQSLE7DZ.js.map +0 -1
  707. package/dist/cli-bundle/chunks/context-U3PUJMVN.js.map +0 -7
  708. package/dist/cli-bundle/chunks/contracts-H7KCQXLY.js.map +0 -7
  709. package/dist/cli-bundle/chunks/contracts-ITSJXO3O.js.map +0 -1
  710. package/dist/cli-bundle/chunks/create-NW3K7LVG.js +0 -27
  711. package/dist/cli-bundle/chunks/deps-HV2C2L46.js.map +0 -1
  712. package/dist/cli-bundle/chunks/files-LIFDKNCN.js.map +0 -7
  713. package/dist/cli-bundle/chunks/files-OIFN3DQX.js.map +0 -1
  714. package/dist/cli-bundle/chunks/get-K7UULTQF.js.map +0 -7
  715. package/dist/cli-bundle/chunks/get-SAB7CRBG.js.map +0 -1
  716. package/dist/cli-bundle/chunks/health-NUVZYIEV.js.map +0 -1
  717. package/dist/cli-bundle/chunks/health-VJWH3ZFK.js.map +0 -7
  718. package/dist/cli-bundle/chunks/history-IUVN4NTN.js +0 -20
  719. package/dist/cli-bundle/chunks/history-compact-SLL6ESXH.js.map +0 -1
  720. package/dist/cli-bundle/chunks/history-compact-WQZQ6KXM.js.map +0 -7
  721. package/dist/cli-bundle/chunks/history-redact-75KIIJUJ.js +0 -19
  722. package/dist/cli-bundle/chunks/history-repair-BJCGM6Q3.js.map +0 -1
  723. package/dist/cli-bundle/chunks/history-repair-UCYS55ZX.js.map +0 -7
  724. package/dist/cli-bundle/chunks/init-JJFYRUKG.js +0 -17
  725. package/dist/cli-bundle/chunks/learnings-L6KTZGOT.js.map +0 -1
  726. package/dist/cli-bundle/chunks/learnings-QKJOKEAO.js.map +0 -7
  727. package/dist/cli-bundle/chunks/list-GGVPXEV6.js +0 -23
  728. package/dist/cli-bundle/chunks/list-VOQDQHA4.js +0 -19
  729. package/dist/cli-bundle/chunks/notes-3NLK7WTZ.js.map +0 -1
  730. package/dist/cli-bundle/chunks/notes-HMCB7TK6.js.map +0 -7
  731. package/dist/cli-bundle/chunks/plan-DWBYI5C6.js.map +0 -1
  732. package/dist/cli-bundle/chunks/plan-NANUWH4T.js.map +0 -7
  733. package/dist/cli-bundle/chunks/register-list-query-PWQ5F2VI.js.map +0 -7
  734. package/dist/cli-bundle/chunks/register-list-query-SMMMLSWW.js.map +0 -1
  735. package/dist/cli-bundle/chunks/register-mutation-QKFPTIZG.js.map +0 -7
  736. package/dist/cli-bundle/chunks/register-mutation-ZYJQ4DVP.js.map +0 -1
  737. package/dist/cli-bundle/chunks/register-operations-2FMZ6WEF.js.map +0 -7
  738. package/dist/cli-bundle/chunks/register-operations-BAFQURZG.js.map +0 -1
  739. package/dist/cli-bundle/chunks/register-setup-DQEIKBIP.js.map +0 -7
  740. package/dist/cli-bundle/chunks/register-setup-QN2XV7UL.js.map +0 -1
  741. package/dist/cli-bundle/chunks/restore-DRBNXJJH.js +0 -17
  742. package/dist/cli-bundle/chunks/schema-RNVJ55V2.js.map +0 -7
  743. package/dist/cli-bundle/chunks/schema-ZZ7ZDM2X.js.map +0 -1
  744. package/dist/cli-bundle/chunks/search-BJ457C2A.js.map +0 -7
  745. package/dist/cli-bundle/chunks/search-FQDZXX7P.js.map +0 -1
  746. package/dist/cli-bundle/chunks/stats-CUG3ZHOI.js.map +0 -1
  747. package/dist/cli-bundle/chunks/stats-DUQWCVOS.js.map +0 -7
  748. package/dist/cli-bundle/chunks/telemetry-33MRGX4Z.js.map +0 -7
  749. package/dist/cli-bundle/chunks/telemetry-RK2VX75A.js.map +0 -1
  750. package/dist/cli-bundle/chunks/test-SDMYEQHH.js +0 -32
  751. package/dist/cli-bundle/chunks/test-all-ANYQ33O2.js.map +0 -7
  752. package/dist/cli-bundle/chunks/test-all-ARSMX33Q.js.map +0 -1
  753. package/dist/cli-bundle/chunks/test-runs-5URSD34O.js.map +0 -1
  754. package/dist/cli-bundle/chunks/test-runs-XNACGSNQ.js.map +0 -7
  755. package/dist/cli-bundle/chunks/update-PD46VOXI.js +0 -21
  756. package/dist/cli-bundle/chunks/update-U235A7WP.js +0 -25
  757. package/dist/cli-bundle/chunks/update-many-6B7PJ33I.js.map +0 -1
  758. package/dist/cli-bundle/chunks/update-many-724JCVDE.js.map +0 -7
  759. package/dist/cli-bundle/chunks/upgrade-ALBEZAI7.js.map +0 -7
  760. package/dist/cli-bundle/chunks/upgrade-QHRGDBSA.js.map +0 -1
  761. package/dist/cli-bundle/chunks/validate-IQRYFXIV.js.map +0 -1
  762. package/dist/cli-bundle/chunks/validate-UY6DRCG5.js.map +0 -7
  763. /package/dist/cli-bundle/chunks/{activity-XIOTGZMU.js.map → activity-PZYSZA26.js.map} +0 -0
  764. /package/dist/cli-bundle/chunks/{activity-PPO7QWJF.js.map → activity-SFM4THAU.js.map} +0 -0
  765. /package/dist/cli-bundle/chunks/{chunk-IIOIBAQW.js.map → chunk-26BM6YLO.js.map} +0 -0
  766. /package/dist/cli-bundle/chunks/{chunk-LSSTKL3Y.js.map → chunk-2TMKMTEI.js.map} +0 -0
  767. /package/dist/cli-bundle/chunks/{chunk-QU3OPNVV.js.map → chunk-2VH7DFSJ.js.map} +0 -0
  768. /package/dist/cli-bundle/chunks/{chunk-LGOXXQUW.js.map → chunk-5XGWFUW2.js.map} +0 -0
  769. /package/dist/cli-bundle/chunks/{chunk-Z647PYLD.js.map → chunk-AJCQ5GT6.js.map} +0 -0
  770. /package/dist/cli-bundle/chunks/{chunk-DWG4FHPY.js.map → chunk-BITCVGHT.js.map} +0 -0
  771. /package/dist/cli-bundle/chunks/{chunk-JE5IZXDS.js.map → chunk-CGQTFWYI.js.map} +0 -0
  772. /package/dist/cli-bundle/chunks/{chunk-VYZNX4C5.js.map → chunk-COVLE33A.js.map} +0 -0
  773. /package/dist/cli-bundle/chunks/{chunk-6ZFTM65G.js.map → chunk-F5MSD5HE.js.map} +0 -0
  774. /package/dist/cli-bundle/chunks/{chunk-GOO4UXBI.js.map → chunk-JZHL4E3Q.js.map} +0 -0
  775. /package/dist/cli-bundle/chunks/{chunk-NN6RKGFW.js.map → chunk-KCAGIH6K.js.map} +0 -0
  776. /package/dist/cli-bundle/chunks/{chunk-3CQPVBK3.js.map → chunk-MIBX6ZRN.js.map} +0 -0
  777. /package/dist/cli-bundle/chunks/{chunk-XOYHMHFF.js.map → chunk-UN6P3IJ4.js.map} +0 -0
  778. /package/dist/cli-bundle/chunks/{chunk-HWHONML5.js.map → chunk-VF3KQGNY.js.map} +0 -0
  779. /package/dist/cli-bundle/chunks/{claim-HE6KEGJW.js.map → claim-WGAWJCPY.js.map} +0 -0
  780. /package/dist/cli-bundle/chunks/{claim-QJOQBH7J.js.map → claim-ZI6P4LMU.js.map} +0 -0
  781. /package/dist/cli-bundle/chunks/{close-WOG5WTMZ.js.map → close-I7PRQ5G7.js.map} +0 -0
  782. /package/dist/cli-bundle/chunks/{close-SPUFW5QR.js.map → close-JMVVSIQE.js.map} +0 -0
  783. /package/dist/cli-bundle/chunks/{copy-EB3MUCSW.js.map → copy-Q2PPU4AY.js.map} +0 -0
  784. /package/dist/cli-bundle/chunks/{copy-C4W522JM.js.map → copy-SC6UF3PI.js.map} +0 -0
  785. /package/dist/cli-bundle/chunks/{create-4EQNELMY.js.map → create-76FE7JVF.js.map} +0 -0
  786. /package/dist/cli-bundle/chunks/{create-NW3K7LVG.js.map → create-RTRFW6RE.js.map} +0 -0
  787. /package/dist/cli-bundle/chunks/{delete-X5QLXIQX.js.map → delete-T6DJSUJI.js.map} +0 -0
  788. /package/dist/cli-bundle/chunks/{delete-ZLGUYIXU.js.map → delete-XFUX533E.js.map} +0 -0
  789. /package/dist/cli-bundle/chunks/{docs-SRTLCQOL.js.map → docs-HE3HCQ4S.js.map} +0 -0
  790. /package/dist/cli-bundle/chunks/{docs-RJQPLROO.js.map → docs-SXMOABHR.js.map} +0 -0
  791. /package/dist/cli-bundle/chunks/{extension-WKPVPNCC.js.map → extension-E23K4QRR.js.map} +0 -0
  792. /package/dist/cli-bundle/chunks/{extension-MM3TVWOO.js.map → extension-PMD3XMLN.js.map} +0 -0
  793. /package/dist/cli-bundle/chunks/{gc-NRFHLVFT.js.map → gc-BXIAKLAH.js.map} +0 -0
  794. /package/dist/cli-bundle/chunks/{gc-DL6AVOX5.js.map → gc-C7K6JNUO.js.map} +0 -0
  795. /package/dist/cli-bundle/chunks/{history-GYFD2DJW.js.map → history-73Z6OBFZ.js.map} +0 -0
  796. /package/dist/cli-bundle/chunks/{history-IUVN4NTN.js.map → history-BIPHVUMF.js.map} +0 -0
  797. /package/dist/cli-bundle/chunks/{history-redact-SDTDR6WM.js.map → history-redact-7YCXEWJD.js.map} +0 -0
  798. /package/dist/cli-bundle/chunks/{history-redact-75KIIJUJ.js.map → history-redact-WZZ6GZ2Z.js.map} +0 -0
  799. /package/dist/cli-bundle/chunks/{init-JJFYRUKG.js.map → init-K34V4PZR.js.map} +0 -0
  800. /package/dist/cli-bundle/chunks/{init-MXV57LKL.js.map → init-TDEDNVMM.js.map} +0 -0
  801. /package/dist/cli-bundle/chunks/{list-GGVPXEV6.js.map → list-MSHYOCFU.js.map} +0 -0
  802. /package/dist/cli-bundle/chunks/{list-VOQDQHA4.js.map → list-VV57WGUD.js.map} +0 -0
  803. /package/dist/cli-bundle/chunks/{restore-FJQWXMPY.js.map → restore-TSWSULYY.js.map} +0 -0
  804. /package/dist/cli-bundle/chunks/{restore-DRBNXJJH.js.map → restore-XQXICL3V.js.map} +0 -0
  805. /package/dist/cli-bundle/chunks/{test-SDMYEQHH.js.map → test-AROS3LIV.js.map} +0 -0
  806. /package/dist/cli-bundle/chunks/{test-Y3CTFMEC.js.map → test-CECIMKOA.js.map} +0 -0
  807. /package/dist/cli-bundle/chunks/{update-PD46VOXI.js.map → update-MIWEJC76.js.map} +0 -0
  808. /package/dist/cli-bundle/chunks/{update-U235A7WP.js.map → update-P7I5YSRB.js.map} +0 -0
@@ -1,5 +1,5 @@
1
1
 
2
- !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="60d8e31c-b4ba-5c8f-b2dc-523d0a2b3b13")}catch(e){}}();
2
+ !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="e84fb7c2-6771-5f89-aca4-5716b3b15bf3")}catch(e){}}();
3
3
  import {
4
4
  KNOWN_EXTENSION_CAPABILITIES,
5
5
  KNOWN_EXTENSION_POLICY_MODES,
@@ -11,7 +11,7 @@ import {
11
11
  PLAN_MODE_VALUES,
12
12
  PLAN_STEP_LINK_KIND_VALUES,
13
13
  PLAN_STEP_STATUS_VALUES
14
- } from "./chunk-S2CDTRJ6.js";
14
+ } from "./chunk-SJCMTOEU.js";
15
15
 
16
16
  // dist/sdk/cli-contracts/commander-types.js
17
17
  var LIST_COMMANDER_STRING_OPTION_CONTRACTS = [
@@ -40,6 +40,8 @@ var LIST_COMMANDER_STRING_OPTION_CONTRACTS = [
40
40
  ];
41
41
  var SEARCH_COMMANDER_STRING_OPTION_CONTRACTS = [
42
42
  { target: "mode", keys: ["mode"] },
43
+ { target: "matchMode", keys: ["matchMode", "match_mode"] },
44
+ { target: "minScore", keys: ["minScore", "min_score"] },
43
45
  { target: "semanticWeight", keys: ["semanticWeight", "semantic_weight"] },
44
46
  { target: "status", keys: ["status"] },
45
47
  { target: "type", keys: ["type"] },
@@ -47,6 +49,14 @@ var SEARCH_COMMANDER_STRING_OPTION_CONTRACTS = [
47
49
  { target: "priority", keys: ["priority"] },
48
50
  { target: "deadlineBefore", keys: ["deadlineBefore"] },
49
51
  { target: "deadlineAfter", keys: ["deadlineAfter"] },
52
+ { target: "updatedAfter", keys: ["updatedAfter"] },
53
+ { target: "updatedBefore", keys: ["updatedBefore"] },
54
+ { target: "createdAfter", keys: ["createdAfter"] },
55
+ { target: "createdBefore", keys: ["createdBefore"] },
56
+ { target: "assignee", keys: ["assignee"] },
57
+ { target: "sprint", keys: ["sprint"] },
58
+ { target: "release", keys: ["release"] },
59
+ { target: "parent", keys: ["parent"] },
50
60
  { target: "fields", keys: ["fields"] },
51
61
  { target: "limit", keys: ["limit"] }
52
62
  ];
@@ -81,6 +91,7 @@ var CONTEXT_COMMANDER_STRING_OPTION_CONTRACTS = [
81
91
  { target: "assigneeFilter", keys: ["assigneeFilter", "assignee_filter"] },
82
92
  { target: "sprint", keys: ["sprint"] },
83
93
  { target: "release", keys: ["release"] },
94
+ { target: "parent", keys: ["parent"] },
84
95
  { target: "limit", keys: ["limit"] },
85
96
  { target: "format", keys: ["format"] },
86
97
  { target: "depth", keys: ["depth"] },
@@ -664,6 +675,7 @@ var PM_CORE_COMMAND_NAMES = [
664
675
  "upgrade",
665
676
  "create",
666
677
  "copy",
678
+ "focus",
667
679
  "list",
668
680
  "list-all",
669
681
  "list-draft",
@@ -710,6 +722,9 @@ var PM_CORE_COMMAND_NAMES = [
710
722
  "start-task",
711
723
  "pause-task",
712
724
  "close-task",
725
+ "meet",
726
+ "event",
727
+ "remind",
713
728
  "help"
714
729
  ];
715
730
  var PM_TOOL_ACTIONS = [
@@ -745,6 +760,7 @@ var PM_TOOL_ACTIONS = [
745
760
  "upgrade",
746
761
  "create",
747
762
  "copy",
763
+ "focus",
748
764
  "list",
749
765
  "list-all",
750
766
  "list-draft",
@@ -811,6 +827,33 @@ var TOOL_LIST_FILTER_OPTION_CONTRACTS = [
811
827
  { param: "parent", flag: "--parent" },
812
828
  { param: "sprint", flag: "--sprint" },
813
829
  { param: "release", flag: "--release" },
830
+ { param: "filterAcMissing", flag: "--filter-ac-missing" },
831
+ { param: "filterEstimatesMissing", flag: "--filter-estimates-missing" },
832
+ { param: "filterResolutionMissing", flag: "--filter-resolution-missing" },
833
+ { param: "filterMetadataMissing", flag: "--filter-metadata-missing" },
834
+ { param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
835
+ { param: "filterRiskMissing", flag: "--filter-risk-missing" },
836
+ { param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
837
+ { param: "filterSprintMissing", flag: "--filter-sprint-missing" },
838
+ { param: "filterReleaseMissing", flag: "--filter-release-missing" },
839
+ { param: "hasNotes", flag: "--has-notes" },
840
+ { param: "noNotes", flag: "--no-notes" },
841
+ { param: "hasLearnings", flag: "--has-learnings" },
842
+ { param: "noLearnings", flag: "--no-learnings" },
843
+ { param: "hasFiles", flag: "--has-files" },
844
+ { param: "noFiles", flag: "--no-files" },
845
+ { param: "hasDocs", flag: "--has-docs" },
846
+ { param: "noDocs", flag: "--no-docs" },
847
+ { param: "hasTests", flag: "--has-tests" },
848
+ { param: "noTests", flag: "--no-tests" },
849
+ { param: "hasComments", flag: "--has-comments" },
850
+ { param: "noComments", flag: "--no-comments" },
851
+ { param: "hasDeps", flag: "--has-deps" },
852
+ { param: "noDeps", flag: "--no-deps" },
853
+ { param: "hasBody", flag: "--has-body" },
854
+ { param: "emptyBody", flag: "--empty-body" },
855
+ { param: "hasLinkedCommand", flag: "--has-linked-command" },
856
+ { param: "noLinkedCommand", flag: "--no-linked-command" },
814
857
  { param: "limit", flag: "--limit" },
815
858
  { param: "offset", flag: "--offset" },
816
859
  { param: "fields", flag: "--fields" },
@@ -852,6 +895,9 @@ var TOOL_DEDUPE_AUDIT_OPTION_CONTRACTS = [
852
895
  { param: "release", flag: "--release" }
853
896
  ];
854
897
  var TOOL_SEARCH_FILTER_OPTION_CONTRACTS = [
898
+ { param: "matchMode", flag: "--match-mode" },
899
+ { param: "minScore", flag: "--min-score" },
900
+ { param: "count", flag: "--count", booleanish: true },
855
901
  { param: "semanticWeight", flag: "--semantic-weight" },
856
902
  { param: "status", flag: "--status" },
857
903
  { param: "type", flag: "--type" },
@@ -859,6 +905,37 @@ var TOOL_SEARCH_FILTER_OPTION_CONTRACTS = [
859
905
  { param: "priority", flag: "--priority" },
860
906
  { param: "deadlineBefore", flag: "--deadline-before" },
861
907
  { param: "deadlineAfter", flag: "--deadline-after" },
908
+ { param: "updatedAfter", flag: "--updated-after" },
909
+ { param: "updatedBefore", flag: "--updated-before" },
910
+ { param: "createdAfter", flag: "--created-after" },
911
+ { param: "createdBefore", flag: "--created-before" },
912
+ { param: "assignee", flag: "--assignee" },
913
+ { param: "sprint", flag: "--sprint" },
914
+ { param: "release", flag: "--release" },
915
+ { param: "parent", flag: "--parent" },
916
+ { param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
917
+ { param: "filterRiskMissing", flag: "--filter-risk-missing" },
918
+ { param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
919
+ { param: "filterSprintMissing", flag: "--filter-sprint-missing" },
920
+ { param: "filterReleaseMissing", flag: "--filter-release-missing" },
921
+ { param: "hasNotes", flag: "--has-notes" },
922
+ { param: "noNotes", flag: "--no-notes" },
923
+ { param: "hasLearnings", flag: "--has-learnings" },
924
+ { param: "noLearnings", flag: "--no-learnings" },
925
+ { param: "hasFiles", flag: "--has-files" },
926
+ { param: "noFiles", flag: "--no-files" },
927
+ { param: "hasDocs", flag: "--has-docs" },
928
+ { param: "noDocs", flag: "--no-docs" },
929
+ { param: "hasTests", flag: "--has-tests" },
930
+ { param: "noTests", flag: "--no-tests" },
931
+ { param: "hasComments", flag: "--has-comments" },
932
+ { param: "noComments", flag: "--no-comments" },
933
+ { param: "hasDeps", flag: "--has-deps" },
934
+ { param: "noDeps", flag: "--no-deps" },
935
+ { param: "hasBody", flag: "--has-body" },
936
+ { param: "emptyBody", flag: "--empty-body" },
937
+ { param: "hasLinkedCommand", flag: "--has-linked-command" },
938
+ { param: "noLinkedCommand", flag: "--no-linked-command" },
862
939
  { param: "fields", flag: "--fields" },
863
940
  { param: "limit", flag: "--limit" }
864
941
  ];
@@ -996,6 +1073,29 @@ var TOOL_UPDATE_MANY_FILTER_OPTION_CONTRACTS = [
996
1073
  { param: "filterParent", flag: "--filter-parent" },
997
1074
  { param: "filterSprint", flag: "--filter-sprint" },
998
1075
  { param: "filterRelease", flag: "--filter-release" },
1076
+ { param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
1077
+ { param: "filterRiskMissing", flag: "--filter-risk-missing" },
1078
+ { param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
1079
+ { param: "filterSprintMissing", flag: "--filter-sprint-missing" },
1080
+ { param: "filterReleaseMissing", flag: "--filter-release-missing" },
1081
+ { param: "filterHasNotes", flag: "--filter-has-notes" },
1082
+ { param: "filterNoNotes", flag: "--filter-no-notes" },
1083
+ { param: "filterHasLearnings", flag: "--filter-has-learnings" },
1084
+ { param: "filterNoLearnings", flag: "--filter-no-learnings" },
1085
+ { param: "filterHasFiles", flag: "--filter-has-files" },
1086
+ { param: "filterNoFiles", flag: "--filter-no-files" },
1087
+ { param: "filterHasDocs", flag: "--filter-has-docs" },
1088
+ { param: "filterNoDocs", flag: "--filter-no-docs" },
1089
+ { param: "filterHasTests", flag: "--filter-has-tests" },
1090
+ { param: "filterNoTests", flag: "--filter-no-tests" },
1091
+ { param: "filterHasComments", flag: "--filter-has-comments" },
1092
+ { param: "filterNoComments", flag: "--filter-no-comments" },
1093
+ { param: "filterHasDeps", flag: "--filter-has-deps" },
1094
+ { param: "filterNoDeps", flag: "--filter-no-deps" },
1095
+ { param: "filterHasBody", flag: "--filter-has-body" },
1096
+ { param: "filterEmptyBody", flag: "--filter-empty-body" },
1097
+ { param: "filterHasLinkedCommand", flag: "--filter-has-linked-command" },
1098
+ { param: "filterNoLinkedCommand", flag: "--filter-no-linked-command" },
999
1099
  { param: "ids", flag: "--ids" },
1000
1100
  { param: "limit", flag: "--limit" },
1001
1101
  { param: "offset", flag: "--offset" }
@@ -1031,6 +1131,29 @@ var TOOL_CLOSE_MANY_FILTER_OPTION_CONTRACTS = [
1031
1131
  { param: "filterParent", flag: "--filter-parent" },
1032
1132
  { param: "filterSprint", flag: "--filter-sprint" },
1033
1133
  { param: "filterRelease", flag: "--filter-release" },
1134
+ { param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
1135
+ { param: "filterRiskMissing", flag: "--filter-risk-missing" },
1136
+ { param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
1137
+ { param: "filterSprintMissing", flag: "--filter-sprint-missing" },
1138
+ { param: "filterReleaseMissing", flag: "--filter-release-missing" },
1139
+ { param: "filterHasNotes", flag: "--filter-has-notes" },
1140
+ { param: "filterNoNotes", flag: "--filter-no-notes" },
1141
+ { param: "filterHasLearnings", flag: "--filter-has-learnings" },
1142
+ { param: "filterNoLearnings", flag: "--filter-no-learnings" },
1143
+ { param: "filterHasFiles", flag: "--filter-has-files" },
1144
+ { param: "filterNoFiles", flag: "--filter-no-files" },
1145
+ { param: "filterHasDocs", flag: "--filter-has-docs" },
1146
+ { param: "filterNoDocs", flag: "--filter-no-docs" },
1147
+ { param: "filterHasTests", flag: "--filter-has-tests" },
1148
+ { param: "filterNoTests", flag: "--filter-no-tests" },
1149
+ { param: "filterHasComments", flag: "--filter-has-comments" },
1150
+ { param: "filterNoComments", flag: "--filter-no-comments" },
1151
+ { param: "filterHasDeps", flag: "--filter-has-deps" },
1152
+ { param: "filterNoDeps", flag: "--filter-no-deps" },
1153
+ { param: "filterHasBody", flag: "--filter-has-body" },
1154
+ { param: "filterEmptyBody", flag: "--filter-empty-body" },
1155
+ { param: "filterHasLinkedCommand", flag: "--filter-has-linked-command" },
1156
+ { param: "filterNoLinkedCommand", flag: "--filter-no-linked-command" },
1034
1157
  { param: "ids", flag: "--ids" },
1035
1158
  { param: "limit", flag: "--limit" },
1036
1159
  { param: "offset", flag: "--offset" }
@@ -1056,6 +1179,7 @@ var TOOL_CONTEXT_OPTION_CONTRACTS = [
1056
1179
  { param: "assigneeFilter", flag: "--assignee-filter" },
1057
1180
  { param: "sprint", flag: "--sprint" },
1058
1181
  { param: "release", flag: "--release" },
1182
+ { param: "parent", flag: "--parent" },
1059
1183
  { param: "limit", flag: "--limit" },
1060
1184
  { param: "format", flag: "--format" },
1061
1185
  { param: "depth", flag: "--depth" },
@@ -1195,6 +1319,7 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
1195
1319
  titleExact: { type: "boolean" },
1196
1320
  phraseExact: { type: "boolean" },
1197
1321
  includeBody: { type: "boolean" },
1322
+ noTruncate: { type: "boolean" },
1198
1323
  tag: { type: "string" },
1199
1324
  deadlineBefore: { type: "string" },
1200
1325
  deadlineAfter: { type: "string" },
@@ -1202,6 +1327,55 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
1202
1327
  updatedBefore: { type: "string" },
1203
1328
  createdAfter: { type: "string" },
1204
1329
  createdBefore: { type: "string" },
1330
+ filterAcMissing: { type: "boolean" },
1331
+ filterEstimatesMissing: { type: "boolean" },
1332
+ filterResolutionMissing: { type: "boolean" },
1333
+ filterMetadataMissing: { type: "boolean" },
1334
+ filterReviewerMissing: { type: "boolean" },
1335
+ filterRiskMissing: { type: "boolean" },
1336
+ filterConfidenceMissing: { type: "boolean" },
1337
+ filterSprintMissing: { type: "boolean" },
1338
+ filterReleaseMissing: { type: "boolean" },
1339
+ // Content-field presence/absence filters (list/search). The --no-* variants
1340
+ // select items where the field is empty/absent.
1341
+ hasNotes: { type: "boolean" },
1342
+ noNotes: { type: "boolean" },
1343
+ hasLearnings: { type: "boolean" },
1344
+ noLearnings: { type: "boolean" },
1345
+ hasFiles: { type: "boolean" },
1346
+ noFiles: { type: "boolean" },
1347
+ hasDocs: { type: "boolean" },
1348
+ noDocs: { type: "boolean" },
1349
+ hasTests: { type: "boolean" },
1350
+ noTests: { type: "boolean" },
1351
+ hasComments: { type: "boolean" },
1352
+ noComments: { type: "boolean" },
1353
+ hasDeps: { type: "boolean" },
1354
+ noDeps: { type: "boolean" },
1355
+ hasBody: { type: "boolean" },
1356
+ emptyBody: { type: "boolean" },
1357
+ hasLinkedCommand: { type: "boolean" },
1358
+ noLinkedCommand: { type: "boolean" },
1359
+ // Bulk-selection (update-many/close-many) content + governance filters mirror
1360
+ // the list/search presence filters under the --filter- prefix.
1361
+ filterHasNotes: { type: "boolean" },
1362
+ filterNoNotes: { type: "boolean" },
1363
+ filterHasLearnings: { type: "boolean" },
1364
+ filterNoLearnings: { type: "boolean" },
1365
+ filterHasFiles: { type: "boolean" },
1366
+ filterNoFiles: { type: "boolean" },
1367
+ filterHasDocs: { type: "boolean" },
1368
+ filterNoDocs: { type: "boolean" },
1369
+ filterHasTests: { type: "boolean" },
1370
+ filterNoTests: { type: "boolean" },
1371
+ filterHasComments: { type: "boolean" },
1372
+ filterNoComments: { type: "boolean" },
1373
+ filterHasDeps: { type: "boolean" },
1374
+ filterNoDeps: { type: "boolean" },
1375
+ filterHasBody: { type: "boolean" },
1376
+ filterEmptyBody: { type: "boolean" },
1377
+ filterHasLinkedCommand: { type: "boolean" },
1378
+ filterNoLinkedCommand: { type: "boolean" },
1205
1379
  ids: { type: "string" },
1206
1380
  limit: { anyOf: [{ type: "string" }, { type: "number" }] },
1207
1381
  limitItems: { anyOf: [{ type: "string" }, { type: "number" }] },
@@ -1238,6 +1412,12 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
1238
1412
  autoPmContext: { type: "boolean" },
1239
1413
  diff: { type: "boolean" },
1240
1414
  storage: { type: "boolean" },
1415
+ metadataCoverage: { type: "boolean" },
1416
+ fieldUtilization: { type: "boolean" },
1417
+ byAssignee: { type: "boolean" },
1418
+ byTag: { type: "boolean" },
1419
+ byPriority: { type: "boolean" },
1420
+ tagPrefix: { type: "string" },
1241
1421
  verify: { type: "boolean" },
1242
1422
  literal: { type: "array", items: { type: "string" } },
1243
1423
  regex: { type: "array", items: { type: "string" } },
@@ -1261,6 +1441,7 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
1261
1441
  skipIntegrity: { type: "boolean" },
1262
1442
  skipDrift: { type: "boolean" },
1263
1443
  verboseDiagnostics: { type: "boolean" },
1444
+ allAffectedIds: { type: "boolean" },
1264
1445
  scanMode: { type: "string", enum: ["default", "tracked-all", "tracked-all-strict"] },
1265
1446
  includePmInternals: { type: "boolean" },
1266
1447
  verboseFileLists: { type: "boolean" },
@@ -1268,18 +1449,21 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
1268
1449
  failOnWarn: { type: "boolean" },
1269
1450
  fixHints: { type: "boolean" },
1270
1451
  autoFix: { type: "boolean" },
1271
- fixScope: { type: "array", items: { type: "string", enum: ["metadata", "resolution", "lifecycle"] } },
1452
+ fixScope: { type: "array", items: { type: "string", enum: ["metadata", "resolution", "estimates", "lifecycle"] } },
1272
1453
  pruneMissing: { type: "boolean" },
1273
1454
  checkHistoryDrift: { type: "boolean" },
1274
1455
  checkCommandReferences: { type: "boolean" },
1275
1456
  allowAuditNote: { type: "boolean" },
1276
1457
  allowAuditLearning: { type: "boolean" },
1277
1458
  allowAuditComment: { type: "boolean" },
1459
+ edit: { type: "integer", minimum: 1 },
1460
+ delete: { type: "integer", minimum: 1 },
1278
1461
  allowAuditUpdate: { type: "boolean" },
1279
1462
  allowAuditDepUpdate: { type: "boolean" },
1280
1463
  allowAuditRelease: { type: "boolean" },
1281
1464
  dryRun: { type: "boolean" },
1282
1465
  all: { type: "boolean" },
1466
+ clear: { type: "boolean" },
1283
1467
  cliOnly: { type: "boolean" },
1284
1468
  packagesOnly: { type: "boolean" },
1285
1469
  repair: { type: "boolean" },
@@ -1311,6 +1495,15 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
1311
1495
  defaultStatus: { type: "string" },
1312
1496
  alias: { type: "array", items: { type: "string" } },
1313
1497
  role: { type: "array", items: { type: "string" } },
1498
+ fieldType: { type: "string", enum: ["string", "number", "boolean", "string_array"] },
1499
+ commands: { type: "array", items: { type: "string" } },
1500
+ cliFlag: { type: "string" },
1501
+ required: { type: "boolean" },
1502
+ requiredOnCreate: { type: "boolean" },
1503
+ allowUnset: { type: "boolean" },
1504
+ requiredTypes: { type: "array", items: { type: "string" } },
1505
+ infer: { type: "boolean" },
1506
+ minCount: { type: "number" },
1314
1507
  text: { type: "string" },
1315
1508
  add: { type: "array", items: { type: "string" } },
1316
1509
  addGlob: { type: "array", items: { type: "string" } },
@@ -1357,7 +1550,7 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
1357
1550
  completion: { type: "boolean" },
1358
1551
  threshold: { anyOf: [{ type: "string" }, { type: "number" }] },
1359
1552
  format: { type: "string" },
1360
- depth: { type: "string", enum: ["brief", "standard", "deep"] },
1553
+ depth: { type: "string", enum: ["brief", "standard", "deep", "full"] },
1361
1554
  section: { type: "array", items: { type: "string", enum: ["hierarchy", "activity", "progress", "blockers", "files", "workload", "staleness", "tests"] } },
1362
1555
  activityLimit: { anyOf: [{ type: "string" }, { type: "number" }] },
1363
1556
  staleThreshold: { type: "string" },
@@ -1566,8 +1759,8 @@ var PM_TOOL_PARAMETER_METADATA = {
1566
1759
  description: "Subcommand selector for schema and telemetry actions."
1567
1760
  },
1568
1761
  name: {
1569
- description: "Custom item type name (schema add-type/remove-type/show) or custom status id (schema show-status/add-status/remove-status).",
1570
- examples: ["Spike", "review"]
1762
+ description: "Custom item type name (schema add-type/remove-type/show), custom status id (schema show-status/add-status/remove-status), or custom field key (schema add-field/remove-field/show-field).",
1763
+ examples: ["Spike", "review", "component"]
1571
1764
  },
1572
1765
  defaultStatus: {
1573
1766
  description: "Default status hint recorded for a custom item type.",
@@ -1581,6 +1774,38 @@ var PM_TOOL_PARAMETER_METADATA = {
1581
1774
  description: "Lifecycle roles for a custom status (schema add-status): draft, active, blocked, terminal, terminal_done, terminal_canceled, default_open, default_close, default_cancel.",
1582
1775
  examples: [["active"], ["terminal", "terminal_done"]]
1583
1776
  },
1777
+ fieldType: {
1778
+ description: "Value type for a custom field (schema add-field): string, number, boolean, or string_array.",
1779
+ examples: ["string", "number", "string_array"]
1780
+ },
1781
+ commands: {
1782
+ description: "Commands a custom field is wired onto (schema add-field): create, update, update_many, list, search, calendar, context.",
1783
+ examples: [["create", "update"], ["create", "update", "list"]]
1784
+ },
1785
+ cliFlag: {
1786
+ description: "Override the auto-derived CLI flag for a custom field (schema add-field).",
1787
+ examples: ["--owner"]
1788
+ },
1789
+ required: {
1790
+ description: "Mark a custom field as always required (schema add-field)."
1791
+ },
1792
+ requiredOnCreate: {
1793
+ description: "Mark a custom field as required at create time (schema add-field)."
1794
+ },
1795
+ allowUnset: {
1796
+ description: "Whether a custom field may be cleared via --unset (schema add-field); defaults to true."
1797
+ },
1798
+ requiredTypes: {
1799
+ description: "Restrict a custom field's requirement to specific item types (schema add-field).",
1800
+ examples: [["Bug"], ["Story", "Spike"]]
1801
+ },
1802
+ infer: {
1803
+ description: "Infer custom item types from title-prefix conventions (schema add-type); previews unless apply is true."
1804
+ },
1805
+ minCount: {
1806
+ description: "Minimum number of items sharing a title prefix for schema add-type inference (default 10).",
1807
+ examples: [10, 25]
1808
+ },
1584
1809
  preset: {
1585
1810
  description: "Governance preset for initialization flows.",
1586
1811
  examples: ["minimal", "default", "strict"]
@@ -1789,6 +2014,9 @@ var PM_TOOL_PARAMETER_METADATA = {
1789
2014
  all: {
1790
2015
  description: "For history-repair action: scan every stream for drift and repair each drifted stream in one audited pass (mutually exclusive with id)."
1791
2016
  },
2017
+ clear: {
2018
+ description: "For focus action: clear the session focused item instead of setting it (mutually exclusive with id)."
2019
+ },
1792
2020
  gcScope: {
1793
2021
  description: "Repeatable gc scope selector values (index, embeddings, runtime, locks).",
1794
2022
  examples: [["index", "embeddings"], ["runtime"], ["locks"]]
@@ -1796,6 +2024,9 @@ var PM_TOOL_PARAMETER_METADATA = {
1796
2024
  storage: {
1797
2025
  description: "For stats action: include aggregate history-stream storage metrics (total streams/lines/bytes, largest + deepest streams, oldest/newest entries) for compaction and storage planning."
1798
2026
  },
2027
+ fieldUtilization: {
2028
+ description: "For stats action: include a field_utilization block reporting present/total/percent for content fields (notes, learnings, files, docs, tests, comments, deps, body, linked_command) across all items so under-documented dimensions are visible at a glance."
2029
+ },
1799
2030
  offset: {
1800
2031
  description: "Number of matching rows to skip before limit is applied.",
1801
2032
  examples: [0, 50, "100"]
@@ -1907,8 +2138,8 @@ var PM_TOOL_PARAMETER_METADATA = {
1907
2138
  description: "For validate action, apply the safe, deterministic subset of fix-hint remediations (field backfills) automatically; combine with dryRun to preview and fixScope to grant gated scopes."
1908
2139
  },
1909
2140
  fixScope: {
1910
- description: "For validate action, grant --auto-fix scopes (metadata, resolution, lifecycle). Defaults to the safe scopes metadata and resolution; lifecycle must be named explicitly.",
1911
- examples: [["lifecycle"], ["metadata", "resolution"]]
2141
+ description: "For validate action, grant --auto-fix scopes (metadata, resolution, estimates, lifecycle). Defaults to the safe scopes metadata and resolution; estimates (per-type default estimated_minutes backfill) and lifecycle must be named explicitly.",
2142
+ examples: [["estimates"], ["lifecycle"], ["metadata", "resolution"]]
1912
2143
  },
1913
2144
  pruneMissing: {
1914
2145
  description: "For validate action, remove stale linked-file/doc LINKS whose paths classified as deleted (link removal only \u2014 never touches real files); honors dryRun."
@@ -1928,6 +2159,12 @@ var PM_TOOL_PARAMETER_METADATA = {
1928
2159
  allowAuditComment: {
1929
2160
  description: "For comments action, allow non-owner append-only comment audits without requiring --force."
1930
2161
  },
2162
+ edit: {
2163
+ description: "For comments action, replace the comment at this 1-based index with the supplied replacement text (add/stdin/file)."
2164
+ },
2165
+ delete: {
2166
+ description: "For comments action, delete the comment at this 1-based index."
2167
+ },
1931
2168
  stdin: {
1932
2169
  description: "When true for comments action, read comment text from piped stdin (supports multiline markdown)."
1933
2170
  },
@@ -1955,7 +2192,7 @@ var PM_TOOL_PARAMETER_METADATA = {
1955
2192
  description: "When true for files action, use `pm files discover <id>` to scan item text for referenced file paths."
1956
2193
  },
1957
2194
  apply: {
1958
- description: "When true for files discovery, add missing discovered file links instead of returning a dry-run preview."
2195
+ description: "Persist changes instead of returning a dry-run preview: for files discovery, add the missing discovered file links; for schema add-type --infer, register the inferred custom item types."
1959
2196
  },
1960
2197
  discoveryNote: {
1961
2198
  description: "Note attached to file links added by files discovery.",
@@ -1995,6 +2232,9 @@ var PM_TOOL_PARAMETER_METADATA = {
1995
2232
  includeBody: {
1996
2233
  description: "When true for list-family actions, include item body text in projected rows."
1997
2234
  },
2235
+ noTruncate: {
2236
+ description: "When true for list-family actions, return every matched row, overriding any limit (surfaces total when rows were dropped)."
2237
+ },
1998
2238
  compact: {
1999
2239
  description: "Render compact projection output for search and list-family actions."
2000
2240
  },
@@ -2079,8 +2319,8 @@ var PM_TOOL_PARAMETER_METADATA = {
2079
2319
  description: "Alias for runtimeOnly in contracts action payloads."
2080
2320
  },
2081
2321
  depth: {
2082
- description: "Context depth level controlling how many sections are included (brief=focus+agenda, standard=+hierarchy/activity/progress/workload, deep=all sections).",
2083
- examples: ["brief", "standard", "deep"]
2322
+ description: "Context depth level controlling how many sections are included (brief=focus+agenda, standard=+hierarchy/activity/progress/workload, deep=all sections, full=every section with no per-section row cap).",
2323
+ examples: ["brief", "standard", "deep", "full"]
2084
2324
  },
2085
2325
  section: {
2086
2326
  description: "Repeatable section selector for context; overrides --depth when provided.",
@@ -2126,7 +2366,10 @@ function withFlagAliasMetadata(flagContracts) {
2126
2366
  if (contract.flag !== canonical) {
2127
2367
  return contract;
2128
2368
  }
2129
- const aliases = normalizeUniqueStringList([...contract.aliases ?? [], ...aliasesByCanonical.get(canonical) ?? []]).filter((alias) => alias !== canonical);
2369
+ const aliases = normalizeUniqueStringList([
2370
+ ...contract.aliases ?? [],
2371
+ ...aliasesByCanonical.get(canonical)
2372
+ ]).filter((alias) => alias !== canonical);
2130
2373
  if (aliases.length === 0) {
2131
2374
  return contract;
2132
2375
  }
@@ -2177,8 +2420,36 @@ var LIST_FILTER_FLAG_CONTRACTS = [
2177
2420
  { flag: "--parent" },
2178
2421
  { flag: "--sprint" },
2179
2422
  { flag: "--release" },
2423
+ { flag: "--filter-ac-missing" },
2424
+ { flag: "--filter-estimates-missing", aliases: ["--filter-estimate-missing"] },
2425
+ { flag: "--filter-resolution-missing" },
2426
+ { flag: "--filter-metadata-missing" },
2427
+ { flag: "--filter-reviewer-missing" },
2428
+ { flag: "--filter-risk-missing" },
2429
+ { flag: "--filter-confidence-missing" },
2430
+ { flag: "--filter-sprint-missing" },
2431
+ { flag: "--filter-release-missing" },
2432
+ { flag: "--has-notes" },
2433
+ { flag: "--no-notes" },
2434
+ { flag: "--has-learnings" },
2435
+ { flag: "--no-learnings" },
2436
+ { flag: "--has-files" },
2437
+ { flag: "--no-files" },
2438
+ { flag: "--has-docs" },
2439
+ { flag: "--no-docs" },
2440
+ { flag: "--has-tests" },
2441
+ { flag: "--no-tests" },
2442
+ { flag: "--has-comments" },
2443
+ { flag: "--no-comments" },
2444
+ { flag: "--has-deps" },
2445
+ { flag: "--no-deps" },
2446
+ { flag: "--has-body" },
2447
+ { flag: "--empty-body" },
2448
+ { flag: "--has-linked-command" },
2449
+ { flag: "--no-linked-command" },
2180
2450
  { flag: "--limit" },
2181
2451
  { flag: "--offset" },
2452
+ { flag: "--no-truncate", aliases: ["--all"] },
2182
2453
  { flag: "--compact" },
2183
2454
  { flag: "--brief" },
2184
2455
  { flag: "--full" },
@@ -2249,6 +2520,8 @@ var COMMENTS_FLAG_CONTRACTS = [
2249
2520
  { flag: "--add", aliases: ["--comment"] },
2250
2521
  { flag: "--stdin" },
2251
2522
  { flag: "--file" },
2523
+ { flag: "--edit" },
2524
+ { flag: "--delete" },
2252
2525
  { flag: "--limit" },
2253
2526
  { flag: "--author" },
2254
2527
  { flag: "--message" },
@@ -2344,6 +2617,20 @@ var SCHEMA_FLAG_CONTRACTS = [
2344
2617
  // values.
2345
2618
  { flag: "--role" },
2346
2619
  { flag: "--order" },
2620
+ // add-field flags (custom runtime fields). --commands/--required-types are
2621
+ // repeatable Commander collect flags (comma-splitting handled in the action),
2622
+ // so they stay off the comma-list contract for the same reason as --alias.
2623
+ { flag: "--type" },
2624
+ { flag: "--commands" },
2625
+ { flag: "--cli-flag" },
2626
+ { flag: "--required" },
2627
+ { flag: "--required-on-create" },
2628
+ { flag: "--no-allow-unset" },
2629
+ { flag: "--required-types" },
2630
+ // add-type --infer flags (title-prefix type inference).
2631
+ { flag: "--infer" },
2632
+ { flag: "--min-count" },
2633
+ { flag: "--apply" },
2347
2634
  { flag: "--author" },
2348
2635
  { flag: "--force" }
2349
2636
  ];
@@ -2558,6 +2845,29 @@ var CLOSE_MANY_FLAG_CONTRACTS = [
2558
2845
  { flag: "--filter-parent" },
2559
2846
  { flag: "--filter-sprint" },
2560
2847
  { flag: "--filter-release" },
2848
+ { flag: "--filter-reviewer-missing" },
2849
+ { flag: "--filter-risk-missing" },
2850
+ { flag: "--filter-confidence-missing" },
2851
+ { flag: "--filter-sprint-missing" },
2852
+ { flag: "--filter-release-missing" },
2853
+ { flag: "--filter-has-notes" },
2854
+ { flag: "--filter-no-notes" },
2855
+ { flag: "--filter-has-learnings" },
2856
+ { flag: "--filter-no-learnings" },
2857
+ { flag: "--filter-has-files" },
2858
+ { flag: "--filter-no-files" },
2859
+ { flag: "--filter-has-docs" },
2860
+ { flag: "--filter-no-docs" },
2861
+ { flag: "--filter-has-tests" },
2862
+ { flag: "--filter-no-tests" },
2863
+ { flag: "--filter-has-comments" },
2864
+ { flag: "--filter-no-comments" },
2865
+ { flag: "--filter-has-deps" },
2866
+ { flag: "--filter-no-deps" },
2867
+ { flag: "--filter-has-body" },
2868
+ { flag: "--filter-empty-body" },
2869
+ { flag: "--filter-has-linked-command" },
2870
+ { flag: "--filter-no-linked-command" },
2561
2871
  { flag: "--ids", list: true },
2562
2872
  { flag: "--limit" },
2563
2873
  { flag: "--offset" },
@@ -2617,6 +2927,31 @@ var CLOSE_TASK_FLAG_CONTRACTS = [
2617
2927
  { flag: "--validate-close" },
2618
2928
  { flag: "--force" }
2619
2929
  ];
2930
+ var SCHEDULING_SHORTCUT_COMMON_FLAG_CONTRACTS = [
2931
+ { flag: "--parent" },
2932
+ { flag: "--allow-missing-parent" },
2933
+ { flag: "--tags" },
2934
+ { flag: "--priority" },
2935
+ { flag: "--body" },
2936
+ { flag: "--description" },
2937
+ { flag: "--author" },
2938
+ { flag: "--message" }
2939
+ ];
2940
+ var MEET_FLAG_CONTRACTS = [
2941
+ { flag: "--start" },
2942
+ { flag: "--duration" },
2943
+ { flag: "--end" },
2944
+ { flag: "--location" },
2945
+ { flag: "--timezone" },
2946
+ { flag: "--all-day" },
2947
+ ...SCHEDULING_SHORTCUT_COMMON_FLAG_CONTRACTS
2948
+ ];
2949
+ var EVENT_FLAG_CONTRACTS = MEET_FLAG_CONTRACTS;
2950
+ var REMIND_FLAG_CONTRACTS = [
2951
+ { flag: "--at" },
2952
+ { flag: "--text" },
2953
+ ...SCHEDULING_SHORTCUT_COMMON_FLAG_CONTRACTS
2954
+ ];
2620
2955
  var TEST_FLAG_CONTRACTS = [
2621
2956
  { flag: "--add" },
2622
2957
  { flag: "--add-json" },
@@ -2678,7 +3013,13 @@ var GC_FLAG_CONTRACTS = [
2678
3013
  { flag: "--scope" }
2679
3014
  ];
2680
3015
  var STATS_FLAG_CONTRACTS = [
2681
- { flag: "--storage" }
3016
+ { flag: "--storage" },
3017
+ { flag: "--metadata-coverage" },
3018
+ { flag: "--field-utilization" },
3019
+ { flag: "--by-assignee" },
3020
+ { flag: "--by-tag" },
3021
+ { flag: "--by-priority" },
3022
+ { flag: "--tag-prefix" }
2682
3023
  ];
2683
3024
  var HEALTH_FLAG_CONTRACTS = [
2684
3025
  { flag: "--strict-directories" },
@@ -2708,6 +3049,7 @@ var VALIDATE_FLAG_CONTRACTS = [
2708
3049
  { flag: "--include-pm-internals" },
2709
3050
  { flag: "--verbose-file-lists" },
2710
3051
  { flag: "--verbose-diagnostics" },
3052
+ { flag: "--all-affected-ids" },
2711
3053
  { flag: "--strict-exit" },
2712
3054
  { flag: "--fail-on-warn" },
2713
3055
  { flag: "--fix-hints" },
@@ -2739,6 +3081,7 @@ var CREATE_FLAG_CONTRACTS = [
2739
3081
  // corrupting the JSON-array value form before parseTags sees it.
2740
3082
  { flag: "--add-tags", aliases: ["--add_tags"] },
2741
3083
  { short: "-b", flag: "--body" },
3084
+ { flag: "--body-file" },
2742
3085
  { flag: "--deadline" },
2743
3086
  { flag: "--estimate" },
2744
3087
  { flag: "--estimated-minutes" },
@@ -2822,10 +3165,14 @@ var COPY_FLAG_CONTRACTS = [
2822
3165
  { flag: "--author" },
2823
3166
  { flag: "--message" }
2824
3167
  ];
3168
+ var FOCUS_FLAG_CONTRACTS = [
3169
+ { flag: "--clear" }
3170
+ ];
2825
3171
  var UPDATE_FLAG_CONTRACTS = [
2826
3172
  { short: "-t", flag: "--title" },
2827
3173
  { short: "-d", flag: "--description" },
2828
3174
  { short: "-b", flag: "--body" },
3175
+ { flag: "--body-file" },
2829
3176
  { short: "-s", flag: "--status" },
2830
3177
  { flag: "--close-reason" },
2831
3178
  { flag: "--close_reason" },
@@ -2940,6 +3287,33 @@ var UPDATE_MANY_FLAG_CONTRACTS = [
2940
3287
  { flag: "--filter-parent" },
2941
3288
  { flag: "--filter-sprint" },
2942
3289
  { flag: "--filter-release" },
3290
+ { flag: "--filter-ac-missing" },
3291
+ { flag: "--filter-estimates-missing", aliases: ["--filter-estimate-missing"] },
3292
+ { flag: "--filter-resolution-missing" },
3293
+ { flag: "--filter-metadata-missing" },
3294
+ { flag: "--filter-reviewer-missing" },
3295
+ { flag: "--filter-risk-missing" },
3296
+ { flag: "--filter-confidence-missing" },
3297
+ { flag: "--filter-sprint-missing" },
3298
+ { flag: "--filter-release-missing" },
3299
+ { flag: "--filter-has-notes" },
3300
+ { flag: "--filter-no-notes" },
3301
+ { flag: "--filter-has-learnings" },
3302
+ { flag: "--filter-no-learnings" },
3303
+ { flag: "--filter-has-files" },
3304
+ { flag: "--filter-no-files" },
3305
+ { flag: "--filter-has-docs" },
3306
+ { flag: "--filter-no-docs" },
3307
+ { flag: "--filter-has-tests" },
3308
+ { flag: "--filter-no-tests" },
3309
+ { flag: "--filter-has-comments" },
3310
+ { flag: "--filter-no-comments" },
3311
+ { flag: "--filter-has-deps" },
3312
+ { flag: "--filter-no-deps" },
3313
+ { flag: "--filter-has-body" },
3314
+ { flag: "--filter-empty-body" },
3315
+ { flag: "--filter-has-linked-command" },
3316
+ { flag: "--filter-no-linked-command" },
2943
3317
  { flag: "--ids", list: true },
2944
3318
  { flag: "--limit" },
2945
3319
  { flag: "--offset" },
@@ -3105,6 +3479,7 @@ var CONTEXT_FLAG_CONTRACTS = [
3105
3479
  { flag: "--assignee_filter" },
3106
3480
  { flag: "--sprint" },
3107
3481
  { flag: "--release" },
3482
+ { flag: "--parent" },
3108
3483
  { flag: "--limit" },
3109
3484
  { flag: "--format" },
3110
3485
  { flag: "--depth" },
@@ -3135,6 +3510,9 @@ var SEARCH_FLAG_CONTRACTS = [
3135
3510
  { flag: "--mode" },
3136
3511
  { flag: "--semantic" },
3137
3512
  { flag: "--hybrid" },
3513
+ { flag: "--match-mode" },
3514
+ { flag: "--min-score" },
3515
+ { flag: "--count" },
3138
3516
  { flag: "--semantic-weight" },
3139
3517
  { flag: "--include-linked" },
3140
3518
  { flag: "--title-exact" },
@@ -3148,7 +3526,38 @@ var SEARCH_FLAG_CONTRACTS = [
3148
3526
  { flag: "--tag", aliases: ["--tags"] },
3149
3527
  { flag: "--priority" },
3150
3528
  { flag: "--deadline-before" },
3151
- { flag: "--deadline-after" }
3529
+ { flag: "--deadline-after" },
3530
+ { flag: "--updated-after" },
3531
+ { flag: "--updated-before" },
3532
+ { flag: "--created-after" },
3533
+ { flag: "--created-before" },
3534
+ { flag: "--assignee" },
3535
+ { flag: "--sprint" },
3536
+ { flag: "--release" },
3537
+ { flag: "--parent" },
3538
+ { flag: "--filter-reviewer-missing" },
3539
+ { flag: "--filter-risk-missing" },
3540
+ { flag: "--filter-confidence-missing" },
3541
+ { flag: "--filter-sprint-missing" },
3542
+ { flag: "--filter-release-missing" },
3543
+ { flag: "--has-notes" },
3544
+ { flag: "--no-notes" },
3545
+ { flag: "--has-learnings" },
3546
+ { flag: "--no-learnings" },
3547
+ { flag: "--has-files" },
3548
+ { flag: "--no-files" },
3549
+ { flag: "--has-docs" },
3550
+ { flag: "--no-docs" },
3551
+ { flag: "--has-tests" },
3552
+ { flag: "--no-tests" },
3553
+ { flag: "--has-comments" },
3554
+ { flag: "--no-comments" },
3555
+ { flag: "--has-deps" },
3556
+ { flag: "--no-deps" },
3557
+ { flag: "--has-body" },
3558
+ { flag: "--empty-body" },
3559
+ { flag: "--has-linked-command" },
3560
+ { flag: "--no-linked-command" }
3152
3561
  ];
3153
3562
  var CONTRACTS_FLAG_CONTRACTS = [
3154
3563
  { flag: "--action" },
@@ -3271,6 +3680,8 @@ function resolveSubcommandFlagContractsForCommand(commandName) {
3271
3680
  return withSubcommandGlobalFlags(CREATE_FLAG_CONTRACTS);
3272
3681
  case "copy":
3273
3682
  return withSubcommandGlobalFlags(COPY_FLAG_CONTRACTS);
3683
+ case "focus":
3684
+ return withSubcommandGlobalFlags(FOCUS_FLAG_CONTRACTS);
3274
3685
  case "aggregate":
3275
3686
  return withSubcommandGlobalFlags(AGGREGATE_FLAG_CONTRACTS);
3276
3687
  case "calendar":
@@ -3347,6 +3758,12 @@ function resolveSubcommandFlagContractsForCommand(commandName) {
3347
3758
  return withSubcommandGlobalFlags(PAUSE_TASK_FLAG_CONTRACTS);
3348
3759
  case "close-task":
3349
3760
  return withSubcommandGlobalFlags(CLOSE_TASK_FLAG_CONTRACTS);
3761
+ case "meet":
3762
+ return withSubcommandGlobalFlags(MEET_FLAG_CONTRACTS);
3763
+ case "event":
3764
+ return withSubcommandGlobalFlags(EVENT_FLAG_CONTRACTS);
3765
+ case "remind":
3766
+ return withSubcommandGlobalFlags(REMIND_FLAG_CONTRACTS);
3350
3767
  default:
3351
3768
  return withSubcommandGlobalFlags([]);
3352
3769
  }
@@ -3425,6 +3842,7 @@ var ACTIVITY_CONTRACT_PARAMETER_KEYS = toSchemaKeyList([
3425
3842
  var LIST_CONTRACT_PARAMETER_KEYS = toSchemaKeyList([
3426
3843
  ...TOOL_LIST_FILTER_OPTION_CONTRACTS.map((entry) => entry.param),
3427
3844
  "includeBody",
3845
+ "noTruncate",
3428
3846
  "compact",
3429
3847
  "brief",
3430
3848
  "full"
@@ -3552,6 +3970,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
3552
3970
  optional: CREATE_CONTRACT_PARAMETER_KEYS
3553
3971
  },
3554
3972
  copy: { required: ["id"], optional: ["title", "author", "message"] },
3973
+ focus: { optional: ["id", "clear"], mutuallyExclusive: [["id", "clear"]] },
3555
3974
  list: { optional: LIST_CONTRACT_PARAMETER_KEYS },
3556
3975
  "list-all": { optional: LIST_CONTRACT_PARAMETER_KEYS },
3557
3976
  "list-draft": { optional: LIST_CONTRACT_PARAMETER_KEYS },
@@ -3589,7 +4008,28 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
3589
4008
  schema: {
3590
4009
  required: ["subcommand"],
3591
4010
  // No --message: schema mutations write config files, not item history.
3592
- optional: ["name", "description", "defaultStatus", "folder", "alias", "role", "order", "author", "force"],
4011
+ optional: [
4012
+ "name",
4013
+ "description",
4014
+ "defaultStatus",
4015
+ "folder",
4016
+ "alias",
4017
+ "role",
4018
+ "order",
4019
+ "fieldType",
4020
+ "commands",
4021
+ "cliFlag",
4022
+ "required",
4023
+ "requiredOnCreate",
4024
+ "allowUnset",
4025
+ "requiredTypes",
4026
+ "typePreset",
4027
+ "infer",
4028
+ "minCount",
4029
+ "apply",
4030
+ "author",
4031
+ "force"
4032
+ ],
3593
4033
  conditionalRequired: [
3594
4034
  { property: "subcommand", value: "show", required: ["name"] },
3595
4035
  { property: "subcommand", value: "show-status", required: ["name"] },
@@ -3597,7 +4037,13 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
3597
4037
  { property: "subcommand", value: "remove-type", required: ["name"] },
3598
4038
  // show-status/add-status/remove-status pass the status id as `name`.
3599
4039
  { property: "subcommand", value: "add-status", required: ["name"] },
3600
- { property: "subcommand", value: "remove-status", required: ["name"] }
4040
+ { property: "subcommand", value: "remove-status", required: ["name"] },
4041
+ // field subcommands pass the field key as `name`.
4042
+ { property: "subcommand", value: "add-field", required: ["name"] },
4043
+ { property: "subcommand", value: "remove-field", required: ["name"] },
4044
+ { property: "subcommand", value: "show-field", required: ["name"] },
4045
+ // apply-preset passes the preset name as `typePreset`.
4046
+ { property: "subcommand", value: "apply-preset", required: ["typePreset"] }
3601
4047
  ]
3602
4048
  },
3603
4049
  plan: {
@@ -3668,7 +4114,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
3668
4114
  append: { required: ["id", "body"], optional: AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS },
3669
4115
  comments: {
3670
4116
  required: ["id"],
3671
- optional: ["text", "add", "stdin", "file", "limit", "allowAuditComment", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS]
4117
+ optional: ["text", "add", "stdin", "file", "edit", "delete", "limit", "allowAuditComment", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS]
3672
4118
  },
3673
4119
  "comments-audit": {
3674
4120
  optional: [
@@ -3801,7 +4247,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
3801
4247
  required: ["runId"],
3802
4248
  optional: ["author"]
3803
4249
  },
3804
- stats: { optional: ["storage"] },
4250
+ stats: { optional: ["storage", "metadataCoverage", "fieldUtilization", "byAssignee", "byTag", "byPriority", "tagPrefix"] },
3805
4251
  health: {
3806
4252
  optional: [
3807
4253
  "strictDirectories",
@@ -3832,6 +4278,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
3832
4278
  "includePmInternals",
3833
4279
  "verboseFileLists",
3834
4280
  "verboseDiagnostics",
4281
+ "allAffectedIds",
3835
4282
  "strictExit",
3836
4283
  "failOnWarn",
3837
4284
  "fixHints",
@@ -3891,7 +4338,7 @@ function buildActionScopedToolSchema(action) {
3891
4338
  const required = toSchemaKeyList(contract.required ?? []);
3892
4339
  const optional = toSchemaKeyList(contract.optional ?? []);
3893
4340
  const mutationParameterKeys = PM_TOOL_ACTION_MUTATION_PARAMETER_KEYS[action] ?? [];
3894
- const allowedKeys = toSchemaKeyList([...PM_TOOL_GLOBAL_PARAMETER_KEYS, ...mutationParameterKeys, ...required, ...optional]);
4341
+ const allowedKeys = toSchemaKeyList(["action", ...PM_TOOL_GLOBAL_PARAMETER_KEYS, ...mutationParameterKeys, ...required, ...optional]);
3895
4342
  const properties = {
3896
4343
  action: {
3897
4344
  const: action,
@@ -3919,9 +4366,11 @@ function buildActionScopedToolSchema(action) {
3919
4366
  required: [...requiredFields]
3920
4367
  }));
3921
4368
  }
3922
- if (contract.oneOfRequired && contract.oneOfRequired.length > 0) {
3923
- schema.oneOf = contract.oneOfRequired.map((requiredFields) => {
3924
- const otherFields = contract.oneOfRequired?.flat().filter((field) => !requiredFields.includes(field)) ?? [];
4369
+ const oneOfRequiredGroups = contract.oneOfRequired;
4370
+ if (oneOfRequiredGroups && oneOfRequiredGroups.length > 0) {
4371
+ const allOneOfFields = oneOfRequiredGroups.flat();
4372
+ schema.oneOf = oneOfRequiredGroups.map((requiredFields) => {
4373
+ const otherFields = allOneOfFields.filter((field) => !requiredFields.includes(field));
3925
4374
  return {
3926
4375
  required: [...requiredFields],
3927
4376
  ...otherFields.length > 0 ? { not: { anyOf: otherFields.map((field) => ({ required: [field] })) } } : {},
@@ -3956,6 +4405,13 @@ function buildActionScopedToolSchema(action) {
3956
4405
  }
3957
4406
  schema.allOf = allOf;
3958
4407
  }
4408
+ if (contract.mutuallyExclusive && contract.mutuallyExclusive.length > 0) {
4409
+ const allOf = Array.isArray(schema.allOf) ? [...schema.allOf] : [];
4410
+ for (const group of contract.mutuallyExclusive) {
4411
+ allOf.push({ not: { required: toSchemaKeyList(group) } });
4412
+ }
4413
+ schema.allOf = allOf;
4414
+ }
3959
4415
  return schema;
3960
4416
  }
3961
4417
  function createLazyContractSchema(build) {
@@ -4123,6 +4579,6 @@ export {
4123
4579
  resolveSubcommandFlagContractsForCommand,
4124
4580
  PM_TOOL_PARAMETERS_SCHEMA
4125
4581
  };
4126
- //# sourceMappingURL=chunk-AGG32LKL.js.map
4582
+ //# sourceMappingURL=chunk-FPY2TOFI.js.map
4127
4583
 
4128
- //# debugId=60d8e31c-b4ba-5c8f-b2dc-523d0a2b3b13
4584
+ //# debugId=e84fb7c2-6771-5f89-aca4-5716b3b15bf3