@unbrained/pm-cli 2026.6.6 → 2026.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +1 -1
- package/AGENTS.md +1 -1
- package/CHANGELOG.md +79 -0
- package/CONTRIBUTING.md +1 -1
- package/README.md +6 -2
- package/dist/cli/bootstrap-args.js +30 -13
- package/dist/cli/bootstrap-args.js.map +1 -1
- package/dist/cli/commander-usage.js +74 -4
- package/dist/cli/commander-usage.js.map +1 -1
- package/dist/cli/commands/aggregate.d.ts +8 -0
- package/dist/cli/commands/aggregate.js +84 -7
- package/dist/cli/commands/aggregate.js.map +1 -1
- package/dist/cli/commands/calendar.js +10 -3
- package/dist/cli/commands/calendar.js.map +1 -1
- package/dist/cli/commands/close-many.js +20 -11
- package/dist/cli/commands/close-many.js.map +1 -1
- package/dist/cli/commands/close.d.ts +1 -1
- package/dist/cli/commands/close.js +32 -10
- package/dist/cli/commands/close.js.map +1 -1
- package/dist/cli/commands/comments-audit.js +4 -3
- package/dist/cli/commands/comments-audit.js.map +1 -1
- package/dist/cli/commands/completion.js +105 -43
- package/dist/cli/commands/completion.js.map +1 -1
- package/dist/cli/commands/config.d.ts +5 -4
- package/dist/cli/commands/config.js +50 -2
- package/dist/cli/commands/config.js.map +1 -1
- package/dist/cli/commands/contracts.js +4 -3
- package/dist/cli/commands/contracts.js.map +1 -1
- package/dist/cli/commands/copy.d.ts +14 -0
- package/dist/cli/commands/copy.js +153 -0
- package/dist/cli/commands/copy.js.map +1 -0
- package/dist/cli/commands/extension/doctor.js +62 -2
- package/dist/cli/commands/extension/doctor.js.map +1 -1
- package/dist/cli/commands/extension/install-sources.d.ts +8 -0
- package/dist/cli/commands/extension/install-sources.js +82 -2
- package/dist/cli/commands/extension/install-sources.js.map +1 -1
- package/dist/cli/commands/extension/scaffold.js +6 -14
- package/dist/cli/commands/extension/scaffold.js.map +1 -1
- package/dist/cli/commands/extension.d.ts +29 -0
- package/dist/cli/commands/extension.js +61 -2
- package/dist/cli/commands/extension.js.map +1 -1
- package/dist/cli/commands/gc.js +10 -2
- package/dist/cli/commands/gc.js.map +1 -1
- package/dist/cli/commands/get.d.ts +9 -0
- package/dist/cli/commands/get.js +23 -2
- package/dist/cli/commands/get.js.map +1 -1
- package/dist/cli/commands/health.js +10 -2
- package/dist/cli/commands/health.js.map +1 -1
- package/dist/cli/commands/history-compact.d.ts +39 -0
- package/dist/cli/commands/history-compact.js +262 -0
- package/dist/cli/commands/history-compact.js.map +1 -0
- package/dist/cli/commands/index.d.ts +3 -1
- package/dist/cli/commands/index.js +5 -3
- package/dist/cli/commands/index.js.map +1 -1
- package/dist/cli/commands/init.d.ts +1 -0
- package/dist/cli/commands/init.js +48 -2
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/commands/list.d.ts +13 -2
- package/dist/cli/commands/list.js +189 -9
- package/dist/cli/commands/list.js.map +1 -1
- package/dist/cli/commands/normalize.js +6 -4
- package/dist/cli/commands/normalize.js.map +1 -1
- package/dist/cli/commands/reindex.js +8 -4
- package/dist/cli/commands/reindex.js.map +1 -1
- package/dist/cli/commands/schema.d.ts +13 -2
- package/dist/cli/commands/schema.js +66 -12
- package/dist/cli/commands/schema.js.map +1 -1
- package/dist/cli/commands/search.d.ts +11 -2
- package/dist/cli/commands/search.js +321 -35
- package/dist/cli/commands/search.js.map +1 -1
- package/dist/cli/commands/upgrade.js +4 -12
- package/dist/cli/commands/upgrade.js.map +1 -1
- package/dist/cli/error-guidance.js +26 -2
- package/dist/cli/error-guidance.js.map +1 -1
- package/dist/cli/extension-command-help.d.ts +1 -0
- package/dist/cli/extension-command-help.js +3 -2
- package/dist/cli/extension-command-help.js.map +1 -1
- package/dist/cli/help-content.js +10 -2
- package/dist/cli/help-content.js.map +1 -1
- package/dist/cli/main.d.ts +3 -0
- package/dist/cli/main.js +18 -37
- package/dist/cli/main.js.map +1 -1
- package/dist/cli/register-list-query.js +22 -5
- package/dist/cli/register-list-query.js.map +1 -1
- package/dist/cli/register-mutation.js +83 -39
- package/dist/cli/register-mutation.js.map +1 -1
- package/dist/cli/register-operations.js +31 -7
- package/dist/cli/register-operations.js.map +1 -1
- package/dist/cli/register-setup.js +7 -5
- package/dist/cli/register-setup.js.map +1 -1
- package/dist/cli/registration-helpers.js +26 -4
- package/dist/cli/registration-helpers.js.map +1 -1
- package/dist/cli-bundle/chunks/activity-A3QKFSSF.js +16 -0
- package/dist/cli-bundle/chunks/{activity-JM6DTDND.js → activity-Q7XMIZIH.js} +11 -11
- package/dist/cli-bundle/chunks/{aggregate-VNAHUNNF.js → aggregate-GBSHSXOB.js} +87 -17
- package/dist/cli-bundle/chunks/aggregate-GBSHSXOB.js.map +7 -0
- package/dist/cli-bundle/chunks/{aggregate-GI7WSZPH.js → aggregate-HKQJZUBG.js} +88 -18
- package/dist/cli-bundle/chunks/aggregate-HKQJZUBG.js.map +1 -0
- package/dist/cli-bundle/chunks/{append-WMKRXKCE.js → append-3RFOU7P5.js} +8 -8
- package/dist/cli-bundle/chunks/{append-7H5N64R2.js → append-OM74OJVT.js} +8 -8
- package/dist/cli-bundle/chunks/{chunk-KJE2FOS4.js → chunk-2BYKYPWY.js} +26 -4
- package/dist/cli-bundle/chunks/chunk-2BYKYPWY.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-XTGLRY2Y.js → chunk-2HMD3JM2.js} +6 -6
- package/dist/cli-bundle/chunks/{chunk-PRJCELV4.js → chunk-2YPVCD7T.js} +8 -8
- package/dist/cli-bundle/chunks/{chunk-3FI4SEFT.js → chunk-3E3MDBTB.js} +62 -38
- package/dist/cli-bundle/chunks/chunk-3E3MDBTB.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-U5SXYXSY.js → chunk-3TXWDGPU.js} +287 -45
- package/dist/cli-bundle/chunks/chunk-3TXWDGPU.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-HZGUAH22.js → chunk-4TI3532H.js} +6 -7
- package/dist/cli-bundle/chunks/chunk-4TI3532H.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-2HVRUSQA.js → chunk-4WYBLB6J.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-R6UFP2GE.js → chunk-5NVJA7IW.js} +7 -7
- package/dist/cli-bundle/chunks/{chunk-Q7SPNHLW.js → chunk-5WO2VKFA.js} +190 -16
- package/dist/cli-bundle/chunks/chunk-5WO2VKFA.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-IOR7LGF4.js → chunk-7NQIY7Z6.js} +89 -7
- package/dist/cli-bundle/chunks/chunk-7NQIY7Z6.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-ECCMVXGM.js → chunk-7WXGR44E.js} +305 -216
- package/dist/cli-bundle/chunks/chunk-7WXGR44E.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-XSJCLN2R.js → chunk-AEMKH5WQ.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-WOPXVEZP.js → chunk-ALSRBNYB.js} +28 -9
- package/dist/cli-bundle/chunks/chunk-ALSRBNYB.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-6ER6DXH5.js → chunk-AXBUHLW7.js} +9 -9
- package/dist/cli-bundle/chunks/{chunk-BQHUILZS.js → chunk-BFJPMUF5.js} +5 -5
- package/dist/cli-bundle/chunks/{chunk-I6BNFU5X.js → chunk-BKQMJXWY.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-XLTD2HN3.js → chunk-CBJXWXI5.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-FRAUKRU2.js → chunk-D7WK2PKB.js} +36 -15
- package/dist/cli-bundle/chunks/chunk-D7WK2PKB.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-PROOHX4K.js → chunk-DV27WDA7.js} +104 -21
- package/dist/cli-bundle/chunks/chunk-DV27WDA7.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-3BWOVLTH.js → chunk-EPWT7BEA.js} +8 -8
- package/dist/cli-bundle/chunks/chunk-ETZZU5QF.js +112 -0
- package/dist/cli-bundle/chunks/chunk-ETZZU5QF.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-TPH5XEVD.js → chunk-F33AQIB4.js} +303 -207
- package/dist/cli-bundle/chunks/chunk-F33AQIB4.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-NUZ5HKR4.js → chunk-F33VC5EX.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-WKY2IBOQ.js → chunk-FGRJZVXD.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-77GFDHGF.js → chunk-FO2TYSQZ.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-GXSUPCBV.js → chunk-HOA3GMB6.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-OVQCEJPG.js → chunk-HP35AVFS.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-KJ33AOCY.js → chunk-J4DKAGTM.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-ME2YH6FN.js → chunk-JS47EKLP.js} +7 -7
- package/dist/cli-bundle/chunks/{chunk-T3LC5LKB.js → chunk-K62SNVVE.js} +5 -6
- package/dist/cli-bundle/chunks/chunk-K62SNVVE.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-GU2ZJ2VV.js → chunk-KBKJVXUS.js} +35 -14
- package/dist/cli-bundle/chunks/chunk-KBKJVXUS.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-KWU6HG75.js → chunk-KCGMABHM.js} +101 -18
- package/dist/cli-bundle/chunks/chunk-KCGMABHM.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-I2HSTRJF.js → chunk-KN4WSESY.js} +5 -5
- package/dist/cli-bundle/chunks/{chunk-RZN6VURO.js → chunk-KP4KIUQT.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-5FDATVEZ.js → chunk-KS2U7BZ3.js} +71 -17
- package/dist/cli-bundle/chunks/chunk-KS2U7BZ3.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-MITFDD35.js → chunk-KVXIQDJG.js} +12 -12
- package/dist/cli-bundle/chunks/{chunk-IJGCZSIQ.js → chunk-L3LYL3ID.js} +12 -12
- package/dist/cli-bundle/chunks/{chunk-AO442XLN.js → chunk-M7UBTVFT.js} +10 -6
- package/dist/cli-bundle/chunks/{chunk-AO442XLN.js.map → chunk-M7UBTVFT.js.map} +2 -2
- package/dist/cli-bundle/chunks/{chunk-UM2GBHS4.js → chunk-MSH23UWO.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-LCM63IXU.js → chunk-N4SQZ7L3.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-3VAM3NNM.js → chunk-NDSMKB2I.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-6P6GGMOG.js → chunk-NGEEXR2R.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-PO3GSVFV.js → chunk-NLVCMVC7.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-N7ACFE26.js → chunk-NUKHZZNM.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-GGYWB3Y2.js → chunk-ODN53S6H.js} +6 -6
- package/dist/cli-bundle/chunks/{chunk-23YFZ3IG.js → chunk-OTY2YEH5.js} +14 -14
- package/dist/cli-bundle/chunks/{chunk-2RSPZI5H.js → chunk-OVSSE2JP.js} +8 -8
- package/dist/cli-bundle/chunks/{chunk-4LL6TK5B.js → chunk-PQDH3S54.js} +59 -35
- package/dist/cli-bundle/chunks/chunk-PQDH3S54.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-2VVCGBNV.js → chunk-QF4OPBAG.js} +9 -9
- package/dist/cli-bundle/chunks/{chunk-QO7EBBOM.js → chunk-QFVASU44.js} +38 -7
- package/dist/cli-bundle/chunks/chunk-QFVASU44.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-WSMOSYRD.js → chunk-QQPZYP73.js} +14 -14
- package/dist/cli-bundle/chunks/{chunk-OZ7NSQHL.js → chunk-QWNUDGFQ.js} +8 -8
- package/dist/cli-bundle/chunks/{chunk-AY43SBIN.js → chunk-R4XIE7NQ.js} +54 -8
- package/dist/cli-bundle/chunks/chunk-R4XIE7NQ.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-52MAOQ6J.js → chunk-RISLL7XH.js} +71 -17
- package/dist/cli-bundle/chunks/chunk-RISLL7XH.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-GCOQW437.js → chunk-SDLEYY6A.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-W7XABV4H.js → chunk-SM3RMWGO.js} +191 -17
- package/dist/cli-bundle/chunks/chunk-SM3RMWGO.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-PIU6RSL3.js → chunk-TBLBEOEX.js} +9 -9
- package/dist/cli-bundle/chunks/{chunk-SKJWX3QB.js → chunk-TXKENAQP.js} +88 -6
- package/dist/cli-bundle/chunks/chunk-TXKENAQP.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-YL2DJGYS.js → chunk-UEXNNF3K.js} +7 -7
- package/dist/cli-bundle/chunks/{chunk-UBOPJT3S.js → chunk-UMMJAJB2.js} +9 -9
- package/dist/cli-bundle/chunks/chunk-URJEZOLB.js +115 -0
- package/dist/cli-bundle/chunks/chunk-URJEZOLB.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-PDDFYW4X.js → chunk-VXBUXLVD.js} +27 -8
- package/dist/cli-bundle/chunks/chunk-VXBUXLVD.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-LB3RUL2N.js → chunk-XEKZCBCS.js} +10 -6
- package/dist/cli-bundle/chunks/chunk-XEKZCBCS.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-KAG77BY3.js → chunk-XLSQ3QLT.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-E5FJNAZA.js → chunk-XNGMIVQY.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-TCD3R2PF.js → chunk-XZS4MV37.js} +39 -8
- package/dist/cli-bundle/chunks/chunk-XZS4MV37.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-RWPSOIEE.js → chunk-YEFOCDIK.js} +7 -7
- package/dist/cli-bundle/chunks/{chunk-5SFCOO6B.js → chunk-YJAKN2N2.js} +277 -35
- package/dist/cli-bundle/chunks/chunk-YJAKN2N2.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-2VBQ6ZXS.js → chunk-Z2HXAFFH.js} +27 -5
- package/dist/cli-bundle/chunks/chunk-Z2HXAFFH.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-3LB74A67.js → chunk-Z55JACL2.js} +53 -7
- package/dist/cli-bundle/chunks/chunk-Z55JACL2.js.map +7 -0
- package/dist/cli-bundle/chunks/{claim-4DBF6RVG.js → claim-NHBIIBOW.js} +10 -10
- package/dist/cli-bundle/chunks/{claim-X2P4IB7J.js → claim-RNEBQCOO.js} +10 -10
- package/dist/cli-bundle/chunks/close-UNTFXVM3.js +13 -0
- package/dist/cli-bundle/chunks/{close-PTYFA45H.js → close-ZMXL2WDS.js} +8 -8
- package/dist/cli-bundle/chunks/{close-many-ERFO6LHR.js → close-many-CDPQGQUB.js} +37 -28
- package/dist/cli-bundle/chunks/close-many-CDPQGQUB.js.map +1 -0
- package/dist/cli-bundle/chunks/{close-many-7CGIDPTJ.js → close-many-IQV5C2SI.js} +36 -27
- package/dist/cli-bundle/chunks/close-many-IQV5C2SI.js.map +7 -0
- package/dist/cli-bundle/chunks/{comments-QKBYCWKD.js → comments-EFVBHWPT.js} +10 -10
- package/dist/cli-bundle/chunks/{comments-OONGABK5.js → comments-J5Q4IJPH.js} +10 -10
- package/dist/cli-bundle/chunks/{config-6FXCQKIF.js → config-72253M2O.js} +127 -12
- package/dist/cli-bundle/chunks/config-72253M2O.js.map +1 -0
- package/dist/cli-bundle/chunks/{config-U4RZ4CQB.js → config-VFYA6BMI.js} +128 -13
- package/dist/cli-bundle/chunks/config-VFYA6BMI.js.map +7 -0
- package/dist/cli-bundle/chunks/{context-FYYJGFWS.js → context-AVLO4IFH.js} +14 -14
- package/dist/cli-bundle/chunks/{context-FYYJGFWS.js.map → context-AVLO4IFH.js.map} +2 -2
- package/dist/cli-bundle/chunks/{context-YMJ3Z2HQ.js → context-WMSI2D65.js} +15 -15
- package/dist/cli-bundle/chunks/context-WMSI2D65.js.map +1 -0
- package/dist/cli-bundle/chunks/{contracts-RFSPGVVJ.js → contracts-D4BN3VSQ.js} +7 -5
- package/dist/cli-bundle/chunks/contracts-D4BN3VSQ.js.map +7 -0
- package/dist/cli-bundle/chunks/{contracts-QDB6OMLQ.js → contracts-RGPOBLPL.js} +8 -6
- package/dist/cli-bundle/chunks/contracts-RGPOBLPL.js.map +1 -0
- package/dist/cli-bundle/chunks/copy-H6TXHK7S.js +185 -0
- package/dist/cli-bundle/chunks/copy-H6TXHK7S.js.map +7 -0
- package/dist/cli-bundle/chunks/copy-WXE3OOLZ.js +182 -0
- package/dist/cli-bundle/chunks/copy-WXE3OOLZ.js.map +1 -0
- package/dist/cli-bundle/chunks/create-EZWAMUKR.js +27 -0
- package/dist/cli-bundle/chunks/{create-I5L4EYYZ.js → create-PUAIJEZ7.js} +13 -13
- package/dist/cli-bundle/chunks/{delete-7HPGI4GZ.js → delete-PKR2JHLH.js} +7 -7
- package/dist/cli-bundle/chunks/{delete-VXUPH5RS.js → delete-WBME6WG5.js} +7 -7
- package/dist/cli-bundle/chunks/{deps-JSRRWC3Z.js → deps-4BQEDV4L.js} +7 -7
- package/dist/cli-bundle/chunks/{deps-SCZIFK2Z.js → deps-KWHQRO75.js} +7 -7
- package/dist/cli-bundle/chunks/{docs-GJK6K4VP.js → docs-364GT3ZR.js} +9 -9
- package/dist/cli-bundle/chunks/{docs-WW4N3MBM.js → docs-SCNBUGSV.js} +9 -9
- package/dist/cli-bundle/chunks/{extension-VDY2U33M.js → extension-CRE7JM47.js} +8 -6
- package/dist/cli-bundle/chunks/{extension-J7IBMFTD.js → extension-KK2UPXJD.js} +8 -6
- package/dist/cli-bundle/chunks/{files-ISZJGILQ.js → files-3GESQAWL.js} +9 -9
- package/dist/cli-bundle/chunks/{files-WKOD326U.js → files-66EHM5ZR.js} +9 -9
- package/dist/cli-bundle/chunks/{gc-JDVJ6OQ2.js → gc-D5IWOKQH.js} +13 -5
- package/dist/cli-bundle/chunks/gc-D5IWOKQH.js.map +1 -0
- package/dist/cli-bundle/chunks/{gc-ULPVWMTN.js → gc-MOQDND5J.js} +12 -4
- package/dist/cli-bundle/chunks/gc-MOQDND5J.js.map +7 -0
- package/dist/cli-bundle/chunks/{get-RV37HT3G.js → get-7J2ZCBV5.js} +34 -12
- package/dist/cli-bundle/chunks/get-7J2ZCBV5.js.map +1 -0
- package/dist/cli-bundle/chunks/{get-WXU6WI5P.js → get-WXSLXV3K.js} +33 -11
- package/dist/cli-bundle/chunks/get-WXSLXV3K.js.map +7 -0
- package/dist/cli-bundle/chunks/{health-LOI2HHKB.js → health-B6AEM7BV.js} +21 -13
- package/dist/cli-bundle/chunks/health-B6AEM7BV.js.map +1 -0
- package/dist/cli-bundle/chunks/{health-6L6EH4WR.js → health-YMZGOMVX.js} +20 -12
- package/dist/cli-bundle/chunks/health-YMZGOMVX.js.map +7 -0
- package/dist/cli-bundle/chunks/{history-PKN67D5O.js → history-TJTO5GCR.js} +10 -10
- package/dist/cli-bundle/chunks/history-ZERISU2L.js +20 -0
- package/dist/cli-bundle/chunks/history-compact-CKNN6UKW.js +290 -0
- package/dist/cli-bundle/chunks/history-compact-CKNN6UKW.js.map +7 -0
- package/dist/cli-bundle/chunks/history-compact-N2Q7IR3T.js +287 -0
- package/dist/cli-bundle/chunks/history-compact-N2Q7IR3T.js.map +1 -0
- package/dist/cli-bundle/chunks/history-redact-GODBYT5A.js +19 -0
- package/dist/cli-bundle/chunks/{history-redact-V4FOJGS7.js → history-redact-JUXUOH54.js} +11 -11
- package/dist/cli-bundle/chunks/{history-repair-HIBCBIKK.js → history-repair-CCCPBNTF.js} +11 -11
- package/dist/cli-bundle/chunks/{history-repair-SDMHR7JT.js → history-repair-TDBBSRVK.js} +11 -11
- package/dist/cli-bundle/chunks/{init-P56QYWJF.js → init-6ZPKD3YN.js} +9 -8
- package/dist/cli-bundle/chunks/init-CBZHXBR3.js +17 -0
- package/dist/cli-bundle/chunks/{learnings-MIXSESLK.js → learnings-U7U2FNIO.js} +10 -10
- package/dist/cli-bundle/chunks/{learnings-GDFRG5J7.js → learnings-WYNTYQ5T.js} +10 -10
- package/dist/cli-bundle/chunks/list-7MTPPZHC.js +20 -0
- package/dist/cli-bundle/chunks/{list-FGOWQMSM.js → list-JGP7ODML.js} +10 -10
- package/dist/cli-bundle/chunks/{notes-5UK3GEH2.js → notes-P25YVTEG.js} +10 -10
- package/dist/cli-bundle/chunks/{notes-4XVSH2AZ.js → notes-QIF6A7XS.js} +10 -10
- package/dist/cli-bundle/chunks/{plan-DUMBV3QB.js → plan-RACB5PI6.js} +13 -13
- package/dist/cli-bundle/chunks/{plan-SLMODHWX.js → plan-SSBJFWXA.js} +13 -13
- package/dist/cli-bundle/chunks/{register-list-query-POCFZ5JW.js → register-list-query-5IXDPUZ6.js} +31 -25
- package/dist/cli-bundle/chunks/register-list-query-5IXDPUZ6.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-list-query-WST76HSQ.js → register-list-query-GQAEIG4K.js} +30 -24
- package/dist/cli-bundle/chunks/register-list-query-GQAEIG4K.js.map +7 -0
- package/dist/cli-bundle/chunks/{register-mutation-N5GSUZJV.js → register-mutation-FAS4YG63.js} +72 -50
- package/dist/cli-bundle/chunks/register-mutation-FAS4YG63.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-mutation-OA675SOU.js → register-mutation-YZCUILGO.js} +71 -49
- package/dist/cli-bundle/chunks/register-mutation-YZCUILGO.js.map +7 -0
- package/dist/cli-bundle/chunks/{register-operations-N3PMHXH5.js → register-operations-IBYWNJN5.js} +57 -34
- package/dist/cli-bundle/chunks/register-operations-IBYWNJN5.js.map +7 -0
- package/dist/cli-bundle/chunks/{register-operations-GNHBE5I3.js → register-operations-S2BOLUPF.js} +58 -35
- package/dist/cli-bundle/chunks/register-operations-S2BOLUPF.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-setup-ZHJI2DI3.js → register-setup-ABA2JPWO.js} +20 -19
- package/dist/cli-bundle/chunks/{register-setup-ZHJI2DI3.js.map → register-setup-ABA2JPWO.js.map} +2 -2
- package/dist/cli-bundle/chunks/{register-setup-JIMPKJKV.js → register-setup-JRZ4UMWZ.js} +21 -20
- package/dist/cli-bundle/chunks/register-setup-JRZ4UMWZ.js.map +1 -0
- package/dist/cli-bundle/chunks/restore-3JRX27QW.js +17 -0
- package/dist/cli-bundle/chunks/{restore-PBL6T5TW.js → restore-K72ZNPEP.js} +11 -11
- package/dist/cli-bundle/chunks/{schema-2NOO6NGB.js → schema-3VKRDBLC.js} +76 -20
- package/dist/cli-bundle/chunks/schema-3VKRDBLC.js.map +7 -0
- package/dist/cli-bundle/chunks/{schema-EBI4NLUO.js → schema-UL4B2JX5.js} +77 -21
- package/dist/cli-bundle/chunks/schema-UL4B2JX5.js.map +1 -0
- package/dist/cli-bundle/chunks/{search-OA6JX27A.js → search-632WJ7GO.js} +516 -41
- package/dist/cli-bundle/chunks/search-632WJ7GO.js.map +7 -0
- package/dist/cli-bundle/chunks/{search-JPUQTVCY.js → search-EQDHSE4G.js} +510 -42
- package/dist/cli-bundle/chunks/search-EQDHSE4G.js.map +1 -0
- package/dist/cli-bundle/chunks/{stats-XYB6KTFG.js → stats-O4UTMJMC.js} +7 -7
- package/dist/cli-bundle/chunks/{stats-CV54BAWY.js → stats-WLJ3XBF5.js} +7 -7
- package/dist/cli-bundle/chunks/{telemetry-LMJ7PFUO.js → telemetry-EUVHFSQU.js} +4 -4
- package/dist/cli-bundle/chunks/{telemetry-NCMEPJNR.js → telemetry-NRVWX25E.js} +4 -4
- package/dist/cli-bundle/chunks/{test-WBROAJIE.js → test-GXUBQNUC.js} +14 -13
- package/dist/cli-bundle/chunks/test-XN7RJL5Z.js +32 -0
- package/dist/cli-bundle/chunks/{test-all-N6NSRDTV.js → test-all-UTFXC7S2.js} +16 -15
- package/dist/cli-bundle/chunks/{test-all-N6NSRDTV.js.map → test-all-UTFXC7S2.js.map} +1 -1
- package/dist/cli-bundle/chunks/{test-all-NTOZ7C3M.js → test-all-XM6OKI3L.js} +14 -13
- package/dist/cli-bundle/chunks/{test-all-NTOZ7C3M.js.map → test-all-XM6OKI3L.js.map} +1 -1
- package/dist/cli-bundle/chunks/{test-runs-V6A7LPWZ.js → test-runs-7FHCPEA3.js} +5 -5
- package/dist/cli-bundle/chunks/{test-runs-WMVTQU3Y.js → test-runs-IK6E2HNX.js} +5 -5
- package/dist/cli-bundle/chunks/update-LFBSEW3N.js +21 -0
- package/dist/cli-bundle/chunks/update-U4B4OMHZ.js +25 -0
- package/dist/cli-bundle/chunks/{update-many-KGGEYABR.js → update-many-5KD33MKY.js} +22 -22
- package/dist/cli-bundle/chunks/{update-many-EM6OXYGO.js → update-many-N3YTM7K4.js} +22 -22
- package/dist/cli-bundle/chunks/{upgrade-BLI7XBAJ.js → upgrade-5SRFLUNW.js} +8 -14
- package/dist/cli-bundle/chunks/upgrade-5SRFLUNW.js.map +7 -0
- package/dist/cli-bundle/chunks/{upgrade-LXPOQKFV.js → upgrade-FFXGO43H.js} +9 -15
- package/dist/cli-bundle/chunks/upgrade-FFXGO43H.js.map +1 -0
- package/dist/cli-bundle/chunks/{validate-L5J6A7YO.js → validate-CRWXZILW.js} +20 -19
- package/dist/cli-bundle/chunks/{validate-L5J6A7YO.js.map → validate-CRWXZILW.js.map} +1 -1
- package/dist/cli-bundle/chunks/{validate-AGOAUOVW.js → validate-T3LPWSZG.js} +18 -17
- package/dist/cli-bundle/chunks/{validate-AGOAUOVW.js.map → validate-T3LPWSZG.js.map} +1 -1
- package/dist/cli-bundle/main.js +160 -87
- package/dist/cli-bundle/main.js.map +3 -3
- package/dist/core/config/nested-settings.d.ts +8 -8
- package/dist/core/config/nested-settings.js +71 -7
- package/dist/core/config/nested-settings.js.map +1 -1
- package/dist/core/config/positional-value.js +4 -2
- package/dist/core/config/positional-value.js.map +1 -1
- package/dist/core/diagnostics/remediation.js +7 -2
- package/dist/core/diagnostics/remediation.js.map +1 -1
- package/dist/core/extensions/extension-types.d.ts +36 -0
- package/dist/core/extensions/extension-types.js +2 -2
- package/dist/core/extensions/extension-types.js.map +1 -1
- package/dist/core/extensions/loader.js +46 -5
- package/dist/core/extensions/loader.js.map +1 -1
- package/dist/core/fs/fs-utils.js +29 -4
- package/dist/core/fs/fs-utils.js.map +1 -1
- package/dist/core/history/drift-scan.d.ts +3 -4
- package/dist/core/history/drift-scan.js +71 -18
- package/dist/core/history/drift-scan.js.map +1 -1
- package/dist/core/item/id.js +4 -5
- package/dist/core/item/id.js.map +1 -1
- package/dist/core/item/item-format.js +7 -3
- package/dist/core/item/item-format.js.map +1 -1
- package/dist/core/item/toon-decode.d.ts +7 -0
- package/dist/core/item/toon-decode.js +11 -2
- package/dist/core/item/toon-decode.js.map +1 -1
- package/dist/core/item/type-registry.js +25 -7
- package/dist/core/item/type-registry.js.map +1 -1
- package/dist/core/packages/root.d.ts +10 -0
- package/dist/core/packages/root.js +24 -2
- package/dist/core/packages/root.js.map +1 -1
- package/dist/core/schema/runtime-schema.js +3 -6
- package/dist/core/schema/runtime-schema.js.map +1 -1
- package/dist/core/search/background-refresh.d.ts +0 -8
- package/dist/core/search/background-refresh.js +2 -9
- package/dist/core/search/background-refresh.js.map +1 -1
- package/dist/core/search/cache.js +5 -3
- package/dist/core/search/cache.js.map +1 -1
- package/dist/core/search/corpus.d.ts +6 -0
- package/dist/core/search/corpus.js +22 -9
- package/dist/core/search/corpus.js.map +1 -1
- package/dist/core/search/embedding-batches.js +10 -7
- package/dist/core/search/embedding-batches.js.map +1 -1
- package/dist/core/search/relevance.d.ts +29 -0
- package/dist/core/search/relevance.js +226 -0
- package/dist/core/search/relevance.js.map +1 -0
- package/dist/core/search/vector-stores.d.ts +3 -0
- package/dist/core/search/vector-stores.js +27 -16
- package/dist/core/search/vector-stores.js.map +1 -1
- package/dist/core/sentry/instrument.js +4 -17
- package/dist/core/sentry/instrument.js.map +1 -1
- package/dist/core/shared/constants.js +15 -2
- package/dist/core/shared/constants.js.map +1 -1
- package/dist/core/shared/errors.d.ts +6 -0
- package/dist/core/shared/errors.js +2 -2
- package/dist/core/shared/errors.js.map +1 -1
- package/dist/core/shared/primitives.d.ts +8 -0
- package/dist/core/shared/primitives.js +29 -2
- package/dist/core/shared/primitives.js.map +1 -1
- package/dist/core/shared/time.js +42 -6
- package/dist/core/shared/time.js.map +1 -1
- package/dist/core/store/paths.js +40 -8
- package/dist/core/store/paths.js.map +1 -1
- package/dist/core/store/settings-validator.d.ts +11 -0
- package/dist/core/store/settings-validator.js +14 -2
- package/dist/core/store/settings-validator.js.map +1 -1
- package/dist/core/store/settings.js +109 -12
- package/dist/core/store/settings.js.map +1 -1
- package/dist/core/telemetry/runtime.d.ts +1 -0
- package/dist/core/telemetry/runtime.js +86 -5
- package/dist/core/telemetry/runtime.js.map +1 -1
- package/dist/mcp/server.js +109 -19
- package/dist/mcp/server.js.map +1 -1
- package/dist/sdk/cli-contracts/commander-types.d.ts +1 -0
- package/dist/sdk/cli-contracts/commander-types.js +15 -4
- package/dist/sdk/cli-contracts/commander-types.js.map +1 -1
- package/dist/sdk/cli-contracts/enum-contracts.d.ts +2 -2
- package/dist/sdk/cli-contracts/enum-contracts.js +6 -2
- package/dist/sdk/cli-contracts/enum-contracts.js.map +1 -1
- package/dist/sdk/cli-contracts/tool-option-contracts.js +7 -2
- package/dist/sdk/cli-contracts/tool-option-contracts.js.map +1 -1
- package/dist/sdk/cli-contracts/tool-parameter-tables.js +32 -3
- package/dist/sdk/cli-contracts/tool-parameter-tables.js.map +1 -1
- package/dist/sdk/cli-contracts.d.ts +3 -1
- package/dist/sdk/cli-contracts.js +44 -12
- package/dist/sdk/cli-contracts.js.map +1 -1
- package/dist/sdk/index.d.ts +2 -2
- package/dist/sdk/index.js +3 -3
- package/dist/sdk/index.js.map +1 -1
- package/dist/sdk/testing.d.ts +51 -1
- package/dist/sdk/testing.js +93 -2
- package/dist/sdk/testing.js.map +1 -1
- package/dist/types.d.ts +14 -0
- package/dist/types.js +2 -2
- package/dist/types.js.map +1 -1
- package/docs/AGENT_GUIDE.md +3 -1
- package/docs/CLAUDE_CODE_PLUGIN.md +4 -4
- package/docs/CODEX_PLUGIN.md +1 -1
- package/docs/COMMANDS.md +14 -5
- package/docs/CONFIGURATION.md +28 -1
- package/docs/EXTENSIONS.md +17 -9
- package/docs/QUICKSTART.md +1 -1
- package/docs/RELEASING.md +17 -0
- package/docs/SDK.md +66 -0
- package/docs/TESTING.md +14 -0
- package/marketplace.json +1 -1
- package/package.json +2 -1
- package/packages/pm-governance-audit/README.md +14 -0
- package/packages/pm-governance-audit/extensions/governance-audit/index.js +39 -1
- package/packages/pm-governance-audit/extensions/governance-audit/index.ts +40 -2
- package/packages/pm-governance-audit/extensions/governance-audit/manifest.json +1 -1
- package/packages/pm-governance-audit/package.json +4 -2
- package/packages/pm-lifecycle-hooks/README.md +21 -0
- package/packages/pm-search-advanced/README.md +38 -0
- package/packages/pm-search-advanced/extensions/search-advanced/index.js +17 -0
- package/packages/pm-search-advanced/extensions/search-advanced/index.ts +17 -0
- package/packages/pm-search-advanced/extensions/search-advanced/runtime.js +216 -1
- package/packages/pm-search-advanced/extensions/search-advanced/runtime.ts +271 -2
- package/plugins/pm-claude/.claude-plugin/plugin.json +1 -1
- package/plugins/pm-claude/README.md +7 -7
- package/plugins/pm-claude/commands/pm-init.md +1 -1
- package/plugins/pm-codex/README.md +1 -1
- package/dist/cli-bundle/chunks/activity-CVXTCHYY.js +0 -16
- package/dist/cli-bundle/chunks/aggregate-GI7WSZPH.js.map +0 -1
- package/dist/cli-bundle/chunks/aggregate-VNAHUNNF.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-2VBQ6ZXS.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-3FI4SEFT.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-3LB74A67.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-4LL6TK5B.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-52MAOQ6J.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-5FDATVEZ.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-5SFCOO6B.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-AY43SBIN.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-ECCMVXGM.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-FRAUKRU2.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-GU2ZJ2VV.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-HZGUAH22.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-IOR7LGF4.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-KJE2FOS4.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-KWU6HG75.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-LB3RUL2N.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-PDDFYW4X.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-PROOHX4K.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-Q7SPNHLW.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-QO7EBBOM.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-SKJWX3QB.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-T3LC5LKB.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-TCD3R2PF.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-TPH5XEVD.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-U5SXYXSY.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-W7XABV4H.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-WOPXVEZP.js.map +0 -1
- package/dist/cli-bundle/chunks/close-3HDWDA3L.js +0 -13
- package/dist/cli-bundle/chunks/close-many-7CGIDPTJ.js.map +0 -7
- package/dist/cli-bundle/chunks/close-many-ERFO6LHR.js.map +0 -1
- package/dist/cli-bundle/chunks/config-6FXCQKIF.js.map +0 -1
- package/dist/cli-bundle/chunks/config-U4RZ4CQB.js.map +0 -7
- package/dist/cli-bundle/chunks/context-YMJ3Z2HQ.js.map +0 -1
- package/dist/cli-bundle/chunks/contracts-QDB6OMLQ.js.map +0 -1
- package/dist/cli-bundle/chunks/contracts-RFSPGVVJ.js.map +0 -7
- package/dist/cli-bundle/chunks/create-JTZNCTQC.js +0 -27
- package/dist/cli-bundle/chunks/gc-JDVJ6OQ2.js.map +0 -1
- package/dist/cli-bundle/chunks/gc-ULPVWMTN.js.map +0 -7
- package/dist/cli-bundle/chunks/get-RV37HT3G.js.map +0 -1
- package/dist/cli-bundle/chunks/get-WXU6WI5P.js.map +0 -7
- package/dist/cli-bundle/chunks/health-6L6EH4WR.js.map +0 -7
- package/dist/cli-bundle/chunks/health-LOI2HHKB.js.map +0 -1
- package/dist/cli-bundle/chunks/history-2BA3T5AE.js +0 -20
- package/dist/cli-bundle/chunks/history-redact-JBZNXHGR.js +0 -19
- package/dist/cli-bundle/chunks/init-HIVSNX3O.js +0 -16
- package/dist/cli-bundle/chunks/list-MUSQNMTD.js +0 -20
- package/dist/cli-bundle/chunks/register-list-query-POCFZ5JW.js.map +0 -1
- package/dist/cli-bundle/chunks/register-list-query-WST76HSQ.js.map +0 -7
- package/dist/cli-bundle/chunks/register-mutation-N5GSUZJV.js.map +0 -1
- package/dist/cli-bundle/chunks/register-mutation-OA675SOU.js.map +0 -7
- package/dist/cli-bundle/chunks/register-operations-GNHBE5I3.js.map +0 -1
- package/dist/cli-bundle/chunks/register-operations-N3PMHXH5.js.map +0 -7
- package/dist/cli-bundle/chunks/register-setup-JIMPKJKV.js.map +0 -1
- package/dist/cli-bundle/chunks/restore-D4RGNX33.js +0 -17
- package/dist/cli-bundle/chunks/schema-2NOO6NGB.js.map +0 -7
- package/dist/cli-bundle/chunks/schema-EBI4NLUO.js.map +0 -1
- package/dist/cli-bundle/chunks/search-JPUQTVCY.js.map +0 -1
- package/dist/cli-bundle/chunks/search-OA6JX27A.js.map +0 -7
- package/dist/cli-bundle/chunks/test-MXX3E5JL.js +0 -31
- package/dist/cli-bundle/chunks/update-OSV3NAQB.js +0 -25
- package/dist/cli-bundle/chunks/update-YRXSUGYQ.js +0 -21
- package/dist/cli-bundle/chunks/upgrade-BLI7XBAJ.js.map +0 -7
- package/dist/cli-bundle/chunks/upgrade-LXPOQKFV.js.map +0 -1
- /package/dist/cli-bundle/chunks/{activity-CVXTCHYY.js.map → activity-A3QKFSSF.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{activity-JM6DTDND.js.map → activity-Q7XMIZIH.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{append-WMKRXKCE.js.map → append-3RFOU7P5.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{append-7H5N64R2.js.map → append-OM74OJVT.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-XTGLRY2Y.js.map → chunk-2HMD3JM2.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-PRJCELV4.js.map → chunk-2YPVCD7T.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-2HVRUSQA.js.map → chunk-4WYBLB6J.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-R6UFP2GE.js.map → chunk-5NVJA7IW.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-XSJCLN2R.js.map → chunk-AEMKH5WQ.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-6ER6DXH5.js.map → chunk-AXBUHLW7.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-BQHUILZS.js.map → chunk-BFJPMUF5.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-I6BNFU5X.js.map → chunk-BKQMJXWY.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-XLTD2HN3.js.map → chunk-CBJXWXI5.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-3BWOVLTH.js.map → chunk-EPWT7BEA.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-NUZ5HKR4.js.map → chunk-F33VC5EX.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-WKY2IBOQ.js.map → chunk-FGRJZVXD.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-77GFDHGF.js.map → chunk-FO2TYSQZ.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-GXSUPCBV.js.map → chunk-HOA3GMB6.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-OVQCEJPG.js.map → chunk-HP35AVFS.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-KJ33AOCY.js.map → chunk-J4DKAGTM.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-ME2YH6FN.js.map → chunk-JS47EKLP.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-I2HSTRJF.js.map → chunk-KN4WSESY.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-RZN6VURO.js.map → chunk-KP4KIUQT.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-MITFDD35.js.map → chunk-KVXIQDJG.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-IJGCZSIQ.js.map → chunk-L3LYL3ID.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-UM2GBHS4.js.map → chunk-MSH23UWO.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-LCM63IXU.js.map → chunk-N4SQZ7L3.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-3VAM3NNM.js.map → chunk-NDSMKB2I.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-6P6GGMOG.js.map → chunk-NGEEXR2R.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-PO3GSVFV.js.map → chunk-NLVCMVC7.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-N7ACFE26.js.map → chunk-NUKHZZNM.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-GGYWB3Y2.js.map → chunk-ODN53S6H.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-23YFZ3IG.js.map → chunk-OTY2YEH5.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-2RSPZI5H.js.map → chunk-OVSSE2JP.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-2VVCGBNV.js.map → chunk-QF4OPBAG.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-WSMOSYRD.js.map → chunk-QQPZYP73.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-OZ7NSQHL.js.map → chunk-QWNUDGFQ.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-GCOQW437.js.map → chunk-SDLEYY6A.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-PIU6RSL3.js.map → chunk-TBLBEOEX.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-YL2DJGYS.js.map → chunk-UEXNNF3K.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-UBOPJT3S.js.map → chunk-UMMJAJB2.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-KAG77BY3.js.map → chunk-XLSQ3QLT.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-E5FJNAZA.js.map → chunk-XNGMIVQY.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-RWPSOIEE.js.map → chunk-YEFOCDIK.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{claim-4DBF6RVG.js.map → claim-NHBIIBOW.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{claim-X2P4IB7J.js.map → claim-RNEBQCOO.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{close-3HDWDA3L.js.map → close-UNTFXVM3.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{close-PTYFA45H.js.map → close-ZMXL2WDS.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{comments-QKBYCWKD.js.map → comments-EFVBHWPT.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{comments-OONGABK5.js.map → comments-J5Q4IJPH.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{create-JTZNCTQC.js.map → create-EZWAMUKR.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{create-I5L4EYYZ.js.map → create-PUAIJEZ7.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{delete-7HPGI4GZ.js.map → delete-PKR2JHLH.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{delete-VXUPH5RS.js.map → delete-WBME6WG5.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{deps-JSRRWC3Z.js.map → deps-4BQEDV4L.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{deps-SCZIFK2Z.js.map → deps-KWHQRO75.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{docs-GJK6K4VP.js.map → docs-364GT3ZR.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{docs-WW4N3MBM.js.map → docs-SCNBUGSV.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{extension-VDY2U33M.js.map → extension-CRE7JM47.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{extension-J7IBMFTD.js.map → extension-KK2UPXJD.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{files-ISZJGILQ.js.map → files-3GESQAWL.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{files-WKOD326U.js.map → files-66EHM5ZR.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-PKN67D5O.js.map → history-TJTO5GCR.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-2BA3T5AE.js.map → history-ZERISU2L.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-redact-JBZNXHGR.js.map → history-redact-GODBYT5A.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-redact-V4FOJGS7.js.map → history-redact-JUXUOH54.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-repair-HIBCBIKK.js.map → history-repair-CCCPBNTF.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-repair-SDMHR7JT.js.map → history-repair-TDBBSRVK.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{init-P56QYWJF.js.map → init-6ZPKD3YN.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{init-HIVSNX3O.js.map → init-CBZHXBR3.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{learnings-MIXSESLK.js.map → learnings-U7U2FNIO.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{learnings-GDFRG5J7.js.map → learnings-WYNTYQ5T.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{list-MUSQNMTD.js.map → list-7MTPPZHC.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{list-FGOWQMSM.js.map → list-JGP7ODML.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{notes-5UK3GEH2.js.map → notes-P25YVTEG.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{notes-4XVSH2AZ.js.map → notes-QIF6A7XS.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{plan-DUMBV3QB.js.map → plan-RACB5PI6.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{plan-SLMODHWX.js.map → plan-SSBJFWXA.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{restore-D4RGNX33.js.map → restore-3JRX27QW.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{restore-PBL6T5TW.js.map → restore-K72ZNPEP.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{stats-XYB6KTFG.js.map → stats-O4UTMJMC.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{stats-CV54BAWY.js.map → stats-WLJ3XBF5.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{telemetry-LMJ7PFUO.js.map → telemetry-EUVHFSQU.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{telemetry-NCMEPJNR.js.map → telemetry-NRVWX25E.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{test-WBROAJIE.js.map → test-GXUBQNUC.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{test-MXX3E5JL.js.map → test-XN7RJL5Z.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{test-runs-V6A7LPWZ.js.map → test-runs-7FHCPEA3.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{test-runs-WMVTQU3Y.js.map → test-runs-IK6E2HNX.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{update-YRXSUGYQ.js.map → update-LFBSEW3N.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{update-OSV3NAQB.js.map → update-U4B4OMHZ.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{update-many-KGGEYABR.js.map → update-many-5KD33MKY.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{update-many-EM6OXYGO.js.map → update-many-N3YTM7K4.js.map} +0 -0
|
@@ -5,21 +5,21 @@ import {
|
|
|
5
5
|
} from "./chunk-J27KIHTG.js";
|
|
6
6
|
import {
|
|
7
7
|
parseCsvKv
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-NLVCMVC7.js";
|
|
9
9
|
import {
|
|
10
10
|
parseLimit
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-NDSMKB2I.js";
|
|
12
12
|
import {
|
|
13
13
|
locateItem,
|
|
14
14
|
mutateItem,
|
|
15
15
|
readLocatedItem
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-ODN53S6H.js";
|
|
17
17
|
import {
|
|
18
18
|
resolveItemTypeRegistry
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-Z2HXAFFH.js";
|
|
20
20
|
import {
|
|
21
21
|
nowIso
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-XZS4MV37.js";
|
|
23
23
|
import {
|
|
24
24
|
EXIT_CODE,
|
|
25
25
|
PmCliError,
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
pathExists,
|
|
29
29
|
readSettings,
|
|
30
30
|
resolvePmRoot
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-YJAKN2N2.js";
|
|
32
32
|
|
|
33
33
|
// dist/cli/commands/annotation-command.js
|
|
34
34
|
function limitAnnotationEntries(values, limit) {
|
|
@@ -149,6 +149,6 @@ export {
|
|
|
149
149
|
wrapOwnershipConflict,
|
|
150
150
|
runAnnotationCommand
|
|
151
151
|
};
|
|
152
|
-
//# sourceMappingURL=chunk-
|
|
152
|
+
//# sourceMappingURL=chunk-YEFOCDIK.js.map
|
|
153
153
|
|
|
154
154
|
//# debugId=2663dc72-ebe4-5c50-8d4c-28022abebefe
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// dist/core/fs/fs-utils.js
|
|
2
2
|
|
|
3
|
-
!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]="
|
|
4
|
-
import fs from "node:fs/promises";
|
|
3
|
+
!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]="0b9873ce-4d2c-5248-a389-357401ce7cbc")}catch(e){}}();
|
|
4
|
+
import * as fs from "node:fs/promises";
|
|
5
5
|
import path from "node:path";
|
|
6
6
|
import crypto from "node:crypto";
|
|
7
7
|
async function ensureDir(dirPath) {
|
|
@@ -30,7 +30,26 @@ async function writeFileAtomic(targetPath, contents) {
|
|
|
30
30
|
await ensureDir(dirPath);
|
|
31
31
|
const tempPath = path.join(dirPath, `.${path.basename(targetPath)}.${process.pid}.${Date.now()}.${crypto.randomBytes(4).toString("hex")}.tmp`);
|
|
32
32
|
await fs.writeFile(tempPath, contents, "utf8");
|
|
33
|
-
|
|
33
|
+
try {
|
|
34
|
+
await fs.rename(tempPath, targetPath);
|
|
35
|
+
} catch (error) {
|
|
36
|
+
if (isErrno(error, "EXDEV")) {
|
|
37
|
+
try {
|
|
38
|
+
await fs.copyFile(tempPath, targetPath);
|
|
39
|
+
} finally {
|
|
40
|
+
try {
|
|
41
|
+
await fs.unlink(tempPath);
|
|
42
|
+
} catch {
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
return;
|
|
46
|
+
}
|
|
47
|
+
try {
|
|
48
|
+
await fs.unlink(tempPath);
|
|
49
|
+
} catch {
|
|
50
|
+
}
|
|
51
|
+
throw error;
|
|
52
|
+
}
|
|
34
53
|
}
|
|
35
54
|
async function appendLineAtomic(targetPath, line) {
|
|
36
55
|
const dirPath = path.dirname(targetPath);
|
|
@@ -101,6 +120,18 @@ function resolvePmPackageRootFromModule(metaUrl, fallbackRelativeSegments = [])
|
|
|
101
120
|
}
|
|
102
121
|
return path3.resolve(path3.dirname(modulePath), ...fallbackRelativeSegments);
|
|
103
122
|
}
|
|
123
|
+
function resolvePmCliVersion(metaUrl, fallbackRelativeSegments = []) {
|
|
124
|
+
try {
|
|
125
|
+
const packageJsonPath = path3.join(resolvePmPackageRootFromModule(metaUrl, fallbackRelativeSegments), "package.json");
|
|
126
|
+
if (!fs2.existsSync(packageJsonPath)) {
|
|
127
|
+
return void 0;
|
|
128
|
+
}
|
|
129
|
+
const parsed = JSON.parse(fs2.readFileSync(packageJsonPath, "utf8"));
|
|
130
|
+
return typeof parsed.version === "string" && parsed.version.trim().length > 0 ? parsed.version : void 0;
|
|
131
|
+
} catch {
|
|
132
|
+
return void 0;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
104
135
|
|
|
105
136
|
// dist/core/extensions/extension-types.js
|
|
106
137
|
var KNOWN_EXTENSION_CAPABILITIES = [
|
|
@@ -330,6 +361,7 @@ var GOVERNANCE_PRESET_DEFAULTS = {
|
|
|
330
361
|
ownership_enforcement: "none",
|
|
331
362
|
create_mode_default: "progressive",
|
|
332
363
|
close_validation_default: "off",
|
|
364
|
+
require_close_reason: true,
|
|
333
365
|
parent_reference: "warn",
|
|
334
366
|
metadata_profile: "core",
|
|
335
367
|
force_required_for_stale_lock: false
|
|
@@ -338,6 +370,7 @@ var GOVERNANCE_PRESET_DEFAULTS = {
|
|
|
338
370
|
ownership_enforcement: "warn",
|
|
339
371
|
create_mode_default: "progressive",
|
|
340
372
|
close_validation_default: "warn",
|
|
373
|
+
require_close_reason: true,
|
|
341
374
|
parent_reference: "warn",
|
|
342
375
|
metadata_profile: "core",
|
|
343
376
|
force_required_for_stale_lock: true
|
|
@@ -346,6 +379,7 @@ var GOVERNANCE_PRESET_DEFAULTS = {
|
|
|
346
379
|
ownership_enforcement: "strict",
|
|
347
380
|
create_mode_default: "strict",
|
|
348
381
|
close_validation_default: "strict",
|
|
382
|
+
require_close_reason: true,
|
|
349
383
|
parent_reference: "strict_error",
|
|
350
384
|
metadata_profile: "strict",
|
|
351
385
|
force_required_for_stale_lock: true
|
|
@@ -452,7 +486,16 @@ var SETTINGS_DEFAULTS = {
|
|
|
452
486
|
embedding_timeout_ms: 3e4,
|
|
453
487
|
scanner_max_batch_retries: 3,
|
|
454
488
|
provider: "",
|
|
455
|
-
mutation_refresh_policy: "semantic_configured"
|
|
489
|
+
mutation_refresh_policy: "semantic_configured",
|
|
490
|
+
query_expansion: {
|
|
491
|
+
enabled: false,
|
|
492
|
+
provider: ""
|
|
493
|
+
},
|
|
494
|
+
rerank: {
|
|
495
|
+
enabled: false,
|
|
496
|
+
model: "",
|
|
497
|
+
top_k: 20
|
|
498
|
+
}
|
|
456
499
|
},
|
|
457
500
|
providers: {
|
|
458
501
|
openai: {
|
|
@@ -482,6 +525,7 @@ var SETTINGS_DEFAULTS = {
|
|
|
482
525
|
},
|
|
483
526
|
vector_store: {
|
|
484
527
|
adapter: "",
|
|
528
|
+
collection_name: "pm_items",
|
|
485
529
|
qdrant: {
|
|
486
530
|
url: "",
|
|
487
531
|
api_key: ""
|
|
@@ -588,7 +632,14 @@ function resolvePmRoot(cwd, cliPath) {
|
|
|
588
632
|
const envPath = process.env.PM_PATH;
|
|
589
633
|
const explicitPath = cliPath?.trim() || envPath?.trim();
|
|
590
634
|
if (explicitPath) {
|
|
591
|
-
|
|
635
|
+
const resolved = path4.resolve(cwd, explicitPath);
|
|
636
|
+
if (!pathExists2(getSettingsPath(resolved))) {
|
|
637
|
+
const nestedRoot = path4.join(resolved, PM_DIRNAME);
|
|
638
|
+
if (pathExists2(getSettingsPath(nestedRoot))) {
|
|
639
|
+
return nestedRoot;
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
return resolved;
|
|
592
643
|
}
|
|
593
644
|
const discoveredRoot = discoverPmRootFromAncestors(cwd);
|
|
594
645
|
if (discoveredRoot) {
|
|
@@ -606,12 +657,34 @@ function getSettingsPath(pmRoot) {
|
|
|
606
657
|
return path4.join(pmRoot, SETTINGS_FILENAME);
|
|
607
658
|
}
|
|
608
659
|
function deriveDefaultTypeFolder(type) {
|
|
609
|
-
const normalized = type
|
|
660
|
+
const normalized = toSlugToken(type);
|
|
610
661
|
if (normalized.length === 0) {
|
|
611
662
|
return "items";
|
|
612
663
|
}
|
|
613
664
|
return normalized.endsWith("s") ? normalized : `${normalized}s`;
|
|
614
665
|
}
|
|
666
|
+
function toSlugToken(value) {
|
|
667
|
+
const trimmed = value.trim().toLowerCase();
|
|
668
|
+
let slug = "";
|
|
669
|
+
let pendingDash = false;
|
|
670
|
+
for (const character of trimmed) {
|
|
671
|
+
const code = character.charCodeAt(0);
|
|
672
|
+
const isAlpha = code >= 97 && code <= 122;
|
|
673
|
+
const isDigit = code >= 48 && code <= 57;
|
|
674
|
+
if (isAlpha || isDigit) {
|
|
675
|
+
if (pendingDash && slug.length > 0) {
|
|
676
|
+
slug += "-";
|
|
677
|
+
}
|
|
678
|
+
slug += character;
|
|
679
|
+
pendingDash = false;
|
|
680
|
+
continue;
|
|
681
|
+
}
|
|
682
|
+
if (slug.length > 0) {
|
|
683
|
+
pendingDash = true;
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
return slug;
|
|
687
|
+
}
|
|
615
688
|
function getTypeDirPath(pmRoot, type, typeToFolder = TYPE_TO_FOLDER) {
|
|
616
689
|
const folder = typeToFolder[type] ?? deriveDefaultTypeFolder(type);
|
|
617
690
|
return path4.join(pmRoot, folder);
|
|
@@ -685,6 +758,24 @@ function toErrorMessage(error) {
|
|
|
685
758
|
}
|
|
686
759
|
return String(error);
|
|
687
760
|
}
|
|
761
|
+
function coerceFiniteNumber(value) {
|
|
762
|
+
const parsed = typeof value === "number" ? value : typeof value === "string" && value.trim().length > 0 ? Number(value.trim()) : Number.NaN;
|
|
763
|
+
return Number.isFinite(parsed) ? parsed : null;
|
|
764
|
+
}
|
|
765
|
+
function coercePositiveInteger(value) {
|
|
766
|
+
const parsed = coerceFiniteNumber(value);
|
|
767
|
+
if (parsed === null || parsed <= 0 || !Number.isInteger(parsed)) {
|
|
768
|
+
return null;
|
|
769
|
+
}
|
|
770
|
+
return parsed;
|
|
771
|
+
}
|
|
772
|
+
function coerceNumberInRange(value, min, max) {
|
|
773
|
+
const parsed = coerceFiniteNumber(value);
|
|
774
|
+
if (parsed === null || parsed < min || parsed > max) {
|
|
775
|
+
return null;
|
|
776
|
+
}
|
|
777
|
+
return parsed;
|
|
778
|
+
}
|
|
688
779
|
function asRecordOrNull(value) {
|
|
689
780
|
if (typeof value !== "object" || value === null || Array.isArray(value)) {
|
|
690
781
|
return null;
|
|
@@ -2003,7 +2094,7 @@ async function listExtensionDirectories(extensionsRoot) {
|
|
|
2003
2094
|
}
|
|
2004
2095
|
}
|
|
2005
2096
|
function summarizeCandidate(candidate) {
|
|
2006
|
-
|
|
2097
|
+
const summary = {
|
|
2007
2098
|
layer: candidate.layer,
|
|
2008
2099
|
directory: candidate.directory,
|
|
2009
2100
|
manifest_path: candidate.manifest_path,
|
|
@@ -2025,6 +2116,41 @@ function summarizeCandidate(candidate) {
|
|
|
2025
2116
|
commands: [...candidate.manifest.activation.commands ?? []]
|
|
2026
2117
|
} : void 0
|
|
2027
2118
|
};
|
|
2119
|
+
if (candidate.source_package) {
|
|
2120
|
+
summary.source_package = candidate.source_package;
|
|
2121
|
+
}
|
|
2122
|
+
return summary;
|
|
2123
|
+
}
|
|
2124
|
+
function normalizeManagedSourcePackage(value) {
|
|
2125
|
+
return typeof value === "string" && value.trim().length > 0 ? value.trim() : void 0;
|
|
2126
|
+
}
|
|
2127
|
+
async function readManagedExtensionSourcePackages(extensionsRoot) {
|
|
2128
|
+
const packages = /* @__PURE__ */ new Map();
|
|
2129
|
+
try {
|
|
2130
|
+
const parsed = JSON.parse(await fs3.readFile(path5.join(extensionsRoot, ".managed-extensions.json"), "utf8"));
|
|
2131
|
+
if (typeof parsed !== "object" || parsed === null || !Array.isArray(parsed.entries)) {
|
|
2132
|
+
return packages;
|
|
2133
|
+
}
|
|
2134
|
+
for (const entry of parsed.entries) {
|
|
2135
|
+
if (typeof entry !== "object" || entry === null) {
|
|
2136
|
+
continue;
|
|
2137
|
+
}
|
|
2138
|
+
const record = entry;
|
|
2139
|
+
const sourcePackage = normalizeManagedSourcePackage(record.source?.package);
|
|
2140
|
+
if (!sourcePackage) {
|
|
2141
|
+
continue;
|
|
2142
|
+
}
|
|
2143
|
+
if (typeof record.directory === "string" && record.directory.trim().length > 0) {
|
|
2144
|
+
packages.set(`directory:${record.directory.trim()}`, sourcePackage);
|
|
2145
|
+
}
|
|
2146
|
+
if (typeof record.name === "string" && record.name.trim().length > 0) {
|
|
2147
|
+
packages.set(`name:${record.name.trim()}`, sourcePackage);
|
|
2148
|
+
}
|
|
2149
|
+
}
|
|
2150
|
+
} catch {
|
|
2151
|
+
return packages;
|
|
2152
|
+
}
|
|
2153
|
+
return packages;
|
|
2028
2154
|
}
|
|
2029
2155
|
function sortCandidates(candidates) {
|
|
2030
2156
|
return [...candidates].sort((left, right) => {
|
|
@@ -2055,8 +2181,9 @@ async function scanExtensionLayer(layer, extensionsRoot, enabled, disabled) {
|
|
|
2055
2181
|
const warnings = [];
|
|
2056
2182
|
const candidates = [];
|
|
2057
2183
|
const directories = await listExtensionDirectories(extensionsRoot);
|
|
2184
|
+
const managedSourcePackages = await readManagedExtensionSourcePackages(extensionsRoot);
|
|
2058
2185
|
for (const directory of directories) {
|
|
2059
|
-
const scanned = await scanExtensionDirectory(layer, extensionsRoot, directory, enabled, disabled);
|
|
2186
|
+
const scanned = await scanExtensionDirectory(layer, extensionsRoot, directory, enabled, disabled, managedSourcePackages);
|
|
2060
2187
|
diagnostics.push(scanned.diagnostic);
|
|
2061
2188
|
warnings.push(...scanned.warnings);
|
|
2062
2189
|
if (scanned.candidate) {
|
|
@@ -2065,7 +2192,7 @@ async function scanExtensionLayer(layer, extensionsRoot, enabled, disabled) {
|
|
|
2065
2192
|
}
|
|
2066
2193
|
return { diagnostics, warnings, candidates };
|
|
2067
2194
|
}
|
|
2068
|
-
async function scanExtensionDirectory(layer, extensionsRoot, directory, enabled, disabled) {
|
|
2195
|
+
async function scanExtensionDirectory(layer, extensionsRoot, directory, enabled, disabled, managedSourcePackages) {
|
|
2069
2196
|
const extensionDir = path5.join(extensionsRoot, directory);
|
|
2070
2197
|
const manifestPath = path5.join(extensionDir, "manifest.json");
|
|
2071
2198
|
if (!await pathExists(manifestPath)) {
|
|
@@ -2137,6 +2264,7 @@ async function scanExtensionDirectory(layer, extensionsRoot, directory, enabled,
|
|
|
2137
2264
|
extensionWarnings.push(pmMaxVersionCompatibility.warning);
|
|
2138
2265
|
}
|
|
2139
2266
|
const extensionReady = entryWithinDirectory && entryExists && pmVersionCompatibility.allowed && pmMaxVersionCompatibility.allowed;
|
|
2267
|
+
const sourcePackage = managedSourcePackages.get(`directory:${directory}`) ?? managedSourcePackages.get(`name:${manifest.name}`);
|
|
2140
2268
|
return {
|
|
2141
2269
|
diagnostic: {
|
|
2142
2270
|
layer,
|
|
@@ -2156,7 +2284,8 @@ async function scanExtensionDirectory(layer, extensionsRoot, directory, enabled,
|
|
|
2156
2284
|
directory,
|
|
2157
2285
|
manifest_path: manifestPath,
|
|
2158
2286
|
entry_path: entryPath,
|
|
2159
|
-
manifest
|
|
2287
|
+
manifest,
|
|
2288
|
+
source_package: sourcePackage
|
|
2160
2289
|
} : null
|
|
2161
2290
|
};
|
|
2162
2291
|
}
|
|
@@ -2868,6 +2997,7 @@ function createExtensionApi(extension, hooks, commands, parsers, preflight, serv
|
|
|
2868
2997
|
const registration = {
|
|
2869
2998
|
layer: extension.layer,
|
|
2870
2999
|
name: extension.name,
|
|
3000
|
+
source_package: extension.source_package,
|
|
2871
3001
|
command: normalizedCommand,
|
|
2872
3002
|
action,
|
|
2873
3003
|
examples,
|
|
@@ -3047,6 +3177,7 @@ function createExtensionApi(extension, hooks, commands, parsers, preflight, serv
|
|
|
3047
3177
|
const registration = {
|
|
3048
3178
|
layer: extension.layer,
|
|
3049
3179
|
name: extension.name,
|
|
3180
|
+
source_package: extension.source_package,
|
|
3050
3181
|
command: commandPath,
|
|
3051
3182
|
action,
|
|
3052
3183
|
examples,
|
|
@@ -4134,10 +4265,7 @@ async function loadRuntimeSchemaFromOptionalFiles(pmRoot, schema) {
|
|
|
4134
4265
|
const statusFilePath = filePathForSchemaSection(pmRoot, normalizedSchema.files.statuses, DEFAULT_RUNTIME_SCHEMA_FILE_PATHS.statuses);
|
|
4135
4266
|
const fieldsFilePath = filePathForSchemaSection(pmRoot, normalizedSchema.files.fields, DEFAULT_RUNTIME_SCHEMA_FILE_PATHS.fields);
|
|
4136
4267
|
const workflowsFilePath = filePathForSchemaSection(pmRoot, normalizedSchema.files.workflows, DEFAULT_RUNTIME_SCHEMA_FILE_PATHS.workflows);
|
|
4137
|
-
|
|
4138
|
-
return void 0;
|
|
4139
|
-
})();
|
|
4140
|
-
let loadedTypeDefinitions = typeDefinitionsFromFile;
|
|
4268
|
+
let loadedTypeDefinitions;
|
|
4141
4269
|
let loadedStatuses;
|
|
4142
4270
|
let loadedFields;
|
|
4143
4271
|
let loadedWorkflow;
|
|
@@ -4641,6 +4769,7 @@ var governanceSettings = vOptional(vObject({
|
|
|
4641
4769
|
ownership_enforcement: vOptional(vLiteral("none", "warn", "strict")),
|
|
4642
4770
|
create_mode_default: vOptional(vLiteral("progressive", "strict")),
|
|
4643
4771
|
close_validation_default: vOptional(vLiteral("off", "warn", "strict")),
|
|
4772
|
+
require_close_reason: vOptional(vBoolean),
|
|
4644
4773
|
parent_reference: vOptional(vLiteral("warn", "strict_error")),
|
|
4645
4774
|
metadata_profile: vOptional(vLiteral("core", "strict", "custom")),
|
|
4646
4775
|
force_required_for_stale_lock: vOptional(vBoolean),
|
|
@@ -4747,11 +4876,21 @@ var settingsCheck = vObject({
|
|
|
4747
4876
|
hybrid_semantic_weight: vOptional(vNumber()),
|
|
4748
4877
|
max_results: vNumber({ int: true }),
|
|
4749
4878
|
embedding_model: vString,
|
|
4879
|
+
embedding_corpus_max_characters: vOptional(vNumber()),
|
|
4750
4880
|
embedding_batch_size: vNumber({ int: true }),
|
|
4751
4881
|
embedding_timeout_ms: vOptional(vNumber({ int: true })),
|
|
4752
4882
|
scanner_max_batch_retries: vNumber({ int: true }),
|
|
4753
4883
|
provider: vOptional(vString),
|
|
4754
|
-
mutation_refresh_policy: vOptional(vLiteral("cache_only", "semantic_configured", "semantic_auto"))
|
|
4884
|
+
mutation_refresh_policy: vOptional(vLiteral("cache_only", "semantic_configured", "semantic_auto")),
|
|
4885
|
+
query_expansion: vOptional(vObject({
|
|
4886
|
+
enabled: vOptional(vBoolean),
|
|
4887
|
+
provider: vOptional(vString)
|
|
4888
|
+
})),
|
|
4889
|
+
rerank: vOptional(vObject({
|
|
4890
|
+
enabled: vOptional(vBoolean),
|
|
4891
|
+
model: vOptional(vString),
|
|
4892
|
+
top_k: vOptional(vNumber({ int: true, positive: true }))
|
|
4893
|
+
}))
|
|
4755
4894
|
}),
|
|
4756
4895
|
providers: vObject({
|
|
4757
4896
|
openai: vObject({ base_url: vString, api_key: vString, model: vString }),
|
|
@@ -4759,6 +4898,7 @@ var settingsCheck = vObject({
|
|
|
4759
4898
|
}),
|
|
4760
4899
|
vector_store: vObject({
|
|
4761
4900
|
adapter: vOptional(vString),
|
|
4901
|
+
collection_name: vOptional(vString),
|
|
4762
4902
|
qdrant: vObject({ url: vString, api_key: vString }),
|
|
4763
4903
|
lancedb: vObject({ path: vString })
|
|
4764
4904
|
})
|
|
@@ -4855,6 +4995,7 @@ function normalizeItemTypeDefinition(definition, options = {}) {
|
|
|
4855
4995
|
// dist/core/store/settings.js
|
|
4856
4996
|
var SETTINGS_WRITE_OP = "settings:write";
|
|
4857
4997
|
var SETTINGS_PERSIST_SOURCE_SYMBOL = /* @__PURE__ */ Symbol("pm.settings.persist_source");
|
|
4998
|
+
var MAX_VECTOR_STORE_COLLECTION_NAME_LENGTH = 128;
|
|
4858
4999
|
function resolveGovernanceKnobsFromPreset(preset) {
|
|
4859
5000
|
return structuredClone(GOVERNANCE_PRESET_DEFAULTS[preset]);
|
|
4860
5001
|
}
|
|
@@ -4872,6 +5013,9 @@ function withGovernanceExtras(base, governance) {
|
|
|
4872
5013
|
if (governance.workflow_enforcement === "off" || governance.workflow_enforcement === "warn" || governance.workflow_enforcement === "strict") {
|
|
4873
5014
|
base.workflow_enforcement = governance.workflow_enforcement;
|
|
4874
5015
|
}
|
|
5016
|
+
if (governance.require_close_reason === false) {
|
|
5017
|
+
base.require_close_reason = false;
|
|
5018
|
+
}
|
|
4875
5019
|
return base;
|
|
4876
5020
|
}
|
|
4877
5021
|
function normalizeGovernanceForPersist(governance) {
|
|
@@ -4892,32 +5036,44 @@ function normalizeGovernanceForPersist(governance) {
|
|
|
4892
5036
|
}
|
|
4893
5037
|
function resolveGovernanceExtras(rawGovernance) {
|
|
4894
5038
|
const createDefaultType = typeof rawGovernance.create_default_type === "string" ? rawGovernance.create_default_type.trim() : void 0;
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
|
|
4898
|
-
}
|
|
5039
|
+
const extras = {};
|
|
5040
|
+
if (createDefaultType && createDefaultType.length > 0) {
|
|
5041
|
+
extras.create_default_type = createDefaultType;
|
|
5042
|
+
}
|
|
5043
|
+
if (rawGovernance.workflow_enforcement === "off" || rawGovernance.workflow_enforcement === "warn" || rawGovernance.workflow_enforcement === "strict") {
|
|
5044
|
+
extras.workflow_enforcement = rawGovernance.workflow_enforcement;
|
|
5045
|
+
}
|
|
5046
|
+
if (typeof rawGovernance.require_close_reason === "boolean") {
|
|
5047
|
+
extras.require_close_reason = rawGovernance.require_close_reason;
|
|
5048
|
+
}
|
|
5049
|
+
return extras;
|
|
4899
5050
|
}
|
|
4900
5051
|
function resolveGovernanceKnobs(settings) {
|
|
4901
5052
|
const rawGovernance = settings.governance ?? {};
|
|
4902
5053
|
const preset = normalizeGovernancePreset(rawGovernance.preset);
|
|
4903
5054
|
const extras = resolveGovernanceExtras(rawGovernance);
|
|
4904
5055
|
if (preset === "custom") {
|
|
4905
|
-
const
|
|
5056
|
+
const baseline2 = resolveGovernanceKnobsFromPreset("default");
|
|
5057
|
+
const requireCloseReason2 = extras.require_close_reason ?? baseline2.require_close_reason;
|
|
4906
5058
|
return {
|
|
4907
5059
|
preset,
|
|
4908
|
-
ownership_enforcement: rawGovernance.ownership_enforcement ??
|
|
4909
|
-
create_mode_default: rawGovernance.create_mode_default ??
|
|
4910
|
-
close_validation_default: rawGovernance.close_validation_default ??
|
|
4911
|
-
parent_reference: rawGovernance.parent_reference ??
|
|
4912
|
-
metadata_profile: rawGovernance.metadata_profile ??
|
|
4913
|
-
force_required_for_stale_lock: rawGovernance.force_required_for_stale_lock ??
|
|
4914
|
-
...extras
|
|
5060
|
+
ownership_enforcement: rawGovernance.ownership_enforcement ?? baseline2.ownership_enforcement,
|
|
5061
|
+
create_mode_default: rawGovernance.create_mode_default ?? baseline2.create_mode_default,
|
|
5062
|
+
close_validation_default: rawGovernance.close_validation_default ?? baseline2.close_validation_default,
|
|
5063
|
+
parent_reference: rawGovernance.parent_reference ?? baseline2.parent_reference,
|
|
5064
|
+
metadata_profile: rawGovernance.metadata_profile ?? baseline2.metadata_profile,
|
|
5065
|
+
force_required_for_stale_lock: rawGovernance.force_required_for_stale_lock ?? baseline2.force_required_for_stale_lock,
|
|
5066
|
+
...extras,
|
|
5067
|
+
require_close_reason: requireCloseReason2
|
|
4915
5068
|
};
|
|
4916
5069
|
}
|
|
5070
|
+
const baseline = resolveGovernanceKnobsFromPreset(preset);
|
|
5071
|
+
const requireCloseReason = extras.require_close_reason ?? baseline.require_close_reason;
|
|
4917
5072
|
return {
|
|
4918
5073
|
preset,
|
|
4919
|
-
...
|
|
4920
|
-
...extras
|
|
5074
|
+
...baseline,
|
|
5075
|
+
...extras,
|
|
5076
|
+
require_close_reason: requireCloseReason
|
|
4921
5077
|
};
|
|
4922
5078
|
}
|
|
4923
5079
|
function cloneDefaults() {
|
|
@@ -4929,6 +5085,44 @@ function normalizeSearchMutationRefreshPolicy(value) {
|
|
|
4929
5085
|
}
|
|
4930
5086
|
return SETTINGS_DEFAULTS.search.mutation_refresh_policy;
|
|
4931
5087
|
}
|
|
5088
|
+
function normalizeSearchQueryExpansionEnabled(value) {
|
|
5089
|
+
if (typeof value === "boolean") {
|
|
5090
|
+
return value;
|
|
5091
|
+
}
|
|
5092
|
+
return SETTINGS_DEFAULTS.search.query_expansion.enabled;
|
|
5093
|
+
}
|
|
5094
|
+
function normalizeSearchQueryExpansionProvider(value) {
|
|
5095
|
+
if (typeof value !== "string") {
|
|
5096
|
+
return SETTINGS_DEFAULTS.search.query_expansion.provider;
|
|
5097
|
+
}
|
|
5098
|
+
return value.trim();
|
|
5099
|
+
}
|
|
5100
|
+
function normalizeSearchRerankEnabled(value) {
|
|
5101
|
+
if (typeof value === "boolean") {
|
|
5102
|
+
return value;
|
|
5103
|
+
}
|
|
5104
|
+
return SETTINGS_DEFAULTS.search.rerank.enabled;
|
|
5105
|
+
}
|
|
5106
|
+
function normalizeSearchRerankModel(value) {
|
|
5107
|
+
if (typeof value !== "string") {
|
|
5108
|
+
return SETTINGS_DEFAULTS.search.rerank.model;
|
|
5109
|
+
}
|
|
5110
|
+
return value.trim();
|
|
5111
|
+
}
|
|
5112
|
+
function normalizeSearchRerankTopK(value) {
|
|
5113
|
+
if (typeof value === "number" && Number.isFinite(value) && Number.isInteger(value) && value > 0) {
|
|
5114
|
+
return value;
|
|
5115
|
+
}
|
|
5116
|
+
return SETTINGS_DEFAULTS.search.rerank.top_k;
|
|
5117
|
+
}
|
|
5118
|
+
function normalizeVectorStoreCollectionName(value) {
|
|
5119
|
+
if (typeof value !== "string") {
|
|
5120
|
+
return SETTINGS_DEFAULTS.vector_store.collection_name;
|
|
5121
|
+
}
|
|
5122
|
+
const sanitized = value.trim().replaceAll(/[^a-zA-Z0-9_-]/g, "_");
|
|
5123
|
+
const truncated = sanitized.slice(0, MAX_VECTOR_STORE_COLLECTION_NAME_LENGTH);
|
|
5124
|
+
return truncated.length > 0 ? truncated : SETTINGS_DEFAULTS.vector_store.collection_name;
|
|
5125
|
+
}
|
|
4932
5126
|
function buildSettingsPersistSourceSnapshot(parsedSettings, runtimeSettings) {
|
|
4933
5127
|
const sourceSchema = parsedSettings.schema;
|
|
4934
5128
|
const sourceStatuses = Array.isArray(sourceSchema?.statuses) ? sourceSchema?.statuses : void 0;
|
|
@@ -5219,7 +5413,20 @@ function mergeSettings(settings) {
|
|
|
5219
5413
|
search: {
|
|
5220
5414
|
...defaults.search,
|
|
5221
5415
|
...settings.search,
|
|
5222
|
-
mutation_refresh_policy: normalizeSearchMutationRefreshPolicy(settings.search?.mutation_refresh_policy)
|
|
5416
|
+
mutation_refresh_policy: normalizeSearchMutationRefreshPolicy(settings.search?.mutation_refresh_policy),
|
|
5417
|
+
query_expansion: {
|
|
5418
|
+
...defaults.search.query_expansion,
|
|
5419
|
+
...settings.search?.query_expansion ?? {},
|
|
5420
|
+
enabled: normalizeSearchQueryExpansionEnabled(settings.search?.query_expansion?.enabled),
|
|
5421
|
+
provider: normalizeSearchQueryExpansionProvider(settings.search?.query_expansion?.provider)
|
|
5422
|
+
},
|
|
5423
|
+
rerank: {
|
|
5424
|
+
...defaults.search.rerank,
|
|
5425
|
+
...settings.search?.rerank ?? {},
|
|
5426
|
+
enabled: normalizeSearchRerankEnabled(settings.search?.rerank?.enabled),
|
|
5427
|
+
model: normalizeSearchRerankModel(settings.search?.rerank?.model),
|
|
5428
|
+
top_k: normalizeSearchRerankTopK(settings.search?.rerank?.top_k)
|
|
5429
|
+
}
|
|
5223
5430
|
},
|
|
5224
5431
|
providers: {
|
|
5225
5432
|
openai: { ...defaults.providers.openai, ...settings.providers.openai },
|
|
@@ -5227,6 +5434,7 @@ function mergeSettings(settings) {
|
|
|
5227
5434
|
},
|
|
5228
5435
|
vector_store: {
|
|
5229
5436
|
adapter: settings.vector_store.adapter ?? defaults.vector_store.adapter,
|
|
5437
|
+
collection_name: normalizeVectorStoreCollectionName(settings.vector_store.collection_name),
|
|
5230
5438
|
qdrant: { ...defaults.vector_store.qdrant, ...settings.vector_store.qdrant },
|
|
5231
5439
|
lancedb: { ...defaults.vector_store.lancedb, ...settings.vector_store.lancedb }
|
|
5232
5440
|
}
|
|
@@ -5263,7 +5471,20 @@ function serializeSettings(settings, options = {}) {
|
|
|
5263
5471
|
search: {
|
|
5264
5472
|
...SETTINGS_DEFAULTS.search,
|
|
5265
5473
|
...settings.search,
|
|
5266
|
-
mutation_refresh_policy: normalizeSearchMutationRefreshPolicy(settings.search?.mutation_refresh_policy)
|
|
5474
|
+
mutation_refresh_policy: normalizeSearchMutationRefreshPolicy(settings.search?.mutation_refresh_policy),
|
|
5475
|
+
query_expansion: {
|
|
5476
|
+
...SETTINGS_DEFAULTS.search.query_expansion,
|
|
5477
|
+
...settings.search?.query_expansion ?? {},
|
|
5478
|
+
enabled: normalizeSearchQueryExpansionEnabled(settings.search?.query_expansion?.enabled),
|
|
5479
|
+
provider: normalizeSearchQueryExpansionProvider(settings.search?.query_expansion?.provider)
|
|
5480
|
+
},
|
|
5481
|
+
rerank: {
|
|
5482
|
+
...SETTINGS_DEFAULTS.search.rerank,
|
|
5483
|
+
...settings.search?.rerank ?? {},
|
|
5484
|
+
enabled: normalizeSearchRerankEnabled(settings.search?.rerank?.enabled),
|
|
5485
|
+
model: normalizeSearchRerankModel(settings.search?.rerank?.model),
|
|
5486
|
+
top_k: normalizeSearchRerankTopK(settings.search?.rerank?.top_k)
|
|
5487
|
+
}
|
|
5267
5488
|
},
|
|
5268
5489
|
context: {
|
|
5269
5490
|
default_depth: settings.context?.default_depth ?? SETTINGS_DEFAULTS.context.default_depth,
|
|
@@ -5278,6 +5499,13 @@ function serializeSettings(settings, options = {}) {
|
|
|
5278
5499
|
enabled: normalizeStringList2(settings.extensions?.enabled),
|
|
5279
5500
|
disabled: normalizeStringList2(settings.extensions?.disabled),
|
|
5280
5501
|
policy: normalizeExtensionPolicySettings(settings.extensions?.policy)
|
|
5502
|
+
},
|
|
5503
|
+
vector_store: {
|
|
5504
|
+
...settings.vector_store ?? {},
|
|
5505
|
+
adapter: settings.vector_store?.adapter ?? SETTINGS_DEFAULTS.vector_store.adapter,
|
|
5506
|
+
collection_name: normalizeVectorStoreCollectionName(settings.vector_store?.collection_name),
|
|
5507
|
+
qdrant: { ...settings.vector_store?.qdrant ?? {} },
|
|
5508
|
+
lancedb: { ...settings.vector_store?.lancedb ?? {} }
|
|
5281
5509
|
}
|
|
5282
5510
|
};
|
|
5283
5511
|
const ordered = orderObject({
|
|
@@ -5323,6 +5551,7 @@ function serializeSettings(settings, options = {}) {
|
|
|
5323
5551
|
"ownership_enforcement",
|
|
5324
5552
|
"create_mode_default",
|
|
5325
5553
|
"close_validation_default",
|
|
5554
|
+
"require_close_reason",
|
|
5326
5555
|
"parent_reference",
|
|
5327
5556
|
"metadata_profile",
|
|
5328
5557
|
"force_required_for_stale_lock",
|
|
@@ -5408,16 +5637,26 @@ function serializeSettings(settings, options = {}) {
|
|
|
5408
5637
|
"hybrid_semantic_weight",
|
|
5409
5638
|
"max_results",
|
|
5410
5639
|
"embedding_model",
|
|
5640
|
+
"embedding_corpus_max_characters",
|
|
5411
5641
|
"embedding_batch_size",
|
|
5412
5642
|
"embedding_timeout_ms",
|
|
5413
5643
|
"scanner_max_batch_retries",
|
|
5414
5644
|
"provider",
|
|
5415
|
-
"mutation_refresh_policy"
|
|
5645
|
+
"mutation_refresh_policy",
|
|
5646
|
+
"query_expansion",
|
|
5647
|
+
"rerank"
|
|
5416
5648
|
]);
|
|
5649
|
+
ordered.search.query_expansion = orderObject(ordered.search.query_expansion ?? {}, ["enabled", "provider"]);
|
|
5650
|
+
ordered.search.rerank = orderObject(ordered.search.rerank ?? {}, ["enabled", "model", "top_k"]);
|
|
5417
5651
|
ordered.providers = orderObject(ordered.providers, ["openai", "ollama"]);
|
|
5418
5652
|
ordered.providers.openai = orderObject(ordered.providers.openai ?? {}, ["base_url", "api_key", "model"]);
|
|
5419
5653
|
ordered.providers.ollama = orderObject(ordered.providers.ollama ?? {}, ["base_url", "model"]);
|
|
5420
|
-
ordered.vector_store = orderObject(ordered.vector_store, [
|
|
5654
|
+
ordered.vector_store = orderObject(ordered.vector_store, [
|
|
5655
|
+
"adapter",
|
|
5656
|
+
"collection_name",
|
|
5657
|
+
"qdrant",
|
|
5658
|
+
"lancedb"
|
|
5659
|
+
]);
|
|
5421
5660
|
ordered.vector_store.qdrant = orderObject(ordered.vector_store.qdrant ?? {}, ["url", "api_key"]);
|
|
5422
5661
|
ordered.vector_store.lancedb = orderObject(ordered.vector_store.lancedb ?? {}, ["path"]);
|
|
5423
5662
|
return `${JSON.stringify(ordered, null, 2)}
|
|
@@ -5497,6 +5736,7 @@ export {
|
|
|
5497
5736
|
removeFileIfExists,
|
|
5498
5737
|
isPathWithinDirectory,
|
|
5499
5738
|
resolvePmPackageRootFromModule,
|
|
5739
|
+
resolvePmCliVersion,
|
|
5500
5740
|
KNOWN_EXTENSION_CAPABILITIES,
|
|
5501
5741
|
EXTENSION_CAPABILITY_CONTRACT,
|
|
5502
5742
|
KNOWN_EXTENSION_POLICY_MODES,
|
|
@@ -5539,6 +5779,8 @@ export {
|
|
|
5539
5779
|
trimTrailingSlashes,
|
|
5540
5780
|
isFiniteNumberArray,
|
|
5541
5781
|
toErrorMessage,
|
|
5782
|
+
coercePositiveInteger,
|
|
5783
|
+
coerceNumberInRange,
|
|
5542
5784
|
asRecordOrNull,
|
|
5543
5785
|
parseUnknownExtensionCapabilityWarning,
|
|
5544
5786
|
parseLegacyExtensionCapabilityAliasWarning,
|
|
@@ -5617,6 +5859,6 @@ export {
|
|
|
5617
5859
|
readSettings,
|
|
5618
5860
|
writeSettings
|
|
5619
5861
|
};
|
|
5620
|
-
//# sourceMappingURL=chunk-
|
|
5862
|
+
//# sourceMappingURL=chunk-YJAKN2N2.js.map
|
|
5621
5863
|
|
|
5622
|
-
//# debugId=
|
|
5864
|
+
//# debugId=0b9873ce-4d2c-5248-a389-357401ce7cbc
|