@unbrained/pm-cli 2026.8.10 → 2026.8.12
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/CHANGELOG.md +153 -100
- package/dist/cli/commander-usage.js +113 -15
- package/dist/cli/error-guidance.d.ts +12 -0
- package/dist/cli/error-guidance.js +147 -29
- package/dist/cli/main.js +38 -19
- package/dist/cli/register-annotations.js +56 -3
- package/dist/cli/register-assurance.d.ts +8 -0
- package/dist/cli/register-assurance.js +52 -0
- package/dist/cli/register-files-lookup.js +14 -3
- package/dist/cli/register-list-query.js +10 -7
- package/dist/cli/register-mutation.js +30 -9
- package/dist/cli/register-operations.js +30 -15
- package/dist/cli-bundle/bundle-manifest.json +155 -155
- package/dist/cli-bundle/chunks/{chunk-TRWXF476.js → chunk-3PS7X6GS.js} +2 -2
- package/dist/cli-bundle/chunks/chunk-7KL6KMWF.js +13 -0
- package/dist/cli-bundle/chunks/{chunk-EBO7OUUE.js → chunk-BM5YJ2UW.js} +69 -55
- package/dist/cli-bundle/chunks/chunk-D55A5AEN.js +33 -0
- package/dist/cli-bundle/chunks/chunk-KIKDWECH.js +196 -0
- package/dist/cli-bundle/chunks/{chunk-ETML5C6H.js → chunk-KOQMGCTA.js} +47 -47
- package/dist/cli-bundle/chunks/chunk-R76342NV.js +2 -0
- package/dist/cli-bundle/chunks/chunk-RBTK5EZV.js +5 -0
- package/dist/cli-bundle/chunks/chunk-VLUQOIDT.js +2 -0
- package/dist/cli-bundle/chunks/chunk-WLAHPSOX.js +3 -0
- package/dist/cli-bundle/chunks/register-list-query-XPCJRUUD.js +10 -0
- package/dist/cli-bundle/chunks/register-mutation-4RJCBKRS.js +20 -0
- package/dist/cli-bundle/chunks/register-operations-2OGISOVR.js +2 -0
- package/dist/cli-bundle/chunks/{register-setup-S3KT2LTH.js → register-setup-LLHAKP2V.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-2DALMVF7.js +5 -0
- package/dist/cli-bundle/focused-chunks/chunk-5OQIMELN.js +155 -0
- package/dist/cli-bundle/focused-chunks/chunk-5TAGTDRE.js +2 -0
- package/dist/cli-bundle/focused-chunks/chunk-ECADZMVC.js +18 -0
- package/dist/cli-bundle/focused-chunks/chunk-EJGXRA6B.js +2 -0
- package/dist/cli-bundle/focused-chunks/chunk-FFGSZCPK.js +16 -0
- package/dist/cli-bundle/focused-chunks/{chunk-IW43E4XL.js → chunk-GQW4BPUT.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-ISKOBJCM.js +2 -0
- package/dist/cli-bundle/focused-chunks/{chunk-75774JWP.js → chunk-JAFRIWVF.js} +2 -2
- package/dist/cli-bundle/focused-chunks/{chunk-2COZ67XT.js → chunk-KHM2CS2C.js} +2 -2
- package/dist/cli-bundle/focused-chunks/{chunk-M6RPIXKC.js → chunk-KPSXVBDV.js} +2 -2
- package/dist/cli-bundle/focused-chunks/{chunk-34SX654S.js → chunk-KTLOKKCQ.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-LGYK3NUF.js +8 -0
- package/dist/cli-bundle/focused-chunks/{chunk-2EXI2DKR.js → chunk-NBLUKITQ.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-NYLOUPOB.js +2 -0
- package/dist/cli-bundle/focused-chunks/chunk-Q4T463SD.js +31 -0
- package/dist/cli-bundle/focused-chunks/chunk-QVZVY53N.js +2 -0
- package/dist/cli-bundle/focused-chunks/{chunk-DZGAHZZV.js → chunk-RWPAWUOT.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-UTEWXDEQ.js +17 -0
- package/dist/cli-bundle/focused-chunks/{chunk-7UN6BHHO.js → chunk-YIAXMC3T.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-ZMGWAYH7.js +2 -0
- package/dist/cli-bundle/main.js +13 -13
- package/dist/cli-bundle/sdk-authoring.js +1 -1
- package/dist/cli-bundle/sdk-contracts.js +1 -1
- package/dist/cli-bundle/sdk-core.js +41 -39
- 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 +1 -1
- 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 +2 -2
- package/dist/core/extensions/reserved-host-flags.js +3 -2
- package/dist/core/history/drift-scan.js +13 -8
- package/dist/core/history/history.d.ts +8 -0
- package/dist/core/history/history.js +57 -7
- package/dist/core/history/replay.d.ts +9 -1
- package/dist/core/history/replay.js +48 -13
- package/dist/core/output/output.d.ts +2 -0
- package/dist/core/output/output.js +46 -14
- package/dist/core/session/session-state.d.ts +47 -0
- package/dist/core/session/session-state.js +207 -6
- package/dist/core/shared/author.d.ts +7 -1
- package/dist/core/shared/author.js +66 -46
- package/dist/core/shared/command-types.d.ts +2 -0
- package/dist/core/shared/command-types.js +2 -2
- package/dist/core/shared/errors.d.ts +13 -0
- package/dist/core/shared/errors.js +2 -2
- package/dist/core/store/item-metadata-cache.d.ts +1 -1
- package/dist/core/store/item-metadata-cache.js +14 -7
- package/dist/sdk/agent/refusal-reachability.d.ts +40 -0
- package/dist/sdk/agent/refusal-reachability.js +72 -0
- package/dist/sdk/agent/subcommand-recovery.d.ts +40 -0
- package/dist/sdk/agent/subcommand-recovery.js +84 -0
- package/dist/sdk/cli-bootstrap.d.ts +10 -0
- package/dist/sdk/cli-bootstrap.js +11 -7
- package/dist/sdk/cli-contracts/completeness.js +14 -3
- package/dist/sdk/cli-contracts/enum-contracts.d.ts +1 -1
- package/dist/sdk/cli-contracts/enum-contracts.js +3 -2
- package/dist/sdk/cli-contracts/flag-contracts.d.ts +2 -0
- package/dist/sdk/cli-contracts/flag-contracts.js +20 -2
- package/dist/sdk/cli-contracts/registration-helpers.d.ts +20 -3
- package/dist/sdk/cli-contracts/registration-helpers.js +18 -12
- package/dist/sdk/cli-contracts/runtime-contracts.js +4 -3
- package/dist/sdk/cli-contracts/schemas/assurance-definition.d.ts +515 -0
- package/dist/sdk/cli-contracts/schemas/assurance-definition.js +252 -0
- package/dist/sdk/cli-contracts/tool-option-contracts.js +3 -2
- package/dist/sdk/cli-contracts/tool-parameter-tables.js +99 -2
- package/dist/sdk/cli-contracts/tool-schema.d.ts +3 -3
- package/dist/sdk/cli-contracts/tool-schema.js +38 -5
- package/dist/sdk/cli-contracts.d.ts +1 -1
- package/dist/sdk/cli-contracts.js +3 -3
- package/dist/sdk/cli-program.js +3 -2
- package/dist/sdk/completion.js +23 -8
- package/dist/sdk/config.js +9 -3
- package/dist/sdk/context/semantic-session-attribution.d.ts +32 -0
- package/dist/sdk/context/semantic-session-attribution.js +83 -0
- package/dist/sdk/context-intent-contracts.js +45 -4
- package/dist/sdk/core-governance.d.ts +3 -1
- package/dist/sdk/core-governance.js +5 -3
- package/dist/sdk/core.d.ts +2 -1
- package/dist/sdk/core.js +3 -2
- package/dist/sdk/error-code-catalog.d.ts +13 -0
- package/dist/sdk/error-code-catalog.js +35 -2
- package/dist/sdk/extension.js +18 -17
- package/dist/sdk/files.d.ts +11 -0
- package/dist/sdk/files.js +82 -24
- package/dist/sdk/generated/generated-error-code-catalog-part-1.d.ts +8 -0
- package/dist/sdk/generated/generated-error-code-catalog-part-1.js +1585 -0
- package/dist/sdk/generated/generated-error-code-catalog-part-2.d.ts +8 -0
- package/dist/sdk/generated/generated-error-code-catalog-part-2.js +1608 -0
- package/dist/sdk/generated-error-code-catalog.js +6 -3121
- package/dist/sdk/governance/assurance-action-contracts.d.ts +7 -0
- package/dist/sdk/governance/assurance-action-contracts.js +5 -0
- package/dist/sdk/governance/assurance-action.d.ts +70 -0
- package/dist/sdk/governance/assurance-action.js +200 -0
- package/dist/sdk/governance/assurance-limits.d.ts +7 -0
- package/dist/sdk/governance/assurance-limits.js +11 -0
- package/dist/sdk/governance/assurance-mutation-error.d.ts +7 -0
- package/dist/sdk/governance/assurance-mutation-error.js +35 -0
- package/dist/sdk/governance/assurance-runtime.d.ts +20 -0
- package/dist/sdk/governance/assurance-runtime.js +134 -0
- package/dist/sdk/governance/assurance.d.ts +438 -0
- package/dist/sdk/governance/assurance.js +804 -0
- package/dist/sdk/governance/health.d.ts +3 -1
- package/dist/sdk/governance/health.js +21 -4
- package/dist/sdk/governance/validate-item-reader.js +3 -3
- package/dist/sdk/governance/validate.d.ts +2 -0
- package/dist/sdk/governance/validate.js +13 -3
- package/dist/sdk/graph/durable-cache.d.ts +1 -1
- package/dist/sdk/graph/durable-cache.js +98 -29
- package/dist/sdk/graph/governance.d.ts +14 -0
- package/dist/sdk/graph/governance.js +34 -9
- package/dist/sdk/graph/run.js +8 -3
- package/dist/sdk/index.d.ts +7 -2
- package/dist/sdk/index.js +9 -4
- package/dist/sdk/lifecycle/claim.js +26 -4
- package/dist/sdk/lifecycle/focus.js +13 -3
- package/dist/sdk/lifecycle/plan.js +8 -3
- package/dist/sdk/merge/driver.d.ts +2 -2
- package/dist/sdk/merge/driver.js +3 -3
- package/dist/sdk/merge/receipts.d.ts +6 -4
- package/dist/sdk/merge/receipts.js +7 -5
- package/dist/sdk/merge/three-way.d.ts +2 -2
- package/dist/sdk/merge/three-way.js +3 -3
- package/dist/sdk/output-projection.d.ts +9 -1
- package/dist/sdk/output-projection.js +45 -9
- package/dist/sdk/provenance.d.ts +38 -0
- package/dist/sdk/provenance.js +64 -2
- package/dist/sdk/query/activity.d.ts +49 -2
- package/dist/sdk/query/activity.js +183 -37
- package/dist/sdk/query/context.js +19 -8
- package/dist/sdk/query/get.js +19 -2
- package/dist/sdk/read-output-contracts.d.ts +5 -1
- package/dist/sdk/read-output-contracts.js +17 -2
- package/dist/sdk/read-output-session.d.ts +2 -0
- package/dist/sdk/read-output-session.js +12 -5
- package/dist/sdk/runtime-extended-actions.js +22 -5
- package/dist/sdk/runtime-primitives.d.ts +5 -3
- package/dist/sdk/runtime-primitives.js +7 -5
- package/dist/sdk/runtime-stats-options.js +3 -2
- package/dist/sdk/runtime.d.ts +4 -0
- package/dist/sdk/runtime.js +34 -34
- package/dist/sdk/stats.d.ts +36 -3
- package/dist/sdk/stats.js +55 -15
- package/dist/sdk/telemetry.js +7 -4
- package/dist/sdk/test/execution.d.ts +4 -0
- package/dist/sdk/test/execution.js +86 -21
- package/dist/sdk/traceability/runtime-files-lookup.d.ts +8 -0
- package/dist/sdk/traceability/runtime-files-lookup.js +33 -0
- package/dist/sdk/traceability/source-traceability.d.ts +102 -0
- package/dist/sdk/traceability/source-traceability.js +293 -0
- package/dist/types.d.ts +10 -2
- package/dist/types.js +2 -2
- package/docs/ASSURANCE.md +137 -0
- package/docs/COMMANDS.md +29 -8
- package/docs/CONFIGURATION.md +7 -0
- package/docs/DEPENDENCY_KIND_CONTRACT.md +10 -8
- package/docs/MERGE_SAFETY.md +3 -1
- package/docs/OUTPUT_PROJECTION_CONTRACTS.md +26 -13
- package/docs/README.md +3 -0
- package/docs/READ_OUTPUT_CONTRACTS.md +17 -2
- package/docs/RELEASING.md +9 -5
- package/docs/SDK.md +12 -1
- package/docs/SDK_AGENT_SESSION_CONTEXT.md +52 -5
- package/docs/SDK_CONTEXT_EVIDENCE_CONTRACTS.md +53 -0
- package/docs/SDK_CONTEXT_INTEGRITY.md +28 -1
- package/docs/SDK_EVIDENCE_TRACEABILITY.md +39 -1
- package/docs/SDK_RUNTIME_BOUNDARIES.md +36 -1
- package/docs/TESTING.md +12 -9
- package/docs/TRUSTWORTHY_CONTEXT_EVIDENCE.md +106 -0
- package/docs/generated/AGENT_COMMAND_SURFACE.md +1 -0
- package/docs/performance/sdk-entrypoint-import-costs.md +6 -2
- package/marketplace.json +2 -2
- package/package.json +7 -7
- 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/extensions/templates/index.ts +9 -3
- 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/sdk/public-surface.json +1030 -67
- package/dist/cli-bundle/chunks/chunk-2QYH4QMI.js +0 -30
- package/dist/cli-bundle/chunks/chunk-JUDU4RO4.js +0 -194
- package/dist/cli-bundle/chunks/chunk-JZSNADRR.js +0 -5
- package/dist/cli-bundle/chunks/chunk-MENWVGJW.js +0 -2
- package/dist/cli-bundle/chunks/chunk-S4EITGLA.js +0 -3
- package/dist/cli-bundle/chunks/chunk-TIGKWVLA.js +0 -13
- package/dist/cli-bundle/chunks/chunk-TSLDTJLQ.js +0 -2
- package/dist/cli-bundle/chunks/register-list-query-OJ6ZXKV4.js +0 -10
- package/dist/cli-bundle/chunks/register-mutation-DKI7QC7O.js +0 -20
- package/dist/cli-bundle/chunks/register-operations-P5OGMT6I.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-36FTZ2NT.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-3CQECMKR.js +0 -16
- package/dist/cli-bundle/focused-chunks/chunk-CHIBMEZR.js +0 -8
- package/dist/cli-bundle/focused-chunks/chunk-FF4MNAYB.js +0 -153
- package/dist/cli-bundle/focused-chunks/chunk-GHTN2ILR.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-I4YM2I7S.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-IMDTEN7K.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-JMVA4HKR.js +0 -5
- package/dist/cli-bundle/focused-chunks/chunk-KR5RVXLQ.js +0 -31
- package/dist/cli-bundle/focused-chunks/chunk-KSNJG4KI.js +0 -16
- package/dist/cli-bundle/focused-chunks/chunk-MXYSIQ56.js +0 -18
- package/dist/cli-bundle/focused-chunks/chunk-RIIN5V4N.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-RKWSCYYN.js +0 -2
|
@@ -0,0 +1,1608 @@
|
|
|
1
|
+
/** Generated partition 2 of the exhaustive error-code catalog. */
|
|
2
|
+
|
|
3
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="b129c0ca-3d57-551c-945c-300547b74ff5")}catch(e){}}();
|
|
4
|
+
export const PM_ERROR_CODE_CATALOG_PART_2 = [
|
|
5
|
+
{
|
|
6
|
+
code: "merge_conflict_markers_detected",
|
|
7
|
+
meaning: "Merge conflict markers detected condition.",
|
|
8
|
+
stability: "stable",
|
|
9
|
+
exit_code: 1,
|
|
10
|
+
class: "generic_failure",
|
|
11
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
12
|
+
sources: ["core/item/item-format.ts"],
|
|
13
|
+
emitting_commands: ["*"],
|
|
14
|
+
canonical_code: "merge_conflict_markers_detected",
|
|
15
|
+
aliases: ["history_merge_conflict_markers_detected"],
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
code: "merge_decisions_unreviewed",
|
|
19
|
+
meaning: "Merge decisions unreviewed condition.",
|
|
20
|
+
stability: "provisional",
|
|
21
|
+
exit_code: 1,
|
|
22
|
+
class: "generic_failure",
|
|
23
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
24
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
25
|
+
emitting_commands: ["*"],
|
|
26
|
+
canonical_code: "merge_decisions_unreviewed",
|
|
27
|
+
aliases: [],
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
code: "merge_git_config_unwritable",
|
|
31
|
+
meaning: "Merge git config unwritable condition.",
|
|
32
|
+
stability: "stable",
|
|
33
|
+
exit_code: 5,
|
|
34
|
+
class: "dependency_failed",
|
|
35
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
36
|
+
sources: ["sdk/merge/install.ts"],
|
|
37
|
+
emitting_commands: ["*"],
|
|
38
|
+
canonical_code: "merge_git_config_unwritable",
|
|
39
|
+
aliases: [],
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
code: "merge_reconcile_discards_require_acceptance",
|
|
43
|
+
meaning: "Merge reconcile discards require acceptance condition.",
|
|
44
|
+
stability: "provisional",
|
|
45
|
+
exit_code: 4,
|
|
46
|
+
class: "conflict",
|
|
47
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
48
|
+
sources: ["sdk/merge/reconcile.ts"],
|
|
49
|
+
emitting_commands: ["*"],
|
|
50
|
+
canonical_code: "merge_reconcile_discards_require_acceptance",
|
|
51
|
+
aliases: [],
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
code: "merge_root_not_found",
|
|
55
|
+
meaning: "Merge root not found condition.",
|
|
56
|
+
stability: "stable",
|
|
57
|
+
exit_code: 3,
|
|
58
|
+
class: "not_found",
|
|
59
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
60
|
+
sources: ["sdk/merge/install.ts"],
|
|
61
|
+
emitting_commands: ["*"],
|
|
62
|
+
canonical_code: "merge_root_not_found",
|
|
63
|
+
aliases: [],
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
code: "missing_directory",
|
|
67
|
+
meaning: "Missing directory condition.",
|
|
68
|
+
stability: "stable",
|
|
69
|
+
exit_code: 1,
|
|
70
|
+
class: "generic_failure",
|
|
71
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
72
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
73
|
+
emitting_commands: ["*"],
|
|
74
|
+
canonical_code: "missing_directory",
|
|
75
|
+
aliases: [],
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
code: "missing_lifecycle_target",
|
|
79
|
+
meaning: "Missing lifecycle target condition.",
|
|
80
|
+
stability: "stable",
|
|
81
|
+
exit_code: 2,
|
|
82
|
+
class: "usage",
|
|
83
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
84
|
+
sources: ["sdk/extension.ts"],
|
|
85
|
+
emitting_commands: ["*"],
|
|
86
|
+
canonical_code: "missing_lifecycle_target",
|
|
87
|
+
aliases: [],
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
code: "missing_required_argument",
|
|
91
|
+
meaning: "Missing required argument condition.",
|
|
92
|
+
stability: "stable",
|
|
93
|
+
exit_code: 2,
|
|
94
|
+
class: "usage",
|
|
95
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
96
|
+
sources: [
|
|
97
|
+
"cli/error-guidance.ts",
|
|
98
|
+
"cli/main.ts",
|
|
99
|
+
"cli/register-mutation.ts",
|
|
100
|
+
"core/telemetry/observability.ts",
|
|
101
|
+
"sdk/history-redact.ts",
|
|
102
|
+
"sdk/invocation-author.ts",
|
|
103
|
+
],
|
|
104
|
+
emitting_commands: ["*"],
|
|
105
|
+
canonical_code: "missing_required_argument",
|
|
106
|
+
aliases: [],
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
code: "missing_required_option",
|
|
110
|
+
meaning: "Missing required option condition.",
|
|
111
|
+
stability: "stable",
|
|
112
|
+
exit_code: 2,
|
|
113
|
+
class: "usage",
|
|
114
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
115
|
+
sources: [
|
|
116
|
+
"cli/error-guidance.ts",
|
|
117
|
+
"core/telemetry/observability.ts",
|
|
118
|
+
"sdk/context-intent-contracts.ts",
|
|
119
|
+
"sdk/lifecycle/create.ts",
|
|
120
|
+
"sdk/lifecycle/plan.ts",
|
|
121
|
+
],
|
|
122
|
+
emitting_commands: ["*", "create", "plan"],
|
|
123
|
+
canonical_code: "missing_required_option",
|
|
124
|
+
aliases: [],
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
code: "module_import_failed",
|
|
128
|
+
meaning: "Module import failed condition.",
|
|
129
|
+
stability: "stable",
|
|
130
|
+
exit_code: 1,
|
|
131
|
+
class: "generic_failure",
|
|
132
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
133
|
+
sources: ["cli/error-guidance.ts"],
|
|
134
|
+
emitting_commands: ["*"],
|
|
135
|
+
canonical_code: "module_import_failed",
|
|
136
|
+
aliases: [],
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
code: "multi_target_github_install_ambiguous",
|
|
140
|
+
meaning: "Multi target github install ambiguous condition.",
|
|
141
|
+
stability: "stable",
|
|
142
|
+
exit_code: 2,
|
|
143
|
+
class: "usage",
|
|
144
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
145
|
+
sources: ["cli/register-setup.ts"],
|
|
146
|
+
emitting_commands: ["*"],
|
|
147
|
+
canonical_code: "multi_target_github_install_ambiguous",
|
|
148
|
+
aliases: [],
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
code: "mutation_author_required",
|
|
152
|
+
meaning: "Mutation author required condition.",
|
|
153
|
+
stability: "stable",
|
|
154
|
+
exit_code: 2,
|
|
155
|
+
class: "usage",
|
|
156
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
157
|
+
sources: ["sdk/mutation-guard.ts"],
|
|
158
|
+
emitting_commands: ["*"],
|
|
159
|
+
canonical_code: "mutation_author_required",
|
|
160
|
+
aliases: [],
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
code: "mutation_secret_guard_blocked",
|
|
164
|
+
meaning: "Mutation secret guard blocked condition.",
|
|
165
|
+
stability: "stable",
|
|
166
|
+
exit_code: 4,
|
|
167
|
+
class: "conflict",
|
|
168
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
169
|
+
sources: ["sdk/mutation-guard.ts"],
|
|
170
|
+
emitting_commands: ["*"],
|
|
171
|
+
canonical_code: "mutation_secret_guard_blocked",
|
|
172
|
+
aliases: [],
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
code: "no_matching_tests",
|
|
176
|
+
meaning: "No matching tests condition.",
|
|
177
|
+
stability: "stable",
|
|
178
|
+
exit_code: 1,
|
|
179
|
+
class: "generic_failure",
|
|
180
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
181
|
+
sources: ["sdk/test/execution.ts"],
|
|
182
|
+
emitting_commands: ["*"],
|
|
183
|
+
canonical_code: "no_matching_tests",
|
|
184
|
+
aliases: [],
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
code: "no_projects_matched_filters",
|
|
188
|
+
meaning: "No projects matched filters condition.",
|
|
189
|
+
stability: "stable",
|
|
190
|
+
exit_code: 1,
|
|
191
|
+
class: "generic_failure",
|
|
192
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
193
|
+
sources: ["sdk/test/execution.ts"],
|
|
194
|
+
emitting_commands: ["*"],
|
|
195
|
+
canonical_code: "no_projects_matched_filters",
|
|
196
|
+
aliases: [],
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
code: "no_test_files_found",
|
|
200
|
+
meaning: "No test files found condition.",
|
|
201
|
+
stability: "stable",
|
|
202
|
+
exit_code: 1,
|
|
203
|
+
class: "generic_failure",
|
|
204
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
205
|
+
sources: ["sdk/test/execution.ts"],
|
|
206
|
+
emitting_commands: ["*"],
|
|
207
|
+
canonical_code: "no_test_files_found",
|
|
208
|
+
aliases: [],
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
code: "no_tests_found",
|
|
212
|
+
meaning: "No tests found condition.",
|
|
213
|
+
stability: "stable",
|
|
214
|
+
exit_code: 1,
|
|
215
|
+
class: "generic_failure",
|
|
216
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
217
|
+
sources: ["sdk/test/execution.ts"],
|
|
218
|
+
emitting_commands: ["*"],
|
|
219
|
+
canonical_code: "no_tests_found",
|
|
220
|
+
aliases: [],
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
code: "no_update_fields",
|
|
224
|
+
meaning: "No update fields condition.",
|
|
225
|
+
stability: "stable",
|
|
226
|
+
exit_code: 1,
|
|
227
|
+
class: "generic_failure",
|
|
228
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
229
|
+
sources: ["cli/error-guidance.ts", "core/telemetry/observability.ts"],
|
|
230
|
+
emitting_commands: ["*"],
|
|
231
|
+
canonical_code: "no_update_fields",
|
|
232
|
+
aliases: [],
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
code: "npm_package_not_found",
|
|
236
|
+
meaning: "Npm package not found condition.",
|
|
237
|
+
stability: "stable",
|
|
238
|
+
exit_code: 3,
|
|
239
|
+
class: "not_found",
|
|
240
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
241
|
+
sources: ["sdk/extension/install-sources.ts"],
|
|
242
|
+
emitting_commands: ["*"],
|
|
243
|
+
canonical_code: "npm_package_not_found",
|
|
244
|
+
aliases: [],
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
code: "ownership_conflict",
|
|
248
|
+
meaning: "Ownership conflict condition.",
|
|
249
|
+
stability: "stable",
|
|
250
|
+
exit_code: 4,
|
|
251
|
+
class: "conflict",
|
|
252
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
253
|
+
sources: ["cli/error-guidance.ts", "core/telemetry/observability.ts", "sdk/annotations.ts"],
|
|
254
|
+
emitting_commands: ["*"],
|
|
255
|
+
canonical_code: "ownership_conflict",
|
|
256
|
+
aliases: [],
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
code: "ownership_dependency_bypass_restricted_options",
|
|
260
|
+
meaning: "Ownership dependency bypass restricted options condition.",
|
|
261
|
+
stability: "stable",
|
|
262
|
+
exit_code: 1,
|
|
263
|
+
class: "generic_failure",
|
|
264
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
265
|
+
sources: ["sdk/lifecycle/update.ts"],
|
|
266
|
+
emitting_commands: ["update"],
|
|
267
|
+
canonical_code: "ownership_dependency_bypass_restricted_options",
|
|
268
|
+
aliases: [],
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
code: "ownership_metadata_bypass_restricted_options",
|
|
272
|
+
meaning: "Ownership metadata bypass restricted options condition.",
|
|
273
|
+
stability: "stable",
|
|
274
|
+
exit_code: 1,
|
|
275
|
+
class: "generic_failure",
|
|
276
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
277
|
+
sources: ["sdk/lifecycle/update.ts"],
|
|
278
|
+
emitting_commands: ["update"],
|
|
279
|
+
canonical_code: "ownership_metadata_bypass_restricted_options",
|
|
280
|
+
aliases: [],
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
code: "package_spec_empty",
|
|
284
|
+
meaning: "Package spec empty condition.",
|
|
285
|
+
stability: "stable",
|
|
286
|
+
exit_code: 1,
|
|
287
|
+
class: "generic_failure",
|
|
288
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
289
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
290
|
+
emitting_commands: ["*"],
|
|
291
|
+
canonical_code: "package_spec_empty",
|
|
292
|
+
aliases: [],
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
code: "profile_name_empty",
|
|
296
|
+
meaning: "Profile name empty condition.",
|
|
297
|
+
stability: "stable",
|
|
298
|
+
exit_code: 1,
|
|
299
|
+
class: "generic_failure",
|
|
300
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
301
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
302
|
+
emitting_commands: ["*"],
|
|
303
|
+
canonical_code: "profile_name_empty",
|
|
304
|
+
aliases: [],
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
code: "profile_name_not_normalized",
|
|
308
|
+
meaning: "Profile name not normalized condition.",
|
|
309
|
+
stability: "stable",
|
|
310
|
+
exit_code: 1,
|
|
311
|
+
class: "generic_failure",
|
|
312
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
313
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
314
|
+
emitting_commands: ["*"],
|
|
315
|
+
canonical_code: "profile_name_not_normalized",
|
|
316
|
+
aliases: [],
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
code: "profile_summary_empty",
|
|
320
|
+
meaning: "Profile summary empty condition.",
|
|
321
|
+
stability: "stable",
|
|
322
|
+
exit_code: 1,
|
|
323
|
+
class: "generic_failure",
|
|
324
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
325
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
326
|
+
emitting_commands: ["*"],
|
|
327
|
+
canonical_code: "profile_summary_empty",
|
|
328
|
+
aliases: [],
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
code: "profile_title_empty",
|
|
332
|
+
meaning: "Profile title empty condition.",
|
|
333
|
+
stability: "stable",
|
|
334
|
+
exit_code: 1,
|
|
335
|
+
class: "generic_failure",
|
|
336
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
337
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
338
|
+
emitting_commands: ["*"],
|
|
339
|
+
canonical_code: "profile_title_empty",
|
|
340
|
+
aliases: [],
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
code: "project_runtime_stale_mutation",
|
|
344
|
+
meaning: "Project runtime stale mutation condition.",
|
|
345
|
+
stability: "provisional",
|
|
346
|
+
exit_code: 4,
|
|
347
|
+
class: "conflict",
|
|
348
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
349
|
+
sources: ["sdk/environment/project-runtime-compatibility.ts"],
|
|
350
|
+
emitting_commands: ["*"],
|
|
351
|
+
canonical_code: "project_runtime_stale_mutation",
|
|
352
|
+
aliases: [],
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
code: "project_runtime_stale_read",
|
|
356
|
+
meaning: "Project runtime stale read condition.",
|
|
357
|
+
stability: "provisional",
|
|
358
|
+
exit_code: 1,
|
|
359
|
+
class: "generic_failure",
|
|
360
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
361
|
+
sources: ["sdk/environment/project-runtime-compatibility.ts"],
|
|
362
|
+
emitting_commands: ["*"],
|
|
363
|
+
canonical_code: "project_runtime_stale_read",
|
|
364
|
+
aliases: [],
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
code: "redundant_edge",
|
|
368
|
+
meaning: "Redundant edge condition.",
|
|
369
|
+
stability: "stable",
|
|
370
|
+
exit_code: 1,
|
|
371
|
+
class: "generic_failure",
|
|
372
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
373
|
+
sources: ["sdk/graph/remediation.ts"],
|
|
374
|
+
emitting_commands: ["*"],
|
|
375
|
+
canonical_code: "redundant_edge",
|
|
376
|
+
aliases: [],
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
code: "reindex_already_running",
|
|
380
|
+
meaning: "Reindex already running condition.",
|
|
381
|
+
stability: "stable",
|
|
382
|
+
exit_code: 4,
|
|
383
|
+
class: "conflict",
|
|
384
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
385
|
+
sources: ["sdk/governance/reindex.ts"],
|
|
386
|
+
emitting_commands: ["*"],
|
|
387
|
+
canonical_code: "reindex_already_running",
|
|
388
|
+
aliases: [],
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
code: "reserved_item_field",
|
|
392
|
+
meaning: "Reserved item field condition.",
|
|
393
|
+
stability: "stable",
|
|
394
|
+
exit_code: 1,
|
|
395
|
+
class: "generic_failure",
|
|
396
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
397
|
+
sources: ["sdk/compose.ts"],
|
|
398
|
+
emitting_commands: ["*"],
|
|
399
|
+
canonical_code: "reserved_item_field",
|
|
400
|
+
aliases: [],
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
code: "schema_migration_input_required",
|
|
404
|
+
meaning: "Schema migration input required condition.",
|
|
405
|
+
stability: "stable",
|
|
406
|
+
exit_code: 2,
|
|
407
|
+
class: "usage",
|
|
408
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
409
|
+
sources: ["cli/migration-gates.ts"],
|
|
410
|
+
emitting_commands: ["*"],
|
|
411
|
+
canonical_code: "schema_migration_input_required",
|
|
412
|
+
aliases: [],
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
code: "settings_read_fs_error",
|
|
416
|
+
meaning: "Settings read fs error condition.",
|
|
417
|
+
stability: "stable",
|
|
418
|
+
exit_code: 1,
|
|
419
|
+
class: "generic_failure",
|
|
420
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
421
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
422
|
+
emitting_commands: ["*"],
|
|
423
|
+
canonical_code: "settings_read_fs_error",
|
|
424
|
+
aliases: [],
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
code: "settings_read_invalid_json",
|
|
428
|
+
meaning: "Settings read invalid json condition.",
|
|
429
|
+
stability: "stable",
|
|
430
|
+
exit_code: 2,
|
|
431
|
+
class: "usage",
|
|
432
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
433
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
434
|
+
emitting_commands: ["*"],
|
|
435
|
+
canonical_code: "settings_read_invalid_json",
|
|
436
|
+
aliases: [],
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
code: "settings_read_invalid_schema",
|
|
440
|
+
meaning: "Settings read invalid schema condition.",
|
|
441
|
+
stability: "stable",
|
|
442
|
+
exit_code: 2,
|
|
443
|
+
class: "usage",
|
|
444
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
445
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
446
|
+
emitting_commands: ["*"],
|
|
447
|
+
canonical_code: "settings_read_invalid_schema",
|
|
448
|
+
aliases: [],
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
code: "settings_read_merge_failed",
|
|
452
|
+
meaning: "Settings read merge failed condition.",
|
|
453
|
+
stability: "stable",
|
|
454
|
+
exit_code: 1,
|
|
455
|
+
class: "generic_failure",
|
|
456
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
457
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
458
|
+
emitting_commands: ["*"],
|
|
459
|
+
canonical_code: "settings_read_merge_failed",
|
|
460
|
+
aliases: [],
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
code: "status_duplicate",
|
|
464
|
+
meaning: "Status duplicate condition.",
|
|
465
|
+
stability: "stable",
|
|
466
|
+
exit_code: 1,
|
|
467
|
+
class: "generic_failure",
|
|
468
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
469
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
470
|
+
emitting_commands: ["*"],
|
|
471
|
+
canonical_code: "status_duplicate",
|
|
472
|
+
aliases: [],
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
code: "status_invalid",
|
|
476
|
+
meaning: "Status invalid condition.",
|
|
477
|
+
stability: "stable",
|
|
478
|
+
exit_code: 2,
|
|
479
|
+
class: "usage",
|
|
480
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
481
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
482
|
+
emitting_commands: ["*"],
|
|
483
|
+
canonical_code: "status_invalid",
|
|
484
|
+
aliases: [],
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
code: "stdin_json_invalid",
|
|
488
|
+
meaning: "Stdin json invalid condition.",
|
|
489
|
+
stability: "stable",
|
|
490
|
+
exit_code: 2,
|
|
491
|
+
class: "usage",
|
|
492
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
493
|
+
sources: ["sdk/structured-mutations.ts"],
|
|
494
|
+
emitting_commands: ["*"],
|
|
495
|
+
canonical_code: "stdin_json_invalid",
|
|
496
|
+
aliases: [],
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
code: "stdin_json_unknown_key",
|
|
500
|
+
meaning: "Stdin json unknown key condition.",
|
|
501
|
+
stability: "stable",
|
|
502
|
+
exit_code: 2,
|
|
503
|
+
class: "usage",
|
|
504
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
505
|
+
sources: ["sdk/structured-mutations.ts"],
|
|
506
|
+
emitting_commands: ["*"],
|
|
507
|
+
canonical_code: "stdin_json_unknown_key",
|
|
508
|
+
aliases: [],
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
code: "structured_event_immutable",
|
|
512
|
+
meaning: "Structured event immutable condition.",
|
|
513
|
+
stability: "stable",
|
|
514
|
+
exit_code: 2,
|
|
515
|
+
class: "usage",
|
|
516
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
517
|
+
sources: ["sdk/annotations.ts"],
|
|
518
|
+
emitting_commands: ["*"],
|
|
519
|
+
canonical_code: "structured_event_immutable",
|
|
520
|
+
aliases: [],
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
code: "structured_event_input_conflict",
|
|
524
|
+
meaning: "Structured event input conflict condition.",
|
|
525
|
+
stability: "stable",
|
|
526
|
+
exit_code: 2,
|
|
527
|
+
class: "usage",
|
|
528
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
529
|
+
sources: ["sdk/notes.ts"],
|
|
530
|
+
emitting_commands: ["*"],
|
|
531
|
+
canonical_code: "structured_event_input_conflict",
|
|
532
|
+
aliases: [],
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
code: "structured_event_json_empty",
|
|
536
|
+
meaning: "Structured event json empty condition.",
|
|
537
|
+
stability: "stable",
|
|
538
|
+
exit_code: 2,
|
|
539
|
+
class: "usage",
|
|
540
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
541
|
+
sources: ["sdk/notes.ts"],
|
|
542
|
+
emitting_commands: ["*"],
|
|
543
|
+
canonical_code: "structured_event_json_empty",
|
|
544
|
+
aliases: [],
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
code: "structured_event_json_invalid",
|
|
548
|
+
meaning: "Structured event json invalid condition.",
|
|
549
|
+
stability: "stable",
|
|
550
|
+
exit_code: 2,
|
|
551
|
+
class: "usage",
|
|
552
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
553
|
+
sources: ["sdk/notes.ts"],
|
|
554
|
+
emitting_commands: ["*"],
|
|
555
|
+
canonical_code: "structured_event_json_invalid",
|
|
556
|
+
aliases: [],
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
code: "structured_event_since_invalid",
|
|
560
|
+
meaning: "Structured event since invalid condition.",
|
|
561
|
+
stability: "stable",
|
|
562
|
+
exit_code: 2,
|
|
563
|
+
class: "usage",
|
|
564
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
565
|
+
sources: ["sdk/notes.ts"],
|
|
566
|
+
emitting_commands: ["*"],
|
|
567
|
+
canonical_code: "structured_event_since_invalid",
|
|
568
|
+
aliases: [],
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
code: "telemetry_endpoint_probe_failed",
|
|
572
|
+
meaning: "Telemetry endpoint probe failed condition.",
|
|
573
|
+
stability: "stable",
|
|
574
|
+
exit_code: 1,
|
|
575
|
+
class: "generic_failure",
|
|
576
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
577
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
578
|
+
emitting_commands: ["*"],
|
|
579
|
+
canonical_code: "telemetry_endpoint_probe_failed",
|
|
580
|
+
aliases: [],
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
code: "telemetry_endpoint_probe_http_status",
|
|
584
|
+
meaning: "Telemetry endpoint probe http status condition.",
|
|
585
|
+
stability: "stable",
|
|
586
|
+
exit_code: 1,
|
|
587
|
+
class: "generic_failure",
|
|
588
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
589
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
590
|
+
emitting_commands: ["*"],
|
|
591
|
+
canonical_code: "telemetry_endpoint_probe_http_status",
|
|
592
|
+
aliases: [],
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
code: "telemetry_otel_export_failing",
|
|
596
|
+
meaning: "Telemetry otel export failing condition.",
|
|
597
|
+
stability: "stable",
|
|
598
|
+
exit_code: 1,
|
|
599
|
+
class: "generic_failure",
|
|
600
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
601
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
602
|
+
emitting_commands: ["*"],
|
|
603
|
+
canonical_code: "telemetry_otel_export_failing",
|
|
604
|
+
aliases: [],
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
code: "telemetry_queue_high_retries",
|
|
608
|
+
meaning: "Telemetry queue high retries condition.",
|
|
609
|
+
stability: "stable",
|
|
610
|
+
exit_code: 1,
|
|
611
|
+
class: "generic_failure",
|
|
612
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
613
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
614
|
+
emitting_commands: ["*"],
|
|
615
|
+
canonical_code: "telemetry_queue_high_retries",
|
|
616
|
+
aliases: [],
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
code: "telemetry_queue_invalid_rows",
|
|
620
|
+
meaning: "Telemetry queue invalid rows condition.",
|
|
621
|
+
stability: "stable",
|
|
622
|
+
exit_code: 2,
|
|
623
|
+
class: "usage",
|
|
624
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
625
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
626
|
+
emitting_commands: ["*"],
|
|
627
|
+
canonical_code: "telemetry_queue_invalid_rows",
|
|
628
|
+
aliases: [],
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
code: "telemetry_queue_pending",
|
|
632
|
+
meaning: "Telemetry queue pending condition.",
|
|
633
|
+
stability: "stable",
|
|
634
|
+
exit_code: 1,
|
|
635
|
+
class: "generic_failure",
|
|
636
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
637
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
638
|
+
emitting_commands: ["*"],
|
|
639
|
+
canonical_code: "telemetry_queue_pending",
|
|
640
|
+
aliases: [],
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
code: "telemetry_schema_version_behind",
|
|
644
|
+
meaning: "Telemetry schema version behind condition.",
|
|
645
|
+
stability: "stable",
|
|
646
|
+
exit_code: 1,
|
|
647
|
+
class: "generic_failure",
|
|
648
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
649
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
650
|
+
emitting_commands: ["*"],
|
|
651
|
+
canonical_code: "telemetry_schema_version_behind",
|
|
652
|
+
aliases: [],
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
code: "telemetry_state_invalid_json",
|
|
656
|
+
meaning: "Telemetry state invalid json condition.",
|
|
657
|
+
stability: "stable",
|
|
658
|
+
exit_code: 2,
|
|
659
|
+
class: "usage",
|
|
660
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
661
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
662
|
+
emitting_commands: ["*"],
|
|
663
|
+
canonical_code: "telemetry_state_invalid_json",
|
|
664
|
+
aliases: [],
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
code: "template_type_unknown",
|
|
668
|
+
meaning: "Template type unknown condition.",
|
|
669
|
+
stability: "stable",
|
|
670
|
+
exit_code: 2,
|
|
671
|
+
class: "usage",
|
|
672
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
673
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
674
|
+
emitting_commands: ["*"],
|
|
675
|
+
canonical_code: "template_type_unknown",
|
|
676
|
+
aliases: [],
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
code: "terminal_plan_mutation",
|
|
680
|
+
meaning: "Terminal plan mutation condition.",
|
|
681
|
+
stability: "stable",
|
|
682
|
+
exit_code: 4,
|
|
683
|
+
class: "conflict",
|
|
684
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
685
|
+
sources: ["sdk/lifecycle/plan.ts"],
|
|
686
|
+
emitting_commands: ["plan"],
|
|
687
|
+
canonical_code: "terminal_plan_mutation",
|
|
688
|
+
aliases: [],
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
code: "terminal_state_conflict",
|
|
692
|
+
meaning: "Terminal state conflict condition.",
|
|
693
|
+
stability: "stable",
|
|
694
|
+
exit_code: 4,
|
|
695
|
+
class: "conflict",
|
|
696
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
697
|
+
sources: ["core/telemetry/observability.ts"],
|
|
698
|
+
emitting_commands: ["*"],
|
|
699
|
+
canonical_code: "terminal_state_conflict",
|
|
700
|
+
aliases: [],
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
code: "tracked_runtime_cache_files",
|
|
704
|
+
meaning: "Tracked runtime cache files condition.",
|
|
705
|
+
stability: "stable",
|
|
706
|
+
exit_code: 1,
|
|
707
|
+
class: "generic_failure",
|
|
708
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
709
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
710
|
+
emitting_commands: ["*"],
|
|
711
|
+
canonical_code: "tracked_runtime_cache_files",
|
|
712
|
+
aliases: ["validate_storage_tracked_runtime_cache_files"],
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
code: "tracker_not_initialized",
|
|
716
|
+
meaning: "Tracker not initialized condition.",
|
|
717
|
+
stability: "stable",
|
|
718
|
+
exit_code: 3,
|
|
719
|
+
class: "not_found",
|
|
720
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
721
|
+
sources: ["cli/error-guidance.ts", "core/telemetry/observability.ts"],
|
|
722
|
+
emitting_commands: ["*"],
|
|
723
|
+
canonical_code: "tracker_not_initialized",
|
|
724
|
+
aliases: [],
|
|
725
|
+
owned_states: [
|
|
726
|
+
{ state: "selected_tracker_root_is_a_regular_file", probe_id: "tracker-root-regular-file", entrypoints: ["list"], expected_exit_class: "not_found" },
|
|
727
|
+
],
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
code: "tracker_root_missing",
|
|
731
|
+
meaning: "Tracker root missing condition.",
|
|
732
|
+
stability: "stable",
|
|
733
|
+
exit_code: 3,
|
|
734
|
+
class: "not_found",
|
|
735
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
736
|
+
sources: ["core/store/item-store.ts"],
|
|
737
|
+
emitting_commands: ["*"],
|
|
738
|
+
canonical_code: "tracker_root_missing",
|
|
739
|
+
aliases: [],
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
code: "tracker_root_not_directory",
|
|
743
|
+
meaning: "Tracker root not directory condition.",
|
|
744
|
+
stability: "stable",
|
|
745
|
+
exit_code: 2,
|
|
746
|
+
class: "usage",
|
|
747
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
748
|
+
sources: ["core/store/item-store.ts"],
|
|
749
|
+
emitting_commands: ["*"],
|
|
750
|
+
canonical_code: "tracker_root_not_directory",
|
|
751
|
+
aliases: [],
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
code: "type_duplicate",
|
|
755
|
+
meaning: "Type duplicate condition.",
|
|
756
|
+
stability: "stable",
|
|
757
|
+
exit_code: 1,
|
|
758
|
+
class: "generic_failure",
|
|
759
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
760
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
761
|
+
emitting_commands: ["*"],
|
|
762
|
+
canonical_code: "type_duplicate",
|
|
763
|
+
aliases: [],
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
code: "type_invalid",
|
|
767
|
+
meaning: "Type invalid condition.",
|
|
768
|
+
stability: "stable",
|
|
769
|
+
exit_code: 2,
|
|
770
|
+
class: "usage",
|
|
771
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
772
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
773
|
+
emitting_commands: ["*"],
|
|
774
|
+
canonical_code: "type_invalid",
|
|
775
|
+
aliases: [],
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
code: "unknown_command",
|
|
779
|
+
meaning: "Unknown command condition.",
|
|
780
|
+
stability: "stable",
|
|
781
|
+
exit_code: 2,
|
|
782
|
+
class: "usage",
|
|
783
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
784
|
+
sources: [
|
|
785
|
+
"cli/error-guidance.ts",
|
|
786
|
+
"core/telemetry/observability.ts",
|
|
787
|
+
"sdk/cli-contracts/runtime-contracts.ts",
|
|
788
|
+
],
|
|
789
|
+
emitting_commands: ["*"],
|
|
790
|
+
canonical_code: "unknown_command",
|
|
791
|
+
aliases: [],
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
code: "unknown_context_intent",
|
|
795
|
+
meaning: "Unknown context intent condition.",
|
|
796
|
+
stability: "stable",
|
|
797
|
+
exit_code: 2,
|
|
798
|
+
class: "usage",
|
|
799
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
800
|
+
sources: ["sdk/context-intent-contracts.ts"],
|
|
801
|
+
emitting_commands: ["*"],
|
|
802
|
+
canonical_code: "unknown_context_intent",
|
|
803
|
+
aliases: [],
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
code: "unknown_error",
|
|
807
|
+
meaning: "Unknown error condition.",
|
|
808
|
+
stability: "stable",
|
|
809
|
+
exit_code: 1,
|
|
810
|
+
class: "generic_failure",
|
|
811
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
812
|
+
sources: ["cli/error-guidance.ts"],
|
|
813
|
+
emitting_commands: ["*"],
|
|
814
|
+
canonical_code: "unknown_error",
|
|
815
|
+
aliases: [],
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
code: "unknown_field",
|
|
819
|
+
meaning: "Unknown field condition.",
|
|
820
|
+
stability: "stable",
|
|
821
|
+
exit_code: 3,
|
|
822
|
+
class: "not_found",
|
|
823
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
824
|
+
sources: ["sdk/schema.ts"],
|
|
825
|
+
emitting_commands: ["*"],
|
|
826
|
+
canonical_code: "unknown_field",
|
|
827
|
+
aliases: [],
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
code: "unknown_field_projection",
|
|
831
|
+
meaning: "Unknown field projection condition.",
|
|
832
|
+
stability: "stable",
|
|
833
|
+
exit_code: 2,
|
|
834
|
+
class: "usage",
|
|
835
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
836
|
+
sources: ["sdk/query/get.ts", "sdk/query/list.ts"],
|
|
837
|
+
emitting_commands: ["get", "list"],
|
|
838
|
+
canonical_code: "unknown_field_projection",
|
|
839
|
+
aliases: [],
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
code: "unknown_item_type",
|
|
843
|
+
meaning: "Unknown item type condition.",
|
|
844
|
+
stability: "stable",
|
|
845
|
+
exit_code: 3,
|
|
846
|
+
class: "not_found",
|
|
847
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
848
|
+
sources: ["sdk/schema.ts"],
|
|
849
|
+
emitting_commands: ["*"],
|
|
850
|
+
canonical_code: "unknown_item_type",
|
|
851
|
+
aliases: [],
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
code: "unknown_lifecycle_action",
|
|
855
|
+
meaning: "Unknown lifecycle action condition.",
|
|
856
|
+
stability: "stable",
|
|
857
|
+
exit_code: 2,
|
|
858
|
+
class: "usage",
|
|
859
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
860
|
+
sources: ["sdk/agent/subcommand-recovery.ts"],
|
|
861
|
+
emitting_commands: ["*"],
|
|
862
|
+
canonical_code: "unknown_subcommand",
|
|
863
|
+
aliases: [],
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
code: "unknown_option",
|
|
867
|
+
meaning: "Unknown option condition.",
|
|
868
|
+
stability: "stable",
|
|
869
|
+
exit_code: 2,
|
|
870
|
+
class: "usage",
|
|
871
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
872
|
+
sources: ["cli/error-guidance.ts", "core/telemetry/observability.ts"],
|
|
873
|
+
emitting_commands: ["*"],
|
|
874
|
+
canonical_code: "unknown_option",
|
|
875
|
+
aliases: [],
|
|
876
|
+
owned_states: [
|
|
877
|
+
{ state: "declared_option_is_rejected_on_the_selected_command_path", probe_id: "cross-command-unknown-option", entrypoints: ["deps"], expected_exit_class: "usage" },
|
|
878
|
+
],
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
code: "unknown_plan_template",
|
|
882
|
+
meaning: "Unknown plan template condition.",
|
|
883
|
+
stability: "stable",
|
|
884
|
+
exit_code: 2,
|
|
885
|
+
class: "usage",
|
|
886
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
887
|
+
sources: ["sdk/lifecycle/plan.ts"],
|
|
888
|
+
emitting_commands: ["plan"],
|
|
889
|
+
canonical_code: "unknown_plan_template",
|
|
890
|
+
aliases: [],
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
code: "unknown_provenance_dimension",
|
|
894
|
+
meaning: "Unknown provenance dimension condition.",
|
|
895
|
+
stability: "stable",
|
|
896
|
+
exit_code: 2,
|
|
897
|
+
class: "usage",
|
|
898
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
899
|
+
sources: ["sdk/history-provenance.ts"],
|
|
900
|
+
emitting_commands: ["*"],
|
|
901
|
+
canonical_code: "unknown_provenance_dimension",
|
|
902
|
+
aliases: [],
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
code: "unknown_status",
|
|
906
|
+
meaning: "Unknown status condition.",
|
|
907
|
+
stability: "stable",
|
|
908
|
+
exit_code: 3,
|
|
909
|
+
class: "not_found",
|
|
910
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
911
|
+
sources: ["sdk/schema.ts"],
|
|
912
|
+
emitting_commands: ["*"],
|
|
913
|
+
canonical_code: "unknown_status",
|
|
914
|
+
aliases: [],
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
code: "unknown_subcommand",
|
|
918
|
+
meaning: "Unknown subcommand condition.",
|
|
919
|
+
stability: "stable",
|
|
920
|
+
exit_code: 2,
|
|
921
|
+
class: "usage",
|
|
922
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
923
|
+
sources: ["cli/error-guidance.ts", "sdk/agent/subcommand-recovery.ts"],
|
|
924
|
+
emitting_commands: ["*"],
|
|
925
|
+
canonical_code: "unknown_subcommand",
|
|
926
|
+
aliases: ["unknown_lifecycle_action"],
|
|
927
|
+
owned_states: [
|
|
928
|
+
{ state: "config_action_token_is_not_declared", probe_id: "config-unknown-action", entrypoints: ["config"], expected_exit_class: "usage" },
|
|
929
|
+
{ state: "graph_command_token_is_not_declared", probe_id: "graph-unknown-subcommand", entrypoints: ["graph"], expected_exit_class: "usage" },
|
|
930
|
+
{ state: "nested_command_token_is_not_declared_by_its_family", probe_id: "schema-unknown-subcommand", entrypoints: ["schema"], expected_exit_class: "usage" },
|
|
931
|
+
{ state: "package_lifecycle_token_is_not_declared", probe_id: "package-unknown-action", entrypoints: ["package"], expected_exit_class: "usage" },
|
|
932
|
+
],
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
code: "unsupported_update_option",
|
|
936
|
+
meaning: "Unsupported update option condition.",
|
|
937
|
+
stability: "stable",
|
|
938
|
+
exit_code: 1,
|
|
939
|
+
class: "generic_failure",
|
|
940
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
941
|
+
sources: ["cli/error-guidance.ts"],
|
|
942
|
+
emitting_commands: ["*"],
|
|
943
|
+
canonical_code: "unsupported_update_option",
|
|
944
|
+
aliases: [],
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
code: "validate_command_references_stale_pm_ids",
|
|
948
|
+
meaning: "Validate command references stale pm ids condition.",
|
|
949
|
+
stability: "stable",
|
|
950
|
+
exit_code: 1,
|
|
951
|
+
class: "generic_failure",
|
|
952
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
953
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
954
|
+
emitting_commands: ["*"],
|
|
955
|
+
canonical_code: "validate_command_references_stale_pm_ids",
|
|
956
|
+
aliases: [],
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
code: "validate_files_missing_linked_paths",
|
|
960
|
+
meaning: "Validate files missing linked paths condition.",
|
|
961
|
+
stability: "stable",
|
|
962
|
+
exit_code: 1,
|
|
963
|
+
class: "generic_failure",
|
|
964
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
965
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
966
|
+
emitting_commands: ["*"],
|
|
967
|
+
canonical_code: "validate_files_missing_linked_paths",
|
|
968
|
+
aliases: [],
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
code: "validate_files_orphaned_paths",
|
|
972
|
+
meaning: "Validate files orphaned paths condition.",
|
|
973
|
+
stability: "stable",
|
|
974
|
+
exit_code: 1,
|
|
975
|
+
class: "generic_failure",
|
|
976
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
977
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
978
|
+
emitting_commands: ["*"],
|
|
979
|
+
canonical_code: "validate_files_orphaned_paths",
|
|
980
|
+
aliases: [],
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
code: "validate_files_tracked_all_strict_forces_pm_internals",
|
|
984
|
+
meaning: "Validate files tracked all strict forces pm internals condition.",
|
|
985
|
+
stability: "stable",
|
|
986
|
+
exit_code: 1,
|
|
987
|
+
class: "generic_failure",
|
|
988
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
989
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
990
|
+
emitting_commands: ["*"],
|
|
991
|
+
canonical_code: "validate_files_tracked_all_strict_forces_pm_internals",
|
|
992
|
+
aliases: [],
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
code: "validate_format_version_ahead_items",
|
|
996
|
+
meaning: "Validate format version ahead items condition.",
|
|
997
|
+
stability: "stable",
|
|
998
|
+
exit_code: 1,
|
|
999
|
+
class: "generic_failure",
|
|
1000
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1001
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1002
|
+
emitting_commands: ["*"],
|
|
1003
|
+
canonical_code: "integrity_item_ahead_format_version",
|
|
1004
|
+
aliases: [],
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
code: "validate_format_version_outdated_items",
|
|
1008
|
+
meaning: "Validate format version outdated items condition.",
|
|
1009
|
+
stability: "stable",
|
|
1010
|
+
exit_code: 1,
|
|
1011
|
+
class: "generic_failure",
|
|
1012
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1013
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1014
|
+
emitting_commands: ["*"],
|
|
1015
|
+
canonical_code: "integrity_item_outdated_format_version",
|
|
1016
|
+
aliases: [],
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
code: "validate_hierarchy_parent_cycle",
|
|
1020
|
+
meaning: "Validate hierarchy parent cycle condition.",
|
|
1021
|
+
stability: "stable",
|
|
1022
|
+
exit_code: 1,
|
|
1023
|
+
class: "generic_failure",
|
|
1024
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1025
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1026
|
+
emitting_commands: ["*"],
|
|
1027
|
+
canonical_code: "validate_hierarchy_parent_cycle",
|
|
1028
|
+
aliases: [],
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
code: "validate_hierarchy_parent_cycle_error",
|
|
1032
|
+
meaning: "Validate hierarchy parent cycle error condition.",
|
|
1033
|
+
stability: "stable",
|
|
1034
|
+
exit_code: 1,
|
|
1035
|
+
class: "generic_failure",
|
|
1036
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1037
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1038
|
+
emitting_commands: ["*"],
|
|
1039
|
+
canonical_code: "validate_hierarchy_parent_cycle_error",
|
|
1040
|
+
aliases: [],
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
code: "validate_history_drift_chain_mismatches",
|
|
1044
|
+
meaning: "Validate history drift chain mismatches condition.",
|
|
1045
|
+
stability: "stable",
|
|
1046
|
+
exit_code: 1,
|
|
1047
|
+
class: "generic_failure",
|
|
1048
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1049
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1050
|
+
emitting_commands: ["*"],
|
|
1051
|
+
canonical_code: "history_drift_chain_mismatch",
|
|
1052
|
+
aliases: [],
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
code: "validate_history_drift_hash_mismatches",
|
|
1056
|
+
meaning: "Validate history drift hash mismatches condition.",
|
|
1057
|
+
stability: "stable",
|
|
1058
|
+
exit_code: 1,
|
|
1059
|
+
class: "generic_failure",
|
|
1060
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1061
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1062
|
+
emitting_commands: ["*"],
|
|
1063
|
+
canonical_code: "history_drift_hash_mismatch",
|
|
1064
|
+
aliases: [],
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
code: "validate_history_drift_missing_streams",
|
|
1068
|
+
meaning: "Validate history drift missing streams condition.",
|
|
1069
|
+
stability: "stable",
|
|
1070
|
+
exit_code: 1,
|
|
1071
|
+
class: "generic_failure",
|
|
1072
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1073
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1074
|
+
emitting_commands: ["*"],
|
|
1075
|
+
canonical_code: "history_drift_missing_stream",
|
|
1076
|
+
aliases: [],
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
code: "validate_history_drift_unreadable_streams",
|
|
1080
|
+
meaning: "Validate history drift unreadable streams condition.",
|
|
1081
|
+
stability: "stable",
|
|
1082
|
+
exit_code: 1,
|
|
1083
|
+
class: "generic_failure",
|
|
1084
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1085
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1086
|
+
emitting_commands: ["*"],
|
|
1087
|
+
canonical_code: "history_drift_unreadable_stream",
|
|
1088
|
+
aliases: [],
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
code: "validate_history_unknown_author_events",
|
|
1092
|
+
meaning: "Validate history unknown author events condition.",
|
|
1093
|
+
stability: "stable",
|
|
1094
|
+
exit_code: 2,
|
|
1095
|
+
class: "usage",
|
|
1096
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1097
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1098
|
+
emitting_commands: ["*"],
|
|
1099
|
+
canonical_code: "history_unknown_author_events",
|
|
1100
|
+
aliases: [],
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
code: "validate_lifecycle_active_closure_like_metadata",
|
|
1104
|
+
meaning: "Validate lifecycle active closure like metadata condition.",
|
|
1105
|
+
stability: "stable",
|
|
1106
|
+
exit_code: 1,
|
|
1107
|
+
class: "generic_failure",
|
|
1108
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1109
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1110
|
+
emitting_commands: ["*"],
|
|
1111
|
+
canonical_code: "validate_lifecycle_active_closure_like_metadata",
|
|
1112
|
+
aliases: [],
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
code: "validate_lifecycle_active_terminal_parent",
|
|
1116
|
+
meaning: "Validate lifecycle active terminal parent condition.",
|
|
1117
|
+
stability: "stable",
|
|
1118
|
+
exit_code: 1,
|
|
1119
|
+
class: "generic_failure",
|
|
1120
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1121
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1122
|
+
emitting_commands: ["*"],
|
|
1123
|
+
canonical_code: "validate_lifecycle_active_terminal_parent",
|
|
1124
|
+
aliases: [],
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
code: "validate_lifecycle_dependency_cycles",
|
|
1128
|
+
meaning: "Validate lifecycle dependency cycles condition.",
|
|
1129
|
+
stability: "stable",
|
|
1130
|
+
exit_code: 1,
|
|
1131
|
+
class: "generic_failure",
|
|
1132
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1133
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1134
|
+
emitting_commands: ["*"],
|
|
1135
|
+
canonical_code: "validate_lifecycle_dependency_cycles",
|
|
1136
|
+
aliases: [],
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
code: "validate_lifecycle_dependency_cycles_error",
|
|
1140
|
+
meaning: "Validate lifecycle dependency cycles error condition.",
|
|
1141
|
+
stability: "stable",
|
|
1142
|
+
exit_code: 1,
|
|
1143
|
+
class: "generic_failure",
|
|
1144
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1145
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1146
|
+
emitting_commands: ["*"],
|
|
1147
|
+
canonical_code: "validate_lifecycle_dependency_cycles_error",
|
|
1148
|
+
aliases: [],
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
code: "validate_lifecycle_stale_blockers",
|
|
1152
|
+
meaning: "Validate lifecycle stale blockers condition.",
|
|
1153
|
+
stability: "stable",
|
|
1154
|
+
exit_code: 1,
|
|
1155
|
+
class: "generic_failure",
|
|
1156
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1157
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1158
|
+
emitting_commands: ["*"],
|
|
1159
|
+
canonical_code: "validate_lifecycle_stale_blockers",
|
|
1160
|
+
aliases: [],
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
code: "validate_merge_decisions_unreviewed",
|
|
1164
|
+
meaning: "Validate merge decisions unreviewed condition.",
|
|
1165
|
+
stability: "provisional",
|
|
1166
|
+
exit_code: 1,
|
|
1167
|
+
class: "generic_failure",
|
|
1168
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1169
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1170
|
+
emitting_commands: ["*"],
|
|
1171
|
+
canonical_code: "validate_merge_decisions_unreviewed",
|
|
1172
|
+
aliases: [],
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
code: "validate_merge_fence_drift",
|
|
1176
|
+
meaning: "Validate merge fence drift condition.",
|
|
1177
|
+
stability: "stable",
|
|
1178
|
+
exit_code: 1,
|
|
1179
|
+
class: "generic_failure",
|
|
1180
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1181
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1182
|
+
emitting_commands: ["*"],
|
|
1183
|
+
canonical_code: "validate_merge_fence_drift",
|
|
1184
|
+
aliases: [],
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
code: "validate_metadata_custom_profile_missing_required_fields",
|
|
1188
|
+
meaning: "Validate metadata custom profile missing required fields condition.",
|
|
1189
|
+
stability: "stable",
|
|
1190
|
+
exit_code: 2,
|
|
1191
|
+
class: "usage",
|
|
1192
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1193
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1194
|
+
emitting_commands: ["*"],
|
|
1195
|
+
canonical_code: "validate_metadata_custom_profile_missing_required_fields",
|
|
1196
|
+
aliases: [],
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
code: "validate_metadata_duplicate_issue_codes",
|
|
1200
|
+
meaning: "Validate metadata duplicate issue codes condition.",
|
|
1201
|
+
stability: "stable",
|
|
1202
|
+
exit_code: 1,
|
|
1203
|
+
class: "generic_failure",
|
|
1204
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1205
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1206
|
+
emitting_commands: ["*"],
|
|
1207
|
+
canonical_code: "validate_metadata_duplicate_issue_codes",
|
|
1208
|
+
aliases: [],
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
code: "validate_metadata_missing_acceptance_criteria",
|
|
1212
|
+
meaning: "Validate metadata missing acceptance criteria condition.",
|
|
1213
|
+
stability: "stable",
|
|
1214
|
+
exit_code: 1,
|
|
1215
|
+
class: "generic_failure",
|
|
1216
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1217
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1218
|
+
emitting_commands: ["*"],
|
|
1219
|
+
canonical_code: "validate_metadata_missing_acceptance_criteria",
|
|
1220
|
+
aliases: [],
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
code: "validate_metadata_missing_close_reason",
|
|
1224
|
+
meaning: "Validate metadata missing close reason condition.",
|
|
1225
|
+
stability: "stable",
|
|
1226
|
+
exit_code: 1,
|
|
1227
|
+
class: "generic_failure",
|
|
1228
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1229
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1230
|
+
emitting_commands: ["*"],
|
|
1231
|
+
canonical_code: "validate_metadata_missing_close_reason",
|
|
1232
|
+
aliases: [],
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
code: "validate_metadata_missing_confidence",
|
|
1236
|
+
meaning: "Validate metadata missing confidence condition.",
|
|
1237
|
+
stability: "stable",
|
|
1238
|
+
exit_code: 1,
|
|
1239
|
+
class: "generic_failure",
|
|
1240
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1241
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1242
|
+
emitting_commands: ["*"],
|
|
1243
|
+
canonical_code: "validate_metadata_missing_confidence",
|
|
1244
|
+
aliases: [],
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
code: "validate_metadata_missing_estimate",
|
|
1248
|
+
meaning: "Validate metadata missing estimate condition.",
|
|
1249
|
+
stability: "stable",
|
|
1250
|
+
exit_code: 1,
|
|
1251
|
+
class: "generic_failure",
|
|
1252
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1253
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1254
|
+
emitting_commands: ["*"],
|
|
1255
|
+
canonical_code: "validate_metadata_missing_estimate",
|
|
1256
|
+
aliases: [],
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
code: "validate_metadata_missing_release",
|
|
1260
|
+
meaning: "Validate metadata missing release condition.",
|
|
1261
|
+
stability: "stable",
|
|
1262
|
+
exit_code: 1,
|
|
1263
|
+
class: "generic_failure",
|
|
1264
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1265
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1266
|
+
emitting_commands: ["*"],
|
|
1267
|
+
canonical_code: "validate_metadata_missing_release",
|
|
1268
|
+
aliases: [],
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
code: "validate_metadata_missing_reviewer",
|
|
1272
|
+
meaning: "Validate metadata missing reviewer condition.",
|
|
1273
|
+
stability: "stable",
|
|
1274
|
+
exit_code: 1,
|
|
1275
|
+
class: "generic_failure",
|
|
1276
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1277
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1278
|
+
emitting_commands: ["*"],
|
|
1279
|
+
canonical_code: "validate_metadata_missing_reviewer",
|
|
1280
|
+
aliases: [],
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
code: "validate_metadata_missing_risk",
|
|
1284
|
+
meaning: "Validate metadata missing risk condition.",
|
|
1285
|
+
stability: "stable",
|
|
1286
|
+
exit_code: 1,
|
|
1287
|
+
class: "generic_failure",
|
|
1288
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1289
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1290
|
+
emitting_commands: ["*"],
|
|
1291
|
+
canonical_code: "validate_metadata_missing_risk",
|
|
1292
|
+
aliases: [],
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
code: "validate_metadata_missing_sprint",
|
|
1296
|
+
meaning: "Validate metadata missing sprint condition.",
|
|
1297
|
+
stability: "stable",
|
|
1298
|
+
exit_code: 1,
|
|
1299
|
+
class: "generic_failure",
|
|
1300
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1301
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1302
|
+
emitting_commands: ["*"],
|
|
1303
|
+
canonical_code: "validate_metadata_missing_sprint",
|
|
1304
|
+
aliases: [],
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
code: "validate_resolution_missing_fields",
|
|
1308
|
+
meaning: "Validate resolution missing fields condition.",
|
|
1309
|
+
stability: "stable",
|
|
1310
|
+
exit_code: 1,
|
|
1311
|
+
class: "generic_failure",
|
|
1312
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1313
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1314
|
+
emitting_commands: ["*"],
|
|
1315
|
+
canonical_code: "validate_resolution_missing_fields",
|
|
1316
|
+
aliases: [],
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
code: "validate_storage_duplicate_item_ids",
|
|
1320
|
+
meaning: "Validate storage duplicate item ids condition.",
|
|
1321
|
+
stability: "stable",
|
|
1322
|
+
exit_code: 1,
|
|
1323
|
+
class: "generic_failure",
|
|
1324
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1325
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1326
|
+
emitting_commands: ["*"],
|
|
1327
|
+
canonical_code: "validate_storage_duplicate_item_ids",
|
|
1328
|
+
aliases: [],
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
code: "validate_storage_history_conflict_markers",
|
|
1332
|
+
meaning: "Validate storage history conflict markers condition.",
|
|
1333
|
+
stability: "stable",
|
|
1334
|
+
exit_code: 4,
|
|
1335
|
+
class: "conflict",
|
|
1336
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1337
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1338
|
+
emitting_commands: ["*"],
|
|
1339
|
+
canonical_code: "integrity_history_conflict_marker",
|
|
1340
|
+
aliases: [],
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
code: "validate_storage_resurrected_items",
|
|
1344
|
+
meaning: "Validate storage resurrected items condition.",
|
|
1345
|
+
stability: "stable",
|
|
1346
|
+
exit_code: 1,
|
|
1347
|
+
class: "generic_failure",
|
|
1348
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1349
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1350
|
+
emitting_commands: ["*"],
|
|
1351
|
+
canonical_code: "validate_storage_resurrected_items",
|
|
1352
|
+
aliases: [],
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
code: "validate_storage_tracked_runtime_cache_files",
|
|
1356
|
+
meaning: "Validate storage tracked runtime cache files condition.",
|
|
1357
|
+
stability: "stable",
|
|
1358
|
+
exit_code: 1,
|
|
1359
|
+
class: "generic_failure",
|
|
1360
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1361
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1362
|
+
emitting_commands: ["*"],
|
|
1363
|
+
canonical_code: "tracked_runtime_cache_files",
|
|
1364
|
+
aliases: [],
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
code: "validate_storage_unparseable_config",
|
|
1368
|
+
meaning: "Validate storage unparseable config condition.",
|
|
1369
|
+
stability: "stable",
|
|
1370
|
+
exit_code: 1,
|
|
1371
|
+
class: "generic_failure",
|
|
1372
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1373
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1374
|
+
emitting_commands: ["*"],
|
|
1375
|
+
canonical_code: "validate_storage_unparseable_config",
|
|
1376
|
+
aliases: [],
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
code: "validate_storage_unparseable_history",
|
|
1380
|
+
meaning: "Validate storage unparseable history condition.",
|
|
1381
|
+
stability: "stable",
|
|
1382
|
+
exit_code: 1,
|
|
1383
|
+
class: "generic_failure",
|
|
1384
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1385
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1386
|
+
emitting_commands: ["*"],
|
|
1387
|
+
canonical_code: "validate_storage_unparseable_history",
|
|
1388
|
+
aliases: [],
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
code: "validate_storage_unreadable_items",
|
|
1392
|
+
meaning: "Validate storage unreadable items condition.",
|
|
1393
|
+
stability: "stable",
|
|
1394
|
+
exit_code: 1,
|
|
1395
|
+
class: "generic_failure",
|
|
1396
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1397
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1398
|
+
emitting_commands: ["*"],
|
|
1399
|
+
canonical_code: "validate_storage_unreadable_items",
|
|
1400
|
+
aliases: [],
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
code: "vectorization_embedding_identity_changed",
|
|
1404
|
+
meaning: "Vectorization embedding identity changed condition.",
|
|
1405
|
+
stability: "stable",
|
|
1406
|
+
exit_code: 1,
|
|
1407
|
+
class: "generic_failure",
|
|
1408
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1409
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1410
|
+
emitting_commands: ["*"],
|
|
1411
|
+
canonical_code: "vectorization_embedding_identity_changed",
|
|
1412
|
+
aliases: [],
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
code: "vectorization_stale_items_remaining",
|
|
1416
|
+
meaning: "Vectorization stale items remaining condition.",
|
|
1417
|
+
stability: "stable",
|
|
1418
|
+
exit_code: 1,
|
|
1419
|
+
class: "generic_failure",
|
|
1420
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1421
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1422
|
+
emitting_commands: ["*"],
|
|
1423
|
+
canonical_code: "vectorization_stale_items_remaining",
|
|
1424
|
+
aliases: [],
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
code: "workflow_duplicate_type",
|
|
1428
|
+
meaning: "Workflow duplicate type condition.",
|
|
1429
|
+
stability: "stable",
|
|
1430
|
+
exit_code: 1,
|
|
1431
|
+
class: "generic_failure",
|
|
1432
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1433
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
1434
|
+
emitting_commands: ["*"],
|
|
1435
|
+
canonical_code: "workflow_duplicate_type",
|
|
1436
|
+
aliases: [],
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
code: "workflow_status_unknown",
|
|
1440
|
+
meaning: "Workflow status unknown condition.",
|
|
1441
|
+
stability: "stable",
|
|
1442
|
+
exit_code: 2,
|
|
1443
|
+
class: "usage",
|
|
1444
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1445
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
1446
|
+
emitting_commands: ["*"],
|
|
1447
|
+
canonical_code: "workflow_status_unknown",
|
|
1448
|
+
aliases: [],
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
code: "workflow_transition_malformed",
|
|
1452
|
+
meaning: "Workflow transition malformed condition.",
|
|
1453
|
+
stability: "stable",
|
|
1454
|
+
exit_code: 1,
|
|
1455
|
+
class: "generic_failure",
|
|
1456
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1457
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
1458
|
+
emitting_commands: ["*"],
|
|
1459
|
+
canonical_code: "workflow_transition_malformed",
|
|
1460
|
+
aliases: [],
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
code: "workflow_type_empty",
|
|
1464
|
+
meaning: "Workflow type empty condition.",
|
|
1465
|
+
stability: "stable",
|
|
1466
|
+
exit_code: 1,
|
|
1467
|
+
class: "generic_failure",
|
|
1468
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1469
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
1470
|
+
emitting_commands: ["*"],
|
|
1471
|
+
canonical_code: "workflow_type_empty",
|
|
1472
|
+
aliases: [],
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
code: "workflow_type_unknown",
|
|
1476
|
+
meaning: "Workflow type unknown condition.",
|
|
1477
|
+
stability: "stable",
|
|
1478
|
+
exit_code: 2,
|
|
1479
|
+
class: "usage",
|
|
1480
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1481
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
1482
|
+
emitting_commands: ["*"],
|
|
1483
|
+
canonical_code: "workflow_type_unknown",
|
|
1484
|
+
aliases: [],
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
code: "workspace_history_state_conflict",
|
|
1488
|
+
meaning: "Workspace history state conflict condition.",
|
|
1489
|
+
stability: "stable",
|
|
1490
|
+
exit_code: 4,
|
|
1491
|
+
class: "conflict",
|
|
1492
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1493
|
+
sources: ["core/history/workspace-history.ts"],
|
|
1494
|
+
emitting_commands: ["*"],
|
|
1495
|
+
canonical_code: "workspace_history_state_conflict",
|
|
1496
|
+
aliases: [],
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
code: "workspace_root_pm_path",
|
|
1500
|
+
meaning: "Workspace root pm path condition.",
|
|
1501
|
+
stability: "stable",
|
|
1502
|
+
exit_code: 2,
|
|
1503
|
+
class: "usage",
|
|
1504
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1505
|
+
sources: ["sdk/init.ts"],
|
|
1506
|
+
emitting_commands: ["*"],
|
|
1507
|
+
canonical_code: "workspace_root_pm_path",
|
|
1508
|
+
aliases: [],
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
code: "workspace_snapshot_force_required",
|
|
1512
|
+
meaning: "Workspace snapshot force required condition.",
|
|
1513
|
+
stability: "provisional",
|
|
1514
|
+
exit_code: 2,
|
|
1515
|
+
class: "usage",
|
|
1516
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1517
|
+
sources: ["sdk/workspace-snapshot.ts"],
|
|
1518
|
+
emitting_commands: ["*"],
|
|
1519
|
+
canonical_code: "workspace_snapshot_force_required",
|
|
1520
|
+
aliases: [],
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
code: "workspace_snapshot_manifest_mismatch",
|
|
1524
|
+
meaning: "Workspace snapshot manifest mismatch condition.",
|
|
1525
|
+
stability: "provisional",
|
|
1526
|
+
exit_code: 4,
|
|
1527
|
+
class: "conflict",
|
|
1528
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1529
|
+
sources: ["sdk/workspace-snapshot.ts"],
|
|
1530
|
+
emitting_commands: ["*"],
|
|
1531
|
+
canonical_code: "workspace_snapshot_manifest_mismatch",
|
|
1532
|
+
aliases: [],
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
code: "workspace_snapshot_name_reserved_fingerprint",
|
|
1536
|
+
meaning: "Workspace snapshot name reserved fingerprint condition.",
|
|
1537
|
+
stability: "provisional",
|
|
1538
|
+
exit_code: 2,
|
|
1539
|
+
class: "usage",
|
|
1540
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1541
|
+
sources: ["sdk/workspace-snapshot.ts"],
|
|
1542
|
+
emitting_commands: ["*"],
|
|
1543
|
+
canonical_code: "workspace_snapshot_name_reserved_fingerprint",
|
|
1544
|
+
aliases: [],
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
code: "workspace_snapshot_not_found",
|
|
1548
|
+
meaning: "Workspace snapshot not found condition.",
|
|
1549
|
+
stability: "provisional",
|
|
1550
|
+
exit_code: 3,
|
|
1551
|
+
class: "not_found",
|
|
1552
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1553
|
+
sources: ["sdk/workspace-snapshot.ts"],
|
|
1554
|
+
emitting_commands: ["*"],
|
|
1555
|
+
canonical_code: "workspace_snapshot_not_found",
|
|
1556
|
+
aliases: [],
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
code: "workspace_snapshot_permission_denied",
|
|
1560
|
+
meaning: "Workspace snapshot permission denied condition.",
|
|
1561
|
+
stability: "provisional",
|
|
1562
|
+
exit_code: 1,
|
|
1563
|
+
class: "generic_failure",
|
|
1564
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1565
|
+
sources: ["sdk/workspace-snapshot.ts"],
|
|
1566
|
+
emitting_commands: ["*"],
|
|
1567
|
+
canonical_code: "workspace_snapshot_permission_denied",
|
|
1568
|
+
aliases: [],
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
code: "workspace_snapshot_resource_exhausted",
|
|
1572
|
+
meaning: "Workspace snapshot resource exhausted condition.",
|
|
1573
|
+
stability: "provisional",
|
|
1574
|
+
exit_code: 1,
|
|
1575
|
+
class: "generic_failure",
|
|
1576
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1577
|
+
sources: ["sdk/workspace-snapshot.ts"],
|
|
1578
|
+
emitting_commands: ["*"],
|
|
1579
|
+
canonical_code: "workspace_snapshot_resource_exhausted",
|
|
1580
|
+
aliases: [],
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
code: "workspace_snapshot_storage_exhausted",
|
|
1584
|
+
meaning: "Workspace snapshot storage exhausted condition.",
|
|
1585
|
+
stability: "provisional",
|
|
1586
|
+
exit_code: 1,
|
|
1587
|
+
class: "generic_failure",
|
|
1588
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1589
|
+
sources: ["sdk/workspace-snapshot.ts"],
|
|
1590
|
+
emitting_commands: ["*"],
|
|
1591
|
+
canonical_code: "workspace_snapshot_storage_exhausted",
|
|
1592
|
+
aliases: [],
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
code: "wrong_item_type",
|
|
1596
|
+
meaning: "Wrong item type condition.",
|
|
1597
|
+
stability: "stable",
|
|
1598
|
+
exit_code: 2,
|
|
1599
|
+
class: "usage",
|
|
1600
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1601
|
+
sources: ["sdk/lifecycle/plan.ts"],
|
|
1602
|
+
emitting_commands: ["plan"],
|
|
1603
|
+
canonical_code: "wrong_item_type",
|
|
1604
|
+
aliases: [],
|
|
1605
|
+
},
|
|
1606
|
+
];
|
|
1607
|
+
//# sourceMappingURL=generated-error-code-catalog-part-2.js.map
|
|
1608
|
+
//# debugId=b129c0ca-3d57-551c-945c-300547b74ff5
|