@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
|
@@ -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]="
|
|
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]="1eb1787d-185d-5d6c-9933-0f8e2635576f")}catch(e){}}();
|
|
3
3
|
import {
|
|
4
4
|
collectStaleVectorizationIds
|
|
5
5
|
} from "./chunk-IUV734HF.js";
|
|
@@ -13,40 +13,42 @@ import {
|
|
|
13
13
|
resolveEmbeddingProviders,
|
|
14
14
|
resolveSettingsWithSemanticRuntimeDefaults,
|
|
15
15
|
resolveVectorStores
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-PQDH3S54.js";
|
|
17
17
|
import {
|
|
18
18
|
collectRuntimeFilterValues,
|
|
19
19
|
matchesRuntimeFilters,
|
|
20
20
|
parseStatusFilterCsv
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-SDLEYY6A.js";
|
|
22
22
|
import {
|
|
23
23
|
parseLimit,
|
|
24
24
|
parsePriority,
|
|
25
25
|
parseType
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-NDSMKB2I.js";
|
|
27
27
|
import "./chunk-XSLQSXAH.js";
|
|
28
28
|
import {
|
|
29
29
|
collectRegisteredItemFieldNames,
|
|
30
30
|
listAllDocumentCandidatesCached,
|
|
31
31
|
listAllFrontMatter,
|
|
32
32
|
toItemRecord
|
|
33
|
-
} from "./chunk-
|
|
34
|
-
import "./chunk-
|
|
33
|
+
} from "./chunk-ODN53S6H.js";
|
|
34
|
+
import "./chunk-4TI3532H.js";
|
|
35
35
|
import {
|
|
36
36
|
isTerminalStatus,
|
|
37
37
|
parseItemDocument
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-XEKZCBCS.js";
|
|
39
39
|
import {
|
|
40
40
|
resolveItemTypeRegistry
|
|
41
|
-
} from "./chunk-
|
|
41
|
+
} from "./chunk-Z2HXAFFH.js";
|
|
42
42
|
import {
|
|
43
43
|
compareTimestampStrings,
|
|
44
44
|
nowIso,
|
|
45
45
|
resolveIsoOrRelative
|
|
46
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-XZS4MV37.js";
|
|
47
47
|
import {
|
|
48
48
|
EXIT_CODE,
|
|
49
49
|
PmCliError,
|
|
50
|
+
coerceNumberInRange,
|
|
51
|
+
coercePositiveInteger,
|
|
50
52
|
getActiveExtensionRegistrations,
|
|
51
53
|
getItemPath,
|
|
52
54
|
getSettingsPath,
|
|
@@ -58,8 +60,9 @@ import {
|
|
|
58
60
|
resolveRuntimeFieldRegistry,
|
|
59
61
|
resolveRuntimeStatusRegistry,
|
|
60
62
|
runActiveOnReadHooks,
|
|
63
|
+
toNonEmptyString,
|
|
61
64
|
toNonEmptyStringOrUndefined
|
|
62
|
-
} from "./chunk-
|
|
65
|
+
} from "./chunk-YJAKN2N2.js";
|
|
63
66
|
|
|
64
67
|
// dist/cli/commands/search.js
|
|
65
68
|
import fs from "node:fs/promises";
|
|
@@ -104,6 +107,205 @@ function tokenizeAlphaNumeric(value) {
|
|
|
104
107
|
return normalizeLowercaseWhitespace(value).split(/[^a-z0-9]+/).filter((token) => token.length > 0);
|
|
105
108
|
}
|
|
106
109
|
|
|
110
|
+
// dist/core/search/relevance.js
|
|
111
|
+
var DEFAULT_QUERY_EXPANSION_MAX_QUERIES = 4;
|
|
112
|
+
var DEFAULT_RERANK_TOP_K = 20;
|
|
113
|
+
var MAX_RERANK_TOP_K = 200;
|
|
114
|
+
var QUERY_EXPANSION_STOP_WORDS = /* @__PURE__ */ new Set([
|
|
115
|
+
"a",
|
|
116
|
+
"an",
|
|
117
|
+
"and",
|
|
118
|
+
"for",
|
|
119
|
+
"from",
|
|
120
|
+
"in",
|
|
121
|
+
"into",
|
|
122
|
+
"of",
|
|
123
|
+
"on",
|
|
124
|
+
"or",
|
|
125
|
+
"the",
|
|
126
|
+
"to",
|
|
127
|
+
"with"
|
|
128
|
+
]);
|
|
129
|
+
function dedupeQueries(values, limit) {
|
|
130
|
+
const deduped = [];
|
|
131
|
+
const seen = /* @__PURE__ */ new Set();
|
|
132
|
+
for (const entry of values) {
|
|
133
|
+
const normalized = entry.trim().replaceAll(/\s+/g, " ");
|
|
134
|
+
if (normalized.length === 0) {
|
|
135
|
+
continue;
|
|
136
|
+
}
|
|
137
|
+
const dedupeKey = normalized.toLowerCase();
|
|
138
|
+
if (seen.has(dedupeKey)) {
|
|
139
|
+
continue;
|
|
140
|
+
}
|
|
141
|
+
seen.add(dedupeKey);
|
|
142
|
+
deduped.push(normalized);
|
|
143
|
+
if (deduped.length >= limit) {
|
|
144
|
+
break;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
return deduped;
|
|
148
|
+
}
|
|
149
|
+
function singularizeSimple(token) {
|
|
150
|
+
const normalizedToken = token.toLowerCase();
|
|
151
|
+
if (normalizedToken.length > 4 && normalizedToken.endsWith("ies")) {
|
|
152
|
+
return `${normalizedToken.slice(0, -3)}y`;
|
|
153
|
+
}
|
|
154
|
+
if (normalizedToken.length > 4 && (normalizedToken.endsWith("ches") || normalizedToken.endsWith("shes") || normalizedToken.endsWith("xes") || normalizedToken.endsWith("zes") || normalizedToken.endsWith("sses"))) {
|
|
155
|
+
return normalizedToken.slice(0, -2);
|
|
156
|
+
}
|
|
157
|
+
if (normalizedToken.length > 3 && normalizedToken.endsWith("s") && !normalizedToken.endsWith("ss") && !normalizedToken.endsWith("us") && !normalizedToken.endsWith("is") && !normalizedToken.endsWith("as")) {
|
|
158
|
+
return normalizedToken.slice(0, -1);
|
|
159
|
+
}
|
|
160
|
+
return normalizedToken;
|
|
161
|
+
}
|
|
162
|
+
function pluralizeSimple(token) {
|
|
163
|
+
const normalizedToken = token.toLowerCase();
|
|
164
|
+
if (normalizedToken.length > 2 && (!normalizedToken.endsWith("s") || normalizedToken.endsWith("ss"))) {
|
|
165
|
+
if (normalizedToken.endsWith("y") && !/[aeiou]y$/u.test(normalizedToken)) {
|
|
166
|
+
return `${normalizedToken.slice(0, -1)}ies`;
|
|
167
|
+
}
|
|
168
|
+
if (normalizedToken.endsWith("ch") || normalizedToken.endsWith("sh") || normalizedToken.endsWith("x") || normalizedToken.endsWith("z") || normalizedToken.endsWith("ss")) {
|
|
169
|
+
return `${normalizedToken}es`;
|
|
170
|
+
}
|
|
171
|
+
return `${normalizedToken}s`;
|
|
172
|
+
}
|
|
173
|
+
return normalizedToken;
|
|
174
|
+
}
|
|
175
|
+
function buildDeterministicQueryExpansions(query, maxQueries = DEFAULT_QUERY_EXPANSION_MAX_QUERIES) {
|
|
176
|
+
const normalizedQuery = query.trim().replaceAll(/\s+/g, " ");
|
|
177
|
+
if (normalizedQuery.length === 0) {
|
|
178
|
+
return [];
|
|
179
|
+
}
|
|
180
|
+
const tokens = tokenizeAlphaNumeric(normalizedQuery);
|
|
181
|
+
if (tokens.length === 0) {
|
|
182
|
+
return [normalizedQuery];
|
|
183
|
+
}
|
|
184
|
+
const contentTokens = tokens.filter((token) => !QUERY_EXPANSION_STOP_WORDS.has(token.toLowerCase()));
|
|
185
|
+
const singularized = tokens.map((token) => singularizeSimple(token));
|
|
186
|
+
const pluralized = contentTokens.map((token) => pluralizeSimple(token));
|
|
187
|
+
return dedupeQueries([
|
|
188
|
+
normalizedQuery,
|
|
189
|
+
tokens.join(" "),
|
|
190
|
+
contentTokens.join(" "),
|
|
191
|
+
singularized.join(" "),
|
|
192
|
+
pluralized.join(" ")
|
|
193
|
+
], Math.max(1, maxQueries));
|
|
194
|
+
}
|
|
195
|
+
function normalizeQueryExpansionOutput(raw) {
|
|
196
|
+
const rawQueries = Array.isArray(raw) ? raw : raw?.queries;
|
|
197
|
+
if (!Array.isArray(rawQueries)) {
|
|
198
|
+
return [];
|
|
199
|
+
}
|
|
200
|
+
return dedupeQueries(rawQueries.filter((entry) => typeof entry === "string"), DEFAULT_QUERY_EXPANSION_MAX_QUERIES);
|
|
201
|
+
}
|
|
202
|
+
function mergeQueryExpansions(base, extra, maxQueries) {
|
|
203
|
+
return dedupeQueries([...base, ...extra], Math.max(1, maxQueries));
|
|
204
|
+
}
|
|
205
|
+
function resolveQueryExpansionConfig(settings, fallbackProviderName) {
|
|
206
|
+
const search = settings.search;
|
|
207
|
+
const queryExpansion = search?.query_expansion;
|
|
208
|
+
const configuredProvider = toNonEmptyString(queryExpansion?.provider);
|
|
209
|
+
return {
|
|
210
|
+
enabled: queryExpansion?.enabled === true,
|
|
211
|
+
provider: configuredProvider ?? fallbackProviderName,
|
|
212
|
+
max_queries: DEFAULT_QUERY_EXPANSION_MAX_QUERIES
|
|
213
|
+
};
|
|
214
|
+
}
|
|
215
|
+
function resolveRerankConfig(settings, fallbackModel) {
|
|
216
|
+
const search = settings.search;
|
|
217
|
+
const rerank = search?.rerank;
|
|
218
|
+
const configuredModel = toNonEmptyString(rerank?.model);
|
|
219
|
+
const configuredTopK = coercePositiveInteger(rerank?.top_k);
|
|
220
|
+
const normalizedTopK = configuredTopK ?? DEFAULT_RERANK_TOP_K;
|
|
221
|
+
return {
|
|
222
|
+
enabled: rerank?.enabled === true,
|
|
223
|
+
model: configuredModel ?? fallbackModel,
|
|
224
|
+
top_k: Math.min(MAX_RERANK_TOP_K, normalizedTopK)
|
|
225
|
+
};
|
|
226
|
+
}
|
|
227
|
+
function normalizeRerankOutput(raw) {
|
|
228
|
+
const rawHits = Array.isArray(raw) ? raw : raw?.hits;
|
|
229
|
+
if (!Array.isArray(rawHits)) {
|
|
230
|
+
return [];
|
|
231
|
+
}
|
|
232
|
+
const bestById = /* @__PURE__ */ new Map();
|
|
233
|
+
for (const entry of rawHits) {
|
|
234
|
+
if (typeof entry !== "object" || entry === null) {
|
|
235
|
+
continue;
|
|
236
|
+
}
|
|
237
|
+
const id = toNonEmptyString(entry.id);
|
|
238
|
+
const score = entry.score;
|
|
239
|
+
if (!id || typeof score !== "number" || !Number.isFinite(score)) {
|
|
240
|
+
continue;
|
|
241
|
+
}
|
|
242
|
+
const existing = bestById.get(id);
|
|
243
|
+
if (existing === void 0 || score > existing) {
|
|
244
|
+
bestById.set(id, score);
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
const normalized = [...bestById.entries()].map(([id, score]) => ({ id, score }));
|
|
248
|
+
normalized.sort((left, right) => {
|
|
249
|
+
if (left.score !== right.score) {
|
|
250
|
+
return right.score - left.score;
|
|
251
|
+
}
|
|
252
|
+
return left.id.localeCompare(right.id);
|
|
253
|
+
});
|
|
254
|
+
return normalized;
|
|
255
|
+
}
|
|
256
|
+
function dotProduct(left, right) {
|
|
257
|
+
const size = left.length;
|
|
258
|
+
let result = 0;
|
|
259
|
+
for (let index = 0; index < size; index += 1) {
|
|
260
|
+
result += left[index] * right[index];
|
|
261
|
+
}
|
|
262
|
+
return result;
|
|
263
|
+
}
|
|
264
|
+
function l2Norm(vector) {
|
|
265
|
+
let sumSquares = 0;
|
|
266
|
+
for (let index = 0; index < vector.length; index += 1) {
|
|
267
|
+
sumSquares += vector[index] * vector[index];
|
|
268
|
+
}
|
|
269
|
+
return Math.sqrt(sumSquares);
|
|
270
|
+
}
|
|
271
|
+
function cosineSimilarityWithKnownLeftNorm(left, right, leftNorm) {
|
|
272
|
+
if (!left || !right || left.length === 0 || right.length === 0 || left.length !== right.length) {
|
|
273
|
+
return 0;
|
|
274
|
+
}
|
|
275
|
+
const numerator = dotProduct(left, right);
|
|
276
|
+
const rightNorm = l2Norm(right);
|
|
277
|
+
const denominator = leftNorm * rightNorm;
|
|
278
|
+
if (!Number.isFinite(numerator) || !Number.isFinite(leftNorm) || !Number.isFinite(rightNorm) || !Number.isFinite(denominator) || denominator === 0) {
|
|
279
|
+
return 0;
|
|
280
|
+
}
|
|
281
|
+
return Math.max(-1, Math.min(1, numerator / denominator));
|
|
282
|
+
}
|
|
283
|
+
async function rerankCandidatesWithEmbeddings(provider, model, query, candidates, timeoutMs) {
|
|
284
|
+
if (candidates.length === 0) {
|
|
285
|
+
return /* @__PURE__ */ new Map();
|
|
286
|
+
}
|
|
287
|
+
const effectiveModel = toNonEmptyString(model) ?? provider.model;
|
|
288
|
+
const rerankProvider = effectiveModel === provider.model ? provider : { ...provider, model: effectiveModel };
|
|
289
|
+
const payload = [query.trim(), ...candidates.map((entry) => entry.text)];
|
|
290
|
+
const vectors = await executeEmbeddingRequest(rerankProvider, payload, timeoutMs ? { timeout_ms: timeoutMs } : {});
|
|
291
|
+
const queryVector = vectors[0];
|
|
292
|
+
if (!queryVector) {
|
|
293
|
+
return /* @__PURE__ */ new Map();
|
|
294
|
+
}
|
|
295
|
+
const queryNorm = l2Norm(queryVector);
|
|
296
|
+
const scoreById = /* @__PURE__ */ new Map();
|
|
297
|
+
for (let index = 0; index < candidates.length; index += 1) {
|
|
298
|
+
const candidate = candidates[index];
|
|
299
|
+
const candidateVector = vectors[index + 1];
|
|
300
|
+
if (!candidateVector) {
|
|
301
|
+
continue;
|
|
302
|
+
}
|
|
303
|
+
const similarity = cosineSimilarityWithKnownLeftNorm(queryVector, candidateVector, queryNorm);
|
|
304
|
+
scoreById.set(candidate.id, Math.max(0, Math.min(1, (similarity + 1) / 2)));
|
|
305
|
+
}
|
|
306
|
+
return scoreById;
|
|
307
|
+
}
|
|
308
|
+
|
|
107
309
|
// dist/cli/commands/search.js
|
|
108
310
|
var DEFAULT_COMPACT_SEARCH_FIELDS = [
|
|
109
311
|
"id",
|
|
@@ -177,6 +379,53 @@ var LONG_QUERY_TITLE_EXACT_BONUS = 120;
|
|
|
177
379
|
var LONG_QUERY_PHRASE_MULTIPLIER = 6;
|
|
178
380
|
var IMPLICIT_HYBRID_EMBEDDING_TIMEOUT_MS = 8e3;
|
|
179
381
|
var IMPLICIT_HYBRID_VECTOR_TIMEOUT_MS = 8e3;
|
|
382
|
+
function isNonEmptyRecord(value) {
|
|
383
|
+
return typeof value === "object" && value !== null && !Array.isArray(value) && Object.keys(value).length > 0;
|
|
384
|
+
}
|
|
385
|
+
function buildCompactSearchFilterSummary(params) {
|
|
386
|
+
const { mode, options, includeLinked, titleExact, phraseExact, scoreThreshold, hybridSemanticWeight, runtimeFieldFilters } = params;
|
|
387
|
+
const filters = {};
|
|
388
|
+
if (options.status !== void 0) {
|
|
389
|
+
filters.status = options.status;
|
|
390
|
+
}
|
|
391
|
+
if (options.type !== void 0) {
|
|
392
|
+
filters.type = options.type;
|
|
393
|
+
}
|
|
394
|
+
if (options.tag !== void 0) {
|
|
395
|
+
filters.tag = options.tag;
|
|
396
|
+
}
|
|
397
|
+
if (options.priority !== void 0) {
|
|
398
|
+
filters.priority = options.priority;
|
|
399
|
+
}
|
|
400
|
+
if (options.deadlineBefore !== void 0) {
|
|
401
|
+
filters.deadline_before = options.deadlineBefore;
|
|
402
|
+
}
|
|
403
|
+
if (options.deadlineAfter !== void 0) {
|
|
404
|
+
filters.deadline_after = options.deadlineAfter;
|
|
405
|
+
}
|
|
406
|
+
if (includeLinked) {
|
|
407
|
+
filters.include_linked = true;
|
|
408
|
+
}
|
|
409
|
+
if (titleExact) {
|
|
410
|
+
filters.title_exact = true;
|
|
411
|
+
}
|
|
412
|
+
if (phraseExact) {
|
|
413
|
+
filters.phrase_exact = true;
|
|
414
|
+
}
|
|
415
|
+
if (scoreThreshold > 0) {
|
|
416
|
+
filters.score_threshold = scoreThreshold;
|
|
417
|
+
}
|
|
418
|
+
if (mode === "hybrid" && options.semanticWeight !== void 0) {
|
|
419
|
+
filters.hybrid_semantic_weight = hybridSemanticWeight;
|
|
420
|
+
}
|
|
421
|
+
if (options.limit !== void 0) {
|
|
422
|
+
filters.limit = options.limit;
|
|
423
|
+
}
|
|
424
|
+
if (isNonEmptyRecord(runtimeFieldFilters)) {
|
|
425
|
+
filters.runtime_filters = runtimeFieldFilters;
|
|
426
|
+
}
|
|
427
|
+
return filters;
|
|
428
|
+
}
|
|
180
429
|
function collectErrorCauseCodes(error) {
|
|
181
430
|
const codes = [];
|
|
182
431
|
let current = error;
|
|
@@ -253,6 +502,9 @@ function parseTitleExact(raw) {
|
|
|
253
502
|
function parsePhraseExact(raw) {
|
|
254
503
|
return raw === true;
|
|
255
504
|
}
|
|
505
|
+
function parseSemanticWeightOverride(raw) {
|
|
506
|
+
return coerceNumberInRange(raw, 0, 1) ?? void 0;
|
|
507
|
+
}
|
|
256
508
|
function normalizeSearchPhrase(value) {
|
|
257
509
|
return value.toLowerCase().replace(/\s+/g, " ").trim();
|
|
258
510
|
}
|
|
@@ -654,7 +906,28 @@ function resolveSearchTuning(settings) {
|
|
|
654
906
|
linked_content_weight: resolveWeight(tuning.linked_content_weight, defaults.linked_content_weight)
|
|
655
907
|
};
|
|
656
908
|
}
|
|
657
|
-
function emptySearchResult(query, mode, options, includeLinked, scoreThreshold, hybridSemanticWeight, projection, warnings) {
|
|
909
|
+
function emptySearchResult(query, mode, options, includeLinked, scoreThreshold, hybridSemanticWeight, queryExpansion, rerank, projection, warnings, runtimeFieldFilters) {
|
|
910
|
+
const compactSummaryMode = projection.mode === "compact" && options.compact === true;
|
|
911
|
+
if (compactSummaryMode) {
|
|
912
|
+
const compactFilters = buildCompactSearchFilterSummary({
|
|
913
|
+
mode,
|
|
914
|
+
options,
|
|
915
|
+
includeLinked,
|
|
916
|
+
titleExact: options.titleExact === true,
|
|
917
|
+
phraseExact: options.phraseExact === true,
|
|
918
|
+
scoreThreshold,
|
|
919
|
+
hybridSemanticWeight,
|
|
920
|
+
runtimeFieldFilters
|
|
921
|
+
});
|
|
922
|
+
return {
|
|
923
|
+
query: query.trim(),
|
|
924
|
+
mode,
|
|
925
|
+
items: [],
|
|
926
|
+
count: 0,
|
|
927
|
+
filters: compactFilters,
|
|
928
|
+
...warnings.length > 0 ? { warnings } : {}
|
|
929
|
+
};
|
|
930
|
+
}
|
|
658
931
|
const projectionFields = projection.mode === "full" ? null : [...projection.fields];
|
|
659
932
|
return {
|
|
660
933
|
query: query.trim(),
|
|
@@ -674,6 +947,11 @@ function emptySearchResult(query, mode, options, includeLinked, scoreThreshold,
|
|
|
674
947
|
phrase_exact: options.phraseExact === true,
|
|
675
948
|
score_threshold: scoreThreshold,
|
|
676
949
|
hybrid_semantic_weight: mode === "hybrid" ? hybridSemanticWeight : null,
|
|
950
|
+
query_expansion_enabled: queryExpansion.enabled,
|
|
951
|
+
query_expansion_provider: queryExpansion.provider,
|
|
952
|
+
rerank_enabled: rerank.enabled,
|
|
953
|
+
rerank_model: rerank.model,
|
|
954
|
+
rerank_top_k: rerank.top_k,
|
|
677
955
|
limit: options.limit ?? null
|
|
678
956
|
},
|
|
679
957
|
projection: {
|
|
@@ -697,25 +975,40 @@ function requireSemanticDependencies(requestedMode, providerResolution, vectorRe
|
|
|
697
975
|
};
|
|
698
976
|
}
|
|
699
977
|
var toOptionalNonEmptyString = toNonEmptyStringOrUndefined;
|
|
700
|
-
function
|
|
978
|
+
function resolveExtensionSearchProviderByName(providerName) {
|
|
701
979
|
const registrations = getActiveExtensionRegistrations();
|
|
702
|
-
const providerName = toOptionalNonEmptyString(settings.search?.provider);
|
|
703
980
|
const resolved = resolveRegisteredSearchProvider(registrations, providerName);
|
|
704
981
|
if (!resolved) {
|
|
705
982
|
return null;
|
|
706
983
|
}
|
|
707
984
|
const runtimeDefinition = resolved.runtime_definition ?? resolved.definition;
|
|
708
985
|
const query = runtimeDefinition.query;
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
}
|
|
986
|
+
const queryExpansion = runtimeDefinition.queryExpansion ?? runtimeDefinition.query_expansion;
|
|
987
|
+
const rerank = runtimeDefinition.rerank;
|
|
712
988
|
const registeredName = toOptionalNonEmptyString(runtimeDefinition.name) ?? toOptionalNonEmptyString(resolved.definition.name) ?? providerName;
|
|
713
989
|
if (!registeredName) {
|
|
714
990
|
return null;
|
|
715
991
|
}
|
|
716
|
-
|
|
992
|
+
const hooks = {
|
|
717
993
|
providerName: registeredName,
|
|
718
|
-
query
|
|
994
|
+
...typeof query === "function" ? { query } : {},
|
|
995
|
+
...typeof queryExpansion === "function" ? { queryExpansion } : {},
|
|
996
|
+
...typeof rerank === "function" ? { rerank } : {}
|
|
997
|
+
};
|
|
998
|
+
if (!hooks.query && !hooks.queryExpansion && !hooks.rerank) {
|
|
999
|
+
return null;
|
|
1000
|
+
}
|
|
1001
|
+
return hooks;
|
|
1002
|
+
}
|
|
1003
|
+
function resolveExtensionSearchProvider(settings) {
|
|
1004
|
+
const providerName = toOptionalNonEmptyString(settings.search?.provider);
|
|
1005
|
+
const resolved = resolveExtensionSearchProviderByName(providerName);
|
|
1006
|
+
if (!resolved?.query) {
|
|
1007
|
+
return null;
|
|
1008
|
+
}
|
|
1009
|
+
return {
|
|
1010
|
+
providerName: resolved.providerName,
|
|
1011
|
+
query: resolved.query
|
|
719
1012
|
};
|
|
720
1013
|
}
|
|
721
1014
|
function resolveExtensionVectorAdapter(settings) {
|
|
@@ -817,39 +1110,172 @@ function combineHybridHits(filteredById, semanticScores, keywordHits, hybridSema
|
|
|
817
1110
|
};
|
|
818
1111
|
}).filter((entry) => entry !== null);
|
|
819
1112
|
}
|
|
1113
|
+
function mergeVectorHitsById(vectorHitGroups) {
|
|
1114
|
+
const bestById = /* @__PURE__ */ new Map();
|
|
1115
|
+
for (const group of vectorHitGroups) {
|
|
1116
|
+
for (const hit of group) {
|
|
1117
|
+
const existing = bestById.get(hit.id);
|
|
1118
|
+
if (!existing || hit.score > existing.score) {
|
|
1119
|
+
bestById.set(hit.id, hit);
|
|
1120
|
+
}
|
|
1121
|
+
}
|
|
1122
|
+
}
|
|
1123
|
+
const merged = [...bestById.values()];
|
|
1124
|
+
merged.sort((left, right) => {
|
|
1125
|
+
if (left.score !== right.score) {
|
|
1126
|
+
return right.score - left.score;
|
|
1127
|
+
}
|
|
1128
|
+
return left.id.localeCompare(right.id);
|
|
1129
|
+
});
|
|
1130
|
+
return merged;
|
|
1131
|
+
}
|
|
1132
|
+
function buildRerankCorpus(document) {
|
|
1133
|
+
const metadata = document.metadata;
|
|
1134
|
+
const tags = Array.isArray(metadata?.tags) ? metadata.tags.join(" ") : "";
|
|
1135
|
+
return [
|
|
1136
|
+
metadata?.title,
|
|
1137
|
+
metadata?.description,
|
|
1138
|
+
metadata?.type,
|
|
1139
|
+
metadata?.status,
|
|
1140
|
+
tags,
|
|
1141
|
+
document.body
|
|
1142
|
+
].map((entry) => typeof entry === "string" ? entry.trim() : "").filter((entry) => entry.length > 0).join("\n");
|
|
1143
|
+
}
|
|
820
1144
|
async function computeSemanticOrHybridHits(context) {
|
|
821
1145
|
const semanticLimit = context.limit ?? context.maxResults;
|
|
822
1146
|
const embeddingOptions = context.embeddingTimeoutMs !== void 0 ? { timeout_ms: context.embeddingTimeoutMs } : {};
|
|
823
1147
|
const vectorQueryOptions = context.vectorQueryTimeoutMs !== void 0 ? { timeout_ms: context.vectorQueryTimeoutMs } : {};
|
|
824
|
-
const
|
|
825
|
-
const
|
|
826
|
-
let
|
|
827
|
-
if (context.
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
1148
|
+
const queryTrimmed = context.query.trim();
|
|
1149
|
+
const baseExpandedQueries = context.queryExpansion.enabled ? buildDeterministicQueryExpansions(queryTrimmed, context.queryExpansion.max_queries) : [queryTrimmed];
|
|
1150
|
+
let expandedQueries = baseExpandedQueries.length > 0 ? baseExpandedQueries : [queryTrimmed];
|
|
1151
|
+
if (context.queryExpansion.enabled) {
|
|
1152
|
+
if (context.queryExpansionExtension?.expand) {
|
|
1153
|
+
try {
|
|
1154
|
+
const rawExpansion = await Promise.resolve(context.queryExpansionExtension.expand({
|
|
1155
|
+
query: queryTrimmed,
|
|
1156
|
+
mode: context.requestedMode,
|
|
1157
|
+
settings: context.settings
|
|
1158
|
+
}));
|
|
1159
|
+
const extensionExpansion = normalizeQueryExpansionOutput(rawExpansion);
|
|
1160
|
+
expandedQueries = mergeQueryExpansions(expandedQueries, extensionExpansion, context.queryExpansion.max_queries);
|
|
1161
|
+
} catch {
|
|
1162
|
+
context.warnings.push(`search_query_expansion_provider_failed:${context.queryExpansionExtension.providerName}:using_builtin`);
|
|
837
1163
|
}
|
|
838
|
-
|
|
1164
|
+
} else if (context.queryExpansion.provider && context.queryExpansion.provider !== "openai" && context.queryExpansion.provider !== "ollama") {
|
|
1165
|
+
context.warnings.push(`search_query_expansion_provider_unavailable:${context.queryExpansion.provider}:using_builtin`);
|
|
839
1166
|
}
|
|
840
|
-
} else if (context.vectorStore) {
|
|
841
|
-
vectorHits = await executeVectorQuery(context.vectorStore, semanticVector, semanticLimit, vectorQueryOptions);
|
|
842
|
-
} else {
|
|
843
|
-
throw new PmCliError("Semantic search requires either a configured vector store or an extension vector adapter query handler", EXIT_CODE.USAGE);
|
|
844
1167
|
}
|
|
1168
|
+
const queryVectors = await executeEmbeddingRequest(context.provider, expandedQueries, embeddingOptions);
|
|
1169
|
+
const executeVectorQueryWithFallback = async (semanticVector) => {
|
|
1170
|
+
if (context.extensionVectorAdapter?.query) {
|
|
1171
|
+
try {
|
|
1172
|
+
return await Promise.resolve(context.extensionVectorAdapter.query({
|
|
1173
|
+
vector: semanticVector,
|
|
1174
|
+
limit: semanticLimit,
|
|
1175
|
+
settings: context.settings
|
|
1176
|
+
}));
|
|
1177
|
+
} catch (error) {
|
|
1178
|
+
if (!context.vectorStore) {
|
|
1179
|
+
throw new PmCliError(`Extension vector adapter query failed and no built-in fallback store is configured (${error instanceof Error ? error.message : String(error)})`, EXIT_CODE.GENERIC_FAILURE);
|
|
1180
|
+
}
|
|
1181
|
+
return await executeVectorQuery(context.vectorStore, semanticVector, semanticLimit, vectorQueryOptions);
|
|
1182
|
+
}
|
|
1183
|
+
}
|
|
1184
|
+
if (context.vectorStore) {
|
|
1185
|
+
return await executeVectorQuery(context.vectorStore, semanticVector, semanticLimit, vectorQueryOptions);
|
|
1186
|
+
}
|
|
1187
|
+
throw new PmCliError("Semantic search requires either a configured vector store or an extension vector adapter query handler", EXIT_CODE.USAGE);
|
|
1188
|
+
};
|
|
1189
|
+
const queryVectorGroups = await Promise.all(queryVectors.map(async (semanticVector) => await executeVectorQueryWithFallback(semanticVector)));
|
|
1190
|
+
const vectorHits = mergeVectorHitsById(queryVectorGroups);
|
|
845
1191
|
const filteredById = new Map(context.filteredDocuments.map((document) => [document.metadata.id, document]));
|
|
846
1192
|
const { semanticHits, semanticScores } = buildSemanticHits(vectorHits, filteredById);
|
|
847
1193
|
const vectorMatchCount = semanticScores.size;
|
|
848
1194
|
if (context.requestedMode === "semantic") {
|
|
849
1195
|
return { hits: semanticHits, vectorMatchCount };
|
|
850
1196
|
}
|
|
1197
|
+
let hybridHits = combineHybridHits(filteredById, semanticScores, context.keywordHits, context.hybridSemanticWeight);
|
|
1198
|
+
if (context.rerank.enabled && hybridHits.length > 1) {
|
|
1199
|
+
const sortedForCandidates = [...hybridHits].sort((left, right) => {
|
|
1200
|
+
if (left.score !== right.score) {
|
|
1201
|
+
return right.score - left.score;
|
|
1202
|
+
}
|
|
1203
|
+
return left.item.id.localeCompare(right.item.id);
|
|
1204
|
+
});
|
|
1205
|
+
const candidateHits = sortedForCandidates.slice(0, context.rerank.top_k);
|
|
1206
|
+
const candidateContexts = candidateHits.map((hit) => {
|
|
1207
|
+
const document = filteredById.get(hit.item.id);
|
|
1208
|
+
if (!document) {
|
|
1209
|
+
return null;
|
|
1210
|
+
}
|
|
1211
|
+
return { hit, text: buildRerankCorpus(document) };
|
|
1212
|
+
}).filter((entry) => entry !== null);
|
|
1213
|
+
const rerankCandidates = candidateContexts.map((entry) => ({
|
|
1214
|
+
id: entry.hit.item.id,
|
|
1215
|
+
text: entry.text
|
|
1216
|
+
}));
|
|
1217
|
+
let rerankScores = null;
|
|
1218
|
+
if (context.rerankExtension?.rerank) {
|
|
1219
|
+
try {
|
|
1220
|
+
const rawRerank = await Promise.resolve(context.rerankExtension.rerank({
|
|
1221
|
+
query: queryTrimmed,
|
|
1222
|
+
mode: "hybrid",
|
|
1223
|
+
model: context.rerank.model,
|
|
1224
|
+
top_k: context.rerank.top_k,
|
|
1225
|
+
settings: context.settings,
|
|
1226
|
+
candidates: candidateContexts.map((entry) => ({
|
|
1227
|
+
id: entry.hit.item.id,
|
|
1228
|
+
text: entry.text,
|
|
1229
|
+
score: entry.hit.score
|
|
1230
|
+
}))
|
|
1231
|
+
}));
|
|
1232
|
+
const normalizedRerank = normalizeRerankOutput(rawRerank);
|
|
1233
|
+
if (normalizedRerank.length > 0) {
|
|
1234
|
+
rerankScores = new Map(normalizedRerank.map((entry) => [entry.id, entry.score]));
|
|
1235
|
+
} else {
|
|
1236
|
+
context.warnings.push(`search_rerank_provider_invalid_response:${context.rerankExtension.providerName}:using_builtin`);
|
|
1237
|
+
}
|
|
1238
|
+
} catch {
|
|
1239
|
+
context.warnings.push(`search_rerank_provider_failed:${context.rerankExtension.providerName}:using_builtin`);
|
|
1240
|
+
}
|
|
1241
|
+
}
|
|
1242
|
+
if (!rerankScores) {
|
|
1243
|
+
try {
|
|
1244
|
+
rerankScores = await rerankCandidatesWithEmbeddings(context.provider, context.rerank.model, queryTrimmed, rerankCandidates, context.embeddingTimeoutMs);
|
|
1245
|
+
} catch {
|
|
1246
|
+
context.warnings.push("search_rerank_failed:using_hybrid_scores");
|
|
1247
|
+
}
|
|
1248
|
+
}
|
|
1249
|
+
if (rerankScores && rerankScores.size > 0) {
|
|
1250
|
+
const rerankedIds = new Set(rerankScores.keys());
|
|
1251
|
+
hybridHits = hybridHits.map((hit) => {
|
|
1252
|
+
const rerankScore = rerankScores.get(hit.item.id);
|
|
1253
|
+
if (rerankScore === void 0) {
|
|
1254
|
+
return hit;
|
|
1255
|
+
}
|
|
1256
|
+
const matchedFields = new Set(hit.matched_fields);
|
|
1257
|
+
matchedFields.add("rerank");
|
|
1258
|
+
return {
|
|
1259
|
+
...hit,
|
|
1260
|
+
score: rerankScore,
|
|
1261
|
+
matched_fields: [...matchedFields].sort((left, right) => left.localeCompare(right))
|
|
1262
|
+
};
|
|
1263
|
+
});
|
|
1264
|
+
hybridHits.sort((left, right) => {
|
|
1265
|
+
const leftWasReranked = rerankedIds.has(left.item.id);
|
|
1266
|
+
const rightWasReranked = rerankedIds.has(right.item.id);
|
|
1267
|
+
if (leftWasReranked !== rightWasReranked) {
|
|
1268
|
+
return leftWasReranked ? -1 : 1;
|
|
1269
|
+
}
|
|
1270
|
+
if (left.score !== right.score) {
|
|
1271
|
+
return right.score - left.score;
|
|
1272
|
+
}
|
|
1273
|
+
return left.item.id.localeCompare(right.item.id);
|
|
1274
|
+
});
|
|
1275
|
+
}
|
|
1276
|
+
}
|
|
851
1277
|
return {
|
|
852
|
-
hits:
|
|
1278
|
+
hits: hybridHits,
|
|
853
1279
|
vectorMatchCount
|
|
854
1280
|
};
|
|
855
1281
|
}
|
|
@@ -979,18 +1405,29 @@ async function runSearch(query, options, global) {
|
|
|
979
1405
|
const typeRegistry = resolveItemTypeRegistry(settings, getActiveExtensionRegistrations());
|
|
980
1406
|
const maxResults = resolveSearchMaxResults(settings);
|
|
981
1407
|
const scoreThreshold = resolveSearchScoreThreshold(settings);
|
|
982
|
-
const
|
|
1408
|
+
const semanticWeightProvided = options.semanticWeight !== void 0;
|
|
1409
|
+
const semanticWeightOverride = parseSemanticWeightOverride(options.semanticWeight);
|
|
1410
|
+
const hybridSemanticWeight = semanticWeightOverride ?? resolveHybridSemanticWeight(settings);
|
|
983
1411
|
const tuning = resolveSearchTuning(settings);
|
|
984
1412
|
const providerResolution = resolveEmbeddingProviders(settings);
|
|
985
1413
|
const vectorResolution = resolveVectorStores(settings);
|
|
986
1414
|
const extensionSearchProvider = resolveExtensionSearchProvider(settings);
|
|
987
1415
|
const extensionVectorAdapter = resolveExtensionVectorAdapter(settings);
|
|
1416
|
+
const queryExpansion = resolveQueryExpansionConfig(settings, providerResolution.active?.name ?? null);
|
|
1417
|
+
const rerank = resolveRerankConfig(settings, providerResolution.active?.model ?? toOptionalNonEmptyString(settings.search?.embedding_model) ?? "text-embedding-3-small");
|
|
1418
|
+
const queryExpansionProvider = resolveExtensionSearchProviderByName(queryExpansion.provider ?? void 0);
|
|
1419
|
+
const queryExpansionExtension = queryExpansionProvider?.queryExpansion ? { providerName: queryExpansionProvider.providerName, expand: queryExpansionProvider.queryExpansion } : null;
|
|
1420
|
+
const rerankProvider = resolveExtensionSearchProviderByName(toOptionalNonEmptyString(settings.search?.provider));
|
|
1421
|
+
const rerankExtension = rerankProvider?.rerank ? { providerName: rerankProvider.providerName, rerank: rerankProvider.rerank } : null;
|
|
988
1422
|
let effectiveMode = parseMode(options.mode, {
|
|
989
1423
|
hasProvider: providerResolution.active !== null || extensionSearchProvider !== null,
|
|
990
1424
|
hasVectorStore: vectorResolution.active !== null || extensionVectorAdapter !== null
|
|
991
1425
|
});
|
|
992
1426
|
const loadedDocuments = await loadDocuments(pmRoot, settings.item_format ?? "toon", typeRegistry.type_to_folder, settings.schema);
|
|
993
1427
|
const warnings = loadedDocuments.warnings;
|
|
1428
|
+
if (effectiveMode === "hybrid" && semanticWeightProvided && semanticWeightOverride === void 0) {
|
|
1429
|
+
warnings.push("search_hybrid_semantic_weight_override_invalid:using_settings_default");
|
|
1430
|
+
}
|
|
994
1431
|
const allDocuments = loadedDocuments.documents;
|
|
995
1432
|
const metadataFilteredDocuments = applyFilters(allDocuments, options, typeRegistry, runtimeFieldFilters, statusFilter);
|
|
996
1433
|
const filteredDocuments = applyExactQueryFilters(metadataFilteredDocuments, normalizedQuery, {
|
|
@@ -998,7 +1435,7 @@ async function runSearch(query, options, global) {
|
|
|
998
1435
|
phraseExact
|
|
999
1436
|
});
|
|
1000
1437
|
if (effectiveMode === "keyword" && (filteredDocuments.length === 0 || limit === 0)) {
|
|
1001
|
-
return emptySearchResult(query, effectiveMode, options, includeLinked, scoreThreshold, hybridSemanticWeight, projection, warnings);
|
|
1438
|
+
return emptySearchResult(query, effectiveMode, options, includeLinked, scoreThreshold, hybridSemanticWeight, queryExpansion, rerank, projection, warnings, runtimeFieldFilters);
|
|
1002
1439
|
}
|
|
1003
1440
|
const projectRoot = process.cwd();
|
|
1004
1441
|
const globalRoot = resolveGlobalPmRoot(projectRoot);
|
|
@@ -1022,7 +1459,7 @@ async function runSearch(query, options, global) {
|
|
|
1022
1459
|
requireSemanticDependencies(effectiveMode, providerResolution, vectorResolution, extensionVectorAdapter !== null);
|
|
1023
1460
|
}
|
|
1024
1461
|
if (filteredDocuments.length === 0 || limit === 0) {
|
|
1025
|
-
return emptySearchResult(query, effectiveMode, options, includeLinked, scoreThreshold, hybridSemanticWeight, projection, warnings);
|
|
1462
|
+
return emptySearchResult(query, effectiveMode, options, includeLinked, scoreThreshold, hybridSemanticWeight, queryExpansion, rerank, projection, warnings, runtimeFieldFilters);
|
|
1026
1463
|
}
|
|
1027
1464
|
const filteredById = new Map(filteredDocuments.map((document) => [document.metadata.id, document]));
|
|
1028
1465
|
const canUseBuiltInSemantic = providerResolution.active !== null && (vectorResolution.active !== null || extensionVectorAdapter !== null);
|
|
@@ -1057,6 +1494,11 @@ async function runSearch(query, options, global) {
|
|
|
1057
1494
|
provider,
|
|
1058
1495
|
vectorStore,
|
|
1059
1496
|
extensionVectorAdapter,
|
|
1497
|
+
queryExpansion,
|
|
1498
|
+
queryExpansionExtension,
|
|
1499
|
+
rerank,
|
|
1500
|
+
rerankExtension,
|
|
1501
|
+
warnings,
|
|
1060
1502
|
settings,
|
|
1061
1503
|
...implicitHybridMode ? {
|
|
1062
1504
|
embeddingTimeoutMs: IMPLICIT_HYBRID_EMBEDDING_TIMEOUT_MS,
|
|
@@ -1084,6 +1526,27 @@ async function runSearch(query, options, global) {
|
|
|
1084
1526
|
const limited = resolvedLimit === void 0 ? sorted : sorted.slice(0, resolvedLimit);
|
|
1085
1527
|
const projectedItems = projectSearchHits(limited, projection);
|
|
1086
1528
|
const projectionFields = projection.mode === "full" ? null : [...projection.fields];
|
|
1529
|
+
const compactSummaryMode = projection.mode === "compact" && options.compact === true;
|
|
1530
|
+
if (compactSummaryMode) {
|
|
1531
|
+
const compactFilters = buildCompactSearchFilterSummary({
|
|
1532
|
+
mode: effectiveMode,
|
|
1533
|
+
options,
|
|
1534
|
+
includeLinked,
|
|
1535
|
+
titleExact,
|
|
1536
|
+
phraseExact,
|
|
1537
|
+
scoreThreshold,
|
|
1538
|
+
hybridSemanticWeight,
|
|
1539
|
+
runtimeFieldFilters
|
|
1540
|
+
});
|
|
1541
|
+
return {
|
|
1542
|
+
query: query.trim(),
|
|
1543
|
+
mode: effectiveMode,
|
|
1544
|
+
items: projectedItems,
|
|
1545
|
+
count: projectedItems.length,
|
|
1546
|
+
filters: compactFilters,
|
|
1547
|
+
...warnings.length > 0 ? { warnings } : {}
|
|
1548
|
+
};
|
|
1549
|
+
}
|
|
1087
1550
|
return {
|
|
1088
1551
|
query: query.trim(),
|
|
1089
1552
|
mode: effectiveMode,
|
|
@@ -1102,6 +1565,11 @@ async function runSearch(query, options, global) {
|
|
|
1102
1565
|
phrase_exact: phraseExact,
|
|
1103
1566
|
score_threshold: scoreThreshold,
|
|
1104
1567
|
hybrid_semantic_weight: effectiveMode === "hybrid" ? hybridSemanticWeight : null,
|
|
1568
|
+
query_expansion_enabled: queryExpansion.enabled,
|
|
1569
|
+
query_expansion_provider: queryExpansion.provider,
|
|
1570
|
+
rerank_enabled: rerank.enabled,
|
|
1571
|
+
rerank_model: rerank.model,
|
|
1572
|
+
rerank_top_k: rerank.top_k,
|
|
1105
1573
|
limit: options.limit ?? null,
|
|
1106
1574
|
runtime_filters: runtimeFieldFilters
|
|
1107
1575
|
},
|
|
@@ -1122,6 +1590,6 @@ export {
|
|
|
1122
1590
|
resolveSearchTuning,
|
|
1123
1591
|
runSearch
|
|
1124
1592
|
};
|
|
1125
|
-
//# sourceMappingURL=search-
|
|
1593
|
+
//# sourceMappingURL=search-EQDHSE4G.js.map
|
|
1126
1594
|
|
|
1127
|
-
//# debugId=
|
|
1595
|
+
//# debugId=1eb1787d-185d-5d6c-9933-0f8e2635576f
|