@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]="bf419057-9296-52c0-b826-82f290efb5c6")}catch(e){}}();
|
|
3
3
|
import {
|
|
4
4
|
KNOWN_EXTENSION_CAPABILITIES,
|
|
5
5
|
KNOWN_EXTENSION_POLICY_MODES,
|
|
@@ -11,13 +11,13 @@ import {
|
|
|
11
11
|
PLAN_MODE_VALUES,
|
|
12
12
|
PLAN_STEP_LINK_KIND_VALUES,
|
|
13
13
|
PLAN_STEP_STATUS_VALUES
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-YJAKN2N2.js";
|
|
15
15
|
|
|
16
16
|
// dist/sdk/cli-contracts/commander-types.js
|
|
17
17
|
var LIST_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
18
18
|
{ target: "status", keys: ["status"] },
|
|
19
19
|
{ target: "type", keys: ["type"] },
|
|
20
|
-
{ target: "tag", keys: ["tag"] },
|
|
20
|
+
{ target: "tag", keys: ["tag", "tags"] },
|
|
21
21
|
{ target: "priority", keys: ["priority"] },
|
|
22
22
|
{ target: "deadlineBefore", keys: ["deadlineBefore"] },
|
|
23
23
|
{ target: "deadlineAfter", keys: ["deadlineAfter"] },
|
|
@@ -25,6 +25,7 @@ var LIST_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
|
25
25
|
{ target: "updatedBefore", keys: ["updatedBefore"] },
|
|
26
26
|
{ target: "createdAfter", keys: ["createdAfter"] },
|
|
27
27
|
{ target: "createdBefore", keys: ["createdBefore"] },
|
|
28
|
+
{ target: "ids", keys: ["ids"] },
|
|
28
29
|
{ target: "assignee", keys: ["assignee"] },
|
|
29
30
|
{ target: "assigneeFilter", keys: ["assigneeFilter", "assignee_filter"] },
|
|
30
31
|
{ target: "parent", keys: ["parent"] },
|
|
@@ -34,13 +35,15 @@ var LIST_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
|
34
35
|
{ target: "offset", keys: ["offset"] },
|
|
35
36
|
{ target: "fields", keys: ["fields"] },
|
|
36
37
|
{ target: "sort", keys: ["sort"] },
|
|
37
|
-
{ target: "order", keys: ["order"] }
|
|
38
|
+
{ target: "order", keys: ["order"] },
|
|
39
|
+
{ target: "treeDepth", keys: ["treeDepth", "tree_depth"] }
|
|
38
40
|
];
|
|
39
41
|
var SEARCH_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
40
42
|
{ target: "mode", keys: ["mode"] },
|
|
43
|
+
{ target: "semanticWeight", keys: ["semanticWeight", "semantic_weight"] },
|
|
41
44
|
{ target: "status", keys: ["status"] },
|
|
42
45
|
{ target: "type", keys: ["type"] },
|
|
43
|
-
{ target: "tag", keys: ["tag"] },
|
|
46
|
+
{ target: "tag", keys: ["tag", "tags"] },
|
|
44
47
|
{ target: "priority", keys: ["priority"] },
|
|
45
48
|
{ target: "deadlineBefore", keys: ["deadlineBefore"] },
|
|
46
49
|
{ target: "deadlineAfter", keys: ["deadlineAfter"] },
|
|
@@ -101,6 +104,14 @@ function readFirstStringFromCommanderOptions(options, contract) {
|
|
|
101
104
|
}
|
|
102
105
|
return void 0;
|
|
103
106
|
}
|
|
107
|
+
function readFirstValueFromCommanderOptions(options, contract) {
|
|
108
|
+
for (const key of contract.keys) {
|
|
109
|
+
if (Object.hasOwn(options, key)) {
|
|
110
|
+
return options[key];
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
return void 0;
|
|
114
|
+
}
|
|
104
115
|
function readStringArrayFromCommanderOptions(options, contract) {
|
|
105
116
|
for (const key of contract.keys) {
|
|
106
117
|
const candidate = options[key];
|
|
@@ -651,6 +662,7 @@ var PM_CORE_COMMAND_NAMES = [
|
|
|
651
662
|
"install",
|
|
652
663
|
"upgrade",
|
|
653
664
|
"create",
|
|
665
|
+
"copy",
|
|
654
666
|
"list",
|
|
655
667
|
"list-all",
|
|
656
668
|
"list-draft",
|
|
@@ -667,6 +679,7 @@ var PM_CORE_COMMAND_NAMES = [
|
|
|
667
679
|
"history",
|
|
668
680
|
"history-redact",
|
|
669
681
|
"history-repair",
|
|
682
|
+
"history-compact",
|
|
670
683
|
"schema",
|
|
671
684
|
"activity",
|
|
672
685
|
"restore",
|
|
@@ -730,6 +743,7 @@ var PM_TOOL_ACTIONS = [
|
|
|
730
743
|
"install",
|
|
731
744
|
"upgrade",
|
|
732
745
|
"create",
|
|
746
|
+
"copy",
|
|
733
747
|
"list",
|
|
734
748
|
"list-all",
|
|
735
749
|
"list-draft",
|
|
@@ -746,6 +760,7 @@ var PM_TOOL_ACTIONS = [
|
|
|
746
760
|
"history",
|
|
747
761
|
"history-redact",
|
|
748
762
|
"history-repair",
|
|
763
|
+
"history-compact",
|
|
749
764
|
"schema",
|
|
750
765
|
"activity",
|
|
751
766
|
"restore",
|
|
@@ -799,10 +814,14 @@ var TOOL_LIST_FILTER_OPTION_CONTRACTS = [
|
|
|
799
814
|
{ param: "offset", flag: "--offset" },
|
|
800
815
|
{ param: "fields", flag: "--fields" },
|
|
801
816
|
{ param: "sort", flag: "--sort" },
|
|
802
|
-
{ param: "order", flag: "--order" }
|
|
817
|
+
{ param: "order", flag: "--order" },
|
|
818
|
+
{ param: "tree", flag: "--tree" },
|
|
819
|
+
{ param: "treeDepth", flag: "--tree-depth" }
|
|
803
820
|
];
|
|
804
821
|
var TOOL_AGGREGATE_OPTION_CONTRACTS = [
|
|
805
822
|
{ param: "groupBy", flag: "--group-by" },
|
|
823
|
+
{ param: "sum", flag: "--sum" },
|
|
824
|
+
{ param: "avg", flag: "--avg" },
|
|
806
825
|
{ param: "status", flag: "--status" },
|
|
807
826
|
{ param: "type", flag: "--type" },
|
|
808
827
|
{ param: "tag", flag: "--tag" },
|
|
@@ -832,6 +851,7 @@ var TOOL_DEDUPE_AUDIT_OPTION_CONTRACTS = [
|
|
|
832
851
|
{ param: "release", flag: "--release" }
|
|
833
852
|
];
|
|
834
853
|
var TOOL_SEARCH_FILTER_OPTION_CONTRACTS = [
|
|
854
|
+
{ param: "semanticWeight", flag: "--semantic-weight" },
|
|
835
855
|
{ param: "status", flag: "--status" },
|
|
836
856
|
{ param: "type", flag: "--type" },
|
|
837
857
|
{ param: "tag", flag: "--tag" },
|
|
@@ -1147,6 +1167,7 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1147
1167
|
type: "string",
|
|
1148
1168
|
enum: ["keyword", "semantic", "hybrid", "title_exact", "title_fuzzy", "parent_scope"]
|
|
1149
1169
|
},
|
|
1170
|
+
semanticWeight: { anyOf: [{ type: "string" }, { type: "number" }] },
|
|
1150
1171
|
op: { type: "string" },
|
|
1151
1172
|
compact: { type: "boolean" },
|
|
1152
1173
|
brief: { type: "boolean" },
|
|
@@ -1154,6 +1175,7 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1154
1175
|
view: { type: "string", enum: ["agenda", "day", "week", "month"] },
|
|
1155
1176
|
date: { type: "string" },
|
|
1156
1177
|
from: { type: "string" },
|
|
1178
|
+
before: { type: "string" },
|
|
1157
1179
|
to: { type: "string" },
|
|
1158
1180
|
past: { type: "boolean" },
|
|
1159
1181
|
fullPeriod: { type: "boolean" },
|
|
@@ -1253,6 +1275,10 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1253
1275
|
force: { type: "boolean" },
|
|
1254
1276
|
run: { type: "boolean" },
|
|
1255
1277
|
count: { type: "boolean" },
|
|
1278
|
+
sum: { type: "string" },
|
|
1279
|
+
avg: { type: "string" },
|
|
1280
|
+
tree: { type: "boolean" },
|
|
1281
|
+
treeDepth: { anyOf: [{ type: "string" }, { type: "number" }] },
|
|
1256
1282
|
includeUnparented: { type: "boolean" },
|
|
1257
1283
|
gcScope: {
|
|
1258
1284
|
type: "array",
|
|
@@ -1514,7 +1540,7 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1514
1540
|
description: "Subcommand selector for schema and telemetry actions."
|
|
1515
1541
|
},
|
|
1516
1542
|
name: {
|
|
1517
|
-
description: "Custom item type name (schema add-type/remove-type/show) or custom status id (schema add-status/remove-status).",
|
|
1543
|
+
description: "Custom item type name (schema add-type/remove-type/show) or custom status id (schema show-status/add-status/remove-status).",
|
|
1518
1544
|
examples: ["Spike", "review"]
|
|
1519
1545
|
},
|
|
1520
1546
|
defaultStatus: {
|
|
@@ -1663,6 +1689,10 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1663
1689
|
description: "Mode selector for search/reindex (keyword|semantic|hybrid) and dedupe-audit (title_exact|title_fuzzy|parent_scope).",
|
|
1664
1690
|
examples: ["keyword", "hybrid", "title_exact"]
|
|
1665
1691
|
},
|
|
1692
|
+
semanticWeight: {
|
|
1693
|
+
description: "Per-query hybrid semantic weight override in [0,1] for search action; invalid values fall back to settings.",
|
|
1694
|
+
examples: [0.2, "0.7"]
|
|
1695
|
+
},
|
|
1666
1696
|
op: {
|
|
1667
1697
|
description: "History operation filter for activity output.",
|
|
1668
1698
|
examples: ["create", "update", "close", "update_audit"]
|
|
@@ -1726,6 +1756,10 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1726
1756
|
description: "Number of matching rows to skip before limit is applied.",
|
|
1727
1757
|
examples: [0, 50, "100"]
|
|
1728
1758
|
},
|
|
1759
|
+
before: {
|
|
1760
|
+
description: "For history-compact, compact entries strictly before this boundary (version number or ISO timestamp).",
|
|
1761
|
+
examples: ["5", "2026-06-01T00:00:00.000Z"]
|
|
1762
|
+
},
|
|
1729
1763
|
limitItems: {
|
|
1730
1764
|
description: "Maximum number of filtered items to include in comments-audit output (alias: --limit).",
|
|
1731
1765
|
examples: [10, "25"]
|
|
@@ -1916,6 +1950,21 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1916
1950
|
count: {
|
|
1917
1951
|
description: "Enable grouped count output for aggregate action."
|
|
1918
1952
|
},
|
|
1953
|
+
sum: {
|
|
1954
|
+
description: "Numeric field to sum per aggregate group (count and null_count are still returned).",
|
|
1955
|
+
examples: ["estimated_minutes", "priority"]
|
|
1956
|
+
},
|
|
1957
|
+
avg: {
|
|
1958
|
+
description: "Numeric field to average per aggregate group (count and null_count are still returned).",
|
|
1959
|
+
examples: ["estimated_minutes", "priority"]
|
|
1960
|
+
},
|
|
1961
|
+
tree: {
|
|
1962
|
+
description: "When true for list/get actions, render recursive parent/child tree ordering."
|
|
1963
|
+
},
|
|
1964
|
+
treeDepth: {
|
|
1965
|
+
description: "Maximum recursion depth for tree output (0 keeps root rows only).",
|
|
1966
|
+
examples: [0, 1, "2"]
|
|
1967
|
+
},
|
|
1919
1968
|
includeUnparented: {
|
|
1920
1969
|
description: "Include unparented rows when aggregate grouping includes parent."
|
|
1921
1970
|
},
|
|
@@ -2034,7 +2083,7 @@ var SUBCOMMAND_GLOBAL_FLAG_CONTRACTS = [
|
|
|
2034
2083
|
{ flag: "--json" },
|
|
2035
2084
|
{ flag: "--quiet" },
|
|
2036
2085
|
{ flag: "--no-changed-fields" },
|
|
2037
|
-
{ flag: "--path" },
|
|
2086
|
+
{ flag: "--pm-path", aliases: ["--path"] },
|
|
2038
2087
|
{ flag: "--no-extensions" },
|
|
2039
2088
|
{ flag: "--no-pager" },
|
|
2040
2089
|
{ flag: "--profile" },
|
|
@@ -2047,7 +2096,7 @@ var GLOBAL_FLAG_CONTRACTS = [
|
|
|
2047
2096
|
var LIST_FILTER_FLAG_CONTRACTS = [
|
|
2048
2097
|
{ flag: "--status", list: true },
|
|
2049
2098
|
{ flag: "--type" },
|
|
2050
|
-
{ flag: "--tag" },
|
|
2099
|
+
{ flag: "--tag", aliases: ["--tags"] },
|
|
2051
2100
|
{ flag: "--priority" },
|
|
2052
2101
|
{ flag: "--deadline-before" },
|
|
2053
2102
|
{ flag: "--deadline-after" },
|
|
@@ -2070,12 +2119,17 @@ var LIST_FILTER_FLAG_CONTRACTS = [
|
|
|
2070
2119
|
{ flag: "--fields", list: true },
|
|
2071
2120
|
{ flag: "--sort" },
|
|
2072
2121
|
{ flag: "--order" },
|
|
2122
|
+
{ flag: "--tree" },
|
|
2123
|
+
{ flag: "--tree-depth" },
|
|
2124
|
+
{ flag: "--tree_depth" },
|
|
2073
2125
|
{ flag: "--include-body" },
|
|
2074
2126
|
{ flag: "--stream" }
|
|
2075
2127
|
];
|
|
2076
2128
|
var AGGREGATE_FLAG_CONTRACTS = [
|
|
2077
2129
|
{ flag: "--group-by", list: true },
|
|
2078
2130
|
{ flag: "--count" },
|
|
2131
|
+
{ flag: "--sum" },
|
|
2132
|
+
{ flag: "--avg" },
|
|
2079
2133
|
{ flag: "--include-unparented" },
|
|
2080
2134
|
{ flag: "--include_unparented" },
|
|
2081
2135
|
{ flag: "--status" },
|
|
@@ -2199,6 +2253,13 @@ var HISTORY_REPAIR_FLAG_CONTRACTS = [
|
|
|
2199
2253
|
{ flag: "--message" },
|
|
2200
2254
|
{ flag: "--force" }
|
|
2201
2255
|
];
|
|
2256
|
+
var HISTORY_COMPACT_FLAG_CONTRACTS = [
|
|
2257
|
+
{ flag: "--before" },
|
|
2258
|
+
{ flag: "--dry-run" },
|
|
2259
|
+
{ flag: "--author" },
|
|
2260
|
+
{ flag: "--message" },
|
|
2261
|
+
{ flag: "--force" }
|
|
2262
|
+
];
|
|
2202
2263
|
var SCHEMA_FLAG_CONTRACTS = [
|
|
2203
2264
|
{ flag: "--description" },
|
|
2204
2265
|
{ flag: "--default-status", aliases: ["--default_status"] },
|
|
@@ -2268,6 +2329,7 @@ var INIT_FLAG_CONTRACTS = [
|
|
|
2268
2329
|
{ flag: "--author" },
|
|
2269
2330
|
{ flag: "--agent-guidance" },
|
|
2270
2331
|
{ flag: "--with-packages" },
|
|
2332
|
+
{ flag: "--force" },
|
|
2271
2333
|
{ flag: "--verbose" }
|
|
2272
2334
|
];
|
|
2273
2335
|
var CONFIG_FLAG_CONTRACTS = [
|
|
@@ -2663,6 +2725,11 @@ var CREATE_FLAG_CONTRACTS = [
|
|
|
2663
2725
|
{ flag: "--clear-events" },
|
|
2664
2726
|
{ flag: "--clear-type-options" }
|
|
2665
2727
|
];
|
|
2728
|
+
var COPY_FLAG_CONTRACTS = [
|
|
2729
|
+
{ flag: "--title" },
|
|
2730
|
+
{ flag: "--author" },
|
|
2731
|
+
{ flag: "--message" }
|
|
2732
|
+
];
|
|
2666
2733
|
var UPDATE_FLAG_CONTRACTS = [
|
|
2667
2734
|
{ short: "-t", flag: "--title" },
|
|
2668
2735
|
{ short: "-d", flag: "--description" },
|
|
@@ -2956,7 +3023,10 @@ var CONTEXT_FLAG_CONTRACTS = [
|
|
|
2956
3023
|
var GET_FLAG_CONTRACTS = [
|
|
2957
3024
|
{ flag: "--depth" },
|
|
2958
3025
|
{ flag: "--full" },
|
|
2959
|
-
{ flag: "--fields", list: true }
|
|
3026
|
+
{ flag: "--fields", list: true },
|
|
3027
|
+
{ flag: "--tree" },
|
|
3028
|
+
{ flag: "--tree-depth" },
|
|
3029
|
+
{ flag: "--tree_depth" }
|
|
2960
3030
|
];
|
|
2961
3031
|
var GUIDE_FLAG_CONTRACTS = [
|
|
2962
3032
|
{ flag: "--list" },
|
|
@@ -2973,6 +3043,7 @@ var SEARCH_FLAG_CONTRACTS = [
|
|
|
2973
3043
|
{ flag: "--mode" },
|
|
2974
3044
|
{ flag: "--semantic" },
|
|
2975
3045
|
{ flag: "--hybrid" },
|
|
3046
|
+
{ flag: "--semantic-weight" },
|
|
2976
3047
|
{ flag: "--include-linked" },
|
|
2977
3048
|
{ flag: "--title-exact" },
|
|
2978
3049
|
{ flag: "--phrase-exact" },
|
|
@@ -2982,7 +3053,7 @@ var SEARCH_FLAG_CONTRACTS = [
|
|
|
2982
3053
|
{ flag: "--limit" },
|
|
2983
3054
|
{ flag: "--status", list: true },
|
|
2984
3055
|
{ flag: "--type" },
|
|
2985
|
-
{ flag: "--tag" },
|
|
3056
|
+
{ flag: "--tag", aliases: ["--tags"] },
|
|
2986
3057
|
{ flag: "--priority" },
|
|
2987
3058
|
{ flag: "--deadline-before" },
|
|
2988
3059
|
{ flag: "--deadline-after" }
|
|
@@ -3106,6 +3177,8 @@ function resolveSubcommandFlagContractsForCommand(commandName) {
|
|
|
3106
3177
|
return withSubcommandGlobalFlags(UPGRADE_FLAG_CONTRACTS);
|
|
3107
3178
|
case "create":
|
|
3108
3179
|
return withSubcommandGlobalFlags(CREATE_FLAG_CONTRACTS);
|
|
3180
|
+
case "copy":
|
|
3181
|
+
return withSubcommandGlobalFlags(COPY_FLAG_CONTRACTS);
|
|
3109
3182
|
case "aggregate":
|
|
3110
3183
|
return withSubcommandGlobalFlags(AGGREGATE_FLAG_CONTRACTS);
|
|
3111
3184
|
case "calendar":
|
|
@@ -3122,6 +3195,8 @@ function resolveSubcommandFlagContractsForCommand(commandName) {
|
|
|
3122
3195
|
return withSubcommandGlobalFlags(HISTORY_REDACT_FLAG_CONTRACTS);
|
|
3123
3196
|
case "history-repair":
|
|
3124
3197
|
return withSubcommandGlobalFlags(HISTORY_REPAIR_FLAG_CONTRACTS);
|
|
3198
|
+
case "history-compact":
|
|
3199
|
+
return withSubcommandGlobalFlags(HISTORY_COMPACT_FLAG_CONTRACTS);
|
|
3125
3200
|
case "schema":
|
|
3126
3201
|
return withSubcommandGlobalFlags(SCHEMA_FLAG_CONTRACTS);
|
|
3127
3202
|
case "plan":
|
|
@@ -3265,7 +3340,7 @@ var SEARCH_CONTRACT_PARAMETER_KEYS = toSchemaKeyList([
|
|
|
3265
3340
|
]);
|
|
3266
3341
|
var AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS = ["author", "message", "force"];
|
|
3267
3342
|
var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
3268
|
-
init: { optional: ["prefix", "preset", "typePreset", "defaults", "author", "agentGuidance", "withPackages", "verbose"] },
|
|
3343
|
+
init: { optional: ["prefix", "preset", "typePreset", "defaults", "author", "agentGuidance", "withPackages", "force", "verbose"] },
|
|
3269
3344
|
config: {
|
|
3270
3345
|
required: ["scope", "configAction"],
|
|
3271
3346
|
optional: ["key", "value", "criterion", "clearCriteria", "format", "policy"]
|
|
@@ -3365,6 +3440,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3365
3440
|
required: ["title", "description", "type", "status", "priority", "message"],
|
|
3366
3441
|
optional: CREATE_CONTRACT_PARAMETER_KEYS
|
|
3367
3442
|
},
|
|
3443
|
+
copy: { required: ["id"], optional: ["title", "author", "message"] },
|
|
3368
3444
|
list: { optional: LIST_CONTRACT_PARAMETER_KEYS },
|
|
3369
3445
|
"list-all": { optional: LIST_CONTRACT_PARAMETER_KEYS },
|
|
3370
3446
|
"list-draft": { optional: LIST_CONTRACT_PARAMETER_KEYS },
|
|
@@ -3378,7 +3454,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3378
3454
|
guide: { optional: ["format", "depth"] },
|
|
3379
3455
|
context: { optional: CONTEXT_CONTRACT_PARAMETER_KEYS },
|
|
3380
3456
|
ctx: { optional: CONTEXT_CONTRACT_PARAMETER_KEYS },
|
|
3381
|
-
get: { required: ["id"], optional: ["depth", "full", "fields"] },
|
|
3457
|
+
get: { required: ["id"], optional: ["depth", "full", "fields", "tree", "treeDepth"] },
|
|
3382
3458
|
search: {
|
|
3383
3459
|
optional: SEARCH_CONTRACT_PARAMETER_KEYS,
|
|
3384
3460
|
anyOfRequired: [["query"], ["keywords"]]
|
|
@@ -3394,15 +3470,20 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3394
3470
|
required: ["id"],
|
|
3395
3471
|
optional: ["dryRun", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS]
|
|
3396
3472
|
},
|
|
3473
|
+
"history-compact": {
|
|
3474
|
+
required: ["id"],
|
|
3475
|
+
optional: ["before", "dryRun", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS]
|
|
3476
|
+
},
|
|
3397
3477
|
schema: {
|
|
3398
3478
|
required: ["subcommand"],
|
|
3399
3479
|
// No --message: schema mutations write config files, not item history.
|
|
3400
3480
|
optional: ["name", "description", "defaultStatus", "folder", "alias", "role", "order", "author", "force"],
|
|
3401
3481
|
conditionalRequired: [
|
|
3402
3482
|
{ property: "subcommand", value: "show", required: ["name"] },
|
|
3483
|
+
{ property: "subcommand", value: "show-status", required: ["name"] },
|
|
3403
3484
|
{ property: "subcommand", value: "add-type", required: ["name"] },
|
|
3404
3485
|
{ property: "subcommand", value: "remove-type", required: ["name"] },
|
|
3405
|
-
// add-status/remove-status pass the status id as `name`.
|
|
3486
|
+
// show-status/add-status/remove-status pass the status id as `name`.
|
|
3406
3487
|
{ property: "subcommand", value: "add-status", required: ["name"] },
|
|
3407
3488
|
{ property: "subcommand", value: "remove-status", required: ["name"] }
|
|
3408
3489
|
]
|
|
@@ -3468,7 +3549,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3468
3549
|
update: { required: ["id"], optional: UPDATE_CONTRACT_PARAMETER_KEYS },
|
|
3469
3550
|
"update-many": { optional: UPDATE_MANY_CONTRACT_PARAMETER_KEYS },
|
|
3470
3551
|
normalize: { optional: NORMALIZE_CONTRACT_PARAMETER_KEYS },
|
|
3471
|
-
close: { required: ["id"
|
|
3552
|
+
close: { required: ["id"], optional: ["text", "validateClose", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS] },
|
|
3472
3553
|
"close-many": { optional: CLOSE_MANY_CONTRACT_PARAMETER_KEYS },
|
|
3473
3554
|
delete: { required: ["id"], optional: ["dryRun", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS] },
|
|
3474
3555
|
append: { required: ["id", "body"], optional: AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS },
|
|
@@ -3632,7 +3713,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3632
3713
|
release: { required: ["id"], optional: ["allowAuditRelease", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS] },
|
|
3633
3714
|
"start-task": { required: ["id"], optional: AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS },
|
|
3634
3715
|
"pause-task": { required: ["id"], optional: AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS },
|
|
3635
|
-
"close-task": { required: ["id", "text"
|
|
3716
|
+
"close-task": { required: ["id"], optional: ["text", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS] }
|
|
3636
3717
|
};
|
|
3637
3718
|
var PM_TOOL_ACTION_PARAMETER_CONTRACTS = Object.freeze(Object.fromEntries(PM_TOOL_ACTIONS.map((action) => [action, PM_TOOL_ACTION_SCHEMA_CONTRACTS[action]])));
|
|
3638
3719
|
function fallbackToolParameterDescription(key) {
|
|
@@ -3795,6 +3876,7 @@ export {
|
|
|
3795
3876
|
CONTEXT_COMMANDER_STRING_OPTION_CONTRACTS,
|
|
3796
3877
|
ACTIVITY_COMMANDER_STRING_OPTION_CONTRACTS,
|
|
3797
3878
|
readFirstStringFromCommanderOptions,
|
|
3879
|
+
readFirstValueFromCommanderOptions,
|
|
3798
3880
|
readStringArrayFromCommanderOptions,
|
|
3799
3881
|
CREATE_COMMANDER_OPTION_REGISTRATION_CONTRACTS,
|
|
3800
3882
|
CREATE_COMMANDER_STRING_OPTION_CONTRACTS,
|
|
@@ -3824,6 +3906,7 @@ export {
|
|
|
3824
3906
|
HISTORY_FLAG_CONTRACTS,
|
|
3825
3907
|
HISTORY_REDACT_FLAG_CONTRACTS,
|
|
3826
3908
|
HISTORY_REPAIR_FLAG_CONTRACTS,
|
|
3909
|
+
HISTORY_COMPACT_FLAG_CONTRACTS,
|
|
3827
3910
|
SCHEMA_FLAG_CONTRACTS,
|
|
3828
3911
|
PLAN_FLAG_CONTRACTS,
|
|
3829
3912
|
INIT_FLAG_CONTRACTS,
|
|
@@ -3878,6 +3961,6 @@ export {
|
|
|
3878
3961
|
resolveSubcommandFlagContractsForCommand,
|
|
3879
3962
|
PM_TOOL_PARAMETERS_SCHEMA
|
|
3880
3963
|
};
|
|
3881
|
-
//# sourceMappingURL=chunk-
|
|
3964
|
+
//# sourceMappingURL=chunk-KCGMABHM.js.map
|
|
3882
3965
|
|
|
3883
|
-
//# debugId=
|
|
3966
|
+
//# debugId=bf419057-9296-52c0-b826-82f290efb5c6
|