@unbrained/pm-cli 2026.8.17 → 2026.8.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +2 -2
- package/AGENTS.md +4 -3
- package/CHANGELOG.md +51 -5
- package/README.md +3 -3
- package/dist/cli/error-guidance.js +8 -4
- package/dist/cli/help-content.js +32 -13
- package/dist/cli/help-json-payload.d.ts +15 -0
- package/dist/cli/help-json-payload.js +101 -23
- package/dist/cli/main.js +6 -2
- package/dist/cli/register-list-query.js +138 -54
- package/dist/cli/register-mutation.js +8 -8
- package/dist/cli/register-operations.js +6 -6
- package/dist/cli-bundle/bundle-manifest.json +149 -149
- package/dist/cli-bundle/chunks/chunk-4NRRH7AM.js +2 -0
- package/dist/cli-bundle/chunks/chunk-4THEB6PD.js +13 -0
- package/dist/cli-bundle/chunks/{chunk-HBJAS566.js → chunk-BHYMXLAE.js} +2 -2
- package/dist/cli-bundle/chunks/chunk-GWMXAQOD.js +197 -0
- package/dist/cli-bundle/chunks/chunk-HVFQTLYM.js +35 -0
- package/dist/cli-bundle/chunks/chunk-OI4XI562.js +5 -0
- package/dist/cli-bundle/chunks/{chunk-3UEGXBMR.js → chunk-OIOKV6NO.js} +58 -54
- package/dist/cli-bundle/chunks/chunk-QXSH7BLM.js +3 -0
- package/dist/cli-bundle/chunks/chunk-SARFF5H5.js +3 -0
- package/dist/cli-bundle/chunks/{chunk-7IBRGCHX.js → chunk-TOXJM4WA.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-JOKATURE.js → chunk-YBMRWW4E.js} +44 -44
- package/dist/cli-bundle/chunks/register-list-query-Y56KINDU.js +11 -0
- package/dist/cli-bundle/chunks/register-mutation-AUWVCW4M.js +20 -0
- package/dist/cli-bundle/chunks/register-operations-PZQPHXW5.js +2 -0
- package/dist/cli-bundle/chunks/{register-setup-DOSFBGKE.js → register-setup-I4LUHGVW.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-34QBIYZI.js +155 -0
- package/dist/cli-bundle/focused-chunks/{chunk-MHPIL773.js → chunk-BJRYFVSH.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-DKPLYW3L.js +2 -0
- package/dist/cli-bundle/focused-chunks/{chunk-SALH6B6K.js → chunk-EF6ZS5GH.js} +44 -44
- package/dist/cli-bundle/focused-chunks/{chunk-XKAMP5OU.js → chunk-ESISGDAY.js} +2 -2
- package/dist/cli-bundle/focused-chunks/{chunk-SYZENPIT.js → chunk-EXBCLIBU.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-JDOMQ7VQ.js +4 -0
- package/dist/cli-bundle/focused-chunks/chunk-L623ZPNK.js +2 -0
- package/dist/cli-bundle/focused-chunks/chunk-MCZXYZAF.js +2 -0
- package/dist/cli-bundle/focused-chunks/chunk-ODHQEECS.js +2 -0
- package/dist/cli-bundle/focused-chunks/{chunk-ZQPGZZWQ.js → chunk-PRHY2IMX.js} +3 -3
- package/dist/cli-bundle/focused-chunks/chunk-RZU5U6Q7.js +2 -0
- package/dist/cli-bundle/focused-chunks/{chunk-ATEY76SX.js → chunk-US7VEYZG.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-VXDSU5MC.js +26 -0
- package/dist/cli-bundle/focused-chunks/chunk-YBMGXBFV.js +16 -0
- package/dist/cli-bundle/focused-chunks/chunk-YLVBJ6GF.js +2 -0
- package/dist/cli-bundle/focused-chunks/{chunk-CYFK5UPB.js → chunk-ZBIQQYMI.js} +2 -2
- package/dist/cli-bundle/main.js +13 -13
- package/dist/cli-bundle/sdk-authoring.js +1 -1
- package/dist/cli-bundle/sdk-contracts.js +2 -1
- package/dist/cli-bundle/sdk-core.js +28 -28
- package/dist/cli-bundle/sdk-governance.js +1 -1
- package/dist/cli-bundle/sdk-graph.js +1 -1
- package/dist/cli-bundle/sdk-merge.js +32 -32
- package/dist/cli-bundle/sdk-query.js +1 -1
- package/dist/cli-bundle/sdk-runtime.js +1 -1
- package/dist/cli-bundle/sdk-testing.js +1 -1
- package/dist/cli-bundle/sdk.js +5 -4
- package/dist/core/config/nested-settings.js +8 -2
- package/dist/core/extensions/exporter-output-contract.d.ts +12 -0
- package/dist/core/extensions/exporter-output-contract.js +67 -0
- package/dist/core/extensions/extension-types.d.ts +36 -1
- package/dist/core/extensions/extension-types.js +2 -2
- package/dist/core/extensions/loader.js +35 -44
- package/dist/core/history/event-index.d.ts +5 -0
- package/dist/core/history/event-index.js +133 -27
- package/dist/core/sentry/helpers.js +3 -3
- package/dist/core/shared/constants.js +5 -2
- package/dist/core/shared/errors.d.ts +2 -0
- package/dist/core/shared/errors.js +2 -2
- package/dist/core/store/settings-validator.d.ts +4 -0
- package/dist/core/store/settings-validator.js +3 -2
- package/dist/core/store/settings.js +8 -2
- package/dist/mcp/tool-definitions.js +12 -7
- package/dist/sdk/agent/refusal-closure.d.ts +41 -0
- package/dist/sdk/agent/refusal-closure.js +92 -0
- package/dist/sdk/agent/refusal-reachability.d.ts +1 -1
- package/dist/sdk/agent/refusal-reachability.js +4 -4
- package/dist/sdk/agent-capability-contracts.d.ts +13 -0
- package/dist/sdk/agent-capability-contracts.js +104 -7
- package/dist/sdk/authoring.d.ts +1 -1
- package/dist/sdk/authoring.js +2 -2
- package/dist/sdk/cli-bootstrap.d.ts +2 -2
- package/dist/sdk/cli-bootstrap.js +4 -4
- package/dist/sdk/cli-contracts/command-aliases.d.ts +34 -2
- package/dist/sdk/cli-contracts/command-aliases.js +80 -13
- package/dist/sdk/cli-contracts/commander-mutation-options.js +30 -6
- package/dist/sdk/cli-contracts/commander-types.js +5 -4
- package/dist/sdk/cli-contracts/enum-contracts.d.ts +4 -0
- package/dist/sdk/cli-contracts/enum-contracts.js +9 -2
- package/dist/sdk/cli-contracts/flag-contracts.d.ts +5 -0
- package/dist/sdk/cli-contracts/flag-contracts.js +84 -13
- package/dist/sdk/cli-contracts/flag-lexicon-contracts.d.ts +55 -0
- package/dist/sdk/cli-contracts/flag-lexicon-contracts.js +240 -0
- package/dist/sdk/cli-contracts/grammar-contracts.d.ts +151 -0
- package/dist/sdk/cli-contracts/grammar-contracts.js +958 -0
- package/dist/sdk/cli-contracts/runtime-contracts.d.ts +33 -5
- package/dist/sdk/cli-contracts/runtime-contracts.js +100 -23
- package/dist/sdk/cli-contracts/tool-option-contracts.d.ts +28 -1
- package/dist/sdk/cli-contracts/tool-option-contracts.js +38 -3
- package/dist/sdk/cli-contracts/tool-parameter-tables.js +7 -2
- package/dist/sdk/cli-contracts/tool-schema.d.ts +2 -2
- package/dist/sdk/cli-contracts/tool-schema.js +20 -11
- package/dist/sdk/cli-contracts.d.ts +5 -4
- package/dist/sdk/cli-contracts.js +7 -6
- package/dist/sdk/completion.js +13 -15
- package/dist/sdk/compose.d.ts +3 -3
- package/dist/sdk/compose.js +2 -2
- package/dist/sdk/context-intent-contracts.d.ts +2 -2
- package/dist/sdk/context-intent-contracts.js +22 -7
- package/dist/sdk/contracts.d.ts +3 -0
- package/dist/sdk/contracts.js +5 -2
- package/dist/sdk/core.d.ts +1 -1
- package/dist/sdk/core.js +3 -3
- package/dist/sdk/environment/host-environment-errors.js +3 -3
- package/dist/sdk/flag-invocation-contracts.d.ts +37 -0
- package/dist/sdk/flag-invocation-contracts.js +218 -9
- package/dist/sdk/generated/generated-error-code-catalog-part-1.js +186 -14
- package/dist/sdk/generated/generated-error-code-catalog-part-2.js +194 -26
- package/dist/sdk/guide-topics.js +5 -5
- package/dist/sdk/index.d.ts +10 -7
- package/dist/sdk/index.js +10 -7
- package/dist/sdk/init-agent-guidance.js +3 -3
- package/dist/sdk/mutation-events.d.ts +18 -2
- package/dist/sdk/mutation-events.js +59 -16
- package/dist/sdk/output-projection.d.ts +2 -0
- package/dist/sdk/output-projection.js +11 -5
- package/dist/sdk/output.d.ts +44 -0
- package/dist/sdk/output.js +28 -2
- package/dist/sdk/query/complete-list.d.ts +94 -0
- package/dist/sdk/query/complete-list.js +173 -0
- package/dist/sdk/query/get.js +25 -6
- package/dist/sdk/query/list.js +19 -2
- package/dist/sdk/query/search-contracts.d.ts +1 -1
- package/dist/sdk/query/search-contracts.js +23 -9
- package/dist/sdk/query/search.js +3 -3
- package/dist/sdk/query.d.ts +1 -0
- package/dist/sdk/query.js +3 -2
- package/dist/sdk/read-output/continuation.d.ts +1 -1
- package/dist/sdk/read-output/continuation.js +7 -24
- package/dist/sdk/read-output-contracts.d.ts +2 -2
- package/dist/sdk/read-output-contracts.js +89 -13
- package/dist/sdk/read-output-rows.d.ts +4 -0
- package/dist/sdk/read-output-rows.js +47 -18
- package/dist/sdk/runtime-extended-actions.js +10 -2
- package/dist/sdk/runtime.d.ts +8 -2
- package/dist/sdk/runtime.js +18 -11
- package/dist/sdk/workspace-snapshot.d.ts +2 -0
- package/dist/sdk/workspace-snapshot.js +10 -2
- package/dist/types.d.ts +5 -0
- package/dist/types.js +2 -2
- package/docs/AGENT_GUIDE.md +25 -9
- package/docs/CLI_GRAMMAR.md +106 -0
- package/docs/COMMANDS.md +39 -27
- package/docs/ONBOARDING.md +4 -4
- package/docs/OUTPUT_PROJECTION_CONTRACTS.md +11 -2
- package/docs/QUICKSTART.md +1 -1
- package/docs/README.md +2 -0
- package/docs/READ_OUTPUT_CONTRACTS.md +10 -6
- package/docs/RELEASING.md +30 -6
- package/docs/SDK.md +42 -2
- package/docs/SDK_ARTIFACT_OUTPUT.md +72 -0
- package/docs/SDK_CONTEXT_COORDINATION.md +46 -12
- package/docs/TESTING.md +14 -1
- package/docs/agent-task-token-baseline.json +5 -5
- package/docs/generated/AGENT_COMMAND_SURFACE.md +78 -78
- package/docs/generated/FLAG_LEXICON_BUDGETS.md +76 -0
- package/marketplace.json +2 -2
- package/package.json +5 -2
- package/packages/pm-beads/package.json +1 -1
- package/packages/pm-calendar/package.json +1 -1
- package/packages/pm-command-kit/package.json +1 -1
- package/packages/pm-digital-twin/package.json +1 -1
- package/packages/pm-governance-audit/package.json +1 -1
- package/packages/pm-guide-shell/package.json +1 -1
- package/packages/pm-kanban/package.json +1 -1
- package/packages/pm-lifecycle-hooks/package.json +1 -1
- package/packages/pm-linked-test-adapters/package.json +1 -1
- package/packages/pm-search-advanced/package.json +1 -1
- package/packages/pm-templates/package.json +1 -1
- package/packages/pm-todos/package.json +1 -1
- package/packages/pm-vcs/package.json +1 -1
- package/plugins/pm-claude/.claude-plugin/plugin.json +1 -1
- package/plugins/pm-codex/.codex-plugin/plugin.json +1 -1
- package/scripts/generate-agent-capability-surfaces.mjs +20 -14
- package/sdk/public-surface.json +1245 -60
- package/dist/cli-bundle/chunks/chunk-2QLOXC3V.js +0 -3
- package/dist/cli-bundle/chunks/chunk-4JPYF536.js +0 -35
- package/dist/cli-bundle/chunks/chunk-6VDLG2FC.js +0 -13
- package/dist/cli-bundle/chunks/chunk-ION3E43Q.js +0 -197
- package/dist/cli-bundle/chunks/chunk-OAC5NIV4.js +0 -3
- package/dist/cli-bundle/chunks/chunk-TPXZIBIV.js +0 -5
- package/dist/cli-bundle/chunks/chunk-YM2YAMF7.js +0 -2
- package/dist/cli-bundle/chunks/register-list-query-Q7KII4G5.js +0 -10
- package/dist/cli-bundle/chunks/register-mutation-4WBRPXLV.js +0 -20
- package/dist/cli-bundle/chunks/register-operations-SSENDH5B.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-267MUUS6.js +0 -16
- package/dist/cli-bundle/focused-chunks/chunk-2NNFLLNG.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-2QSAKMIH.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-BUCG4ZI2.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-EHXIKD6K.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-KGEXTMPG.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-KP2VQQVQ.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-POEEAD2V.js +0 -4
- package/dist/cli-bundle/focused-chunks/chunk-XPIC53VA.js +0 -26
- package/dist/cli-bundle/focused-chunks/chunk-ZT2DJS27.js +0 -155
|
@@ -1,94 +1,94 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
|
-
"generation": "
|
|
3
|
+
"generation": "19d0f4c53b0fef29c335de802b1d4601a9a0a0aa3bdee14137c6bfc4641e3b74",
|
|
4
4
|
"files": [
|
|
5
5
|
{
|
|
6
|
-
"path": "chunks/chunk-
|
|
7
|
-
"sha256": "
|
|
6
|
+
"path": "chunks/chunk-4NRRH7AM.js",
|
|
7
|
+
"sha256": "b810612e84ffe142dae28b9f57f197794f8bcff190eecd4e2049b43742c62f69"
|
|
8
8
|
},
|
|
9
9
|
{
|
|
10
|
-
"path": "chunks/chunk-
|
|
11
|
-
"sha256": "
|
|
10
|
+
"path": "chunks/chunk-4NRRH7AM.js.map",
|
|
11
|
+
"sha256": "9a10fd57b5f33e6684b67a8eaa5a4873dfc2e5d6576c031b62633d1d3e2fbbbc"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"path": "chunks/chunk-
|
|
15
|
-
"sha256": "
|
|
14
|
+
"path": "chunks/chunk-4THEB6PD.js",
|
|
15
|
+
"sha256": "ac7071b4e193b37edd212fc8f7258f9e034d867b63fef0ead30f91d8b482d522"
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
|
-
"path": "chunks/chunk-
|
|
19
|
-
"sha256": "
|
|
18
|
+
"path": "chunks/chunk-4THEB6PD.js.map",
|
|
19
|
+
"sha256": "1c6004bc86a434a22ee5625c4ba442322b62297ddc02540f37077b758c028370"
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
|
-
"path": "chunks/chunk-
|
|
23
|
-
"sha256": "
|
|
22
|
+
"path": "chunks/chunk-BHYMXLAE.js",
|
|
23
|
+
"sha256": "26f364673ad5de3a592ece2429be8340d4f9d667a022ebc63bbd489580daf792"
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
|
-
"path": "chunks/chunk-
|
|
27
|
-
"sha256": "
|
|
26
|
+
"path": "chunks/chunk-BHYMXLAE.js.map",
|
|
27
|
+
"sha256": "4621fdcd90a268389ecd6a8223c20daac8f986f3dff5717857f3b0aa9b0c9aea"
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
|
-
"path": "chunks/chunk-
|
|
31
|
-
"sha256": "
|
|
30
|
+
"path": "chunks/chunk-GWMXAQOD.js",
|
|
31
|
+
"sha256": "9e4c46ee913733aef86c5d0f5cd686377dbfe21c99d45e1f08e2dcb230742497"
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
|
-
"path": "chunks/chunk-
|
|
35
|
-
"sha256": "
|
|
34
|
+
"path": "chunks/chunk-GWMXAQOD.js.map",
|
|
35
|
+
"sha256": "e8bacbf45fbe6f16c96c865bea4dd95f74b23e8a81f3e684f4ee7feb6bc34bf6"
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
|
-
"path": "chunks/chunk-
|
|
39
|
-
"sha256": "
|
|
38
|
+
"path": "chunks/chunk-HVFQTLYM.js",
|
|
39
|
+
"sha256": "c1e45b4379ca0a1945d4582abc667aeef7e77ec139da48835d049782d16458c2"
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
|
-
"path": "chunks/chunk-
|
|
43
|
-
"sha256": "
|
|
42
|
+
"path": "chunks/chunk-HVFQTLYM.js.map",
|
|
43
|
+
"sha256": "3555575c32697ef5f07f9fcc6bf32a08cc3a561c23c07e704fbeb43475882549"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
|
-
"path": "chunks/chunk-
|
|
47
|
-
"sha256": "
|
|
46
|
+
"path": "chunks/chunk-OI4XI562.js",
|
|
47
|
+
"sha256": "1ac0258122a3d15a79b6e8bcd8317118d2ca3ae86b77525387792f30f2291459"
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
|
-
"path": "chunks/chunk-
|
|
51
|
-
"sha256": "
|
|
50
|
+
"path": "chunks/chunk-OI4XI562.js.map",
|
|
51
|
+
"sha256": "3f5a6b5753fdd0070d21f8c2c69fb08cbc0189c0bcb38b912bc2483a2f6e1645"
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
|
-
"path": "chunks/chunk-
|
|
55
|
-
"sha256": "
|
|
54
|
+
"path": "chunks/chunk-OIOKV6NO.js",
|
|
55
|
+
"sha256": "8544f3c61b989d624f5021eb9581d8a9e86ffbbb6cb5329a389566469df442bc"
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
|
-
"path": "chunks/chunk-
|
|
59
|
-
"sha256": "
|
|
58
|
+
"path": "chunks/chunk-OIOKV6NO.js.map",
|
|
59
|
+
"sha256": "bcbbcdcf48f10b009991ba252425f422b40bb6880dad4e8a8322da4ee8d7c02f"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
|
-
"path": "chunks/chunk-
|
|
63
|
-
"sha256": "
|
|
62
|
+
"path": "chunks/chunk-QWRRFYK3.js",
|
|
63
|
+
"sha256": "8e299e100b8029f32f282886e8962fbd957129dac74315a4e7cd2432189f0c1c"
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
|
-
"path": "chunks/chunk-
|
|
67
|
-
"sha256": "
|
|
66
|
+
"path": "chunks/chunk-QWRRFYK3.js.map",
|
|
67
|
+
"sha256": "ed562b0bba7ee7214e56ac7f728054b3496bec4597c94a4eb7b4179e6f5cb1c9"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
|
-
"path": "chunks/chunk-
|
|
71
|
-
"sha256": "
|
|
70
|
+
"path": "chunks/chunk-QXSH7BLM.js",
|
|
71
|
+
"sha256": "97c8053d3e5f445b96cb8fc33ad3c4e048841d41f6f808b40f47bdbf1d48f99d"
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
|
-
"path": "chunks/chunk-
|
|
75
|
-
"sha256": "
|
|
74
|
+
"path": "chunks/chunk-QXSH7BLM.js.map",
|
|
75
|
+
"sha256": "f960b571074670a6c07e7ccc34a04a4dac8a0d5a5d901ef457f15370b56333de"
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
|
-
"path": "chunks/chunk-
|
|
79
|
-
"sha256": "
|
|
78
|
+
"path": "chunks/chunk-SARFF5H5.js",
|
|
79
|
+
"sha256": "c6cd5ab9575273c7d6bb75279f71790c201d3f5da907f5db3d8b18df10404916"
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
|
-
"path": "chunks/chunk-
|
|
83
|
-
"sha256": "
|
|
82
|
+
"path": "chunks/chunk-SARFF5H5.js.map",
|
|
83
|
+
"sha256": "8d10ce26c9f36bc6aed7751d297f0536d2479ec1624ebfd733c5b2ac8c86dcae"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
|
-
"path": "chunks/chunk-
|
|
87
|
-
"sha256": "
|
|
86
|
+
"path": "chunks/chunk-TOXJM4WA.js",
|
|
87
|
+
"sha256": "4ce28042d560d631fe8062e5a1afb3af0338e862e3e8a876e9234f8cbd3278c1"
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
|
-
"path": "chunks/chunk-
|
|
91
|
-
"sha256": "
|
|
90
|
+
"path": "chunks/chunk-TOXJM4WA.js.map",
|
|
91
|
+
"sha256": "d754e1aac8bad2af2f083ab77946a00e2afff1f09f9ee43112dbba76b518e75e"
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
"path": "chunks/chunk-WYRZZ5ZE.js",
|
|
@@ -99,216 +99,216 @@
|
|
|
99
99
|
"sha256": "ed562b0bba7ee7214e56ac7f728054b3496bec4597c94a4eb7b4179e6f5cb1c9"
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
|
-
"path": "chunks/chunk-
|
|
103
|
-
"sha256": "
|
|
102
|
+
"path": "chunks/chunk-YBMRWW4E.js",
|
|
103
|
+
"sha256": "7726bc39aba94acf6a6ff3eca6af44cce1783c0135dc5f241319d84fb5d5a094"
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
|
-
"path": "chunks/chunk-
|
|
107
|
-
"sha256": "
|
|
106
|
+
"path": "chunks/chunk-YBMRWW4E.js.map",
|
|
107
|
+
"sha256": "c5e8acbfe0d93e18754a34fa3b76eda00e70371158d00a39decc7f86dec2f7fc"
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
|
-
"path": "chunks/register-list-query-
|
|
111
|
-
"sha256": "
|
|
110
|
+
"path": "chunks/register-list-query-Y56KINDU.js",
|
|
111
|
+
"sha256": "a80357f1c05da4989777572e1f26353cab46f017b115391b779835c97406375e"
|
|
112
112
|
},
|
|
113
113
|
{
|
|
114
|
-
"path": "chunks/register-list-query-
|
|
115
|
-
"sha256": "
|
|
114
|
+
"path": "chunks/register-list-query-Y56KINDU.js.map",
|
|
115
|
+
"sha256": "4cb32bcb86bbbfa13f9d13b2461b498d0859e4cff3660572c064e053a7aae609"
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
|
-
"path": "chunks/register-mutation-
|
|
119
|
-
"sha256": "
|
|
118
|
+
"path": "chunks/register-mutation-AUWVCW4M.js",
|
|
119
|
+
"sha256": "c53d572d15f88266287ec4bd39906ee6251bac8306166f73453731db3a1914a5"
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
|
-
"path": "chunks/register-mutation-
|
|
123
|
-
"sha256": "
|
|
122
|
+
"path": "chunks/register-mutation-AUWVCW4M.js.map",
|
|
123
|
+
"sha256": "ce9a6b1e2863e20d534bf6b748948fd020e929cad1c196405f6ed7e5e4a17720"
|
|
124
124
|
},
|
|
125
125
|
{
|
|
126
|
-
"path": "chunks/register-operations-
|
|
127
|
-
"sha256": "
|
|
126
|
+
"path": "chunks/register-operations-PZQPHXW5.js",
|
|
127
|
+
"sha256": "d3abba8049d5bcc0c4048c22a3f651143eec98a0d5d4f3198e12259f1fe7254b"
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
|
-
"path": "chunks/register-operations-
|
|
131
|
-
"sha256": "
|
|
130
|
+
"path": "chunks/register-operations-PZQPHXW5.js.map",
|
|
131
|
+
"sha256": "a393759af228317c6807333fe298a4c8654491fa94903563e02d88aa175e7754"
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
|
-
"path": "chunks/register-setup-
|
|
135
|
-
"sha256": "
|
|
134
|
+
"path": "chunks/register-setup-I4LUHGVW.js",
|
|
135
|
+
"sha256": "5cb06f8488565b079d620513b8ed465e107db8279dcb7779fa50dfc0589eae9d"
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
|
-
"path": "chunks/register-setup-
|
|
138
|
+
"path": "chunks/register-setup-I4LUHGVW.js.map",
|
|
139
139
|
"sha256": "4b0e1e63204e2107c41de2162d211e80830bbf9d4e85a15489f6a9224422722f"
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
|
-
"path": "focused-chunks/chunk-
|
|
143
|
-
"sha256": "
|
|
142
|
+
"path": "focused-chunks/chunk-34QBIYZI.js",
|
|
143
|
+
"sha256": "471288cc14174208cc394b2575da402c5e1dda4f4f198498bf94dd51c2df8eef"
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
|
-
"path": "focused-chunks/chunk-
|
|
147
|
-
"sha256": "
|
|
146
|
+
"path": "focused-chunks/chunk-34QBIYZI.js.map",
|
|
147
|
+
"sha256": "50547e6407d78abbc575481162900fbb17974e0f9f9eb8236dd6e53225911c49"
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
|
-
"path": "focused-chunks/chunk-
|
|
151
|
-
"sha256": "
|
|
150
|
+
"path": "focused-chunks/chunk-BJRYFVSH.js",
|
|
151
|
+
"sha256": "d7d27abd6be76e869708ba4973289605f9834118d21bfb366bf1c4a66dee3519"
|
|
152
152
|
},
|
|
153
153
|
{
|
|
154
|
-
"path": "focused-chunks/chunk-
|
|
155
|
-
"sha256": "
|
|
154
|
+
"path": "focused-chunks/chunk-BJRYFVSH.js.map",
|
|
155
|
+
"sha256": "fa680a898d5af72d06e8523a758e298a31cbb3cf6c2c2b6ef75e6457e37c7a30"
|
|
156
156
|
},
|
|
157
157
|
{
|
|
158
|
-
"path": "focused-chunks/chunk-
|
|
159
|
-
"sha256": "
|
|
158
|
+
"path": "focused-chunks/chunk-DKPLYW3L.js",
|
|
159
|
+
"sha256": "1098e556b0ed296c165b397508c6fa9b3af8e126dc0dfab2eef5075ba4097f04"
|
|
160
160
|
},
|
|
161
161
|
{
|
|
162
|
-
"path": "focused-chunks/chunk-
|
|
163
|
-
"sha256": "
|
|
162
|
+
"path": "focused-chunks/chunk-DKPLYW3L.js.map",
|
|
163
|
+
"sha256": "1a89f0bb182795bde702de43646cc86865e44ecf9f401412a73f2b91b41617be"
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
|
-
"path": "focused-chunks/chunk-
|
|
167
|
-
"sha256": "
|
|
166
|
+
"path": "focused-chunks/chunk-EF6ZS5GH.js",
|
|
167
|
+
"sha256": "afa369e2b0a498e18042e1254cf8f96b18c5afd1c2a0165ad34b361c59f88cd1"
|
|
168
168
|
},
|
|
169
169
|
{
|
|
170
|
-
"path": "focused-chunks/chunk-
|
|
171
|
-
"sha256": "
|
|
170
|
+
"path": "focused-chunks/chunk-EF6ZS5GH.js.map",
|
|
171
|
+
"sha256": "5dc5abba652d82086f7c30cc9b158346967d0877ebb702fd880936d96ffc44a4"
|
|
172
172
|
},
|
|
173
173
|
{
|
|
174
|
-
"path": "focused-chunks/chunk-
|
|
175
|
-
"sha256": "
|
|
174
|
+
"path": "focused-chunks/chunk-ESISGDAY.js",
|
|
175
|
+
"sha256": "ce8f8fbc038d7e21b00f65bc77b0e1af2ae23baf0b2628a51ba8c00ea996feb0"
|
|
176
176
|
},
|
|
177
177
|
{
|
|
178
|
-
"path": "focused-chunks/chunk-
|
|
179
|
-
"sha256": "
|
|
178
|
+
"path": "focused-chunks/chunk-ESISGDAY.js.map",
|
|
179
|
+
"sha256": "643a7497e370f1ecf14a0d50d00d2578e3c5bee0774d470452a664c4067cb324"
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
|
-
"path": "focused-chunks/chunk-
|
|
183
|
-
"sha256": "
|
|
182
|
+
"path": "focused-chunks/chunk-EXBCLIBU.js",
|
|
183
|
+
"sha256": "03178fe30f4dfc3ff1e44f575f082060c74ef69f7a0ad2367c4fde40073a2cf6"
|
|
184
184
|
},
|
|
185
185
|
{
|
|
186
|
-
"path": "focused-chunks/chunk-
|
|
187
|
-
"sha256": "
|
|
186
|
+
"path": "focused-chunks/chunk-EXBCLIBU.js.map",
|
|
187
|
+
"sha256": "4067480eb4ca4fae1aecdd9faa13a855fe1757341a658259a2a76430677a9039"
|
|
188
188
|
},
|
|
189
189
|
{
|
|
190
|
-
"path": "focused-chunks/chunk-
|
|
191
|
-
"sha256": "
|
|
190
|
+
"path": "focused-chunks/chunk-JDOMQ7VQ.js",
|
|
191
|
+
"sha256": "a0836223b500d571f614fca70f7cf2474c8fd6308b83c6cba555e0a213752c8e"
|
|
192
192
|
},
|
|
193
193
|
{
|
|
194
|
-
"path": "focused-chunks/chunk-
|
|
195
|
-
"sha256": "
|
|
194
|
+
"path": "focused-chunks/chunk-JDOMQ7VQ.js.map",
|
|
195
|
+
"sha256": "e0e2182d0352a67c30ad47e729cd6d8b842186ef122f96fad921330ad416d340"
|
|
196
196
|
},
|
|
197
197
|
{
|
|
198
|
-
"path": "focused-chunks/chunk-
|
|
199
|
-
"sha256": "
|
|
198
|
+
"path": "focused-chunks/chunk-L623ZPNK.js",
|
|
199
|
+
"sha256": "985deea8a701c7d850abd091d0e5948b3a1204bde349d97ea695ce8733e662ae"
|
|
200
200
|
},
|
|
201
201
|
{
|
|
202
|
-
"path": "focused-chunks/chunk-
|
|
203
|
-
"sha256": "
|
|
202
|
+
"path": "focused-chunks/chunk-L623ZPNK.js.map",
|
|
203
|
+
"sha256": "8b36a081f67d5b4171d6092165a6cbc6b80025bb4251a421678074441ffa969b"
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
|
-
"path": "focused-chunks/chunk-
|
|
207
|
-
"sha256": "
|
|
206
|
+
"path": "focused-chunks/chunk-MCZXYZAF.js",
|
|
207
|
+
"sha256": "f06221416464e8db4ce9da58968cae4aefb0a297d5209f5085d059a450339649"
|
|
208
208
|
},
|
|
209
209
|
{
|
|
210
|
-
"path": "focused-chunks/chunk-
|
|
211
|
-
"sha256": "
|
|
210
|
+
"path": "focused-chunks/chunk-MCZXYZAF.js.map",
|
|
211
|
+
"sha256": "5c78034dad5a371952f0d2614d252216a9d2085b15f00888635b9c6caee87053"
|
|
212
212
|
},
|
|
213
213
|
{
|
|
214
|
-
"path": "focused-chunks/chunk-
|
|
215
|
-
"sha256": "
|
|
214
|
+
"path": "focused-chunks/chunk-ODHQEECS.js",
|
|
215
|
+
"sha256": "b951fe3eabb91241502ddcdc37f587c9210fd8b629b1a03ec8a355367da23813"
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
|
-
"path": "focused-chunks/chunk-
|
|
219
|
-
"sha256": "
|
|
218
|
+
"path": "focused-chunks/chunk-ODHQEECS.js.map",
|
|
219
|
+
"sha256": "c7c171bd53db21993716703a202b4794f1c4f0d80c6bd53406fe05c5a3bfdde1"
|
|
220
220
|
},
|
|
221
221
|
{
|
|
222
|
-
"path": "focused-chunks/chunk-
|
|
223
|
-
"sha256": "
|
|
222
|
+
"path": "focused-chunks/chunk-PRHY2IMX.js",
|
|
223
|
+
"sha256": "242fc701e45c151db27501b94b57f5fd5ca0e6b1251ab7cc0679e96fdd4a0d11"
|
|
224
224
|
},
|
|
225
225
|
{
|
|
226
|
-
"path": "focused-chunks/chunk-
|
|
227
|
-
"sha256": "
|
|
226
|
+
"path": "focused-chunks/chunk-PRHY2IMX.js.map",
|
|
227
|
+
"sha256": "4654b7aa5aec7b09b5bfd11ef114be2f4835ea6e5f2ea65e074e2704f6238798"
|
|
228
228
|
},
|
|
229
229
|
{
|
|
230
|
-
"path": "focused-chunks/chunk-
|
|
231
|
-
"sha256": "
|
|
230
|
+
"path": "focused-chunks/chunk-RZU5U6Q7.js",
|
|
231
|
+
"sha256": "de0d24ee50b3a74b316285dcbdd5e36b82f5ea39fc3644a66653db4e9881cb20"
|
|
232
232
|
},
|
|
233
233
|
{
|
|
234
|
-
"path": "focused-chunks/chunk-
|
|
235
|
-
"sha256": "
|
|
234
|
+
"path": "focused-chunks/chunk-RZU5U6Q7.js.map",
|
|
235
|
+
"sha256": "638bf1be8f3d0d5be016c26784f5722fdaf3d2b99907c4b8981908e0acb67af7"
|
|
236
236
|
},
|
|
237
237
|
{
|
|
238
|
-
"path": "focused-chunks/chunk-
|
|
239
|
-
"sha256": "
|
|
238
|
+
"path": "focused-chunks/chunk-US7VEYZG.js",
|
|
239
|
+
"sha256": "f137491918e43b5368cde1a71631e5653b95d1740b1843b572627e5dc20bc0d1"
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
|
-
"path": "focused-chunks/chunk-
|
|
243
|
-
"sha256": "
|
|
242
|
+
"path": "focused-chunks/chunk-US7VEYZG.js.map",
|
|
243
|
+
"sha256": "95b33284b3e258da9087d239a8d5b3d442628cbd1b9688bc26ba378f6992eb71"
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
|
-
"path": "focused-chunks/chunk-
|
|
247
|
-
"sha256": "
|
|
246
|
+
"path": "focused-chunks/chunk-VXDSU5MC.js",
|
|
247
|
+
"sha256": "0f8fb9596200fafca17a3b6890297df89645df0124ae9412451d4b5977b003ac"
|
|
248
248
|
},
|
|
249
249
|
{
|
|
250
|
-
"path": "focused-chunks/chunk-
|
|
251
|
-
"sha256": "
|
|
250
|
+
"path": "focused-chunks/chunk-VXDSU5MC.js.map",
|
|
251
|
+
"sha256": "9f6d0314795f172e75d18be888689840624d1ade989fc3bad0776a352f033d2c"
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
|
-
"path": "focused-chunks/chunk-
|
|
255
|
-
"sha256": "
|
|
254
|
+
"path": "focused-chunks/chunk-YBMGXBFV.js",
|
|
255
|
+
"sha256": "b854048e1096d0f6c04c8f157d4c9107f178de3447239858e4d4a372087923ed"
|
|
256
256
|
},
|
|
257
257
|
{
|
|
258
|
-
"path": "focused-chunks/chunk-
|
|
259
|
-
"sha256": "
|
|
258
|
+
"path": "focused-chunks/chunk-YBMGXBFV.js.map",
|
|
259
|
+
"sha256": "aeeea0d5c7bffca47993e52129ce2aab4070956e6497b353b0221528e8f28800"
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
|
-
"path": "focused-chunks/chunk-
|
|
263
|
-
"sha256": "
|
|
262
|
+
"path": "focused-chunks/chunk-YLVBJ6GF.js",
|
|
263
|
+
"sha256": "d48e427403e976225a73f6662592df229cd4e353aa661cbe741aeeaecef7faa2"
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
|
-
"path": "focused-chunks/chunk-
|
|
267
|
-
"sha256": "
|
|
266
|
+
"path": "focused-chunks/chunk-YLVBJ6GF.js.map",
|
|
267
|
+
"sha256": "6674d6f52c41da001dbb0615376d04233e7e2f65da117fbbc60101a1401ed4c5"
|
|
268
268
|
},
|
|
269
269
|
{
|
|
270
|
-
"path": "focused-chunks/chunk-
|
|
271
|
-
"sha256": "
|
|
270
|
+
"path": "focused-chunks/chunk-ZBIQQYMI.js",
|
|
271
|
+
"sha256": "c330130307ff12c2f6d4bcd0ea9011d0625e80e9d0b0ed182f32680c5e93e9eb"
|
|
272
272
|
},
|
|
273
273
|
{
|
|
274
|
-
"path": "focused-chunks/chunk-
|
|
275
|
-
"sha256": "
|
|
274
|
+
"path": "focused-chunks/chunk-ZBIQQYMI.js.map",
|
|
275
|
+
"sha256": "9033241d8a6af48027fa7345868bc63413d6d3b427d5127818cdf076018d60f7"
|
|
276
276
|
},
|
|
277
277
|
{
|
|
278
278
|
"path": "main.js",
|
|
279
|
-
"sha256": "
|
|
279
|
+
"sha256": "503f73f09b3d67e4d35bf531311d43e832fefc34ebb1d3af1ce9d977aa7c16b1"
|
|
280
280
|
},
|
|
281
281
|
{
|
|
282
282
|
"path": "main.js.map",
|
|
283
|
-
"sha256": "
|
|
283
|
+
"sha256": "2209839de80334258d3ccb220266a72c4096c80e3db2a26e490df09522f03532"
|
|
284
284
|
},
|
|
285
285
|
{
|
|
286
286
|
"path": "sdk-authoring.js",
|
|
287
|
-
"sha256": "
|
|
287
|
+
"sha256": "3e79e58ce599d67a22cefe1d80c70366fd4d8942cf9c0e79e35721d470038b0e"
|
|
288
288
|
},
|
|
289
289
|
{
|
|
290
290
|
"path": "sdk-authoring.js.map",
|
|
291
|
-
"sha256": "
|
|
291
|
+
"sha256": "205982d4a91af95e42a3e51fba97beeced3e45d3804eea3193eed424e95ba87b"
|
|
292
292
|
},
|
|
293
293
|
{
|
|
294
294
|
"path": "sdk-contracts.js",
|
|
295
|
-
"sha256": "
|
|
295
|
+
"sha256": "73a62ab970a2cd8421fec1e066a53016b27b31604cb2c75656bf18ba01791fe0"
|
|
296
296
|
},
|
|
297
297
|
{
|
|
298
298
|
"path": "sdk-contracts.js.map",
|
|
299
|
-
"sha256": "
|
|
299
|
+
"sha256": "7acad4112e1c28e6bd0ae64bcca14eddfdfd29144e88bbc9f8b9db835c9a56b7"
|
|
300
300
|
},
|
|
301
301
|
{
|
|
302
302
|
"path": "sdk-core.js",
|
|
303
|
-
"sha256": "
|
|
303
|
+
"sha256": "2e4e043be19a3416bb6372d2ab846359e3db6d1db1a3c6ab5d590ef42bfbcfd5"
|
|
304
304
|
},
|
|
305
305
|
{
|
|
306
306
|
"path": "sdk-core.js.map",
|
|
307
|
-
"sha256": "
|
|
307
|
+
"sha256": "3c799850b9301bc1046a0d9c3955a2c5d23a7114befdafe47ce83a6c2997a9c6"
|
|
308
308
|
},
|
|
309
309
|
{
|
|
310
310
|
"path": "sdk-governance.js",
|
|
311
|
-
"sha256": "
|
|
311
|
+
"sha256": "5d9e7e803d04b9f570ce36b9a5f9adeac697f12e9203bfb733cfd9f00c7bc745"
|
|
312
312
|
},
|
|
313
313
|
{
|
|
314
314
|
"path": "sdk-governance.js.map",
|
|
@@ -316,7 +316,7 @@
|
|
|
316
316
|
},
|
|
317
317
|
{
|
|
318
318
|
"path": "sdk-graph.js",
|
|
319
|
-
"sha256": "
|
|
319
|
+
"sha256": "959a373e4981b3f8cda9a3f530e99f7930763c0ded3d03a7eb57ca1c7dbf8541"
|
|
320
320
|
},
|
|
321
321
|
{
|
|
322
322
|
"path": "sdk-graph.js.map",
|
|
@@ -324,15 +324,15 @@
|
|
|
324
324
|
},
|
|
325
325
|
{
|
|
326
326
|
"path": "sdk-merge.js",
|
|
327
|
-
"sha256": "
|
|
327
|
+
"sha256": "bf71cd20ba1e63171a7807b3520af77594aa3392dc19c6c12fbe4df751050600"
|
|
328
328
|
},
|
|
329
329
|
{
|
|
330
330
|
"path": "sdk-merge.js.map",
|
|
331
|
-
"sha256": "
|
|
331
|
+
"sha256": "eb9dc356d690c59df51e717774b73c6520fd294d68c6ae47b2c5bab688438960"
|
|
332
332
|
},
|
|
333
333
|
{
|
|
334
334
|
"path": "sdk-query.js",
|
|
335
|
-
"sha256": "
|
|
335
|
+
"sha256": "66d5bcf120c321745c6f59fcfb6dc5eb8f1bfab83dcc8708d297a65eb0543059"
|
|
336
336
|
},
|
|
337
337
|
{
|
|
338
338
|
"path": "sdk-query.js.map",
|
|
@@ -340,7 +340,7 @@
|
|
|
340
340
|
},
|
|
341
341
|
{
|
|
342
342
|
"path": "sdk-runtime.js",
|
|
343
|
-
"sha256": "
|
|
343
|
+
"sha256": "93c3a5ab9dd5cbf49f225049377474a7a813f91def845fb02f3bef4bb679f76c"
|
|
344
344
|
},
|
|
345
345
|
{
|
|
346
346
|
"path": "sdk-runtime.js.map",
|
|
@@ -348,7 +348,7 @@
|
|
|
348
348
|
},
|
|
349
349
|
{
|
|
350
350
|
"path": "sdk-testing.js",
|
|
351
|
-
"sha256": "
|
|
351
|
+
"sha256": "e7cbfaf9c0474fff8821924564c972e66efebff586428e938b7254c3027dc952"
|
|
352
352
|
},
|
|
353
353
|
{
|
|
354
354
|
"path": "sdk-testing.js.map",
|
|
@@ -356,11 +356,11 @@
|
|
|
356
356
|
},
|
|
357
357
|
{
|
|
358
358
|
"path": "sdk.js",
|
|
359
|
-
"sha256": "
|
|
359
|
+
"sha256": "68d9532c7582d0de023c2094e663c4a5d87d0e61b1c6c3dfed64de2b162c1f7b"
|
|
360
360
|
},
|
|
361
361
|
{
|
|
362
362
|
"path": "sdk.js.map",
|
|
363
|
-
"sha256": "
|
|
363
|
+
"sha256": "5250c28d5a75efe0f755c149623553ec553a11941b0dca3b674d32b7d13bf98b"
|
|
364
364
|
}
|
|
365
365
|
]
|
|
366
366
|
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{C as f,E as m,Je as S,Jl as h,Sd as k,Td as y,Tf as A,aa as b,de as E}from"./chunk-GWMXAQOD.js";(function(){try{var e=typeof window<"u"?window:typeof global<"u"?global:typeof globalThis<"u"?globalThis:typeof self<"u"?self:{},t=new e.Error().stack;t&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[t]="271cf7c1-f84b-5f59-aa13-ed8cb4ee232f")}catch{}})();var N=new Set(["append","claim","close","close-task","comments","copy","delete","deps","docs","files","focus","get","history","history-compact","history-redact","history-repair","learnings","notes","pause-task","release","restore","start-task","test","update"]),x=new Map([["files","discover"],["item","complete"]]),G=new Set(["--author","--output-budget","--output-format","--output-include","--output-limit","--output-session","--path","--pm-path"]),$=new Map([["append",1],["close",1],["close-task",1],["comments",1],["item complete",1],["learnings",1],["notes",1],["restore",1]]);function R(e){let t=e?.trim().toLowerCase()??"";return N.has(t)||x.has(t)}function L(e){for(let t=0;t<e.length;t+=1){let n=e[t];if(n==="--")return;if(G.has(n)){t+=1;continue}if(!n.startsWith("-"))return t}}function O(e,t,n){let o=x.get(n);if(o===void 0)return t+1;let s=e[t+1]?.toLowerCase()===o;if(!(!s&&!N.has(n)))return t+(s?2:1)}function U(e){let t=new Map;for(let n of h(e))for(let o of[n.flag,n.short,...n.aliases??[]])o&&t.set(o,n);return t}function q(e){let t=[];for(let n=0;n<e.length;n+=1){let o=e[n];if(o==="--")break;o==="--id"?(t.push({index:n,consumed:2,value:e[n+1]}),n+=1):o.startsWith("--id=")&&t.push({index:n,consumed:1,value:o.slice(5)})}return t}function j(e,t,n){if(e.indexOf("=")>=0||t===void 0||t.startsWith("-"))return!1;let s=n.get(e);return s!==void 0&&s.value_type!=="boolean"}function K(e,t,n,o,s){let i=0;for(let r=t;r<e.length;r+=1){let a=e[r];if(a==="--")break;if(a==="--id"){r+=1;continue}if(!a.startsWith("--id=")){if(!a.startsWith("-")){if(r<o)return!0;i+=1;continue}j(a,e[r+1],s)&&(r+=1)}}return i>($.get(n)??0)}function F(e){let t=L(e),n=t===void 0?void 0:e[t]?.toLowerCase();if(!R(n))return{argv:[...e],changed:!1,conflict:!1};let o=x.get(n)===e[t+1]?.toLowerCase()?`${n} ${e[t+1]?.toLowerCase()}`:n,s=U(o),i=q(e),r=i[0];if(!r||!r.value?.trim())return{argv:[...e],changed:!1,conflict:!1};let a=O(e,t,n);if(a===void 0)return{argv:[...e],changed:!1,conflict:!1};if(i.length>1||K(e,a,o,r.index,s))return{argv:[...e],changed:!1,conflict:!0,itemId:r.value};let u=[...e.slice(0,r.index),...e.slice(r.index+r.consumed)],c=L(u),l=O(u,c,n);return u.splice(l,0,r.value),{argv:u,changed:!0,conflict:!1,itemId:r.value}}(function(){try{var e=typeof window<"u"?window:typeof global<"u"?global:typeof globalThis<"u"?globalThis:typeof self<"u"?self:{},t=new e.Error().stack;t&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[t]="d45455ca-9496-5b8c-906c-d33d3d890e68")}catch{}})();var g=new Set(["--pm-path","--path","--author","--output-include","--output-limit","--output-budget","--output-format","--output-session","--output-cursor"]),Y=new Set(["--output-include","--output-limit","--output-budget","--output-format","--output-session","--output-cursor"]),D=e=>{let t=e.indexOf("=");return t>0&&g.has(e.slice(0,t))},_=(e,t)=>typeof t!="string"?!1:e==="--path"||e==="--pm-path"||!t.startsWith("-"),C=new Set(["--no-extensions","--no-pager","--json","--quiet","--lean","--token-accounting","--output-row-contract"]);function X(e,t,n){let o=e[t];if(C.has(o))return n.booleanFlags.add(o),1;let s=o.indexOf("="),i=s>0?o.slice(0,s):o;if(!g.has(i))return 1;let r=s>0?o.slice(s+1):void 0,a=r===void 0&&_(i,e[t+1]),u=r??(a?e[t+1]:void 0);return i==="--author"?n.author=u??"":typeof u=="string"&&u.length>0&&(Y.has(i)?n.outputValues:n.pathValues).set(i,u),a?2:1}function H(e){let t={booleanFlags:new Set,outputValues:new Map,pathValues:new Map},n=0;for(;n<e.length&&e[n]!=="--";)n+=X(e,n,t);return{path:t.pathValues.get("--pm-path")??t.pathValues.get("--path"),noExtensions:t.booleanFlags.has("--no-extensions"),noPager:t.booleanFlags.has("--no-pager"),json:t.booleanFlags.has("--json"),quiet:t.booleanFlags.has("--quiet"),lean:t.booleanFlags.has("--lean"),tokenAccounting:t.booleanFlags.has("--token-accounting"),...t.booleanFlags.has("--output-row-contract")?{outputRowContract:!0}:{},...t.outputValues.get("--output-include")===void 0?{}:{outputInclude:t.outputValues.get("--output-include")},...t.outputValues.get("--output-limit")===void 0?{}:{outputLimit:t.outputValues.get("--output-limit")},...t.outputValues.get("--output-budget")===void 0?{}:{outputBudget:t.outputValues.get("--output-budget")},...t.outputValues.get("--output-format")==="toon"||t.outputValues.get("--output-format")==="json"?{outputFormat:t.outputValues.get("--output-format")}:{},...t.outputValues.get("--output-session")===void 0?{}:{outputSession:t.outputValues.get("--output-session")},...t.outputValues.get("--output-cursor")===void 0?{}:{outputCursor:t.outputValues.get("--output-cursor")},...t.author===""?{authorMissingValue:!0}:t.author!==void 0?{author:t.author}:{}}}function M(e){let t=[],n=0;for(;n<e.length;){let o=e[n];if(o==="--")break;if(C.has(o)||o==="--profile"||o==="--id-only"||o==="--full-changed-fields"||o==="--explain"){n+=1;continue}if(g.has(o)){n+=_(o,e[n+1])?2:1;continue}if(D(o)){n+=1;continue}t.push(o),n+=1}return t}function J(e){let t=M(e);if(t[0]?.trim().toLowerCase()==="help"){let i=[];for(let r=1;r<t.length;r+=1){let a=t[r];if(a.startsWith("-"))break;i.push(a.trim().toLowerCase())}return{requested:!0,commandPathTokens:i}}if(t.findIndex(i=>i==="--help"||i==="-h")<0)return{requested:!1,commandPathTokens:[]};let s=[];for(let i of t){if(i.startsWith("-"))break;s.push(i.trim().toLowerCase())}return{requested:!0,commandPathTokens:s}}function I(e){for(let t=0;t<e.length;t+=1){let n=e[t];if(n==="--")return;if(g.has(n)){t+=_(n,e[t+1])?1:0;continue}if(!(D(n)||C.has(n)||n==="--profile"||n==="--id-only"||n==="--explain")&&!n.startsWith("-"))return t}}function T(e){let t=I(e);return t===void 0?void 0:e[t].trim().toLowerCase()}function Z(e,t){return t.noPager?!0:process.stdout.isTTY===!0?!1:J(e).requested}function Be(e){let t=["PAGER","MANPAGER","GIT_PAGER","LESS"],n=t.map(i=>process.env[i]),o=()=>{for(let[i,r]of t.entries()){let a=n[i];a===void 0?delete process.env[r]:process.env[r]=a}},s=H(e);return Z(e,s)&&(process.env.PAGER="cat",process.env.MANPAGER="cat",process.env.GIT_PAGER="cat",(typeof process.env.LESS!="string"||process.env.LESS.trim().length===0)&&(process.env.LESS="FRX")),o}var Q=new Set(["install","uninstall","explore","manage","doctor","adopt","adopt-all","activate","deactivate"]);function ee(e){let t=I(e);if(t===void 0||e[t]!=="extension")return[...e];let n=e[t+1];if(!n||n.startsWith("-"))return[...e];if(!Q.has(n))return[...e];if(e.includes("--help")||e.includes("-h"))return[...e];let o=`--${n}`;return e.includes(o)?[...e]:[...e.slice(0,t+1),o,...e.slice(t+2)]}var te=new Set(["pm","pm-cli"]);function ne(e,t){let n=I(e);if(n===void 0)return e;let o=e[n];return te.has(o.trim().toLowerCase())?(t.push({from:o,to:[],reason:"executable_alias",confidence:"high"}),[...e.slice(0,n),...e.slice(n+1)]):e}function oe(e,t){let n=I(e);if(n===void 0)return e;let o=e[n],s=S[o.trim().toLowerCase()];if(!s)return e;let i=[...e];return i[n]=s,t.push({from:o,to:[s],reason:"command_alias",confidence:"high"}),i}function w(e){return e.replace(/^--?/,"").replace(/_/g,"-").replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase()}function P(e){return w(e).replace(/-/g,"")}function V(e,t,n){let o=e.get(t);if(o===void 0){e.set(t,n);return}o!==n&&e.set(t,null)}function se(e){let t=[],n=o=>{typeof o=="string"&&o.startsWith("--")&&t.push(o)};n(e.flag);for(let o of e.aliases??[])n(o);return t}function ie(e,t){let n=t??h(e),o=new Map,s=new Map,i=new Map,r=new Set;for(let a of n){let u=se(a);if(u.length===0)continue;let c=`--${w(u[0])}`;for(let d of u)V(o,w(d),c),V(s,P(d),c);let l=P(c);i.has(c)||i.set(c,l),a.list===!0&&r.add(c)}return{canonicalByNormalized:o,canonicalByCompact:s,canonicalComparables:[...i.entries()].map(([a,u])=>({canonicalFlag:a,comparable:u})),listCanonicalFlags:r}}function B(e,t){let n=w(e),o=t.canonicalByNormalized.get(n);if(typeof o=="string")return{flag:o,reason:"flag_alias",confidence:"high"};let s=n.replace(/-/g,""),i=t.canonicalByCompact.get(s);if(typeof i=="string")return{flag:i,reason:"flag_alias",confidence:"high"};let r=s.length>=8?2:1,a=Number.POSITIVE_INFINITY,u,c=!1;for(let l of t.canonicalComparables){let d=b(s,l.comparable,r);if(d!==null){if(d<a){a=d,u=l.canonicalFlag,c=!1;continue}d===a&&u!==l.canonicalFlag&&(c=!0)}}return!u||c||!Number.isFinite(a)||a<=0?null:{flag:u,reason:"flag_typo",confidence:a>=2?"medium":"high"}}function ve(e){let t=[`${e}s`];return e.endsWith("y")&&e.length>1&&t.push(`${e.slice(0,-1)}ies`),t}function re(e,t=!1){if(t||e.includes("://"))return null;let n=e.match(/^([A-Za-z][A-Za-z0-9_-]{1,63})([:=])(.*)$/);if(!n)return null;let o=n[1],s=n[3];return s.length===0?null:{key:o,value:s}}function ae(e,t,n=!1){if(n||!e.startsWith("--"))return{tokens:[e]};let o=e.indexOf("="),s=o>=0?e.slice(0,o):e,i=o>=0?e.slice(o+1):void 0,r=B(s,t);if(!r)return{tokens:[e]};let a=i===void 0?r.flag:`${r.flag}=${i}`;return a===e?{tokens:[e]}:{tokens:[a],event:{from:e,to:[a],reason:r.reason,confidence:r.confidence}}}function ue(e){let t=new Set,n=!1;for(let o=0;o<e.length;o+=1){if(n){t.add(o),n=!1;continue}let s=e[o];n=s==="--path"||s==="--pm-path"}return t}function ce(e){if(!e.startsWith("--"))return null;let t=e.indexOf("=");return t<0?{flag:e}:{flag:e.slice(0,t),inlineValue:e.slice(t+1)}}function le(e,t,n){n.push(e[t]);let o=e[t+1];return typeof o=="string"&&o!=="--"?(n.push(o),t+2):t+1}function de(e,t,n,o){if(n.inlineValue!==void 0)return{originalTokens:[e[t]],value:n.inlineValue,consumed:1};let s=[],i=t+1;for(;i<e.length&&e[i]!=="--"&&!e[i].startsWith("-")&&(s.length===0||o.has(n.flag));)s.push(e[i]),i+=1;let r=s.length===0?1:1+s.length;return{originalTokens:e.slice(t,t+r),value:s.length===0?void 0:s.join(","),consumed:r}}function fe(e,t,n,o){let s=e.get(n);if(s){s.values.push(o.value),s.occurrences+=1;return}e.set(n,{outputIndex:t.length,originalTokens:o.originalTokens,values:[o.value],occurrences:1}),t.push(null)}function pe(e,t){let n=[],o=[];for(let[s,i]of e){if(!(i.occurrences>=2||t.has(s)&&i.originalTokens.length>2)){o.push({outputIndex:i.outputIndex,tokens:i.originalTokens});continue}let a=`${s}=${i.values.join(",")}`;o.push({outputIndex:i.outputIndex,tokens:[a]}),n.push({from:`${s} (x${i.occurrences})`,to:[a],reason:"list_merge",confidence:"high"})}return{events:n,splices:o}}function me(e,t){t.sort((n,o)=>o.outputIndex-n.outputIndex);for(let n of t)e.splice(n.outputIndex,1,...n.tokens)}function he(e,t,n=new Set,o=new Set){if(t.size===0)return{argv:[...e],events:[]};let s=[],i=new Map,r=0;for(;r<e.length;){let c=e[r];if(c==="--"){s.push(...e.slice(r));break}if(n.has(c)){r=le(e,r,s);continue}let l=ce(c);if(!l||!t.has(l.flag)){s.push(c),r+=1;continue}let d=de(e,r,l,o);if(d.value===void 0){s.push(c),r+=d.consumed;continue}fe(i,s,l.flag,{originalTokens:d.originalTokens,value:d.value}),r+=d.consumed}let{events:a,splices:u}=pe(i,o);return me(s,u),{argv:s,events:a}}var v=new Map([["--add",new Set(["command","cmd","path"])],["--remove",new Set(["command","path"])]]);function ge(e,t){if(e!=="test"||t.length<2)return!1;let n=t[t.length-1],o=t[t.length-2],s=v.get(o);return s!==void 0&&s.has(n)}function be(e,t){return e==="search"||ge(e,t)}function ye(e,t,n){if(t!=="test")return e;let o=[],s=0;for(;s<e.length;){let i=e[s];if(i==="--")return o.push(...e.slice(s)),o;let r=v.get(i),a=r?e[s+1]:void 0;if(!r||typeof a!="string"||!r.has(a)){o.push(i),s+=1;continue}let u=s+2;for(;u<e.length&&!e[u].startsWith("-");)u+=1;if(u-(s+2)!==1){o.push(i),s+=1;continue}let c=e[s+2],l=`${a}=${c}`;o.push(i,l),n.push({from:`${i} ${a} ${c}`,to:[i,l],reason:"bare_key_value",confidence:"high"}),s+=3}return o}function we(e,t,n,o){let s=[],i=ue(e);for(let r=0;r<e.length;r+=1){let a=e[r];if(a==="--"){s.push(...e.slice(r));break}let u=i.has(r),c=s[s.length-1];if(a.startsWith("--")){let d=ae(a,t,u);s.push(...d.tokens),d.event&&o.push(d.event);continue}let l=re(a,u);if(l&&!(typeof c=="string"&&c.startsWith("-"))&&!be(n,s)){let d=B(l.key,t);if(d){let p=[d.flag,l.value];s.push(...p),o.push({from:a,to:p,reason:"bare_key_value",confidence:d.confidence});continue}}s.push(a)}return s}function ze(e){let t=[],n=ne(e,t),o=ee(n);(o.length!==n.length||o.some((p,W)=>p!==n[W]))&&t.push({from:n.join(" "),to:[...o],reason:"legacy_extension_action",confidence:"high"});let s=oe(o,t),i=F(s);if(i.conflict)throw new m("Provide the item id either positionally or with --id, not both.",f.USAGE);i.changed&&t.push({from:`--id ${i.itemId}`,to:[i.itemId],reason:"item_id_alias",confidence:"high"});let r=T(i.argv),a=Ie(i.argv),u=ie(a??r),c=we(i.argv,u,r,t),l=ye(c,r,t),d=he(l,u.listCanonicalFlags,g,r==="create"?new Set(["--tags"]):new Set);for(let p of d.events)t.push(p);return{argv:d.argv,commandName:r,trace:t}}function Ie(e){let t=M(e),n=t[0]?.trim().toLowerCase(),o=t[1]?.trim().toLowerCase();return(n==="extension"||n==="package"||n==="packages")&&typeof o=="string"&&o.length>0&&!o.startsWith("-")?`${n} ${o}`:n}function We(e){for(let t=0;t<e.length;t+=1){let n=e[t];if(n==="--")break;if(n==="--type"){let o=e[t+1];if(typeof o=="string"&&o.trim().length>0)return o.trim();continue}if(n.startsWith("--type=")){let o=n.slice(7).trim();if(o.length>0)return o}}}(function(){try{var e=typeof window<"u"?window:typeof global<"u"?global:typeof globalThis<"u"?globalThis:typeof self<"u"?self:{},t=new e.Error().stack;t&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[t]="4973a995-60f0-5990-9927-371dc6716063")}catch{}})();function z(e){return e.trim().match(/--[a-z0-9][a-z0-9_-]*/i)?.[0]?.replaceAll("_","-").toLowerCase()}function qe(e){if(!(!Array.isArray(e)||e.length===0))return T(e)}function xe(e,t){let n=z(t);if(!n)return;let o=h(e).find(s=>s.flag===n||s.aliases?.includes(n));return o?o.value_type==="boolean"?null:`<${o.value_name??"value"}>`:"<value>"}function je(e,t,n){let o=[...e],s=o.indexOf("--"),i=s<0?o.length:s;for(let r of n){let a=z(r);if(!a||o.slice(0,i).some(l=>l===a||l.startsWith(`${a}=`)))continue;let u=xe(t,a),c=u?[a,u]:[a];o.splice(i,0,...c),i+=c.length}return o.length===e.length?void 0:E(o)}(function(){try{var e=typeof window<"u"?window:typeof global<"u"?global:typeof globalThis<"u"?globalThis:typeof self<"u"?self:{},t=new e.Error().stack;t&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[t]="d82065d1-488d-523e-9df2-a30056f29603")}catch{}})();(function(){try{var e=typeof window<"u"?window:typeof global<"u"?global:typeof globalThis<"u"?globalThis:typeof self<"u"?self:{},t=new e.Error().stack;t&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[t]="5810cf1d-fc9a-597b-a47e-a914009fadfa")}catch{}})();function Qe(e){return e instanceof m||e instanceof Error?e.message:"Unknown failure"}function _e(e){if(typeof e!="object"||e===null||!("exitCode"in e))return;let t=e.exitCode;return typeof t=="number"&&Number.isFinite(t)?t:void 0}function Ce(e){let t=Math.trunc(e);return t>f.SUCCESS?t:f.GENERIC_FAILURE}function et(e){return typeof e=="object"&&e!==null&&"code"in e&&typeof e.code=="string"&&e.code.startsWith("commander.")}function tt(e,t){if(e instanceof Error)return e;let n=new Error(t),o=_e(e);return o!==void 0&&(n.exitCode=Ce(o)),n}(function(){try{var e=typeof window<"u"?window:typeof global<"u"?global:typeof globalThis<"u"?globalThis:typeof self<"u"?self:{},t=new e.Error().stack;t&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[t]="8f7cca3d-9b19-53b4-a510-5290aaf75e12")}catch{}})();function rt(e){if(e===void 0)return()=>{};let t=e.trim();if(t.length===0)throw new m("--author requires a non-empty value.",f.USAGE,{code:"missing_required_argument",nextSteps:["Pass an explicit author identifier with --author <id>."]});let n=k();y(t);let o=!1;return()=>{o||(o=!0,n===void 0?y(void 0):y(n))}}import{Command as Te}from"commander";(function(){try{var e=typeof window<"u"?window:typeof global<"u"?global:typeof globalThis<"u"?globalThis:typeof self<"u"?self:{},t=new e.Error().stack;t&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[t]="03d46cbf-73bc-50c9-b4e6-e7329ee53076")}catch{}})();function lt(e){return new Te().name("pm").description("Universal, flexible, extensible, agent-optimized project management CLI for any project or programming language.").version(e).showHelpAfterError(!1).allowExcessArguments(!1).allowUnknownOption(!1).configureOutput({writeOut:t=>{A(t)},writeErr:()=>{}}).option("--json","Output JSON instead of TOON; mutations emit a flat receipt with top-level id/status/changed_field_count while reads use documented entity or collection envelopes").option("--lean","Omit null and empty containers from JSON output").option("--token-accounting","Attach a bounded per-section token-cost receipt to command output").option("--output-include <fields>","Retain comma-separated fields or sections in read output").option("--output-limit <count>","Bound rows in read output").option("--output-budget <tokens|unbounded>","Bound estimated tokens in read output or explicitly disable the default ceiling").option("--output-format <toon|json>","Select the read-output encoding").option("--output-session <state>","Carry a JSON session budget and served-item ledger across read calls").option("--output-cursor <cursor>","Resume a budget-compacted declared row collection").option("--output-row-contract","Include the machine-readable row selector and TOON encoding contract").option("--quiet","Suppress stdout output").option("--no-changed-fields","Omit the changed_fields array from mutation output (keeps changed_field_count)").option("--full-changed-fields","Restore the legacy full mutation envelope and changed_fields array").option("--id-only","Print only id and status for single-item mutation output").option("--pm-path <dir>","Explicit tracker storage path for this command (preferred over --path)").option("--path <dir>","Backward-compatible alias for --pm-path; this is the tracker storage path, not a workspace cwd").option("--no-extensions","Disable extension loading").option("--no-pager","Disable pager integration for help and long output").option("--explain","Render extended rationale and examples in help output").option("--profile","Print deterministic timing diagnostics").option("--author <id>","Override mutation author for this invocation").exitOverride()}(function(){try{var e=typeof window<"u"?window:typeof global<"u"?global:typeof globalThis<"u"?globalThis:typeof self<"u"?self:{},t=new e.Error().stack;t&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[t]="71e5a870-f62f-5252-b4e9-e1a42e36009f")}catch{}})();var ke={add:["create","append"],fetch:["get"],inspect:["get","health"],log:["history","comments","notes"],ls:["list"],pause:["release"],read:["get"],remove:["delete"],rm:["delete"],show:["get"]};function Ee(e,t){let n=e.trim().toLowerCase(),o=t.trim().toLowerCase();if(o.length===0)return Number.POSITIVE_INFINITY;let s=n.split(" "),i=ke[o]?.indexOf(n);if(i!==void 0&&i>=0)return i;if(n===o)return 10;if(s.includes(o))return 11;if(s.some(u=>u.startsWith(o)))return 12;let r=o.length>=5?2:1,a=Number.POSITIVE_INFINITY;for(let u of s){let c=b(u,o,r);c!==null&&(a=Math.min(a,c))}return Number.isFinite(a)?20+a:n.includes(o)?30:Number.POSITIVE_INFINITY}function pt(e,t){return e.map(n=>({path:n,score:Ee(n,t)})).filter(n=>Number.isFinite(n.score)).sort((n,o)=>n.score!==o.score?n.score-o.score:n.path===o.path?0:n.path<o.path?-1:1).map(n=>n.path)}export{R as a,F as b,H as c,M as d,J as e,I as f,T as g,Be as h,ee as i,ve as j,he as k,ye as l,ze as m,We as n,qe as o,xe as p,je as q,Qe as r,_e as s,Ce as t,et as u,tt as v,rt as w,lt as x,Ee as y,pt as z};
|
|
2
|
+
//# sourceMappingURL=chunk-4NRRH7AM.js.map
|