@unbrained/pm-cli 2026.6.13 → 2026.6.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +102 -0
- package/README.md +1 -1
- package/dist/cli/bootstrap-args.d.ts +29 -0
- package/dist/cli/bootstrap-args.js +11 -4
- package/dist/cli/bootstrap-args.js.map +1 -1
- package/dist/cli/commander-usage.d.ts +12 -0
- package/dist/cli/commander-usage.js +18 -7
- package/dist/cli/commander-usage.js.map +1 -1
- package/dist/cli/commands/activity.d.ts +19 -0
- package/dist/cli/commands/activity.js +12 -2
- package/dist/cli/commands/activity.js.map +1 -1
- package/dist/cli/commands/aggregate.d.ts +58 -0
- package/dist/cli/commands/aggregate.js +48 -15
- package/dist/cli/commands/aggregate.js.map +1 -1
- package/dist/cli/commands/annotation-command.d.ts +6 -1
- package/dist/cli/commands/annotation-command.js +72 -2
- package/dist/cli/commands/annotation-command.js.map +1 -1
- package/dist/cli/commands/append.js +4 -3
- package/dist/cli/commands/append.js.map +1 -1
- package/dist/cli/commands/close-many.d.ts +20 -0
- package/dist/cli/commands/close-many.js +14 -23
- package/dist/cli/commands/close-many.js.map +1 -1
- package/dist/cli/commands/close.js +37 -4
- package/dist/cli/commands/close.js.map +1 -1
- package/dist/cli/commands/comments-audit.js +3 -2
- package/dist/cli/commands/comments-audit.js.map +1 -1
- package/dist/cli/commands/comments.d.ts +2 -0
- package/dist/cli/commands/comments.js +49 -23
- package/dist/cli/commands/comments.js.map +1 -1
- package/dist/cli/commands/completion.js +362 -15
- package/dist/cli/commands/completion.js.map +1 -1
- package/dist/cli/commands/config.d.ts +51 -1
- package/dist/cli/commands/config.js +50 -12
- package/dist/cli/commands/config.js.map +1 -1
- package/dist/cli/commands/context.d.ts +79 -1
- package/dist/cli/commands/context.js +151 -25
- package/dist/cli/commands/context.js.map +1 -1
- package/dist/cli/commands/contracts.d.ts +80 -1
- package/dist/cli/commands/contracts.js +54 -4
- package/dist/cli/commands/contracts.js.map +1 -1
- package/dist/cli/commands/create.d.ts +51 -0
- package/dist/cli/commands/create.js +137 -18
- package/dist/cli/commands/create.js.map +1 -1
- package/dist/cli/commands/dedupe-audit.d.ts +33 -0
- package/dist/cli/commands/dedupe-audit.js +18 -14
- package/dist/cli/commands/dedupe-audit.js.map +1 -1
- package/dist/cli/commands/deps.js +7 -4
- package/dist/cli/commands/deps.js.map +1 -1
- package/dist/cli/commands/event-validation-messages.js +3 -3
- package/dist/cli/commands/event-validation-messages.js.map +1 -1
- package/dist/cli/commands/extension/bundled-catalog.d.ts +7 -0
- package/dist/cli/commands/extension/bundled-catalog.js +19 -15
- package/dist/cli/commands/extension/bundled-catalog.js.map +1 -1
- package/dist/cli/commands/extension/install-sources.d.ts +41 -1
- package/dist/cli/commands/extension/install-sources.js +26 -8
- package/dist/cli/commands/extension/install-sources.js.map +1 -1
- package/dist/cli/commands/extension/shared.d.ts +5 -0
- package/dist/cli/commands/extension/shared.js +9 -3
- package/dist/cli/commands/extension/shared.js.map +1 -1
- package/dist/cli/commands/extension.d.ts +133 -1
- package/dist/cli/commands/extension.js +127 -9
- package/dist/cli/commands/extension.js.map +1 -1
- package/dist/cli/commands/files.d.ts +30 -1
- package/dist/cli/commands/files.js +21 -2
- package/dist/cli/commands/files.js.map +1 -1
- package/dist/cli/commands/focus.d.ts +11 -0
- package/dist/cli/commands/focus.js +86 -0
- package/dist/cli/commands/focus.js.map +1 -0
- package/dist/cli/commands/get.d.ts +9 -2
- package/dist/cli/commands/get.js +34 -6
- package/dist/cli/commands/get.js.map +1 -1
- package/dist/cli/commands/guide.d.ts +5 -0
- package/dist/cli/commands/guide.js +6 -3
- package/dist/cli/commands/guide.js.map +1 -1
- package/dist/cli/commands/health.d.ts +109 -0
- package/dist/cli/commands/health.js +87 -35
- package/dist/cli/commands/health.js.map +1 -1
- package/dist/cli/commands/history-compact.js +27 -36
- package/dist/cli/commands/history-compact.js.map +1 -1
- package/dist/cli/commands/history-redact.d.ts +46 -0
- package/dist/cli/commands/history-redact.js +99 -67
- package/dist/cli/commands/history-redact.js.map +1 -1
- package/dist/cli/commands/history-repair.js +34 -37
- package/dist/cli/commands/history-repair.js.map +1 -1
- package/dist/cli/commands/history.js +6 -2
- package/dist/cli/commands/history.js.map +1 -1
- package/dist/cli/commands/index.d.ts +4 -1
- package/dist/cli/commands/index.js +6 -3
- package/dist/cli/commands/index.js.map +1 -1
- package/dist/cli/commands/init-agent-guidance.d.ts +54 -0
- package/dist/cli/commands/init-agent-guidance.js +31 -4
- package/dist/cli/commands/init-agent-guidance.js.map +1 -1
- package/dist/cli/commands/init.d.ts +38 -2
- package/dist/cli/commands/init.js +50 -64
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/commands/learnings.js +4 -3
- package/dist/cli/commands/learnings.js.map +1 -1
- package/dist/cli/commands/lifecycle-transitions.d.ts +23 -0
- package/dist/cli/commands/lifecycle-transitions.js +41 -0
- package/dist/cli/commands/lifecycle-transitions.js.map +1 -0
- package/dist/cli/commands/linked-artifacts.d.ts +5 -0
- package/dist/cli/commands/linked-artifacts.js +18 -4
- package/dist/cli/commands/linked-artifacts.js.map +1 -1
- package/dist/cli/commands/linked-test-parsers.d.ts +5 -0
- package/dist/cli/commands/linked-test-parsers.js +5 -2
- package/dist/cli/commands/linked-test-parsers.js.map +1 -1
- package/dist/cli/commands/list-filter-shared.d.ts +8 -0
- package/dist/cli/commands/list-filter-shared.js +70 -0
- package/dist/cli/commands/list-filter-shared.js.map +1 -0
- package/dist/cli/commands/list.d.ts +116 -0
- package/dist/cli/commands/list.js +194 -6
- package/dist/cli/commands/list.js.map +1 -1
- package/dist/cli/commands/normalize.js +16 -2
- package/dist/cli/commands/normalize.js.map +1 -1
- package/dist/cli/commands/notes.js +4 -3
- package/dist/cli/commands/notes.js.map +1 -1
- package/dist/cli/commands/plan.js +3 -2
- package/dist/cli/commands/plan.js.map +1 -1
- package/dist/cli/commands/recurrence-parsers.d.ts +9 -0
- package/dist/cli/commands/recurrence-parsers.js +19 -2
- package/dist/cli/commands/recurrence-parsers.js.map +1 -1
- package/dist/cli/commands/reindex.d.ts +83 -0
- package/dist/cli/commands/reindex.js +45 -10
- package/dist/cli/commands/reindex.js.map +1 -1
- package/dist/cli/commands/repeatable-metadata-parsers.js +28 -4
- package/dist/cli/commands/repeatable-metadata-parsers.js.map +1 -1
- package/dist/cli/commands/restore.d.ts +40 -1
- package/dist/cli/commands/restore.js +27 -2
- package/dist/cli/commands/restore.js.map +1 -1
- package/dist/cli/commands/scheduling-shortcuts.d.ts +43 -0
- package/dist/cli/commands/scheduling-shortcuts.js +87 -0
- package/dist/cli/commands/scheduling-shortcuts.js.map +1 -0
- package/dist/cli/commands/schema.d.ts +152 -2
- package/dist/cli/commands/schema.js +510 -4
- package/dist/cli/commands/schema.js.map +1 -1
- package/dist/cli/commands/search.d.ts +289 -1
- package/dist/cli/commands/search.js +367 -60
- package/dist/cli/commands/search.js.map +1 -1
- package/dist/cli/commands/stats.d.ts +38 -0
- package/dist/cli/commands/stats.js +38 -10
- package/dist/cli/commands/stats.js.map +1 -1
- package/dist/cli/commands/telemetry.js +5 -3
- package/dist/cli/commands/telemetry.js.map +1 -1
- package/dist/cli/commands/templates.d.ts +18 -0
- package/dist/cli/commands/templates.js +9 -2
- package/dist/cli/commands/templates.js.map +1 -1
- package/dist/cli/commands/test-all.d.ts +5 -0
- package/dist/cli/commands/test-all.js +9 -3
- package/dist/cli/commands/test-all.js.map +1 -1
- package/dist/cli/commands/test.d.ts +70 -1
- package/dist/cli/commands/test.js +84 -3
- package/dist/cli/commands/test.js.map +1 -1
- package/dist/cli/commands/update-many.d.ts +34 -1
- package/dist/cli/commands/update-many.js +60 -31
- package/dist/cli/commands/update-many.js.map +1 -1
- package/dist/cli/commands/update.d.ts +71 -0
- package/dist/cli/commands/update.js +91 -11
- package/dist/cli/commands/update.js.map +1 -1
- package/dist/cli/commands/upgrade.d.ts +28 -1
- package/dist/cli/commands/upgrade.js +17 -4
- package/dist/cli/commands/upgrade.js.map +1 -1
- package/dist/cli/commands/validate.d.ts +114 -0
- package/dist/cli/commands/validate.js +153 -8
- package/dist/cli/commands/validate.js.map +1 -1
- package/dist/cli/error-guidance.d.ts +30 -0
- package/dist/cli/error-guidance.js +41 -6
- package/dist/cli/error-guidance.js.map +1 -1
- package/dist/cli/extension-command-options.js +9 -7
- package/dist/cli/extension-command-options.js.map +1 -1
- package/dist/cli/help-content.d.ts +8 -0
- package/dist/cli/help-content.js +54 -6
- package/dist/cli/help-content.js.map +1 -1
- package/dist/cli/help-json-payload.d.ts +19 -1
- package/dist/cli/help-json-payload.js +16 -7
- package/dist/cli/help-json-payload.js.map +1 -1
- package/dist/cli/main.d.ts +242 -0
- package/dist/cli/main.js +241 -45
- package/dist/cli/main.js.map +1 -1
- package/dist/cli/register-list-query.js +62 -5
- package/dist/cli/register-list-query.js.map +1 -1
- package/dist/cli/register-mutation.d.ts +16 -0
- package/dist/cli/register-mutation.js +376 -100
- package/dist/cli/register-mutation.js.map +1 -1
- package/dist/cli/register-operations.d.ts +8 -0
- package/dist/cli/register-operations.js +134 -11
- package/dist/cli/register-operations.js.map +1 -1
- package/dist/cli/register-setup.js +9 -6
- package/dist/cli/register-setup.js.map +1 -1
- package/dist/cli/registration-helpers.d.ts +4 -0
- package/dist/cli/registration-helpers.js +124 -38
- package/dist/cli/registration-helpers.js.map +1 -1
- package/dist/cli-bundle/chunks/activity-PZYSZA26.js +18 -0
- package/dist/cli-bundle/chunks/{activity-PPO7QWJF.js → activity-SFM4THAU.js} +13 -11
- package/dist/cli-bundle/chunks/{aggregate-IRHJWEKG.js → aggregate-Y5ADDKBM.js} +55 -26
- package/dist/cli-bundle/chunks/aggregate-Y5ADDKBM.js.map +1 -0
- package/dist/cli-bundle/chunks/{aggregate-XEBW22UQ.js → aggregate-YTAUQLRW.js} +54 -25
- package/dist/cli-bundle/chunks/aggregate-YTAUQLRW.js.map +7 -0
- package/dist/cli-bundle/chunks/{append-NL67JNJU.js → append-4M7OVV7M.js} +11 -11
- package/dist/cli-bundle/chunks/append-4M7OVV7M.js.map +1 -0
- package/dist/cli-bundle/chunks/{append-N2AWXKZC.js → append-HSPK4L4V.js} +10 -10
- package/dist/cli-bundle/chunks/{append-N2AWXKZC.js.map → append-HSPK4L4V.js.map} +2 -2
- package/dist/cli-bundle/chunks/{chunk-IIOIBAQW.js → chunk-26BM6YLO.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-CEGUH2E5.js → chunk-2C6FU3D3.js} +5 -5
- package/dist/cli-bundle/chunks/{chunk-CEGUH2E5.js.map → chunk-2C6FU3D3.js.map} +1 -1
- package/dist/cli-bundle/chunks/{chunk-SQDKAEKG.js → chunk-2OPYLXDO.js} +117 -37
- package/dist/cli-bundle/chunks/chunk-2OPYLXDO.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-4ZKKZMLH.js → chunk-2S46FKLB.js} +104 -30
- package/dist/cli-bundle/chunks/chunk-2S46FKLB.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-LSSTKL3Y.js → chunk-2TMKMTEI.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-QU3OPNVV.js → chunk-2VH7DFSJ.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-RHYBR6G7.js → chunk-3ENF4NO4.js} +74 -14
- package/dist/cli-bundle/chunks/chunk-3ENF4NO4.js.map +1 -0
- package/dist/cli-bundle/chunks/chunk-3GR2HTYY.js +404 -0
- package/dist/cli-bundle/chunks/chunk-3GR2HTYY.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-AAUYXSFF.js → chunk-3R3FYCBV.js} +223 -50
- package/dist/cli-bundle/chunks/chunk-3R3FYCBV.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-5HSAHRYA.js → chunk-3UKJX3RP.js} +82 -21
- package/dist/cli-bundle/chunks/chunk-3UKJX3RP.js.map +7 -0
- package/dist/cli-bundle/chunks/chunk-4RTLBTYS.js +83 -0
- package/dist/cli-bundle/chunks/chunk-4RTLBTYS.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-UCVJP4JL.js → chunk-5FDYWOJT.js} +52 -8
- package/dist/cli-bundle/chunks/chunk-5FDYWOJT.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-LGOXXQUW.js → chunk-5XGWFUW2.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-LYNQ3NGI.js → chunk-6BD77FGL.js} +309 -20
- package/dist/cli-bundle/chunks/chunk-6BD77FGL.js.map +1 -0
- package/dist/cli-bundle/chunks/chunk-6EFCFPNE.js +35 -0
- package/dist/cli-bundle/chunks/chunk-6EFCFPNE.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-36BCSMKP.js → chunk-6HF6CIY2.js} +26 -11
- package/dist/cli-bundle/chunks/chunk-6HF6CIY2.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-M3SI2REU.js → chunk-6PBPD4MN.js} +322 -19
- package/dist/cli-bundle/chunks/chunk-6PBPD4MN.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-TSXWFN3L.js → chunk-6VFUEGOA.js} +53 -9
- package/dist/cli-bundle/chunks/chunk-6VFUEGOA.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-2J2AH4V5.js → chunk-AAOXSPAE.js} +56 -72
- package/dist/cli-bundle/chunks/chunk-AAOXSPAE.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-Z647PYLD.js → chunk-AJCQ5GT6.js} +4 -4
- package/dist/cli-bundle/chunks/chunk-ALTGYHN3.js +61 -0
- package/dist/cli-bundle/chunks/chunk-ALTGYHN3.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-KHGTYCJ6.js → chunk-AOJQL33L.js} +83 -22
- package/dist/cli-bundle/chunks/chunk-AOJQL33L.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-5LMF75Q7.js → chunk-AXLDUGXA.js} +7 -4
- package/dist/cli-bundle/chunks/{chunk-5LMF75Q7.js.map → chunk-AXLDUGXA.js.map} +2 -2
- package/dist/cli-bundle/chunks/{chunk-DWG4FHPY.js → chunk-BITCVGHT.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-JE5IZXDS.js → chunk-CGQTFWYI.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-LFW5NQUP.js → chunk-CHM2VFVL.js} +407 -290
- package/dist/cli-bundle/chunks/chunk-CHM2VFVL.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-VYZNX4C5.js → chunk-COVLE33A.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-SGMGMCIF.js → chunk-DDNBWH4W.js} +157 -25
- package/dist/cli-bundle/chunks/chunk-DDNBWH4W.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-6ZFTM65G.js → chunk-F5MSD5HE.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-6TBR5AZ2.js → chunk-FAXB6F6R.js} +76 -8
- package/dist/cli-bundle/chunks/chunk-FAXB6F6R.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-L6YQONLM.js → chunk-FPDK5BZQ.js} +18 -19
- package/dist/cli-bundle/chunks/chunk-FPDK5BZQ.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-AGG32LKL.js → chunk-FPY2TOFI.js} +480 -24
- package/dist/cli-bundle/chunks/chunk-FPY2TOFI.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-JWXTOYBI.js → chunk-G2MOUCTU.js} +121 -44
- package/dist/cli-bundle/chunks/chunk-G2MOUCTU.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-3VULHQNS.js → chunk-G57RHEGP.js} +36 -18
- package/dist/cli-bundle/chunks/chunk-G57RHEGP.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-QQG4HEX7.js → chunk-IROHIK2T.js} +37 -63
- package/dist/cli-bundle/chunks/chunk-IROHIK2T.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-GOO4UXBI.js → chunk-JZHL4E3Q.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-XXLMJDUB.js → chunk-KA22USXD.js} +21 -22
- package/dist/cli-bundle/chunks/chunk-KA22USXD.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-WLH7X4RN.js → chunk-KBC4O7SY.js} +56 -72
- package/dist/cli-bundle/chunks/chunk-KBC4O7SY.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-NN6RKGFW.js → chunk-KCAGIH6K.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-BVL5KGVA.js → chunk-KO3VM5GS.js} +27 -12
- package/dist/cli-bundle/chunks/chunk-KO3VM5GS.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-IXVSSHGV.js → chunk-LNH5Q32E.js} +13 -8
- package/dist/cli-bundle/chunks/chunk-LNH5Q32E.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-3FMQMHAG.js → chunk-LORM3M2I.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-3FMQMHAG.js.map → chunk-LORM3M2I.js.map} +1 -1
- package/dist/cli-bundle/chunks/{chunk-PNYAAB4S.js → chunk-LWGMDLQ6.js} +8 -3
- package/dist/cli-bundle/chunks/chunk-LWGMDLQ6.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-GFBEXDCQ.js → chunk-M4AVU7VC.js} +19 -8
- package/dist/cli-bundle/chunks/{chunk-GFBEXDCQ.js.map → chunk-M4AVU7VC.js.map} +2 -2
- package/dist/cli-bundle/chunks/{chunk-3CQPVBK3.js → chunk-MIBX6ZRN.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-AUDDXKNX.js → chunk-MMF2E3FM.js} +77 -9
- package/dist/cli-bundle/chunks/chunk-MMF2E3FM.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-RFR2YQGO.js → chunk-MORZOR7W.js} +21 -8
- package/dist/cli-bundle/chunks/chunk-MORZOR7W.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-4TPFXE2R.js → chunk-MUTUZ2HD.js} +118 -74
- package/dist/cli-bundle/chunks/chunk-MUTUZ2HD.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-HZOX5BYD.js → chunk-OGXEBTX3.js} +35 -17
- package/dist/cli-bundle/chunks/chunk-OGXEBTX3.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-LOAR5TKX.js → chunk-OOIH6J5T.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-LOAR5TKX.js.map → chunk-OOIH6J5T.js.map} +1 -1
- package/dist/cli-bundle/chunks/{chunk-VNC2HBL4.js → chunk-OSBJPPX3.js} +20 -9
- package/dist/cli-bundle/chunks/chunk-OSBJPPX3.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-2ANTZBYF.js → chunk-PJS3WDO2.js} +122 -45
- package/dist/cli-bundle/chunks/chunk-PJS3WDO2.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-7SM7VA5I.js → chunk-QGPE2H6Z.js} +19 -8
- package/dist/cli-bundle/chunks/chunk-QGPE2H6Z.js.map +7 -0
- package/dist/cli-bundle/chunks/chunk-QVTFFLR2.js +58 -0
- package/dist/cli-bundle/chunks/chunk-QVTFFLR2.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-JCTZV7TO.js → chunk-QW2F6ARZ.js} +8 -5
- package/dist/cli-bundle/chunks/{chunk-JCTZV7TO.js.map → chunk-QW2F6ARZ.js.map} +1 -1
- package/dist/cli-bundle/chunks/{chunk-TOX7YQ7X.js → chunk-QXC3LWB7.js} +223 -50
- package/dist/cli-bundle/chunks/chunk-QXC3LWB7.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-W6KNFAMZ.js → chunk-QXMXRPX5.js} +9 -8
- package/dist/cli-bundle/chunks/chunk-QXMXRPX5.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-O3YCJOVX.js → chunk-R4AKUPKI.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-O3YCJOVX.js.map → chunk-R4AKUPKI.js.map} +1 -1
- package/dist/cli-bundle/chunks/chunk-RASR23HV.js +394 -0
- package/dist/cli-bundle/chunks/chunk-RASR23HV.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-JW7D6437.js → chunk-SCDCNGCV.js} +20 -9
- package/dist/cli-bundle/chunks/chunk-SCDCNGCV.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-GRZGHGRG.js → chunk-SCS5PVAA.js} +10 -9
- package/dist/cli-bundle/chunks/{chunk-GRZGHGRG.js.map → chunk-SCS5PVAA.js.map} +2 -2
- package/dist/cli-bundle/chunks/{chunk-S2CDTRJ6.js → chunk-SJCMTOEU.js} +381 -271
- package/dist/cli-bundle/chunks/chunk-SJCMTOEU.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-XWDZVCBJ.js → chunk-SO2ES46D.js} +11 -10
- package/dist/cli-bundle/chunks/{chunk-XWDZVCBJ.js.map → chunk-SO2ES46D.js.map} +1 -1
- package/dist/cli-bundle/chunks/{chunk-MACCNKSZ.js → chunk-TBV33CB4.js} +36 -62
- package/dist/cli-bundle/chunks/chunk-TBV33CB4.js.map +7 -0
- package/dist/cli-bundle/chunks/chunk-TEFEXQWI.js +86 -0
- package/dist/cli-bundle/chunks/chunk-TEFEXQWI.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-HLEGAQXT.js → chunk-TWBDDVIF.js} +20 -7
- package/dist/cli-bundle/chunks/chunk-TWBDDVIF.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-4JHJ7YG2.js → chunk-UGUJ2UOR.js} +118 -74
- package/dist/cli-bundle/chunks/chunk-UGUJ2UOR.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-XOYHMHFF.js → chunk-UN6P3IJ4.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-32XSW44C.js → chunk-V2GYOMEX.js} +10 -9
- package/dist/cli-bundle/chunks/chunk-V2GYOMEX.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-HWHONML5.js → chunk-VF3KQGNY.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-SOHXUA2Q.js → chunk-VHG6LUKR.js} +116 -36
- package/dist/cli-bundle/chunks/chunk-VHG6LUKR.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-7CRFV6JR.js → chunk-VXHMQDXA.js} +483 -27
- package/dist/cli-bundle/chunks/chunk-VXHMQDXA.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-IZHCCG4S.js → chunk-VXRFAE7W.js} +14 -9
- package/dist/cli-bundle/chunks/chunk-VXRFAE7W.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-R4VWYWRN.js → chunk-W3HFLORZ.js} +7 -2
- package/dist/cli-bundle/chunks/chunk-W3HFLORZ.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-4FHLNNW7.js → chunk-WQRL4COW.js} +74 -14
- package/dist/cli-bundle/chunks/chunk-WQRL4COW.js.map +7 -0
- package/dist/cli-bundle/chunks/chunk-X3W5ESZQ.js +32 -0
- package/dist/cli-bundle/chunks/chunk-X3W5ESZQ.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-MGAQ6KZG.js → chunk-XESAPVZ4.js} +166 -27
- package/dist/cli-bundle/chunks/chunk-XESAPVZ4.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-PEH7SZD2.js → chunk-YLAW3FZN.js} +105 -31
- package/dist/cli-bundle/chunks/chunk-YLAW3FZN.js.map +7 -0
- package/dist/cli-bundle/chunks/{claim-HE6KEGJW.js → claim-WGAWJCPY.js} +10 -10
- package/dist/cli-bundle/chunks/{claim-QJOQBH7J.js → claim-ZI6P4LMU.js} +10 -10
- package/dist/cli-bundle/chunks/close-I7PRQ5G7.js +13 -0
- package/dist/cli-bundle/chunks/{close-SPUFW5QR.js → close-JMVVSIQE.js} +8 -8
- package/dist/cli-bundle/chunks/{close-many-GKAJX54X.js → close-many-IKPJXVOZ.js} +32 -20
- package/dist/cli-bundle/chunks/close-many-IKPJXVOZ.js.map +1 -0
- package/dist/cli-bundle/chunks/{close-many-GL6NRUU5.js → close-many-TXABDCSJ.js} +31 -19
- package/dist/cli-bundle/chunks/close-many-TXABDCSJ.js.map +7 -0
- package/dist/cli-bundle/chunks/{comments-5FPT6L7N.js → comments-RLWR2S7W.js} +55 -31
- package/dist/cli-bundle/chunks/comments-RLWR2S7W.js.map +1 -0
- package/dist/cli-bundle/chunks/{comments-TOLOYWNI.js → comments-YAMXKHUX.js} +54 -30
- package/dist/cli-bundle/chunks/comments-YAMXKHUX.js.map +7 -0
- package/dist/cli-bundle/chunks/{config-7N6D7YJE.js → config-7ICYC2WU.js} +83 -19
- package/dist/cli-bundle/chunks/config-7ICYC2WU.js.map +7 -0
- package/dist/cli-bundle/chunks/{config-4MN45TIH.js → config-NGWN3EXC.js} +83 -19
- package/dist/cli-bundle/chunks/config-NGWN3EXC.js.map +1 -0
- package/dist/cli-bundle/chunks/{context-AQSLE7DZ.js → context-K6QAHN5H.js} +128 -39
- package/dist/cli-bundle/chunks/context-K6QAHN5H.js.map +1 -0
- package/dist/cli-bundle/chunks/{context-U3PUJMVN.js → context-VGXOOAH2.js} +127 -38
- package/dist/cli-bundle/chunks/context-VGXOOAH2.js.map +7 -0
- package/dist/cli-bundle/chunks/{contracts-ITSJXO3O.js → contracts-KJGY2AQA.js} +99 -15
- package/dist/cli-bundle/chunks/contracts-KJGY2AQA.js.map +1 -0
- package/dist/cli-bundle/chunks/{contracts-H7KCQXLY.js → contracts-KMA6OJY7.js} +99 -15
- package/dist/cli-bundle/chunks/contracts-KMA6OJY7.js.map +7 -0
- package/dist/cli-bundle/chunks/{copy-EB3MUCSW.js → copy-Q2PPU4AY.js} +7 -7
- package/dist/cli-bundle/chunks/{copy-C4W522JM.js → copy-SC6UF3PI.js} +7 -7
- package/dist/cli-bundle/chunks/{create-4EQNELMY.js → create-76FE7JVF.js} +16 -13
- package/dist/cli-bundle/chunks/create-RTRFW6RE.js +30 -0
- package/dist/cli-bundle/chunks/{delete-X5QLXIQX.js → delete-T6DJSUJI.js} +7 -7
- package/dist/cli-bundle/chunks/{delete-ZLGUYIXU.js → delete-XFUX533E.js} +7 -7
- package/dist/cli-bundle/chunks/{deps-GPB3LGWN.js → deps-5GWMMS6D.js} +9 -10
- package/dist/cli-bundle/chunks/{deps-GPB3LGWN.js.map → deps-5GWMMS6D.js.map} +2 -2
- package/dist/cli-bundle/chunks/{deps-HV2C2L46.js → deps-MCCU633S.js} +10 -11
- package/dist/cli-bundle/chunks/deps-MCCU633S.js.map +1 -0
- package/dist/cli-bundle/chunks/{docs-SRTLCQOL.js → docs-HE3HCQ4S.js} +9 -9
- package/dist/cli-bundle/chunks/{docs-RJQPLROO.js → docs-SXMOABHR.js} +9 -9
- package/dist/cli-bundle/chunks/{extension-WKPVPNCC.js → extension-E23K4QRR.js} +7 -5
- package/dist/cli-bundle/chunks/{extension-MM3TVWOO.js → extension-PMD3XMLN.js} +7 -5
- package/dist/cli-bundle/chunks/{files-OIFN3DQX.js → files-2RSWGPEU.js} +25 -11
- package/dist/cli-bundle/chunks/files-2RSWGPEU.js.map +1 -0
- package/dist/cli-bundle/chunks/{files-LIFDKNCN.js → files-ZWFJFWBK.js} +24 -10
- package/dist/cli-bundle/chunks/files-ZWFJFWBK.js.map +7 -0
- package/dist/cli-bundle/chunks/focus-KTTB3P3F.js +106 -0
- package/dist/cli-bundle/chunks/focus-KTTB3P3F.js.map +1 -0
- package/dist/cli-bundle/chunks/focus-ZMDP4FEL.js +109 -0
- package/dist/cli-bundle/chunks/focus-ZMDP4FEL.js.map +7 -0
- package/dist/cli-bundle/chunks/{gc-NRFHLVFT.js → gc-BXIAKLAH.js} +3 -3
- package/dist/cli-bundle/chunks/{gc-DL6AVOX5.js → gc-C7K6JNUO.js} +3 -3
- package/dist/cli-bundle/chunks/{get-SAB7CRBG.js → get-AZQLC4NO.js} +43 -16
- package/dist/cli-bundle/chunks/get-AZQLC4NO.js.map +1 -0
- package/dist/cli-bundle/chunks/{get-K7UULTQF.js → get-I65HTAWO.js} +42 -15
- package/dist/cli-bundle/chunks/get-I65HTAWO.js.map +7 -0
- package/dist/cli-bundle/chunks/{health-NUVZYIEV.js → health-3MFFPQVZ.js} +75 -49
- package/dist/cli-bundle/chunks/health-3MFFPQVZ.js.map +1 -0
- package/dist/cli-bundle/chunks/{health-VJWH3ZFK.js → health-MYZEOCLI.js} +74 -48
- package/dist/cli-bundle/chunks/health-MYZEOCLI.js.map +7 -0
- package/dist/cli-bundle/chunks/{history-GYFD2DJW.js → history-73Z6OBFZ.js} +10 -10
- package/dist/cli-bundle/chunks/history-BIPHVUMF.js +20 -0
- package/dist/cli-bundle/chunks/{history-compact-WQZQ6KXM.js → history-compact-24VQ63A3.js} +37 -46
- package/dist/cli-bundle/chunks/history-compact-24VQ63A3.js.map +7 -0
- package/dist/cli-bundle/chunks/{history-compact-SLL6ESXH.js → history-compact-UIAR2OI4.js} +38 -47
- package/dist/cli-bundle/chunks/history-compact-UIAR2OI4.js.map +1 -0
- package/dist/cli-bundle/chunks/{history-redact-SDTDR6WM.js → history-redact-7YCXEWJD.js} +13 -11
- package/dist/cli-bundle/chunks/history-redact-WZZ6GZ2Z.js +21 -0
- package/dist/cli-bundle/chunks/{history-repair-BJCGM6Q3.js → history-repair-4NOFFG2W.js} +44 -49
- package/dist/cli-bundle/chunks/history-repair-4NOFFG2W.js.map +1 -0
- package/dist/cli-bundle/chunks/{history-repair-UCYS55ZX.js → history-repair-GQN2X4TR.js} +43 -48
- package/dist/cli-bundle/chunks/history-repair-GQN2X4TR.js.map +7 -0
- package/dist/cli-bundle/chunks/init-K34V4PZR.js +20 -0
- package/dist/cli-bundle/chunks/{init-MXV57LKL.js → init-TDEDNVMM.js} +12 -9
- package/dist/cli-bundle/chunks/{learnings-QKJOKEAO.js → learnings-TV2CTGJ3.js} +13 -12
- package/dist/cli-bundle/chunks/learnings-TV2CTGJ3.js.map +7 -0
- package/dist/cli-bundle/chunks/{learnings-L6KTZGOT.js → learnings-U67FTXPB.js} +14 -13
- package/dist/cli-bundle/chunks/learnings-U67FTXPB.js.map +1 -0
- package/dist/cli-bundle/chunks/list-MSHYOCFU.js +33 -0
- package/dist/cli-bundle/chunks/list-VV57WGUD.js +29 -0
- package/dist/cli-bundle/chunks/{notes-HMCB7TK6.js → notes-EUANWWKD.js} +13 -12
- package/dist/cli-bundle/chunks/notes-EUANWWKD.js.map +7 -0
- package/dist/cli-bundle/chunks/{notes-3NLK7WTZ.js → notes-GYVNDAL4.js} +14 -13
- package/dist/cli-bundle/chunks/notes-GYVNDAL4.js.map +1 -0
- package/dist/cli-bundle/chunks/{plan-NANUWH4T.js → plan-4LF4AV63.js} +15 -14
- package/dist/cli-bundle/chunks/plan-4LF4AV63.js.map +7 -0
- package/dist/cli-bundle/chunks/{plan-DWBYI5C6.js → plan-W27O6DBS.js} +16 -15
- package/dist/cli-bundle/chunks/plan-W27O6DBS.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-list-query-SMMMLSWW.js → register-list-query-BXLEHJ7L.js} +32 -23
- package/dist/cli-bundle/chunks/register-list-query-BXLEHJ7L.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-list-query-PWQ5F2VI.js → register-list-query-C2MS3BVQ.js} +31 -22
- package/dist/cli-bundle/chunks/register-list-query-C2MS3BVQ.js.map +7 -0
- package/dist/cli-bundle/chunks/{register-mutation-QKFPTIZG.js → register-mutation-6UCOEQ6L.js} +361 -106
- package/dist/cli-bundle/chunks/register-mutation-6UCOEQ6L.js.map +7 -0
- package/dist/cli-bundle/chunks/{register-mutation-ZYJQ4DVP.js → register-mutation-HE73PREP.js} +355 -107
- package/dist/cli-bundle/chunks/register-mutation-HE73PREP.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-operations-2FMZ6WEF.js → register-operations-L6C32FDA.js} +111 -39
- package/dist/cli-bundle/chunks/register-operations-L6C32FDA.js.map +7 -0
- package/dist/cli-bundle/chunks/{register-operations-BAFQURZG.js → register-operations-QQEHEX4P.js} +112 -40
- package/dist/cli-bundle/chunks/register-operations-QQEHEX4P.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-setup-QN2XV7UL.js → register-setup-A7N4PNT3.js} +18 -21
- package/dist/cli-bundle/chunks/register-setup-A7N4PNT3.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-setup-DQEIKBIP.js → register-setup-WHG3NBP6.js} +17 -20
- package/dist/cli-bundle/chunks/register-setup-WHG3NBP6.js.map +7 -0
- package/dist/cli-bundle/chunks/{restore-FJQWXMPY.js → restore-TSWSULYY.js} +13 -11
- package/dist/cli-bundle/chunks/restore-XQXICL3V.js +19 -0
- package/dist/cli-bundle/chunks/scheduling-shortcuts-NC46K6BD.js +91 -0
- package/dist/cli-bundle/chunks/scheduling-shortcuts-NC46K6BD.js.map +7 -0
- package/dist/cli-bundle/chunks/scheduling-shortcuts-UGDPQALY.js +88 -0
- package/dist/cli-bundle/chunks/scheduling-shortcuts-UGDPQALY.js.map +1 -0
- package/dist/cli-bundle/chunks/{schema-ZZ7ZDM2X.js → schema-7U7JUYGK.js} +797 -10
- package/dist/cli-bundle/chunks/schema-7U7JUYGK.js.map +1 -0
- package/dist/cli-bundle/chunks/{schema-RNVJ55V2.js → schema-TSBYSEMW.js} +810 -9
- package/dist/cli-bundle/chunks/schema-TSBYSEMW.js.map +7 -0
- package/dist/cli-bundle/chunks/{search-BJ457C2A.js → search-OXLSQKHP.js} +328 -71
- package/dist/cli-bundle/chunks/search-OXLSQKHP.js.map +7 -0
- package/dist/cli-bundle/chunks/{search-FQDZXX7P.js → search-T3TOFLOQ.js} +328 -71
- package/dist/cli-bundle/chunks/search-T3TOFLOQ.js.map +1 -0
- package/dist/cli-bundle/chunks/{stats-DUQWCVOS.js → stats-5CLG22YZ.js} +41 -16
- package/dist/cli-bundle/chunks/stats-5CLG22YZ.js.map +7 -0
- package/dist/cli-bundle/chunks/{stats-CUG3ZHOI.js → stats-XEMUXS42.js} +42 -17
- package/dist/cli-bundle/chunks/stats-XEMUXS42.js.map +1 -0
- package/dist/cli-bundle/chunks/{telemetry-RK2VX75A.js → telemetry-23OPBBZT.js} +7 -7
- package/dist/cli-bundle/chunks/telemetry-23OPBBZT.js.map +1 -0
- package/dist/cli-bundle/chunks/{telemetry-33MRGX4Z.js → telemetry-I3D7XZ55.js} +6 -6
- package/dist/cli-bundle/chunks/telemetry-I3D7XZ55.js.map +7 -0
- package/dist/cli-bundle/chunks/test-AROS3LIV.js +35 -0
- package/dist/cli-bundle/chunks/{test-Y3CTFMEC.js → test-CECIMKOA.js} +17 -14
- package/dist/cli-bundle/chunks/{test-all-ARSMX33Q.js → test-all-4DEQPIXH.js} +25 -17
- package/dist/cli-bundle/chunks/test-all-4DEQPIXH.js.map +1 -0
- package/dist/cli-bundle/chunks/{test-all-ANYQ33O2.js → test-all-6RO6X3SM.js} +24 -16
- package/dist/cli-bundle/chunks/test-all-6RO6X3SM.js.map +7 -0
- package/dist/cli-bundle/chunks/{test-runs-5URSD34O.js → test-runs-AAXVFWKH.js} +62 -65
- package/dist/cli-bundle/chunks/test-runs-AAXVFWKH.js.map +1 -0
- package/dist/cli-bundle/chunks/{test-runs-XNACGSNQ.js → test-runs-LYBQSYRC.js} +61 -64
- package/dist/cli-bundle/chunks/test-runs-LYBQSYRC.js.map +7 -0
- package/dist/cli-bundle/chunks/update-MIWEJC76.js +24 -0
- package/dist/cli-bundle/chunks/update-P7I5YSRB.js +28 -0
- package/dist/cli-bundle/chunks/{update-many-724JCVDE.js → update-many-5B4HLVBK.js} +79 -33
- package/dist/cli-bundle/chunks/update-many-5B4HLVBK.js.map +7 -0
- package/dist/cli-bundle/chunks/{update-many-6B7PJ33I.js → update-many-G2QOVZSB.js} +80 -34
- package/dist/cli-bundle/chunks/update-many-G2QOVZSB.js.map +1 -0
- package/dist/cli-bundle/chunks/{upgrade-QHRGDBSA.js → upgrade-GFIDL62L.js} +23 -9
- package/dist/cli-bundle/chunks/upgrade-GFIDL62L.js.map +1 -0
- package/dist/cli-bundle/chunks/{upgrade-ALBEZAI7.js → upgrade-QUQYL7D3.js} +22 -8
- package/dist/cli-bundle/chunks/upgrade-QUQYL7D3.js.map +7 -0
- package/dist/cli-bundle/chunks/{validate-UY6DRCG5.js → validate-ADDZBMM3.js} +236 -30
- package/dist/cli-bundle/chunks/validate-ADDZBMM3.js.map +7 -0
- package/dist/cli-bundle/chunks/{validate-IQRYFXIV.js → validate-MAS3H6ZP.js} +222 -30
- package/dist/cli-bundle/chunks/validate-MAS3H6ZP.js.map +1 -0
- package/dist/cli-bundle/main.js +312 -139
- package/dist/cli-bundle/main.js.map +3 -3
- package/dist/cli.d.ts +10 -0
- package/dist/cli.js +21 -8
- package/dist/cli.js.map +1 -1
- package/dist/core/config/nested-settings.js +40 -2
- package/dist/core/config/nested-settings.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-policy.js +14 -15
- package/dist/core/extensions/extension-policy.js.map +1 -1
- package/dist/core/extensions/item-fields.js +4 -5
- package/dist/core/extensions/item-fields.js.map +1 -1
- package/dist/core/extensions/loader.d.ts +75 -1
- package/dist/core/extensions/loader.js +56 -32
- package/dist/core/extensions/loader.js.map +1 -1
- package/dist/core/governance/content-fields.d.ts +84 -0
- package/dist/core/governance/content-fields.js +182 -0
- package/dist/core/governance/content-fields.js.map +1 -0
- package/dist/core/governance/issue-codes.d.ts +51 -0
- package/dist/core/governance/issue-codes.js +95 -0
- package/dist/core/governance/issue-codes.js.map +1 -0
- package/dist/core/governance/metadata-coverage.d.ts +168 -0
- package/dist/core/governance/metadata-coverage.js +362 -0
- package/dist/core/governance/metadata-coverage.js.map +1 -0
- package/dist/core/history/history-rewrite.d.ts +22 -0
- package/dist/core/history/history-rewrite.js +38 -2
- package/dist/core/history/history-rewrite.js.map +1 -1
- package/dist/core/history/history.d.ts +7 -0
- package/dist/core/history/history.js +6 -2
- package/dist/core/history/history.js.map +1 -1
- package/dist/core/io/body-file.d.ts +14 -0
- package/dist/core/io/body-file.js +47 -0
- package/dist/core/io/body-file.js.map +1 -0
- package/dist/core/item/item-format.d.ts +46 -1
- package/dist/core/item/item-format.js +51 -60
- package/dist/core/item/item-format.js.map +1 -1
- package/dist/core/item/parse.d.ts +41 -0
- package/dist/core/item/parse.js +69 -16
- package/dist/core/item/parse.js.map +1 -1
- package/dist/core/item/type-registry.d.ts +1 -0
- package/dist/core/item/type-registry.js +8 -10
- package/dist/core/item/type-registry.js.map +1 -1
- package/dist/core/lock/lock.d.ts +26 -0
- package/dist/core/lock/lock.js +10 -2
- package/dist/core/lock/lock.js.map +1 -1
- package/dist/core/output/output.d.ts +7 -0
- package/dist/core/output/output.js +6 -2
- package/dist/core/output/output.js.map +1 -1
- package/dist/core/schema/fields-file.d.ts +94 -0
- package/dist/core/schema/fields-file.js +317 -0
- package/dist/core/schema/fields-file.js.map +1 -0
- package/dist/core/schema/item-types-file.d.ts +25 -2
- package/dist/core/schema/item-types-file.js +78 -6
- package/dist/core/schema/item-types-file.js.map +1 -1
- package/dist/core/schema/runtime-schema.d.ts +7 -0
- package/dist/core/schema/runtime-schema.js +23 -16
- package/dist/core/schema/runtime-schema.js.map +1 -1
- package/dist/core/schema/type-inference.d.ts +34 -0
- package/dist/core/schema/type-inference.js +97 -0
- package/dist/core/schema/type-inference.js.map +1 -0
- package/dist/core/schema/type-presets.d.ts +30 -0
- package/dist/core/schema/type-presets.js +96 -0
- package/dist/core/schema/type-presets.js.map +1 -0
- package/dist/core/search/cache.d.ts +19 -1
- package/dist/core/search/cache.js +11 -3
- package/dist/core/search/cache.js.map +1 -1
- package/dist/core/search/corpus.d.ts +36 -2
- package/dist/core/search/corpus.js +120 -24
- package/dist/core/search/corpus.js.map +1 -1
- package/dist/core/search/providers.d.ts +19 -0
- package/dist/core/search/providers.js +19 -2
- package/dist/core/search/providers.js.map +1 -1
- package/dist/core/sentry/instrument.d.ts +1 -0
- package/dist/core/sentry/instrument.js +6 -2
- package/dist/core/sentry/instrument.js.map +1 -1
- package/dist/core/session/session-state.d.ts +16 -0
- package/dist/core/session/session-state.js +48 -0
- package/dist/core/session/session-state.js.map +1 -0
- package/dist/core/shared/constants.d.ts +8 -0
- package/dist/core/shared/constants.js +11 -2
- package/dist/core/shared/constants.js.map +1 -1
- package/dist/core/shared/text-normalization.js +4 -3
- package/dist/core/shared/text-normalization.js.map +1 -1
- package/dist/core/shared/time.d.ts +13 -0
- package/dist/core/shared/time.js +19 -7
- package/dist/core/shared/time.js.map +1 -1
- package/dist/core/store/front-matter-cache.d.ts +13 -0
- package/dist/core/store/front-matter-cache.js +21 -11
- package/dist/core/store/front-matter-cache.js.map +1 -1
- package/dist/core/store/item-store.d.ts +11 -0
- package/dist/core/store/item-store.js +12 -3
- package/dist/core/store/item-store.js.map +1 -1
- package/dist/core/store/settings-validator.d.ts +2 -0
- package/dist/core/store/settings-validator.js +25 -2
- package/dist/core/store/settings-validator.js.map +1 -1
- package/dist/core/store/settings.d.ts +60 -1
- package/dist/core/store/settings.js +100 -46
- package/dist/core/store/settings.js.map +1 -1
- package/dist/core/telemetry/observability.js +10 -8
- package/dist/core/telemetry/observability.js.map +1 -1
- package/dist/core/telemetry/runtime.d.ts +272 -1
- package/dist/core/telemetry/runtime.js +358 -37
- package/dist/core/telemetry/runtime.js.map +1 -1
- package/dist/core/test/background-runs.d.ts +35 -0
- package/dist/core/test/background-runs.js +72 -61
- package/dist/core/test/background-runs.js.map +1 -1
- package/dist/core/test/run-selectors.js +5 -4
- package/dist/core/test/run-selectors.js.map +1 -1
- package/dist/core/validate/estimate-defaults.d.ts +39 -0
- package/dist/core/validate/estimate-defaults.js +117 -0
- package/dist/core/validate/estimate-defaults.js.map +1 -0
- package/dist/core/validate/fix-planning.d.ts +21 -3
- package/dist/core/validate/fix-planning.js +31 -4
- package/dist/core/validate/fix-planning.js.map +1 -1
- package/dist/core/validate/missing-link-owners.d.ts +64 -0
- package/dist/core/validate/missing-link-owners.js +98 -0
- package/dist/core/validate/missing-link-owners.js.map +1 -0
- package/dist/mcp/server.d.ts +61 -0
- package/dist/mcp/server.js +98 -8
- package/dist/mcp/server.js.map +1 -1
- package/dist/mcp/tool-definitions.js +64 -10
- package/dist/mcp/tool-definitions.js.map +1 -1
- package/dist/sdk/cli-contracts/commander-types.js +13 -2
- 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 +7 -2
- package/dist/sdk/cli-contracts/enum-contracts.js.map +1 -1
- package/dist/sdk/cli-contracts/tool-option-contracts.js +110 -2
- package/dist/sdk/cli-contracts/tool-option-contracts.js.map +1 -1
- package/dist/sdk/cli-contracts/tool-parameter-tables.js +127 -11
- package/dist/sdk/cli-contracts/tool-parameter-tables.js.map +1 -1
- package/dist/sdk/cli-contracts.d.ts +31 -0
- package/dist/sdk/cli-contracts.js +238 -12
- package/dist/sdk/cli-contracts.js.map +1 -1
- package/dist/types.d.ts +17 -1
- package/dist/types.js +3 -3
- package/dist/types.js.map +1 -1
- package/docs/AGENT_GUIDE.md +15 -3
- package/docs/CLAUDE_CODE_PLUGIN.md +2 -2
- package/docs/COMMANDS.md +171 -10
- package/docs/CONFIGURATION.md +135 -0
- package/docs/TESTING.md +6 -4
- package/package.json +6 -4
- package/packages/pm-calendar/extensions/calendar/runtime.js +6 -0
- package/packages/pm-calendar/extensions/calendar/runtime.ts +12 -0
- package/packages/pm-todos/extensions/todos/runtime.ts +5 -0
- package/plugins/pm-claude/.claude-plugin/plugin.json +1 -1
- package/plugins/pm-claude/README.md +3 -3
- package/plugins/pm-claude/commands/pm-init.md +1 -1
- package/plugins/pm-codex/README.md +1 -1
- package/scripts/bundle-cli.mjs +46 -37
- package/scripts/finalize-build.mjs +20 -9
- package/scripts/prepare-build-cache.mjs +27 -16
- package/dist/cli-bundle/chunks/activity-XIOTGZMU.js +0 -16
- package/dist/cli-bundle/chunks/aggregate-IRHJWEKG.js.map +0 -1
- package/dist/cli-bundle/chunks/aggregate-XEBW22UQ.js.map +0 -7
- package/dist/cli-bundle/chunks/append-NL67JNJU.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-2ANTZBYF.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-2J2AH4V5.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-32XSW44C.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-36BCSMKP.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-3VULHQNS.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-4FHLNNW7.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-4JHJ7YG2.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-4TPFXE2R.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-4ZKKZMLH.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-5HSAHRYA.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-6TBR5AZ2.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-7CRFV6JR.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-7SM7VA5I.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-AAUYXSFF.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-AGG32LKL.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-AUDDXKNX.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-BVL5KGVA.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-C24PWDFG.js +0 -138
- package/dist/cli-bundle/chunks/chunk-C24PWDFG.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-HLEGAQXT.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-HZOX5BYD.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-IXVSSHGV.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-IZHCCG4S.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-JW7D6437.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-JWXTOYBI.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-KHGTYCJ6.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-L6YQONLM.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-LFW5NQUP.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-LYNQ3NGI.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-M3SI2REU.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-MACCNKSZ.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-MGAQ6KZG.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-PEH7SZD2.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-PNYAAB4S.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-QQG4HEX7.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-R4VWYWRN.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-RFR2YQGO.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-RHYBR6G7.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-S2CDTRJ6.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-SGMGMCIF.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-SOHXUA2Q.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-SQDKAEKG.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-TOX7YQ7X.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-TSXWFN3L.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-UCVJP4JL.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-V4KP3TCN.js +0 -128
- package/dist/cli-bundle/chunks/chunk-V4KP3TCN.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-VNC2HBL4.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-W6KNFAMZ.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-WLH7X4RN.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-XXLMJDUB.js.map +0 -7
- package/dist/cli-bundle/chunks/close-WOG5WTMZ.js +0 -13
- package/dist/cli-bundle/chunks/close-many-GKAJX54X.js.map +0 -1
- package/dist/cli-bundle/chunks/close-many-GL6NRUU5.js.map +0 -7
- package/dist/cli-bundle/chunks/comments-5FPT6L7N.js.map +0 -1
- package/dist/cli-bundle/chunks/comments-TOLOYWNI.js.map +0 -7
- package/dist/cli-bundle/chunks/config-4MN45TIH.js.map +0 -1
- package/dist/cli-bundle/chunks/config-7N6D7YJE.js.map +0 -7
- package/dist/cli-bundle/chunks/context-AQSLE7DZ.js.map +0 -1
- package/dist/cli-bundle/chunks/context-U3PUJMVN.js.map +0 -7
- package/dist/cli-bundle/chunks/contracts-H7KCQXLY.js.map +0 -7
- package/dist/cli-bundle/chunks/contracts-ITSJXO3O.js.map +0 -1
- package/dist/cli-bundle/chunks/create-NW3K7LVG.js +0 -27
- package/dist/cli-bundle/chunks/deps-HV2C2L46.js.map +0 -1
- package/dist/cli-bundle/chunks/files-LIFDKNCN.js.map +0 -7
- package/dist/cli-bundle/chunks/files-OIFN3DQX.js.map +0 -1
- package/dist/cli-bundle/chunks/get-K7UULTQF.js.map +0 -7
- package/dist/cli-bundle/chunks/get-SAB7CRBG.js.map +0 -1
- package/dist/cli-bundle/chunks/health-NUVZYIEV.js.map +0 -1
- package/dist/cli-bundle/chunks/health-VJWH3ZFK.js.map +0 -7
- package/dist/cli-bundle/chunks/history-IUVN4NTN.js +0 -20
- package/dist/cli-bundle/chunks/history-compact-SLL6ESXH.js.map +0 -1
- package/dist/cli-bundle/chunks/history-compact-WQZQ6KXM.js.map +0 -7
- package/dist/cli-bundle/chunks/history-redact-75KIIJUJ.js +0 -19
- package/dist/cli-bundle/chunks/history-repair-BJCGM6Q3.js.map +0 -1
- package/dist/cli-bundle/chunks/history-repair-UCYS55ZX.js.map +0 -7
- package/dist/cli-bundle/chunks/init-JJFYRUKG.js +0 -17
- package/dist/cli-bundle/chunks/learnings-L6KTZGOT.js.map +0 -1
- package/dist/cli-bundle/chunks/learnings-QKJOKEAO.js.map +0 -7
- package/dist/cli-bundle/chunks/list-GGVPXEV6.js +0 -23
- package/dist/cli-bundle/chunks/list-VOQDQHA4.js +0 -19
- package/dist/cli-bundle/chunks/notes-3NLK7WTZ.js.map +0 -1
- package/dist/cli-bundle/chunks/notes-HMCB7TK6.js.map +0 -7
- package/dist/cli-bundle/chunks/plan-DWBYI5C6.js.map +0 -1
- package/dist/cli-bundle/chunks/plan-NANUWH4T.js.map +0 -7
- package/dist/cli-bundle/chunks/register-list-query-PWQ5F2VI.js.map +0 -7
- package/dist/cli-bundle/chunks/register-list-query-SMMMLSWW.js.map +0 -1
- package/dist/cli-bundle/chunks/register-mutation-QKFPTIZG.js.map +0 -7
- package/dist/cli-bundle/chunks/register-mutation-ZYJQ4DVP.js.map +0 -1
- package/dist/cli-bundle/chunks/register-operations-2FMZ6WEF.js.map +0 -7
- package/dist/cli-bundle/chunks/register-operations-BAFQURZG.js.map +0 -1
- package/dist/cli-bundle/chunks/register-setup-DQEIKBIP.js.map +0 -7
- package/dist/cli-bundle/chunks/register-setup-QN2XV7UL.js.map +0 -1
- package/dist/cli-bundle/chunks/restore-DRBNXJJH.js +0 -17
- package/dist/cli-bundle/chunks/schema-RNVJ55V2.js.map +0 -7
- package/dist/cli-bundle/chunks/schema-ZZ7ZDM2X.js.map +0 -1
- package/dist/cli-bundle/chunks/search-BJ457C2A.js.map +0 -7
- package/dist/cli-bundle/chunks/search-FQDZXX7P.js.map +0 -1
- package/dist/cli-bundle/chunks/stats-CUG3ZHOI.js.map +0 -1
- package/dist/cli-bundle/chunks/stats-DUQWCVOS.js.map +0 -7
- package/dist/cli-bundle/chunks/telemetry-33MRGX4Z.js.map +0 -7
- package/dist/cli-bundle/chunks/telemetry-RK2VX75A.js.map +0 -1
- package/dist/cli-bundle/chunks/test-SDMYEQHH.js +0 -32
- package/dist/cli-bundle/chunks/test-all-ANYQ33O2.js.map +0 -7
- package/dist/cli-bundle/chunks/test-all-ARSMX33Q.js.map +0 -1
- package/dist/cli-bundle/chunks/test-runs-5URSD34O.js.map +0 -1
- package/dist/cli-bundle/chunks/test-runs-XNACGSNQ.js.map +0 -7
- package/dist/cli-bundle/chunks/update-PD46VOXI.js +0 -21
- package/dist/cli-bundle/chunks/update-U235A7WP.js +0 -25
- package/dist/cli-bundle/chunks/update-many-6B7PJ33I.js.map +0 -1
- package/dist/cli-bundle/chunks/update-many-724JCVDE.js.map +0 -7
- package/dist/cli-bundle/chunks/upgrade-ALBEZAI7.js.map +0 -7
- package/dist/cli-bundle/chunks/upgrade-QHRGDBSA.js.map +0 -1
- package/dist/cli-bundle/chunks/validate-IQRYFXIV.js.map +0 -1
- package/dist/cli-bundle/chunks/validate-UY6DRCG5.js.map +0 -7
- /package/dist/cli-bundle/chunks/{activity-XIOTGZMU.js.map → activity-PZYSZA26.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{activity-PPO7QWJF.js.map → activity-SFM4THAU.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-IIOIBAQW.js.map → chunk-26BM6YLO.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-LSSTKL3Y.js.map → chunk-2TMKMTEI.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-QU3OPNVV.js.map → chunk-2VH7DFSJ.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-LGOXXQUW.js.map → chunk-5XGWFUW2.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-Z647PYLD.js.map → chunk-AJCQ5GT6.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-DWG4FHPY.js.map → chunk-BITCVGHT.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-JE5IZXDS.js.map → chunk-CGQTFWYI.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-VYZNX4C5.js.map → chunk-COVLE33A.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-6ZFTM65G.js.map → chunk-F5MSD5HE.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-GOO4UXBI.js.map → chunk-JZHL4E3Q.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-NN6RKGFW.js.map → chunk-KCAGIH6K.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-3CQPVBK3.js.map → chunk-MIBX6ZRN.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-XOYHMHFF.js.map → chunk-UN6P3IJ4.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-HWHONML5.js.map → chunk-VF3KQGNY.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{claim-HE6KEGJW.js.map → claim-WGAWJCPY.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{claim-QJOQBH7J.js.map → claim-ZI6P4LMU.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{close-WOG5WTMZ.js.map → close-I7PRQ5G7.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{close-SPUFW5QR.js.map → close-JMVVSIQE.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{copy-EB3MUCSW.js.map → copy-Q2PPU4AY.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{copy-C4W522JM.js.map → copy-SC6UF3PI.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{create-4EQNELMY.js.map → create-76FE7JVF.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{create-NW3K7LVG.js.map → create-RTRFW6RE.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{delete-X5QLXIQX.js.map → delete-T6DJSUJI.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{delete-ZLGUYIXU.js.map → delete-XFUX533E.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{docs-SRTLCQOL.js.map → docs-HE3HCQ4S.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{docs-RJQPLROO.js.map → docs-SXMOABHR.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{extension-WKPVPNCC.js.map → extension-E23K4QRR.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{extension-MM3TVWOO.js.map → extension-PMD3XMLN.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{gc-NRFHLVFT.js.map → gc-BXIAKLAH.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{gc-DL6AVOX5.js.map → gc-C7K6JNUO.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-GYFD2DJW.js.map → history-73Z6OBFZ.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-IUVN4NTN.js.map → history-BIPHVUMF.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-redact-SDTDR6WM.js.map → history-redact-7YCXEWJD.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-redact-75KIIJUJ.js.map → history-redact-WZZ6GZ2Z.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{init-JJFYRUKG.js.map → init-K34V4PZR.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{init-MXV57LKL.js.map → init-TDEDNVMM.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{list-GGVPXEV6.js.map → list-MSHYOCFU.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{list-VOQDQHA4.js.map → list-VV57WGUD.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{restore-FJQWXMPY.js.map → restore-TSWSULYY.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{restore-DRBNXJJH.js.map → restore-XQXICL3V.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{test-SDMYEQHH.js.map → test-AROS3LIV.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{test-Y3CTFMEC.js.map → test-CECIMKOA.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{update-PD46VOXI.js.map → update-MIWEJC76.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{update-U235A7WP.js.map → update-P7I5YSRB.js.map} +0 -0
|
@@ -9,13 +9,13 @@ import {
|
|
|
9
9
|
PLAN_MODE_VALUES,
|
|
10
10
|
PLAN_STEP_LINK_KIND_VALUES,
|
|
11
11
|
PLAN_STEP_STATUS_VALUES
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-CHM2VFVL.js";
|
|
13
13
|
|
|
14
14
|
// dist/sdk/cli-contracts/commander-types.js
|
|
15
15
|
!(function() {
|
|
16
16
|
try {
|
|
17
17
|
var e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack;
|
|
18
|
-
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "
|
|
18
|
+
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "fc8c2f4a-057f-5144-8422-4507ab5e6675");
|
|
19
19
|
} catch (e2) {
|
|
20
20
|
}
|
|
21
21
|
})();
|
|
@@ -45,6 +45,8 @@ var LIST_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
|
45
45
|
];
|
|
46
46
|
var SEARCH_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
47
47
|
{ target: "mode", keys: ["mode"] },
|
|
48
|
+
{ target: "matchMode", keys: ["matchMode", "match_mode"] },
|
|
49
|
+
{ target: "minScore", keys: ["minScore", "min_score"] },
|
|
48
50
|
{ target: "semanticWeight", keys: ["semanticWeight", "semantic_weight"] },
|
|
49
51
|
{ target: "status", keys: ["status"] },
|
|
50
52
|
{ target: "type", keys: ["type"] },
|
|
@@ -52,6 +54,14 @@ var SEARCH_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
|
52
54
|
{ target: "priority", keys: ["priority"] },
|
|
53
55
|
{ target: "deadlineBefore", keys: ["deadlineBefore"] },
|
|
54
56
|
{ target: "deadlineAfter", keys: ["deadlineAfter"] },
|
|
57
|
+
{ target: "updatedAfter", keys: ["updatedAfter"] },
|
|
58
|
+
{ target: "updatedBefore", keys: ["updatedBefore"] },
|
|
59
|
+
{ target: "createdAfter", keys: ["createdAfter"] },
|
|
60
|
+
{ target: "createdBefore", keys: ["createdBefore"] },
|
|
61
|
+
{ target: "assignee", keys: ["assignee"] },
|
|
62
|
+
{ target: "sprint", keys: ["sprint"] },
|
|
63
|
+
{ target: "release", keys: ["release"] },
|
|
64
|
+
{ target: "parent", keys: ["parent"] },
|
|
55
65
|
{ target: "fields", keys: ["fields"] },
|
|
56
66
|
{ target: "limit", keys: ["limit"] }
|
|
57
67
|
];
|
|
@@ -86,6 +96,7 @@ var CONTEXT_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
|
86
96
|
{ target: "assigneeFilter", keys: ["assigneeFilter", "assignee_filter"] },
|
|
87
97
|
{ target: "sprint", keys: ["sprint"] },
|
|
88
98
|
{ target: "release", keys: ["release"] },
|
|
99
|
+
{ target: "parent", keys: ["parent"] },
|
|
89
100
|
{ target: "limit", keys: ["limit"] },
|
|
90
101
|
{ target: "format", keys: ["format"] },
|
|
91
102
|
{ target: "depth", keys: ["depth"] },
|
|
@@ -663,7 +674,7 @@ var UPDATE_COMMANDER_REPEATABLE_OPTION_CONTRACTS = UPDATE_COMMANDER_OPTION_REGIS
|
|
|
663
674
|
!(function() {
|
|
664
675
|
try {
|
|
665
676
|
var e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack;
|
|
666
|
-
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "
|
|
677
|
+
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "e84bbb54-dd51-5b46-ac15-297b61a40a06");
|
|
667
678
|
} catch (e2) {
|
|
668
679
|
}
|
|
669
680
|
})();
|
|
@@ -683,6 +694,7 @@ var PM_CORE_COMMAND_NAMES = [
|
|
|
683
694
|
"upgrade",
|
|
684
695
|
"create",
|
|
685
696
|
"copy",
|
|
697
|
+
"focus",
|
|
686
698
|
"list",
|
|
687
699
|
"list-all",
|
|
688
700
|
"list-draft",
|
|
@@ -729,6 +741,9 @@ var PM_CORE_COMMAND_NAMES = [
|
|
|
729
741
|
"start-task",
|
|
730
742
|
"pause-task",
|
|
731
743
|
"close-task",
|
|
744
|
+
"meet",
|
|
745
|
+
"event",
|
|
746
|
+
"remind",
|
|
732
747
|
"help"
|
|
733
748
|
];
|
|
734
749
|
var PM_TOOL_ACTIONS = [
|
|
@@ -764,6 +779,7 @@ var PM_TOOL_ACTIONS = [
|
|
|
764
779
|
"upgrade",
|
|
765
780
|
"create",
|
|
766
781
|
"copy",
|
|
782
|
+
"focus",
|
|
767
783
|
"list",
|
|
768
784
|
"list-all",
|
|
769
785
|
"list-draft",
|
|
@@ -816,7 +832,7 @@ var PM_TOOL_ACTIONS = [
|
|
|
816
832
|
!(function() {
|
|
817
833
|
try {
|
|
818
834
|
var e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack;
|
|
819
|
-
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "
|
|
835
|
+
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "2341c98b-b933-57a4-a1ff-2ba8ec110b78");
|
|
820
836
|
} catch (e2) {
|
|
821
837
|
}
|
|
822
838
|
})();
|
|
@@ -837,6 +853,33 @@ var TOOL_LIST_FILTER_OPTION_CONTRACTS = [
|
|
|
837
853
|
{ param: "parent", flag: "--parent" },
|
|
838
854
|
{ param: "sprint", flag: "--sprint" },
|
|
839
855
|
{ param: "release", flag: "--release" },
|
|
856
|
+
{ param: "filterAcMissing", flag: "--filter-ac-missing" },
|
|
857
|
+
{ param: "filterEstimatesMissing", flag: "--filter-estimates-missing" },
|
|
858
|
+
{ param: "filterResolutionMissing", flag: "--filter-resolution-missing" },
|
|
859
|
+
{ param: "filterMetadataMissing", flag: "--filter-metadata-missing" },
|
|
860
|
+
{ param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
|
|
861
|
+
{ param: "filterRiskMissing", flag: "--filter-risk-missing" },
|
|
862
|
+
{ param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
|
|
863
|
+
{ param: "filterSprintMissing", flag: "--filter-sprint-missing" },
|
|
864
|
+
{ param: "filterReleaseMissing", flag: "--filter-release-missing" },
|
|
865
|
+
{ param: "hasNotes", flag: "--has-notes" },
|
|
866
|
+
{ param: "noNotes", flag: "--no-notes" },
|
|
867
|
+
{ param: "hasLearnings", flag: "--has-learnings" },
|
|
868
|
+
{ param: "noLearnings", flag: "--no-learnings" },
|
|
869
|
+
{ param: "hasFiles", flag: "--has-files" },
|
|
870
|
+
{ param: "noFiles", flag: "--no-files" },
|
|
871
|
+
{ param: "hasDocs", flag: "--has-docs" },
|
|
872
|
+
{ param: "noDocs", flag: "--no-docs" },
|
|
873
|
+
{ param: "hasTests", flag: "--has-tests" },
|
|
874
|
+
{ param: "noTests", flag: "--no-tests" },
|
|
875
|
+
{ param: "hasComments", flag: "--has-comments" },
|
|
876
|
+
{ param: "noComments", flag: "--no-comments" },
|
|
877
|
+
{ param: "hasDeps", flag: "--has-deps" },
|
|
878
|
+
{ param: "noDeps", flag: "--no-deps" },
|
|
879
|
+
{ param: "hasBody", flag: "--has-body" },
|
|
880
|
+
{ param: "emptyBody", flag: "--empty-body" },
|
|
881
|
+
{ param: "hasLinkedCommand", flag: "--has-linked-command" },
|
|
882
|
+
{ param: "noLinkedCommand", flag: "--no-linked-command" },
|
|
840
883
|
{ param: "limit", flag: "--limit" },
|
|
841
884
|
{ param: "offset", flag: "--offset" },
|
|
842
885
|
{ param: "fields", flag: "--fields" },
|
|
@@ -878,6 +921,9 @@ var TOOL_DEDUPE_AUDIT_OPTION_CONTRACTS = [
|
|
|
878
921
|
{ param: "release", flag: "--release" }
|
|
879
922
|
];
|
|
880
923
|
var TOOL_SEARCH_FILTER_OPTION_CONTRACTS = [
|
|
924
|
+
{ param: "matchMode", flag: "--match-mode" },
|
|
925
|
+
{ param: "minScore", flag: "--min-score" },
|
|
926
|
+
{ param: "count", flag: "--count", booleanish: true },
|
|
881
927
|
{ param: "semanticWeight", flag: "--semantic-weight" },
|
|
882
928
|
{ param: "status", flag: "--status" },
|
|
883
929
|
{ param: "type", flag: "--type" },
|
|
@@ -885,6 +931,37 @@ var TOOL_SEARCH_FILTER_OPTION_CONTRACTS = [
|
|
|
885
931
|
{ param: "priority", flag: "--priority" },
|
|
886
932
|
{ param: "deadlineBefore", flag: "--deadline-before" },
|
|
887
933
|
{ param: "deadlineAfter", flag: "--deadline-after" },
|
|
934
|
+
{ param: "updatedAfter", flag: "--updated-after" },
|
|
935
|
+
{ param: "updatedBefore", flag: "--updated-before" },
|
|
936
|
+
{ param: "createdAfter", flag: "--created-after" },
|
|
937
|
+
{ param: "createdBefore", flag: "--created-before" },
|
|
938
|
+
{ param: "assignee", flag: "--assignee" },
|
|
939
|
+
{ param: "sprint", flag: "--sprint" },
|
|
940
|
+
{ param: "release", flag: "--release" },
|
|
941
|
+
{ param: "parent", flag: "--parent" },
|
|
942
|
+
{ param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
|
|
943
|
+
{ param: "filterRiskMissing", flag: "--filter-risk-missing" },
|
|
944
|
+
{ param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
|
|
945
|
+
{ param: "filterSprintMissing", flag: "--filter-sprint-missing" },
|
|
946
|
+
{ param: "filterReleaseMissing", flag: "--filter-release-missing" },
|
|
947
|
+
{ param: "hasNotes", flag: "--has-notes" },
|
|
948
|
+
{ param: "noNotes", flag: "--no-notes" },
|
|
949
|
+
{ param: "hasLearnings", flag: "--has-learnings" },
|
|
950
|
+
{ param: "noLearnings", flag: "--no-learnings" },
|
|
951
|
+
{ param: "hasFiles", flag: "--has-files" },
|
|
952
|
+
{ param: "noFiles", flag: "--no-files" },
|
|
953
|
+
{ param: "hasDocs", flag: "--has-docs" },
|
|
954
|
+
{ param: "noDocs", flag: "--no-docs" },
|
|
955
|
+
{ param: "hasTests", flag: "--has-tests" },
|
|
956
|
+
{ param: "noTests", flag: "--no-tests" },
|
|
957
|
+
{ param: "hasComments", flag: "--has-comments" },
|
|
958
|
+
{ param: "noComments", flag: "--no-comments" },
|
|
959
|
+
{ param: "hasDeps", flag: "--has-deps" },
|
|
960
|
+
{ param: "noDeps", flag: "--no-deps" },
|
|
961
|
+
{ param: "hasBody", flag: "--has-body" },
|
|
962
|
+
{ param: "emptyBody", flag: "--empty-body" },
|
|
963
|
+
{ param: "hasLinkedCommand", flag: "--has-linked-command" },
|
|
964
|
+
{ param: "noLinkedCommand", flag: "--no-linked-command" },
|
|
888
965
|
{ param: "fields", flag: "--fields" },
|
|
889
966
|
{ param: "limit", flag: "--limit" }
|
|
890
967
|
];
|
|
@@ -1022,6 +1099,29 @@ var TOOL_UPDATE_MANY_FILTER_OPTION_CONTRACTS = [
|
|
|
1022
1099
|
{ param: "filterParent", flag: "--filter-parent" },
|
|
1023
1100
|
{ param: "filterSprint", flag: "--filter-sprint" },
|
|
1024
1101
|
{ param: "filterRelease", flag: "--filter-release" },
|
|
1102
|
+
{ param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
|
|
1103
|
+
{ param: "filterRiskMissing", flag: "--filter-risk-missing" },
|
|
1104
|
+
{ param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
|
|
1105
|
+
{ param: "filterSprintMissing", flag: "--filter-sprint-missing" },
|
|
1106
|
+
{ param: "filterReleaseMissing", flag: "--filter-release-missing" },
|
|
1107
|
+
{ param: "filterHasNotes", flag: "--filter-has-notes" },
|
|
1108
|
+
{ param: "filterNoNotes", flag: "--filter-no-notes" },
|
|
1109
|
+
{ param: "filterHasLearnings", flag: "--filter-has-learnings" },
|
|
1110
|
+
{ param: "filterNoLearnings", flag: "--filter-no-learnings" },
|
|
1111
|
+
{ param: "filterHasFiles", flag: "--filter-has-files" },
|
|
1112
|
+
{ param: "filterNoFiles", flag: "--filter-no-files" },
|
|
1113
|
+
{ param: "filterHasDocs", flag: "--filter-has-docs" },
|
|
1114
|
+
{ param: "filterNoDocs", flag: "--filter-no-docs" },
|
|
1115
|
+
{ param: "filterHasTests", flag: "--filter-has-tests" },
|
|
1116
|
+
{ param: "filterNoTests", flag: "--filter-no-tests" },
|
|
1117
|
+
{ param: "filterHasComments", flag: "--filter-has-comments" },
|
|
1118
|
+
{ param: "filterNoComments", flag: "--filter-no-comments" },
|
|
1119
|
+
{ param: "filterHasDeps", flag: "--filter-has-deps" },
|
|
1120
|
+
{ param: "filterNoDeps", flag: "--filter-no-deps" },
|
|
1121
|
+
{ param: "filterHasBody", flag: "--filter-has-body" },
|
|
1122
|
+
{ param: "filterEmptyBody", flag: "--filter-empty-body" },
|
|
1123
|
+
{ param: "filterHasLinkedCommand", flag: "--filter-has-linked-command" },
|
|
1124
|
+
{ param: "filterNoLinkedCommand", flag: "--filter-no-linked-command" },
|
|
1025
1125
|
{ param: "ids", flag: "--ids" },
|
|
1026
1126
|
{ param: "limit", flag: "--limit" },
|
|
1027
1127
|
{ param: "offset", flag: "--offset" }
|
|
@@ -1057,6 +1157,29 @@ var TOOL_CLOSE_MANY_FILTER_OPTION_CONTRACTS = [
|
|
|
1057
1157
|
{ param: "filterParent", flag: "--filter-parent" },
|
|
1058
1158
|
{ param: "filterSprint", flag: "--filter-sprint" },
|
|
1059
1159
|
{ param: "filterRelease", flag: "--filter-release" },
|
|
1160
|
+
{ param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
|
|
1161
|
+
{ param: "filterRiskMissing", flag: "--filter-risk-missing" },
|
|
1162
|
+
{ param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
|
|
1163
|
+
{ param: "filterSprintMissing", flag: "--filter-sprint-missing" },
|
|
1164
|
+
{ param: "filterReleaseMissing", flag: "--filter-release-missing" },
|
|
1165
|
+
{ param: "filterHasNotes", flag: "--filter-has-notes" },
|
|
1166
|
+
{ param: "filterNoNotes", flag: "--filter-no-notes" },
|
|
1167
|
+
{ param: "filterHasLearnings", flag: "--filter-has-learnings" },
|
|
1168
|
+
{ param: "filterNoLearnings", flag: "--filter-no-learnings" },
|
|
1169
|
+
{ param: "filterHasFiles", flag: "--filter-has-files" },
|
|
1170
|
+
{ param: "filterNoFiles", flag: "--filter-no-files" },
|
|
1171
|
+
{ param: "filterHasDocs", flag: "--filter-has-docs" },
|
|
1172
|
+
{ param: "filterNoDocs", flag: "--filter-no-docs" },
|
|
1173
|
+
{ param: "filterHasTests", flag: "--filter-has-tests" },
|
|
1174
|
+
{ param: "filterNoTests", flag: "--filter-no-tests" },
|
|
1175
|
+
{ param: "filterHasComments", flag: "--filter-has-comments" },
|
|
1176
|
+
{ param: "filterNoComments", flag: "--filter-no-comments" },
|
|
1177
|
+
{ param: "filterHasDeps", flag: "--filter-has-deps" },
|
|
1178
|
+
{ param: "filterNoDeps", flag: "--filter-no-deps" },
|
|
1179
|
+
{ param: "filterHasBody", flag: "--filter-has-body" },
|
|
1180
|
+
{ param: "filterEmptyBody", flag: "--filter-empty-body" },
|
|
1181
|
+
{ param: "filterHasLinkedCommand", flag: "--filter-has-linked-command" },
|
|
1182
|
+
{ param: "filterNoLinkedCommand", flag: "--filter-no-linked-command" },
|
|
1060
1183
|
{ param: "ids", flag: "--ids" },
|
|
1061
1184
|
{ param: "limit", flag: "--limit" },
|
|
1062
1185
|
{ param: "offset", flag: "--offset" }
|
|
@@ -1082,6 +1205,7 @@ var TOOL_CONTEXT_OPTION_CONTRACTS = [
|
|
|
1082
1205
|
{ param: "assigneeFilter", flag: "--assignee-filter" },
|
|
1083
1206
|
{ param: "sprint", flag: "--sprint" },
|
|
1084
1207
|
{ param: "release", flag: "--release" },
|
|
1208
|
+
{ param: "parent", flag: "--parent" },
|
|
1085
1209
|
{ param: "limit", flag: "--limit" },
|
|
1086
1210
|
{ param: "format", flag: "--format" },
|
|
1087
1211
|
{ param: "depth", flag: "--depth" },
|
|
@@ -1094,7 +1218,7 @@ var TOOL_CONTEXT_OPTION_CONTRACTS = [
|
|
|
1094
1218
|
!(function() {
|
|
1095
1219
|
try {
|
|
1096
1220
|
var e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack;
|
|
1097
|
-
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "
|
|
1221
|
+
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "b680be39-b134-5fe9-9287-4f2efd10bcc0");
|
|
1098
1222
|
} catch (e2) {
|
|
1099
1223
|
}
|
|
1100
1224
|
})();
|
|
@@ -1228,6 +1352,7 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1228
1352
|
titleExact: { type: "boolean" },
|
|
1229
1353
|
phraseExact: { type: "boolean" },
|
|
1230
1354
|
includeBody: { type: "boolean" },
|
|
1355
|
+
noTruncate: { type: "boolean" },
|
|
1231
1356
|
tag: { type: "string" },
|
|
1232
1357
|
deadlineBefore: { type: "string" },
|
|
1233
1358
|
deadlineAfter: { type: "string" },
|
|
@@ -1235,6 +1360,55 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1235
1360
|
updatedBefore: { type: "string" },
|
|
1236
1361
|
createdAfter: { type: "string" },
|
|
1237
1362
|
createdBefore: { type: "string" },
|
|
1363
|
+
filterAcMissing: { type: "boolean" },
|
|
1364
|
+
filterEstimatesMissing: { type: "boolean" },
|
|
1365
|
+
filterResolutionMissing: { type: "boolean" },
|
|
1366
|
+
filterMetadataMissing: { type: "boolean" },
|
|
1367
|
+
filterReviewerMissing: { type: "boolean" },
|
|
1368
|
+
filterRiskMissing: { type: "boolean" },
|
|
1369
|
+
filterConfidenceMissing: { type: "boolean" },
|
|
1370
|
+
filterSprintMissing: { type: "boolean" },
|
|
1371
|
+
filterReleaseMissing: { type: "boolean" },
|
|
1372
|
+
// Content-field presence/absence filters (list/search). The --no-* variants
|
|
1373
|
+
// select items where the field is empty/absent.
|
|
1374
|
+
hasNotes: { type: "boolean" },
|
|
1375
|
+
noNotes: { type: "boolean" },
|
|
1376
|
+
hasLearnings: { type: "boolean" },
|
|
1377
|
+
noLearnings: { type: "boolean" },
|
|
1378
|
+
hasFiles: { type: "boolean" },
|
|
1379
|
+
noFiles: { type: "boolean" },
|
|
1380
|
+
hasDocs: { type: "boolean" },
|
|
1381
|
+
noDocs: { type: "boolean" },
|
|
1382
|
+
hasTests: { type: "boolean" },
|
|
1383
|
+
noTests: { type: "boolean" },
|
|
1384
|
+
hasComments: { type: "boolean" },
|
|
1385
|
+
noComments: { type: "boolean" },
|
|
1386
|
+
hasDeps: { type: "boolean" },
|
|
1387
|
+
noDeps: { type: "boolean" },
|
|
1388
|
+
hasBody: { type: "boolean" },
|
|
1389
|
+
emptyBody: { type: "boolean" },
|
|
1390
|
+
hasLinkedCommand: { type: "boolean" },
|
|
1391
|
+
noLinkedCommand: { type: "boolean" },
|
|
1392
|
+
// Bulk-selection (update-many/close-many) content + governance filters mirror
|
|
1393
|
+
// the list/search presence filters under the --filter- prefix.
|
|
1394
|
+
filterHasNotes: { type: "boolean" },
|
|
1395
|
+
filterNoNotes: { type: "boolean" },
|
|
1396
|
+
filterHasLearnings: { type: "boolean" },
|
|
1397
|
+
filterNoLearnings: { type: "boolean" },
|
|
1398
|
+
filterHasFiles: { type: "boolean" },
|
|
1399
|
+
filterNoFiles: { type: "boolean" },
|
|
1400
|
+
filterHasDocs: { type: "boolean" },
|
|
1401
|
+
filterNoDocs: { type: "boolean" },
|
|
1402
|
+
filterHasTests: { type: "boolean" },
|
|
1403
|
+
filterNoTests: { type: "boolean" },
|
|
1404
|
+
filterHasComments: { type: "boolean" },
|
|
1405
|
+
filterNoComments: { type: "boolean" },
|
|
1406
|
+
filterHasDeps: { type: "boolean" },
|
|
1407
|
+
filterNoDeps: { type: "boolean" },
|
|
1408
|
+
filterHasBody: { type: "boolean" },
|
|
1409
|
+
filterEmptyBody: { type: "boolean" },
|
|
1410
|
+
filterHasLinkedCommand: { type: "boolean" },
|
|
1411
|
+
filterNoLinkedCommand: { type: "boolean" },
|
|
1238
1412
|
ids: { type: "string" },
|
|
1239
1413
|
limit: { anyOf: [{ type: "string" }, { type: "number" }] },
|
|
1240
1414
|
limitItems: { anyOf: [{ type: "string" }, { type: "number" }] },
|
|
@@ -1271,6 +1445,12 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1271
1445
|
autoPmContext: { type: "boolean" },
|
|
1272
1446
|
diff: { type: "boolean" },
|
|
1273
1447
|
storage: { type: "boolean" },
|
|
1448
|
+
metadataCoverage: { type: "boolean" },
|
|
1449
|
+
fieldUtilization: { type: "boolean" },
|
|
1450
|
+
byAssignee: { type: "boolean" },
|
|
1451
|
+
byTag: { type: "boolean" },
|
|
1452
|
+
byPriority: { type: "boolean" },
|
|
1453
|
+
tagPrefix: { type: "string" },
|
|
1274
1454
|
verify: { type: "boolean" },
|
|
1275
1455
|
literal: { type: "array", items: { type: "string" } },
|
|
1276
1456
|
regex: { type: "array", items: { type: "string" } },
|
|
@@ -1294,6 +1474,7 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1294
1474
|
skipIntegrity: { type: "boolean" },
|
|
1295
1475
|
skipDrift: { type: "boolean" },
|
|
1296
1476
|
verboseDiagnostics: { type: "boolean" },
|
|
1477
|
+
allAffectedIds: { type: "boolean" },
|
|
1297
1478
|
scanMode: { type: "string", enum: ["default", "tracked-all", "tracked-all-strict"] },
|
|
1298
1479
|
includePmInternals: { type: "boolean" },
|
|
1299
1480
|
verboseFileLists: { type: "boolean" },
|
|
@@ -1301,18 +1482,21 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1301
1482
|
failOnWarn: { type: "boolean" },
|
|
1302
1483
|
fixHints: { type: "boolean" },
|
|
1303
1484
|
autoFix: { type: "boolean" },
|
|
1304
|
-
fixScope: { type: "array", items: { type: "string", enum: ["metadata", "resolution", "lifecycle"] } },
|
|
1485
|
+
fixScope: { type: "array", items: { type: "string", enum: ["metadata", "resolution", "estimates", "lifecycle"] } },
|
|
1305
1486
|
pruneMissing: { type: "boolean" },
|
|
1306
1487
|
checkHistoryDrift: { type: "boolean" },
|
|
1307
1488
|
checkCommandReferences: { type: "boolean" },
|
|
1308
1489
|
allowAuditNote: { type: "boolean" },
|
|
1309
1490
|
allowAuditLearning: { type: "boolean" },
|
|
1310
1491
|
allowAuditComment: { type: "boolean" },
|
|
1492
|
+
edit: { type: "integer", minimum: 1 },
|
|
1493
|
+
delete: { type: "integer", minimum: 1 },
|
|
1311
1494
|
allowAuditUpdate: { type: "boolean" },
|
|
1312
1495
|
allowAuditDepUpdate: { type: "boolean" },
|
|
1313
1496
|
allowAuditRelease: { type: "boolean" },
|
|
1314
1497
|
dryRun: { type: "boolean" },
|
|
1315
1498
|
all: { type: "boolean" },
|
|
1499
|
+
clear: { type: "boolean" },
|
|
1316
1500
|
cliOnly: { type: "boolean" },
|
|
1317
1501
|
packagesOnly: { type: "boolean" },
|
|
1318
1502
|
repair: { type: "boolean" },
|
|
@@ -1344,6 +1528,15 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1344
1528
|
defaultStatus: { type: "string" },
|
|
1345
1529
|
alias: { type: "array", items: { type: "string" } },
|
|
1346
1530
|
role: { type: "array", items: { type: "string" } },
|
|
1531
|
+
fieldType: { type: "string", enum: ["string", "number", "boolean", "string_array"] },
|
|
1532
|
+
commands: { type: "array", items: { type: "string" } },
|
|
1533
|
+
cliFlag: { type: "string" },
|
|
1534
|
+
required: { type: "boolean" },
|
|
1535
|
+
requiredOnCreate: { type: "boolean" },
|
|
1536
|
+
allowUnset: { type: "boolean" },
|
|
1537
|
+
requiredTypes: { type: "array", items: { type: "string" } },
|
|
1538
|
+
infer: { type: "boolean" },
|
|
1539
|
+
minCount: { type: "number" },
|
|
1347
1540
|
text: { type: "string" },
|
|
1348
1541
|
add: { type: "array", items: { type: "string" } },
|
|
1349
1542
|
addGlob: { type: "array", items: { type: "string" } },
|
|
@@ -1390,7 +1583,7 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1390
1583
|
completion: { type: "boolean" },
|
|
1391
1584
|
threshold: { anyOf: [{ type: "string" }, { type: "number" }] },
|
|
1392
1585
|
format: { type: "string" },
|
|
1393
|
-
depth: { type: "string", enum: ["brief", "standard", "deep"] },
|
|
1586
|
+
depth: { type: "string", enum: ["brief", "standard", "deep", "full"] },
|
|
1394
1587
|
section: { type: "array", items: { type: "string", enum: ["hierarchy", "activity", "progress", "blockers", "files", "workload", "staleness", "tests"] } },
|
|
1395
1588
|
activityLimit: { anyOf: [{ type: "string" }, { type: "number" }] },
|
|
1396
1589
|
staleThreshold: { type: "string" },
|
|
@@ -1599,8 +1792,8 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1599
1792
|
description: "Subcommand selector for schema and telemetry actions."
|
|
1600
1793
|
},
|
|
1601
1794
|
name: {
|
|
1602
|
-
description: "Custom item type name (schema add-type/remove-type/show)
|
|
1603
|
-
examples: ["Spike", "review"]
|
|
1795
|
+
description: "Custom item type name (schema add-type/remove-type/show), custom status id (schema show-status/add-status/remove-status), or custom field key (schema add-field/remove-field/show-field).",
|
|
1796
|
+
examples: ["Spike", "review", "component"]
|
|
1604
1797
|
},
|
|
1605
1798
|
defaultStatus: {
|
|
1606
1799
|
description: "Default status hint recorded for a custom item type.",
|
|
@@ -1614,6 +1807,38 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1614
1807
|
description: "Lifecycle roles for a custom status (schema add-status): draft, active, blocked, terminal, terminal_done, terminal_canceled, default_open, default_close, default_cancel.",
|
|
1615
1808
|
examples: [["active"], ["terminal", "terminal_done"]]
|
|
1616
1809
|
},
|
|
1810
|
+
fieldType: {
|
|
1811
|
+
description: "Value type for a custom field (schema add-field): string, number, boolean, or string_array.",
|
|
1812
|
+
examples: ["string", "number", "string_array"]
|
|
1813
|
+
},
|
|
1814
|
+
commands: {
|
|
1815
|
+
description: "Commands a custom field is wired onto (schema add-field): create, update, update_many, list, search, calendar, context.",
|
|
1816
|
+
examples: [["create", "update"], ["create", "update", "list"]]
|
|
1817
|
+
},
|
|
1818
|
+
cliFlag: {
|
|
1819
|
+
description: "Override the auto-derived CLI flag for a custom field (schema add-field).",
|
|
1820
|
+
examples: ["--owner"]
|
|
1821
|
+
},
|
|
1822
|
+
required: {
|
|
1823
|
+
description: "Mark a custom field as always required (schema add-field)."
|
|
1824
|
+
},
|
|
1825
|
+
requiredOnCreate: {
|
|
1826
|
+
description: "Mark a custom field as required at create time (schema add-field)."
|
|
1827
|
+
},
|
|
1828
|
+
allowUnset: {
|
|
1829
|
+
description: "Whether a custom field may be cleared via --unset (schema add-field); defaults to true."
|
|
1830
|
+
},
|
|
1831
|
+
requiredTypes: {
|
|
1832
|
+
description: "Restrict a custom field's requirement to specific item types (schema add-field).",
|
|
1833
|
+
examples: [["Bug"], ["Story", "Spike"]]
|
|
1834
|
+
},
|
|
1835
|
+
infer: {
|
|
1836
|
+
description: "Infer custom item types from title-prefix conventions (schema add-type); previews unless apply is true."
|
|
1837
|
+
},
|
|
1838
|
+
minCount: {
|
|
1839
|
+
description: "Minimum number of items sharing a title prefix for schema add-type inference (default 10).",
|
|
1840
|
+
examples: [10, 25]
|
|
1841
|
+
},
|
|
1617
1842
|
preset: {
|
|
1618
1843
|
description: "Governance preset for initialization flows.",
|
|
1619
1844
|
examples: ["minimal", "default", "strict"]
|
|
@@ -1822,6 +2047,9 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1822
2047
|
all: {
|
|
1823
2048
|
description: "For history-repair action: scan every stream for drift and repair each drifted stream in one audited pass (mutually exclusive with id)."
|
|
1824
2049
|
},
|
|
2050
|
+
clear: {
|
|
2051
|
+
description: "For focus action: clear the session focused item instead of setting it (mutually exclusive with id)."
|
|
2052
|
+
},
|
|
1825
2053
|
gcScope: {
|
|
1826
2054
|
description: "Repeatable gc scope selector values (index, embeddings, runtime, locks).",
|
|
1827
2055
|
examples: [["index", "embeddings"], ["runtime"], ["locks"]]
|
|
@@ -1829,6 +2057,9 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1829
2057
|
storage: {
|
|
1830
2058
|
description: "For stats action: include aggregate history-stream storage metrics (total streams/lines/bytes, largest + deepest streams, oldest/newest entries) for compaction and storage planning."
|
|
1831
2059
|
},
|
|
2060
|
+
fieldUtilization: {
|
|
2061
|
+
description: "For stats action: include a field_utilization block reporting present/total/percent for content fields (notes, learnings, files, docs, tests, comments, deps, body, linked_command) across all items so under-documented dimensions are visible at a glance."
|
|
2062
|
+
},
|
|
1832
2063
|
offset: {
|
|
1833
2064
|
description: "Number of matching rows to skip before limit is applied.",
|
|
1834
2065
|
examples: [0, 50, "100"]
|
|
@@ -1940,8 +2171,8 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1940
2171
|
description: "For validate action, apply the safe, deterministic subset of fix-hint remediations (field backfills) automatically; combine with dryRun to preview and fixScope to grant gated scopes."
|
|
1941
2172
|
},
|
|
1942
2173
|
fixScope: {
|
|
1943
|
-
description: "For validate action, grant --auto-fix scopes (metadata, resolution, lifecycle). Defaults to the safe scopes metadata and resolution; lifecycle must be named explicitly.",
|
|
1944
|
-
examples: [["lifecycle"], ["metadata", "resolution"]]
|
|
2174
|
+
description: "For validate action, grant --auto-fix scopes (metadata, resolution, estimates, lifecycle). Defaults to the safe scopes metadata and resolution; estimates (per-type default estimated_minutes backfill) and lifecycle must be named explicitly.",
|
|
2175
|
+
examples: [["estimates"], ["lifecycle"], ["metadata", "resolution"]]
|
|
1945
2176
|
},
|
|
1946
2177
|
pruneMissing: {
|
|
1947
2178
|
description: "For validate action, remove stale linked-file/doc LINKS whose paths classified as deleted (link removal only \u2014 never touches real files); honors dryRun."
|
|
@@ -1961,6 +2192,12 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1961
2192
|
allowAuditComment: {
|
|
1962
2193
|
description: "For comments action, allow non-owner append-only comment audits without requiring --force."
|
|
1963
2194
|
},
|
|
2195
|
+
edit: {
|
|
2196
|
+
description: "For comments action, replace the comment at this 1-based index with the supplied replacement text (add/stdin/file)."
|
|
2197
|
+
},
|
|
2198
|
+
delete: {
|
|
2199
|
+
description: "For comments action, delete the comment at this 1-based index."
|
|
2200
|
+
},
|
|
1964
2201
|
stdin: {
|
|
1965
2202
|
description: "When true for comments action, read comment text from piped stdin (supports multiline markdown)."
|
|
1966
2203
|
},
|
|
@@ -1988,7 +2225,7 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1988
2225
|
description: "When true for files action, use `pm files discover <id>` to scan item text for referenced file paths."
|
|
1989
2226
|
},
|
|
1990
2227
|
apply: {
|
|
1991
|
-
description: "
|
|
2228
|
+
description: "Persist changes instead of returning a dry-run preview: for files discovery, add the missing discovered file links; for schema add-type --infer, register the inferred custom item types."
|
|
1992
2229
|
},
|
|
1993
2230
|
discoveryNote: {
|
|
1994
2231
|
description: "Note attached to file links added by files discovery.",
|
|
@@ -2028,6 +2265,9 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
2028
2265
|
includeBody: {
|
|
2029
2266
|
description: "When true for list-family actions, include item body text in projected rows."
|
|
2030
2267
|
},
|
|
2268
|
+
noTruncate: {
|
|
2269
|
+
description: "When true for list-family actions, return every matched row, overriding any limit (surfaces total when rows were dropped)."
|
|
2270
|
+
},
|
|
2031
2271
|
compact: {
|
|
2032
2272
|
description: "Render compact projection output for search and list-family actions."
|
|
2033
2273
|
},
|
|
@@ -2112,8 +2352,8 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
2112
2352
|
description: "Alias for runtimeOnly in contracts action payloads."
|
|
2113
2353
|
},
|
|
2114
2354
|
depth: {
|
|
2115
|
-
description: "Context depth level controlling how many sections are included (brief=focus+agenda, standard=+hierarchy/activity/progress/workload, deep=all sections).",
|
|
2116
|
-
examples: ["brief", "standard", "deep"]
|
|
2355
|
+
description: "Context depth level controlling how many sections are included (brief=focus+agenda, standard=+hierarchy/activity/progress/workload, deep=all sections, full=every section with no per-section row cap).",
|
|
2356
|
+
examples: ["brief", "standard", "deep", "full"]
|
|
2117
2357
|
},
|
|
2118
2358
|
section: {
|
|
2119
2359
|
description: "Repeatable section selector for context; overrides --depth when provided.",
|
|
@@ -2133,7 +2373,7 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
2133
2373
|
!(function() {
|
|
2134
2374
|
try {
|
|
2135
2375
|
var e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack;
|
|
2136
|
-
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "
|
|
2376
|
+
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "d96141cc-85b2-5835-97d9-a5ddcb542b38");
|
|
2137
2377
|
} catch (e2) {
|
|
2138
2378
|
}
|
|
2139
2379
|
})();
|
|
@@ -2166,7 +2406,10 @@ function withFlagAliasMetadata(flagContracts) {
|
|
|
2166
2406
|
if (contract.flag !== canonical) {
|
|
2167
2407
|
return contract;
|
|
2168
2408
|
}
|
|
2169
|
-
const aliases = normalizeUniqueStringList([
|
|
2409
|
+
const aliases = normalizeUniqueStringList([
|
|
2410
|
+
...contract.aliases ?? [],
|
|
2411
|
+
...aliasesByCanonical.get(canonical)
|
|
2412
|
+
]).filter((alias) => alias !== canonical);
|
|
2170
2413
|
if (aliases.length === 0) {
|
|
2171
2414
|
return contract;
|
|
2172
2415
|
}
|
|
@@ -2217,8 +2460,36 @@ var LIST_FILTER_FLAG_CONTRACTS = [
|
|
|
2217
2460
|
{ flag: "--parent" },
|
|
2218
2461
|
{ flag: "--sprint" },
|
|
2219
2462
|
{ flag: "--release" },
|
|
2463
|
+
{ flag: "--filter-ac-missing" },
|
|
2464
|
+
{ flag: "--filter-estimates-missing", aliases: ["--filter-estimate-missing"] },
|
|
2465
|
+
{ flag: "--filter-resolution-missing" },
|
|
2466
|
+
{ flag: "--filter-metadata-missing" },
|
|
2467
|
+
{ flag: "--filter-reviewer-missing" },
|
|
2468
|
+
{ flag: "--filter-risk-missing" },
|
|
2469
|
+
{ flag: "--filter-confidence-missing" },
|
|
2470
|
+
{ flag: "--filter-sprint-missing" },
|
|
2471
|
+
{ flag: "--filter-release-missing" },
|
|
2472
|
+
{ flag: "--has-notes" },
|
|
2473
|
+
{ flag: "--no-notes" },
|
|
2474
|
+
{ flag: "--has-learnings" },
|
|
2475
|
+
{ flag: "--no-learnings" },
|
|
2476
|
+
{ flag: "--has-files" },
|
|
2477
|
+
{ flag: "--no-files" },
|
|
2478
|
+
{ flag: "--has-docs" },
|
|
2479
|
+
{ flag: "--no-docs" },
|
|
2480
|
+
{ flag: "--has-tests" },
|
|
2481
|
+
{ flag: "--no-tests" },
|
|
2482
|
+
{ flag: "--has-comments" },
|
|
2483
|
+
{ flag: "--no-comments" },
|
|
2484
|
+
{ flag: "--has-deps" },
|
|
2485
|
+
{ flag: "--no-deps" },
|
|
2486
|
+
{ flag: "--has-body" },
|
|
2487
|
+
{ flag: "--empty-body" },
|
|
2488
|
+
{ flag: "--has-linked-command" },
|
|
2489
|
+
{ flag: "--no-linked-command" },
|
|
2220
2490
|
{ flag: "--limit" },
|
|
2221
2491
|
{ flag: "--offset" },
|
|
2492
|
+
{ flag: "--no-truncate", aliases: ["--all"] },
|
|
2222
2493
|
{ flag: "--compact" },
|
|
2223
2494
|
{ flag: "--brief" },
|
|
2224
2495
|
{ flag: "--full" },
|
|
@@ -2289,6 +2560,8 @@ var COMMENTS_FLAG_CONTRACTS = [
|
|
|
2289
2560
|
{ flag: "--add", aliases: ["--comment"] },
|
|
2290
2561
|
{ flag: "--stdin" },
|
|
2291
2562
|
{ flag: "--file" },
|
|
2563
|
+
{ flag: "--edit" },
|
|
2564
|
+
{ flag: "--delete" },
|
|
2292
2565
|
{ flag: "--limit" },
|
|
2293
2566
|
{ flag: "--author" },
|
|
2294
2567
|
{ flag: "--message" },
|
|
@@ -2384,6 +2657,20 @@ var SCHEMA_FLAG_CONTRACTS = [
|
|
|
2384
2657
|
// values.
|
|
2385
2658
|
{ flag: "--role" },
|
|
2386
2659
|
{ flag: "--order" },
|
|
2660
|
+
// add-field flags (custom runtime fields). --commands/--required-types are
|
|
2661
|
+
// repeatable Commander collect flags (comma-splitting handled in the action),
|
|
2662
|
+
// so they stay off the comma-list contract for the same reason as --alias.
|
|
2663
|
+
{ flag: "--type" },
|
|
2664
|
+
{ flag: "--commands" },
|
|
2665
|
+
{ flag: "--cli-flag" },
|
|
2666
|
+
{ flag: "--required" },
|
|
2667
|
+
{ flag: "--required-on-create" },
|
|
2668
|
+
{ flag: "--no-allow-unset" },
|
|
2669
|
+
{ flag: "--required-types" },
|
|
2670
|
+
// add-type --infer flags (title-prefix type inference).
|
|
2671
|
+
{ flag: "--infer" },
|
|
2672
|
+
{ flag: "--min-count" },
|
|
2673
|
+
{ flag: "--apply" },
|
|
2387
2674
|
{ flag: "--author" },
|
|
2388
2675
|
{ flag: "--force" }
|
|
2389
2676
|
];
|
|
@@ -2598,6 +2885,29 @@ var CLOSE_MANY_FLAG_CONTRACTS = [
|
|
|
2598
2885
|
{ flag: "--filter-parent" },
|
|
2599
2886
|
{ flag: "--filter-sprint" },
|
|
2600
2887
|
{ flag: "--filter-release" },
|
|
2888
|
+
{ flag: "--filter-reviewer-missing" },
|
|
2889
|
+
{ flag: "--filter-risk-missing" },
|
|
2890
|
+
{ flag: "--filter-confidence-missing" },
|
|
2891
|
+
{ flag: "--filter-sprint-missing" },
|
|
2892
|
+
{ flag: "--filter-release-missing" },
|
|
2893
|
+
{ flag: "--filter-has-notes" },
|
|
2894
|
+
{ flag: "--filter-no-notes" },
|
|
2895
|
+
{ flag: "--filter-has-learnings" },
|
|
2896
|
+
{ flag: "--filter-no-learnings" },
|
|
2897
|
+
{ flag: "--filter-has-files" },
|
|
2898
|
+
{ flag: "--filter-no-files" },
|
|
2899
|
+
{ flag: "--filter-has-docs" },
|
|
2900
|
+
{ flag: "--filter-no-docs" },
|
|
2901
|
+
{ flag: "--filter-has-tests" },
|
|
2902
|
+
{ flag: "--filter-no-tests" },
|
|
2903
|
+
{ flag: "--filter-has-comments" },
|
|
2904
|
+
{ flag: "--filter-no-comments" },
|
|
2905
|
+
{ flag: "--filter-has-deps" },
|
|
2906
|
+
{ flag: "--filter-no-deps" },
|
|
2907
|
+
{ flag: "--filter-has-body" },
|
|
2908
|
+
{ flag: "--filter-empty-body" },
|
|
2909
|
+
{ flag: "--filter-has-linked-command" },
|
|
2910
|
+
{ flag: "--filter-no-linked-command" },
|
|
2601
2911
|
{ flag: "--ids", list: true },
|
|
2602
2912
|
{ flag: "--limit" },
|
|
2603
2913
|
{ flag: "--offset" },
|
|
@@ -2657,6 +2967,31 @@ var CLOSE_TASK_FLAG_CONTRACTS = [
|
|
|
2657
2967
|
{ flag: "--validate-close" },
|
|
2658
2968
|
{ flag: "--force" }
|
|
2659
2969
|
];
|
|
2970
|
+
var SCHEDULING_SHORTCUT_COMMON_FLAG_CONTRACTS = [
|
|
2971
|
+
{ flag: "--parent" },
|
|
2972
|
+
{ flag: "--allow-missing-parent" },
|
|
2973
|
+
{ flag: "--tags" },
|
|
2974
|
+
{ flag: "--priority" },
|
|
2975
|
+
{ flag: "--body" },
|
|
2976
|
+
{ flag: "--description" },
|
|
2977
|
+
{ flag: "--author" },
|
|
2978
|
+
{ flag: "--message" }
|
|
2979
|
+
];
|
|
2980
|
+
var MEET_FLAG_CONTRACTS = [
|
|
2981
|
+
{ flag: "--start" },
|
|
2982
|
+
{ flag: "--duration" },
|
|
2983
|
+
{ flag: "--end" },
|
|
2984
|
+
{ flag: "--location" },
|
|
2985
|
+
{ flag: "--timezone" },
|
|
2986
|
+
{ flag: "--all-day" },
|
|
2987
|
+
...SCHEDULING_SHORTCUT_COMMON_FLAG_CONTRACTS
|
|
2988
|
+
];
|
|
2989
|
+
var EVENT_FLAG_CONTRACTS = MEET_FLAG_CONTRACTS;
|
|
2990
|
+
var REMIND_FLAG_CONTRACTS = [
|
|
2991
|
+
{ flag: "--at" },
|
|
2992
|
+
{ flag: "--text" },
|
|
2993
|
+
...SCHEDULING_SHORTCUT_COMMON_FLAG_CONTRACTS
|
|
2994
|
+
];
|
|
2660
2995
|
var TEST_FLAG_CONTRACTS = [
|
|
2661
2996
|
{ flag: "--add" },
|
|
2662
2997
|
{ flag: "--add-json" },
|
|
@@ -2718,7 +3053,13 @@ var GC_FLAG_CONTRACTS = [
|
|
|
2718
3053
|
{ flag: "--scope" }
|
|
2719
3054
|
];
|
|
2720
3055
|
var STATS_FLAG_CONTRACTS = [
|
|
2721
|
-
{ flag: "--storage" }
|
|
3056
|
+
{ flag: "--storage" },
|
|
3057
|
+
{ flag: "--metadata-coverage" },
|
|
3058
|
+
{ flag: "--field-utilization" },
|
|
3059
|
+
{ flag: "--by-assignee" },
|
|
3060
|
+
{ flag: "--by-tag" },
|
|
3061
|
+
{ flag: "--by-priority" },
|
|
3062
|
+
{ flag: "--tag-prefix" }
|
|
2722
3063
|
];
|
|
2723
3064
|
var HEALTH_FLAG_CONTRACTS = [
|
|
2724
3065
|
{ flag: "--strict-directories" },
|
|
@@ -2748,6 +3089,7 @@ var VALIDATE_FLAG_CONTRACTS = [
|
|
|
2748
3089
|
{ flag: "--include-pm-internals" },
|
|
2749
3090
|
{ flag: "--verbose-file-lists" },
|
|
2750
3091
|
{ flag: "--verbose-diagnostics" },
|
|
3092
|
+
{ flag: "--all-affected-ids" },
|
|
2751
3093
|
{ flag: "--strict-exit" },
|
|
2752
3094
|
{ flag: "--fail-on-warn" },
|
|
2753
3095
|
{ flag: "--fix-hints" },
|
|
@@ -2779,6 +3121,7 @@ var CREATE_FLAG_CONTRACTS = [
|
|
|
2779
3121
|
// corrupting the JSON-array value form before parseTags sees it.
|
|
2780
3122
|
{ flag: "--add-tags", aliases: ["--add_tags"] },
|
|
2781
3123
|
{ short: "-b", flag: "--body" },
|
|
3124
|
+
{ flag: "--body-file" },
|
|
2782
3125
|
{ flag: "--deadline" },
|
|
2783
3126
|
{ flag: "--estimate" },
|
|
2784
3127
|
{ flag: "--estimated-minutes" },
|
|
@@ -2862,10 +3205,14 @@ var COPY_FLAG_CONTRACTS = [
|
|
|
2862
3205
|
{ flag: "--author" },
|
|
2863
3206
|
{ flag: "--message" }
|
|
2864
3207
|
];
|
|
3208
|
+
var FOCUS_FLAG_CONTRACTS = [
|
|
3209
|
+
{ flag: "--clear" }
|
|
3210
|
+
];
|
|
2865
3211
|
var UPDATE_FLAG_CONTRACTS = [
|
|
2866
3212
|
{ short: "-t", flag: "--title" },
|
|
2867
3213
|
{ short: "-d", flag: "--description" },
|
|
2868
3214
|
{ short: "-b", flag: "--body" },
|
|
3215
|
+
{ flag: "--body-file" },
|
|
2869
3216
|
{ short: "-s", flag: "--status" },
|
|
2870
3217
|
{ flag: "--close-reason" },
|
|
2871
3218
|
{ flag: "--close_reason" },
|
|
@@ -2980,6 +3327,33 @@ var UPDATE_MANY_FLAG_CONTRACTS = [
|
|
|
2980
3327
|
{ flag: "--filter-parent" },
|
|
2981
3328
|
{ flag: "--filter-sprint" },
|
|
2982
3329
|
{ flag: "--filter-release" },
|
|
3330
|
+
{ flag: "--filter-ac-missing" },
|
|
3331
|
+
{ flag: "--filter-estimates-missing", aliases: ["--filter-estimate-missing"] },
|
|
3332
|
+
{ flag: "--filter-resolution-missing" },
|
|
3333
|
+
{ flag: "--filter-metadata-missing" },
|
|
3334
|
+
{ flag: "--filter-reviewer-missing" },
|
|
3335
|
+
{ flag: "--filter-risk-missing" },
|
|
3336
|
+
{ flag: "--filter-confidence-missing" },
|
|
3337
|
+
{ flag: "--filter-sprint-missing" },
|
|
3338
|
+
{ flag: "--filter-release-missing" },
|
|
3339
|
+
{ flag: "--filter-has-notes" },
|
|
3340
|
+
{ flag: "--filter-no-notes" },
|
|
3341
|
+
{ flag: "--filter-has-learnings" },
|
|
3342
|
+
{ flag: "--filter-no-learnings" },
|
|
3343
|
+
{ flag: "--filter-has-files" },
|
|
3344
|
+
{ flag: "--filter-no-files" },
|
|
3345
|
+
{ flag: "--filter-has-docs" },
|
|
3346
|
+
{ flag: "--filter-no-docs" },
|
|
3347
|
+
{ flag: "--filter-has-tests" },
|
|
3348
|
+
{ flag: "--filter-no-tests" },
|
|
3349
|
+
{ flag: "--filter-has-comments" },
|
|
3350
|
+
{ flag: "--filter-no-comments" },
|
|
3351
|
+
{ flag: "--filter-has-deps" },
|
|
3352
|
+
{ flag: "--filter-no-deps" },
|
|
3353
|
+
{ flag: "--filter-has-body" },
|
|
3354
|
+
{ flag: "--filter-empty-body" },
|
|
3355
|
+
{ flag: "--filter-has-linked-command" },
|
|
3356
|
+
{ flag: "--filter-no-linked-command" },
|
|
2983
3357
|
{ flag: "--ids", list: true },
|
|
2984
3358
|
{ flag: "--limit" },
|
|
2985
3359
|
{ flag: "--offset" },
|
|
@@ -3145,6 +3519,7 @@ var CONTEXT_FLAG_CONTRACTS = [
|
|
|
3145
3519
|
{ flag: "--assignee_filter" },
|
|
3146
3520
|
{ flag: "--sprint" },
|
|
3147
3521
|
{ flag: "--release" },
|
|
3522
|
+
{ flag: "--parent" },
|
|
3148
3523
|
{ flag: "--limit" },
|
|
3149
3524
|
{ flag: "--format" },
|
|
3150
3525
|
{ flag: "--depth" },
|
|
@@ -3175,6 +3550,9 @@ var SEARCH_FLAG_CONTRACTS = [
|
|
|
3175
3550
|
{ flag: "--mode" },
|
|
3176
3551
|
{ flag: "--semantic" },
|
|
3177
3552
|
{ flag: "--hybrid" },
|
|
3553
|
+
{ flag: "--match-mode" },
|
|
3554
|
+
{ flag: "--min-score" },
|
|
3555
|
+
{ flag: "--count" },
|
|
3178
3556
|
{ flag: "--semantic-weight" },
|
|
3179
3557
|
{ flag: "--include-linked" },
|
|
3180
3558
|
{ flag: "--title-exact" },
|
|
@@ -3188,7 +3566,38 @@ var SEARCH_FLAG_CONTRACTS = [
|
|
|
3188
3566
|
{ flag: "--tag", aliases: ["--tags"] },
|
|
3189
3567
|
{ flag: "--priority" },
|
|
3190
3568
|
{ flag: "--deadline-before" },
|
|
3191
|
-
{ flag: "--deadline-after" }
|
|
3569
|
+
{ flag: "--deadline-after" },
|
|
3570
|
+
{ flag: "--updated-after" },
|
|
3571
|
+
{ flag: "--updated-before" },
|
|
3572
|
+
{ flag: "--created-after" },
|
|
3573
|
+
{ flag: "--created-before" },
|
|
3574
|
+
{ flag: "--assignee" },
|
|
3575
|
+
{ flag: "--sprint" },
|
|
3576
|
+
{ flag: "--release" },
|
|
3577
|
+
{ flag: "--parent" },
|
|
3578
|
+
{ flag: "--filter-reviewer-missing" },
|
|
3579
|
+
{ flag: "--filter-risk-missing" },
|
|
3580
|
+
{ flag: "--filter-confidence-missing" },
|
|
3581
|
+
{ flag: "--filter-sprint-missing" },
|
|
3582
|
+
{ flag: "--filter-release-missing" },
|
|
3583
|
+
{ flag: "--has-notes" },
|
|
3584
|
+
{ flag: "--no-notes" },
|
|
3585
|
+
{ flag: "--has-learnings" },
|
|
3586
|
+
{ flag: "--no-learnings" },
|
|
3587
|
+
{ flag: "--has-files" },
|
|
3588
|
+
{ flag: "--no-files" },
|
|
3589
|
+
{ flag: "--has-docs" },
|
|
3590
|
+
{ flag: "--no-docs" },
|
|
3591
|
+
{ flag: "--has-tests" },
|
|
3592
|
+
{ flag: "--no-tests" },
|
|
3593
|
+
{ flag: "--has-comments" },
|
|
3594
|
+
{ flag: "--no-comments" },
|
|
3595
|
+
{ flag: "--has-deps" },
|
|
3596
|
+
{ flag: "--no-deps" },
|
|
3597
|
+
{ flag: "--has-body" },
|
|
3598
|
+
{ flag: "--empty-body" },
|
|
3599
|
+
{ flag: "--has-linked-command" },
|
|
3600
|
+
{ flag: "--no-linked-command" }
|
|
3192
3601
|
];
|
|
3193
3602
|
var CONTRACTS_FLAG_CONTRACTS = [
|
|
3194
3603
|
{ flag: "--action" },
|
|
@@ -3311,6 +3720,8 @@ function resolveSubcommandFlagContractsForCommand(commandName) {
|
|
|
3311
3720
|
return withSubcommandGlobalFlags(CREATE_FLAG_CONTRACTS);
|
|
3312
3721
|
case "copy":
|
|
3313
3722
|
return withSubcommandGlobalFlags(COPY_FLAG_CONTRACTS);
|
|
3723
|
+
case "focus":
|
|
3724
|
+
return withSubcommandGlobalFlags(FOCUS_FLAG_CONTRACTS);
|
|
3314
3725
|
case "aggregate":
|
|
3315
3726
|
return withSubcommandGlobalFlags(AGGREGATE_FLAG_CONTRACTS);
|
|
3316
3727
|
case "calendar":
|
|
@@ -3387,6 +3798,12 @@ function resolveSubcommandFlagContractsForCommand(commandName) {
|
|
|
3387
3798
|
return withSubcommandGlobalFlags(PAUSE_TASK_FLAG_CONTRACTS);
|
|
3388
3799
|
case "close-task":
|
|
3389
3800
|
return withSubcommandGlobalFlags(CLOSE_TASK_FLAG_CONTRACTS);
|
|
3801
|
+
case "meet":
|
|
3802
|
+
return withSubcommandGlobalFlags(MEET_FLAG_CONTRACTS);
|
|
3803
|
+
case "event":
|
|
3804
|
+
return withSubcommandGlobalFlags(EVENT_FLAG_CONTRACTS);
|
|
3805
|
+
case "remind":
|
|
3806
|
+
return withSubcommandGlobalFlags(REMIND_FLAG_CONTRACTS);
|
|
3390
3807
|
default:
|
|
3391
3808
|
return withSubcommandGlobalFlags([]);
|
|
3392
3809
|
}
|
|
@@ -3465,6 +3882,7 @@ var ACTIVITY_CONTRACT_PARAMETER_KEYS = toSchemaKeyList([
|
|
|
3465
3882
|
var LIST_CONTRACT_PARAMETER_KEYS = toSchemaKeyList([
|
|
3466
3883
|
...TOOL_LIST_FILTER_OPTION_CONTRACTS.map((entry) => entry.param),
|
|
3467
3884
|
"includeBody",
|
|
3885
|
+
"noTruncate",
|
|
3468
3886
|
"compact",
|
|
3469
3887
|
"brief",
|
|
3470
3888
|
"full"
|
|
@@ -3592,6 +4010,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3592
4010
|
optional: CREATE_CONTRACT_PARAMETER_KEYS
|
|
3593
4011
|
},
|
|
3594
4012
|
copy: { required: ["id"], optional: ["title", "author", "message"] },
|
|
4013
|
+
focus: { optional: ["id", "clear"], mutuallyExclusive: [["id", "clear"]] },
|
|
3595
4014
|
list: { optional: LIST_CONTRACT_PARAMETER_KEYS },
|
|
3596
4015
|
"list-all": { optional: LIST_CONTRACT_PARAMETER_KEYS },
|
|
3597
4016
|
"list-draft": { optional: LIST_CONTRACT_PARAMETER_KEYS },
|
|
@@ -3629,7 +4048,28 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3629
4048
|
schema: {
|
|
3630
4049
|
required: ["subcommand"],
|
|
3631
4050
|
// No --message: schema mutations write config files, not item history.
|
|
3632
|
-
optional: [
|
|
4051
|
+
optional: [
|
|
4052
|
+
"name",
|
|
4053
|
+
"description",
|
|
4054
|
+
"defaultStatus",
|
|
4055
|
+
"folder",
|
|
4056
|
+
"alias",
|
|
4057
|
+
"role",
|
|
4058
|
+
"order",
|
|
4059
|
+
"fieldType",
|
|
4060
|
+
"commands",
|
|
4061
|
+
"cliFlag",
|
|
4062
|
+
"required",
|
|
4063
|
+
"requiredOnCreate",
|
|
4064
|
+
"allowUnset",
|
|
4065
|
+
"requiredTypes",
|
|
4066
|
+
"typePreset",
|
|
4067
|
+
"infer",
|
|
4068
|
+
"minCount",
|
|
4069
|
+
"apply",
|
|
4070
|
+
"author",
|
|
4071
|
+
"force"
|
|
4072
|
+
],
|
|
3633
4073
|
conditionalRequired: [
|
|
3634
4074
|
{ property: "subcommand", value: "show", required: ["name"] },
|
|
3635
4075
|
{ property: "subcommand", value: "show-status", required: ["name"] },
|
|
@@ -3637,7 +4077,13 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3637
4077
|
{ property: "subcommand", value: "remove-type", required: ["name"] },
|
|
3638
4078
|
// show-status/add-status/remove-status pass the status id as `name`.
|
|
3639
4079
|
{ property: "subcommand", value: "add-status", required: ["name"] },
|
|
3640
|
-
{ property: "subcommand", value: "remove-status", required: ["name"] }
|
|
4080
|
+
{ property: "subcommand", value: "remove-status", required: ["name"] },
|
|
4081
|
+
// field subcommands pass the field key as `name`.
|
|
4082
|
+
{ property: "subcommand", value: "add-field", required: ["name"] },
|
|
4083
|
+
{ property: "subcommand", value: "remove-field", required: ["name"] },
|
|
4084
|
+
{ property: "subcommand", value: "show-field", required: ["name"] },
|
|
4085
|
+
// apply-preset passes the preset name as `typePreset`.
|
|
4086
|
+
{ property: "subcommand", value: "apply-preset", required: ["typePreset"] }
|
|
3641
4087
|
]
|
|
3642
4088
|
},
|
|
3643
4089
|
plan: {
|
|
@@ -3708,7 +4154,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3708
4154
|
append: { required: ["id", "body"], optional: AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS },
|
|
3709
4155
|
comments: {
|
|
3710
4156
|
required: ["id"],
|
|
3711
|
-
optional: ["text", "add", "stdin", "file", "limit", "allowAuditComment", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS]
|
|
4157
|
+
optional: ["text", "add", "stdin", "file", "edit", "delete", "limit", "allowAuditComment", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS]
|
|
3712
4158
|
},
|
|
3713
4159
|
"comments-audit": {
|
|
3714
4160
|
optional: [
|
|
@@ -3841,7 +4287,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3841
4287
|
required: ["runId"],
|
|
3842
4288
|
optional: ["author"]
|
|
3843
4289
|
},
|
|
3844
|
-
stats: { optional: ["storage"] },
|
|
4290
|
+
stats: { optional: ["storage", "metadataCoverage", "fieldUtilization", "byAssignee", "byTag", "byPriority", "tagPrefix"] },
|
|
3845
4291
|
health: {
|
|
3846
4292
|
optional: [
|
|
3847
4293
|
"strictDirectories",
|
|
@@ -3872,6 +4318,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3872
4318
|
"includePmInternals",
|
|
3873
4319
|
"verboseFileLists",
|
|
3874
4320
|
"verboseDiagnostics",
|
|
4321
|
+
"allAffectedIds",
|
|
3875
4322
|
"strictExit",
|
|
3876
4323
|
"failOnWarn",
|
|
3877
4324
|
"fixHints",
|
|
@@ -3931,7 +4378,7 @@ function buildActionScopedToolSchema(action) {
|
|
|
3931
4378
|
const required = toSchemaKeyList(contract.required ?? []);
|
|
3932
4379
|
const optional = toSchemaKeyList(contract.optional ?? []);
|
|
3933
4380
|
const mutationParameterKeys = PM_TOOL_ACTION_MUTATION_PARAMETER_KEYS[action] ?? [];
|
|
3934
|
-
const allowedKeys = toSchemaKeyList([...PM_TOOL_GLOBAL_PARAMETER_KEYS, ...mutationParameterKeys, ...required, ...optional]);
|
|
4381
|
+
const allowedKeys = toSchemaKeyList(["action", ...PM_TOOL_GLOBAL_PARAMETER_KEYS, ...mutationParameterKeys, ...required, ...optional]);
|
|
3935
4382
|
const properties = {
|
|
3936
4383
|
action: {
|
|
3937
4384
|
const: action,
|
|
@@ -3959,9 +4406,11 @@ function buildActionScopedToolSchema(action) {
|
|
|
3959
4406
|
required: [...requiredFields]
|
|
3960
4407
|
}));
|
|
3961
4408
|
}
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
4409
|
+
const oneOfRequiredGroups = contract.oneOfRequired;
|
|
4410
|
+
if (oneOfRequiredGroups && oneOfRequiredGroups.length > 0) {
|
|
4411
|
+
const allOneOfFields = oneOfRequiredGroups.flat();
|
|
4412
|
+
schema.oneOf = oneOfRequiredGroups.map((requiredFields) => {
|
|
4413
|
+
const otherFields = allOneOfFields.filter((field) => !requiredFields.includes(field));
|
|
3965
4414
|
return {
|
|
3966
4415
|
required: [...requiredFields],
|
|
3967
4416
|
...otherFields.length > 0 ? { not: { anyOf: otherFields.map((field) => ({ required: [field] })) } } : {},
|
|
@@ -3996,6 +4445,13 @@ function buildActionScopedToolSchema(action) {
|
|
|
3996
4445
|
}
|
|
3997
4446
|
schema.allOf = allOf;
|
|
3998
4447
|
}
|
|
4448
|
+
if (contract.mutuallyExclusive && contract.mutuallyExclusive.length > 0) {
|
|
4449
|
+
const allOf = Array.isArray(schema.allOf) ? [...schema.allOf] : [];
|
|
4450
|
+
for (const group of contract.mutuallyExclusive) {
|
|
4451
|
+
allOf.push({ not: { required: toSchemaKeyList(group) } });
|
|
4452
|
+
}
|
|
4453
|
+
schema.allOf = allOf;
|
|
4454
|
+
}
|
|
3999
4455
|
return schema;
|
|
4000
4456
|
}
|
|
4001
4457
|
function createLazyContractSchema(build) {
|
|
@@ -4163,4 +4619,4 @@ export {
|
|
|
4163
4619
|
resolveSubcommandFlagContractsForCommand,
|
|
4164
4620
|
PM_TOOL_PARAMETERS_SCHEMA
|
|
4165
4621
|
};
|
|
4166
|
-
//# sourceMappingURL=chunk-
|
|
4622
|
+
//# sourceMappingURL=chunk-VXHMQDXA.js.map
|