@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,1585 @@
|
|
|
1
|
+
/** Generated partition 1 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]="1822a3b2-8164-56f7-96e3-d4c657f95fa6")}catch(e){}}();
|
|
4
|
+
export const PM_ERROR_CODE_CATALOG_PART_1 = [
|
|
5
|
+
{
|
|
6
|
+
code: "acceptance_criteria_mutation_conflict",
|
|
7
|
+
meaning: "Acceptance criteria mutation conflict condition.",
|
|
8
|
+
stability: "provisional",
|
|
9
|
+
exit_code: 2,
|
|
10
|
+
class: "usage",
|
|
11
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
12
|
+
sources: ["sdk/lifecycle/update.ts"],
|
|
13
|
+
emitting_commands: ["update", "update-many"],
|
|
14
|
+
canonical_code: "acceptance_criteria_mutation_conflict",
|
|
15
|
+
aliases: [],
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
code: "acceptance_criteria_remove_unmatched",
|
|
19
|
+
meaning: "Acceptance criteria remove unmatched condition.",
|
|
20
|
+
stability: "provisional",
|
|
21
|
+
exit_code: 3,
|
|
22
|
+
class: "not_found",
|
|
23
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
24
|
+
sources: ["sdk/lifecycle/update-many.ts", "sdk/lifecycle/update.ts"],
|
|
25
|
+
emitting_commands: ["update", "update-many"],
|
|
26
|
+
canonical_code: "acceptance_criteria_remove_unmatched",
|
|
27
|
+
aliases: [],
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
code: "acceptance_criteria_semicolon_forbidden",
|
|
31
|
+
meaning: "Acceptance criteria semicolon forbidden condition.",
|
|
32
|
+
stability: "stable",
|
|
33
|
+
exit_code: 2,
|
|
34
|
+
class: "usage",
|
|
35
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
36
|
+
sources: ["core/item/parse.ts"],
|
|
37
|
+
emitting_commands: ["*"],
|
|
38
|
+
canonical_code: "acceptance_criteria_semicolon_forbidden",
|
|
39
|
+
aliases: [],
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
code: "already_claimed_by",
|
|
43
|
+
meaning: "Already claimed by condition.",
|
|
44
|
+
stability: "stable",
|
|
45
|
+
exit_code: 4,
|
|
46
|
+
class: "conflict",
|
|
47
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
48
|
+
sources: ["sdk/lifecycle/claim.ts"],
|
|
49
|
+
emitting_commands: ["claim"],
|
|
50
|
+
canonical_code: "already_claimed_by",
|
|
51
|
+
aliases: [],
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
code: "ambiguous_list_all",
|
|
55
|
+
meaning: "Ambiguous list all condition.",
|
|
56
|
+
stability: "stable",
|
|
57
|
+
exit_code: 2,
|
|
58
|
+
class: "usage",
|
|
59
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
60
|
+
sources: ["cli/register-list-query.ts"],
|
|
61
|
+
emitting_commands: ["*"],
|
|
62
|
+
canonical_code: "ambiguous_list_all",
|
|
63
|
+
aliases: [],
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
code: "ambiguous_option_combination",
|
|
67
|
+
meaning: "Ambiguous option combination condition.",
|
|
68
|
+
stability: "stable",
|
|
69
|
+
exit_code: 2,
|
|
70
|
+
class: "usage",
|
|
71
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
72
|
+
sources: ["sdk/lifecycle/plan.ts"],
|
|
73
|
+
emitting_commands: ["plan"],
|
|
74
|
+
canonical_code: "ambiguous_option_combination",
|
|
75
|
+
aliases: [],
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
code: "annotation_alias_conflict",
|
|
79
|
+
meaning: "Annotation alias conflict condition.",
|
|
80
|
+
stability: "provisional",
|
|
81
|
+
exit_code: 2,
|
|
82
|
+
class: "usage",
|
|
83
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
84
|
+
sources: ["cli/register-annotations.ts"],
|
|
85
|
+
emitting_commands: ["*"],
|
|
86
|
+
canonical_code: "annotation_alias_conflict",
|
|
87
|
+
aliases: [],
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
code: "annotation_flag_like_value",
|
|
91
|
+
meaning: "Annotation flag like value 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: ["sdk/annotations.ts"],
|
|
97
|
+
emitting_commands: ["*"],
|
|
98
|
+
canonical_code: "annotation_flag_like_value",
|
|
99
|
+
aliases: [],
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
code: "annotation_message_without_text",
|
|
103
|
+
meaning: "Annotation message without text condition.",
|
|
104
|
+
stability: "stable",
|
|
105
|
+
exit_code: 2,
|
|
106
|
+
class: "usage",
|
|
107
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
108
|
+
sources: ["sdk/annotations.ts"],
|
|
109
|
+
emitting_commands: ["*"],
|
|
110
|
+
canonical_code: "annotation_message_without_text",
|
|
111
|
+
aliases: [],
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
code: "annotation_transposed_subcommand",
|
|
115
|
+
meaning: "Annotation transposed subcommand condition.",
|
|
116
|
+
stability: "provisional",
|
|
117
|
+
exit_code: 2,
|
|
118
|
+
class: "usage",
|
|
119
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
120
|
+
sources: ["cli/register-annotations.ts"],
|
|
121
|
+
emitting_commands: ["*"],
|
|
122
|
+
canonical_code: "annotation_transposed_subcommand",
|
|
123
|
+
aliases: [],
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
code: "append_empty_body",
|
|
127
|
+
meaning: "Append empty body condition.",
|
|
128
|
+
stability: "stable",
|
|
129
|
+
exit_code: 2,
|
|
130
|
+
class: "usage",
|
|
131
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
132
|
+
sources: ["sdk/lifecycle/append.ts"],
|
|
133
|
+
emitting_commands: ["append"],
|
|
134
|
+
canonical_code: "append_empty_body",
|
|
135
|
+
aliases: [],
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
code: "assurance_registry_invalid",
|
|
139
|
+
meaning: "Assurance registry invalid condition.",
|
|
140
|
+
stability: "provisional",
|
|
141
|
+
exit_code: 1,
|
|
142
|
+
class: "generic_failure",
|
|
143
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
144
|
+
sources: ["sdk/governance/assurance.ts"],
|
|
145
|
+
emitting_commands: ["*"],
|
|
146
|
+
canonical_code: "assurance_registry_invalid",
|
|
147
|
+
aliases: [],
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
code: "body_file_conflicts_with_body",
|
|
151
|
+
meaning: "Body file conflicts with body condition.",
|
|
152
|
+
stability: "stable",
|
|
153
|
+
exit_code: 2,
|
|
154
|
+
class: "usage",
|
|
155
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
156
|
+
sources: ["core/io/body-file.ts"],
|
|
157
|
+
emitting_commands: ["*"],
|
|
158
|
+
canonical_code: "body_file_conflicts_with_body",
|
|
159
|
+
aliases: [],
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
code: "body_file_missing_path",
|
|
163
|
+
meaning: "Body file missing path condition.",
|
|
164
|
+
stability: "stable",
|
|
165
|
+
exit_code: 2,
|
|
166
|
+
class: "usage",
|
|
167
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
168
|
+
sources: ["core/io/body-file.ts"],
|
|
169
|
+
emitting_commands: ["*"],
|
|
170
|
+
canonical_code: "body_file_missing_path",
|
|
171
|
+
aliases: [],
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
code: "body_file_unreadable",
|
|
175
|
+
meaning: "Body file unreadable condition.",
|
|
176
|
+
stability: "stable",
|
|
177
|
+
exit_code: 3,
|
|
178
|
+
class: "not_found",
|
|
179
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
180
|
+
sources: ["core/io/body-file.ts"],
|
|
181
|
+
emitting_commands: ["*"],
|
|
182
|
+
canonical_code: "body_file_unreadable",
|
|
183
|
+
aliases: [],
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
code: "bundle_integrity_torn_install",
|
|
187
|
+
meaning: "Bundle integrity torn install condition.",
|
|
188
|
+
stability: "stable",
|
|
189
|
+
exit_code: 1,
|
|
190
|
+
class: "generic_failure",
|
|
191
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
192
|
+
sources: ["cli/bundle-integrity.ts"],
|
|
193
|
+
emitting_commands: ["*"],
|
|
194
|
+
canonical_code: "bundle_integrity_torn_install",
|
|
195
|
+
aliases: [],
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
code: "capability_undeclared",
|
|
199
|
+
meaning: "Capability undeclared condition.",
|
|
200
|
+
stability: "stable",
|
|
201
|
+
exit_code: 1,
|
|
202
|
+
class: "generic_failure",
|
|
203
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
204
|
+
sources: ["sdk/compose.ts"],
|
|
205
|
+
emitting_commands: ["*"],
|
|
206
|
+
canonical_code: "capability_undeclared",
|
|
207
|
+
aliases: [],
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
code: "capability_unused",
|
|
211
|
+
meaning: "Capability unused condition.",
|
|
212
|
+
stability: "stable",
|
|
213
|
+
exit_code: 1,
|
|
214
|
+
class: "generic_failure",
|
|
215
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
216
|
+
sources: ["sdk/compose.ts"],
|
|
217
|
+
emitting_commands: ["*"],
|
|
218
|
+
canonical_code: "capability_unused",
|
|
219
|
+
aliases: [],
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
code: "child_projection_item_bound_exceeded",
|
|
223
|
+
meaning: "Child projection item bound exceeded condition.",
|
|
224
|
+
stability: "stable",
|
|
225
|
+
exit_code: 1,
|
|
226
|
+
class: "generic_failure",
|
|
227
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
228
|
+
sources: ["sdk/item-children.ts"],
|
|
229
|
+
emitting_commands: ["*"],
|
|
230
|
+
canonical_code: "child_projection_item_bound_exceeded",
|
|
231
|
+
aliases: [],
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
code: "close_reason_required",
|
|
235
|
+
meaning: "Close reason required condition.",
|
|
236
|
+
stability: "stable",
|
|
237
|
+
exit_code: 2,
|
|
238
|
+
class: "usage",
|
|
239
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
240
|
+
sources: ["sdk/lifecycle-policy.ts", "sdk/lifecycle/close-many.ts"],
|
|
241
|
+
emitting_commands: ["*", "close-many"],
|
|
242
|
+
canonical_code: "close_reason_required",
|
|
243
|
+
aliases: [],
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
code: "close_through_update",
|
|
247
|
+
meaning: "Close through update condition.",
|
|
248
|
+
stability: "stable",
|
|
249
|
+
exit_code: 1,
|
|
250
|
+
class: "generic_failure",
|
|
251
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
252
|
+
sources: ["core/telemetry/observability.ts"],
|
|
253
|
+
emitting_commands: ["*"],
|
|
254
|
+
canonical_code: "close_through_update",
|
|
255
|
+
aliases: [],
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
code: "close_validation_missing_fields",
|
|
259
|
+
meaning: "Close validation missing fields condition.",
|
|
260
|
+
stability: "stable",
|
|
261
|
+
exit_code: 2,
|
|
262
|
+
class: "usage",
|
|
263
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
264
|
+
sources: ["sdk/lifecycle/close.ts"],
|
|
265
|
+
emitting_commands: ["close"],
|
|
266
|
+
canonical_code: "close_validation_missing_fields",
|
|
267
|
+
aliases: [],
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
code: "collected_zero_items",
|
|
271
|
+
meaning: "Collected zero items condition.",
|
|
272
|
+
stability: "stable",
|
|
273
|
+
exit_code: 1,
|
|
274
|
+
class: "generic_failure",
|
|
275
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
276
|
+
sources: ["sdk/test/execution.ts"],
|
|
277
|
+
emitting_commands: ["*"],
|
|
278
|
+
canonical_code: "collected_zero_items",
|
|
279
|
+
aliases: [],
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
code: "collection_transposed_subcommand",
|
|
283
|
+
meaning: "Collection transposed subcommand condition.",
|
|
284
|
+
stability: "provisional",
|
|
285
|
+
exit_code: 2,
|
|
286
|
+
class: "usage",
|
|
287
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
288
|
+
sources: ["cli/error-guidance.ts"],
|
|
289
|
+
emitting_commands: ["*"],
|
|
290
|
+
canonical_code: "collection_transposed_subcommand",
|
|
291
|
+
aliases: [],
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
code: "command_failed",
|
|
295
|
+
meaning: "Command failed condition.",
|
|
296
|
+
stability: "stable",
|
|
297
|
+
exit_code: 1,
|
|
298
|
+
class: "generic_failure",
|
|
299
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
300
|
+
sources: ["cli/error-guidance.ts"],
|
|
301
|
+
emitting_commands: ["*"],
|
|
302
|
+
canonical_code: "command_failed",
|
|
303
|
+
aliases: [],
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
code: "command_namespace",
|
|
307
|
+
meaning: "Command namespace condition.",
|
|
308
|
+
stability: "stable",
|
|
309
|
+
exit_code: 2,
|
|
310
|
+
class: "usage",
|
|
311
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
312
|
+
sources: ["sdk/cli-contracts/runtime-contracts.ts"],
|
|
313
|
+
emitting_commands: ["*"],
|
|
314
|
+
canonical_code: "command_namespace",
|
|
315
|
+
aliases: [],
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
code: "command_override_conflict",
|
|
319
|
+
meaning: "Command override conflict condition.",
|
|
320
|
+
stability: "stable",
|
|
321
|
+
exit_code: 4,
|
|
322
|
+
class: "conflict",
|
|
323
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
324
|
+
sources: ["sdk/compose.ts"],
|
|
325
|
+
emitting_commands: ["*"],
|
|
326
|
+
canonical_code: "command_override_conflict",
|
|
327
|
+
aliases: [],
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
code: "config_duplicate",
|
|
331
|
+
meaning: "Config duplicate condition.",
|
|
332
|
+
stability: "stable",
|
|
333
|
+
exit_code: 1,
|
|
334
|
+
class: "generic_failure",
|
|
335
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
336
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
337
|
+
emitting_commands: ["*"],
|
|
338
|
+
canonical_code: "config_duplicate",
|
|
339
|
+
aliases: [],
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
code: "config_key_unknown",
|
|
343
|
+
meaning: "Config key unknown condition.",
|
|
344
|
+
stability: "stable",
|
|
345
|
+
exit_code: 2,
|
|
346
|
+
class: "usage",
|
|
347
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
348
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
349
|
+
emitting_commands: ["*"],
|
|
350
|
+
canonical_code: "config_key_unknown",
|
|
351
|
+
aliases: [],
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
code: "config_value_invalid",
|
|
355
|
+
meaning: "Config value invalid condition.",
|
|
356
|
+
stability: "stable",
|
|
357
|
+
exit_code: 2,
|
|
358
|
+
class: "usage",
|
|
359
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
360
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
361
|
+
emitting_commands: ["*"],
|
|
362
|
+
canonical_code: "config_value_invalid",
|
|
363
|
+
aliases: [],
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
code: "conflicting_lifecycle_owner",
|
|
367
|
+
meaning: "Conflicting lifecycle owner condition.",
|
|
368
|
+
stability: "stable",
|
|
369
|
+
exit_code: 2,
|
|
370
|
+
class: "usage",
|
|
371
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
372
|
+
sources: ["cli/register-operations.ts"],
|
|
373
|
+
emitting_commands: ["*"],
|
|
374
|
+
canonical_code: "conflicting_lifecycle_owner",
|
|
375
|
+
aliases: [],
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
code: "context_signal_store_invalid",
|
|
379
|
+
meaning: "Context signal store invalid condition.",
|
|
380
|
+
stability: "provisional",
|
|
381
|
+
exit_code: 2,
|
|
382
|
+
class: "usage",
|
|
383
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
384
|
+
sources: ["sdk/context-signal-store.ts"],
|
|
385
|
+
emitting_commands: ["*"],
|
|
386
|
+
canonical_code: "context_signal_store_invalid",
|
|
387
|
+
aliases: [],
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
code: "context_signal_store_stale",
|
|
391
|
+
meaning: "Context signal store stale condition.",
|
|
392
|
+
stability: "provisional",
|
|
393
|
+
exit_code: 1,
|
|
394
|
+
class: "generic_failure",
|
|
395
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
396
|
+
sources: ["sdk/context-signal-store.ts"],
|
|
397
|
+
emitting_commands: ["*"],
|
|
398
|
+
canonical_code: "context_signal_store_stale",
|
|
399
|
+
aliases: [],
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
code: "context_signal_store_write_failed",
|
|
403
|
+
meaning: "Context signal store write failed condition.",
|
|
404
|
+
stability: "provisional",
|
|
405
|
+
exit_code: 1,
|
|
406
|
+
class: "generic_failure",
|
|
407
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
408
|
+
sources: ["sdk/context-signal-store.ts"],
|
|
409
|
+
emitting_commands: ["*"],
|
|
410
|
+
canonical_code: "context_signal_store_write_failed",
|
|
411
|
+
aliases: [],
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
code: "context_takes_no_item_argument",
|
|
415
|
+
meaning: "Context takes no item argument condition.",
|
|
416
|
+
stability: "stable",
|
|
417
|
+
exit_code: 1,
|
|
418
|
+
class: "generic_failure",
|
|
419
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
420
|
+
sources: ["cli/error-guidance.ts"],
|
|
421
|
+
emitting_commands: ["*"],
|
|
422
|
+
canonical_code: "context_takes_no_item_argument",
|
|
423
|
+
aliases: [],
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
code: "core_item_field_requires_dedicated_flag",
|
|
427
|
+
meaning: "Core item field requires dedicated flag condition.",
|
|
428
|
+
stability: "stable",
|
|
429
|
+
exit_code: 2,
|
|
430
|
+
class: "usage",
|
|
431
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
432
|
+
sources: ["core/extensions/item-fields.ts"],
|
|
433
|
+
emitting_commands: ["*"],
|
|
434
|
+
canonical_code: "core_item_field_requires_dedicated_flag",
|
|
435
|
+
aliases: [],
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
code: "create_positional_type_without_title",
|
|
439
|
+
meaning: "Create positional type without title condition.",
|
|
440
|
+
stability: "stable",
|
|
441
|
+
exit_code: 2,
|
|
442
|
+
class: "usage",
|
|
443
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
444
|
+
sources: ["cli/register-mutation.ts"],
|
|
445
|
+
emitting_commands: ["*"],
|
|
446
|
+
canonical_code: "create_positional_type_without_title",
|
|
447
|
+
aliases: [],
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
code: "dependency_edge_not_allowed",
|
|
451
|
+
meaning: "Dependency edge not allowed condition.",
|
|
452
|
+
stability: "stable",
|
|
453
|
+
exit_code: 2,
|
|
454
|
+
class: "usage",
|
|
455
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
456
|
+
sources: ["sdk/dependency-flag-validation.ts"],
|
|
457
|
+
emitting_commands: ["*"],
|
|
458
|
+
canonical_code: "dependency_edge_not_allowed",
|
|
459
|
+
aliases: [],
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
code: "dependency_target_not_found",
|
|
463
|
+
meaning: "Dependency target not found condition.",
|
|
464
|
+
stability: "provisional",
|
|
465
|
+
exit_code: 3,
|
|
466
|
+
class: "not_found",
|
|
467
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
468
|
+
sources: ["sdk/dependency-flag-validation.ts"],
|
|
469
|
+
emitting_commands: ["*"],
|
|
470
|
+
canonical_code: "dependency_target_not_found",
|
|
471
|
+
aliases: [],
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
code: "duplicate_command",
|
|
475
|
+
meaning: "Duplicate command condition.",
|
|
476
|
+
stability: "stable",
|
|
477
|
+
exit_code: 1,
|
|
478
|
+
class: "generic_failure",
|
|
479
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
480
|
+
sources: ["sdk/compose.ts"],
|
|
481
|
+
emitting_commands: ["*"],
|
|
482
|
+
canonical_code: "duplicate_command",
|
|
483
|
+
aliases: [],
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
code: "duplicate_edge",
|
|
487
|
+
meaning: "Duplicate edge condition.",
|
|
488
|
+
stability: "stable",
|
|
489
|
+
exit_code: 1,
|
|
490
|
+
class: "generic_failure",
|
|
491
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
492
|
+
sources: ["sdk/graph/remediation.ts"],
|
|
493
|
+
emitting_commands: ["*"],
|
|
494
|
+
canonical_code: "duplicate_edge",
|
|
495
|
+
aliases: [],
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
code: "duplicate_sweep_cost_limit",
|
|
499
|
+
meaning: "Duplicate sweep cost limit condition.",
|
|
500
|
+
stability: "stable",
|
|
501
|
+
exit_code: 4,
|
|
502
|
+
class: "conflict",
|
|
503
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
504
|
+
sources: ["sdk/similarity.ts"],
|
|
505
|
+
emitting_commands: ["*"],
|
|
506
|
+
canonical_code: "duplicate_sweep_cost_limit",
|
|
507
|
+
aliases: [],
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
code: "duplicate_target_circular",
|
|
511
|
+
meaning: "Duplicate target circular condition.",
|
|
512
|
+
stability: "stable",
|
|
513
|
+
exit_code: 2,
|
|
514
|
+
class: "usage",
|
|
515
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
516
|
+
sources: ["sdk/lifecycle/close.ts"],
|
|
517
|
+
emitting_commands: ["close"],
|
|
518
|
+
canonical_code: "duplicate_target_circular",
|
|
519
|
+
aliases: [],
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
code: "duplicate_target_is_duplicate",
|
|
523
|
+
meaning: "Duplicate target is duplicate condition.",
|
|
524
|
+
stability: "stable",
|
|
525
|
+
exit_code: 2,
|
|
526
|
+
class: "usage",
|
|
527
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
528
|
+
sources: ["sdk/lifecycle/close.ts"],
|
|
529
|
+
emitting_commands: ["close"],
|
|
530
|
+
canonical_code: "duplicate_target_is_duplicate",
|
|
531
|
+
aliases: [],
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
code: "duplicate_target_missing",
|
|
535
|
+
meaning: "Duplicate target missing condition.",
|
|
536
|
+
stability: "stable",
|
|
537
|
+
exit_code: 2,
|
|
538
|
+
class: "usage",
|
|
539
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
540
|
+
sources: ["sdk/lifecycle/close.ts"],
|
|
541
|
+
emitting_commands: ["close"],
|
|
542
|
+
canonical_code: "duplicate_target_missing",
|
|
543
|
+
aliases: [],
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
code: "duplicate_target_self",
|
|
547
|
+
meaning: "Duplicate target self condition.",
|
|
548
|
+
stability: "stable",
|
|
549
|
+
exit_code: 2,
|
|
550
|
+
class: "usage",
|
|
551
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
552
|
+
sources: ["sdk/lifecycle/close.ts"],
|
|
553
|
+
emitting_commands: ["close"],
|
|
554
|
+
canonical_code: "duplicate_target_self",
|
|
555
|
+
aliases: [],
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
code: "empty_surface",
|
|
559
|
+
meaning: "Empty surface condition.",
|
|
560
|
+
stability: "stable",
|
|
561
|
+
exit_code: 1,
|
|
562
|
+
class: "generic_failure",
|
|
563
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
564
|
+
sources: ["sdk/compose.ts"],
|
|
565
|
+
emitting_commands: ["*"],
|
|
566
|
+
canonical_code: "empty_surface",
|
|
567
|
+
aliases: [],
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
code: "event_cursor_query_mismatch",
|
|
571
|
+
meaning: "Event cursor query mismatch condition.",
|
|
572
|
+
stability: "stable",
|
|
573
|
+
exit_code: 2,
|
|
574
|
+
class: "usage",
|
|
575
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
576
|
+
sources: ["sdk/mutation-events.ts"],
|
|
577
|
+
emitting_commands: ["*"],
|
|
578
|
+
canonical_code: "event_cursor_query_mismatch",
|
|
579
|
+
aliases: [],
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
code: "event_index_unavailable",
|
|
583
|
+
meaning: "Event index unavailable condition.",
|
|
584
|
+
stability: "stable",
|
|
585
|
+
exit_code: 1,
|
|
586
|
+
class: "generic_failure",
|
|
587
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
588
|
+
sources: ["sdk/mutation-events.ts"],
|
|
589
|
+
emitting_commands: ["*"],
|
|
590
|
+
canonical_code: "event_index_unavailable",
|
|
591
|
+
aliases: [],
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
code: "extension_command_activation_failed",
|
|
595
|
+
meaning: "Extension command activation failed condition.",
|
|
596
|
+
stability: "stable",
|
|
597
|
+
exit_code: 1,
|
|
598
|
+
class: "generic_failure",
|
|
599
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
600
|
+
sources: ["cli/commander-usage.ts"],
|
|
601
|
+
emitting_commands: ["*"],
|
|
602
|
+
canonical_code: "extension_command_activation_failed",
|
|
603
|
+
aliases: [],
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
code: "extension_dependency_name_unsafe",
|
|
607
|
+
meaning: "Extension dependency name unsafe condition.",
|
|
608
|
+
stability: "stable",
|
|
609
|
+
exit_code: 2,
|
|
610
|
+
class: "usage",
|
|
611
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
612
|
+
sources: ["sdk/extension/install-sources.ts"],
|
|
613
|
+
emitting_commands: ["*"],
|
|
614
|
+
canonical_code: "extension_dependency_name_unsafe",
|
|
615
|
+
aliases: [],
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
code: "extension_dependency_spec_invalid",
|
|
619
|
+
meaning: "Extension dependency spec invalid condition.",
|
|
620
|
+
stability: "stable",
|
|
621
|
+
exit_code: 2,
|
|
622
|
+
class: "usage",
|
|
623
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
624
|
+
sources: ["sdk/extension/install-sources.ts"],
|
|
625
|
+
emitting_commands: ["*"],
|
|
626
|
+
canonical_code: "extension_dependency_spec_invalid",
|
|
627
|
+
aliases: [],
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
code: "extension_dependency_version_unsafe",
|
|
631
|
+
meaning: "Extension dependency version unsafe condition.",
|
|
632
|
+
stability: "stable",
|
|
633
|
+
exit_code: 2,
|
|
634
|
+
class: "usage",
|
|
635
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
636
|
+
sources: ["sdk/extension/install-sources.ts"],
|
|
637
|
+
emitting_commands: ["*"],
|
|
638
|
+
canonical_code: "extension_dependency_version_unsafe",
|
|
639
|
+
aliases: [],
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
code: "extension_install_soft_failed",
|
|
643
|
+
meaning: "Extension install soft failed condition.",
|
|
644
|
+
stability: "stable",
|
|
645
|
+
exit_code: 1,
|
|
646
|
+
class: "generic_failure",
|
|
647
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
648
|
+
sources: ["cli/register-setup.ts"],
|
|
649
|
+
emitting_commands: ["*"],
|
|
650
|
+
canonical_code: "extension_install_soft_failed",
|
|
651
|
+
aliases: [],
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
code: "extension_install_source_contains_destination",
|
|
655
|
+
meaning: "Extension install source contains destination condition.",
|
|
656
|
+
stability: "stable",
|
|
657
|
+
exit_code: 2,
|
|
658
|
+
class: "usage",
|
|
659
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
660
|
+
sources: ["sdk/extension/install-runtime.ts"],
|
|
661
|
+
emitting_commands: ["*"],
|
|
662
|
+
canonical_code: "extension_install_source_contains_destination",
|
|
663
|
+
aliases: [],
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
code: "extension_item_field_reserved",
|
|
667
|
+
meaning: "Extension item field reserved condition.",
|
|
668
|
+
stability: "stable",
|
|
669
|
+
exit_code: 2,
|
|
670
|
+
class: "usage",
|
|
671
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
672
|
+
sources: ["core/extensions/item-fields.ts"],
|
|
673
|
+
emitting_commands: ["*"],
|
|
674
|
+
canonical_code: "extension_item_field_reserved",
|
|
675
|
+
aliases: [],
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
code: "extension_item_field_type_conflict",
|
|
679
|
+
meaning: "Extension item field type conflict condition.",
|
|
680
|
+
stability: "stable",
|
|
681
|
+
exit_code: 2,
|
|
682
|
+
class: "usage",
|
|
683
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
684
|
+
sources: ["core/extensions/item-fields.ts"],
|
|
685
|
+
emitting_commands: ["*"],
|
|
686
|
+
canonical_code: "extension_item_field_type_conflict",
|
|
687
|
+
aliases: [],
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
code: "extension_item_field_unknown",
|
|
691
|
+
meaning: "Extension item field unknown condition.",
|
|
692
|
+
stability: "stable",
|
|
693
|
+
exit_code: 2,
|
|
694
|
+
class: "usage",
|
|
695
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
696
|
+
sources: ["core/extensions/item-fields.ts"],
|
|
697
|
+
emitting_commands: ["*"],
|
|
698
|
+
canonical_code: "extension_item_field_unknown",
|
|
699
|
+
aliases: [],
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
code: "extension_mutation_guard_failed",
|
|
703
|
+
meaning: "Extension mutation guard failed condition.",
|
|
704
|
+
stability: "stable",
|
|
705
|
+
exit_code: 4,
|
|
706
|
+
class: "conflict",
|
|
707
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
708
|
+
sources: ["core/extensions/extension-hook-runtime.ts"],
|
|
709
|
+
emitting_commands: ["*"],
|
|
710
|
+
canonical_code: "extension_mutation_guard_failed",
|
|
711
|
+
aliases: [],
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
code: "extension_mutation_guard_invalid_decision",
|
|
715
|
+
meaning: "Extension mutation guard invalid decision condition.",
|
|
716
|
+
stability: "stable",
|
|
717
|
+
exit_code: 4,
|
|
718
|
+
class: "conflict",
|
|
719
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
720
|
+
sources: ["core/extensions/extension-hook-runtime.ts"],
|
|
721
|
+
emitting_commands: ["*"],
|
|
722
|
+
canonical_code: "extension_mutation_guard_invalid_decision",
|
|
723
|
+
aliases: [],
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
code: "extension_mutation_guard_invalid_denial",
|
|
727
|
+
meaning: "Extension mutation guard invalid denial condition.",
|
|
728
|
+
stability: "stable",
|
|
729
|
+
exit_code: 4,
|
|
730
|
+
class: "conflict",
|
|
731
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
732
|
+
sources: ["core/extensions/extension-hook-runtime.ts"],
|
|
733
|
+
emitting_commands: ["*"],
|
|
734
|
+
canonical_code: "extension_mutation_guard_invalid_denial",
|
|
735
|
+
aliases: [],
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
code: "extension_mutation_guard_timed_out",
|
|
739
|
+
meaning: "Extension mutation guard timed out condition.",
|
|
740
|
+
stability: "stable",
|
|
741
|
+
exit_code: 4,
|
|
742
|
+
class: "conflict",
|
|
743
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
744
|
+
sources: ["core/extensions/extension-hook-runtime.ts"],
|
|
745
|
+
emitting_commands: ["*"],
|
|
746
|
+
canonical_code: "extension_mutation_guard_timed_out",
|
|
747
|
+
aliases: [],
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
code: "extension_update_health_partial_coverage",
|
|
751
|
+
meaning: "Extension update health partial coverage condition.",
|
|
752
|
+
stability: "stable",
|
|
753
|
+
exit_code: 1,
|
|
754
|
+
class: "generic_failure",
|
|
755
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
756
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
757
|
+
emitting_commands: ["*"],
|
|
758
|
+
canonical_code: "extension_update_health_partial_coverage",
|
|
759
|
+
aliases: [],
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
code: "field_duplicate",
|
|
763
|
+
meaning: "Field duplicate condition.",
|
|
764
|
+
stability: "stable",
|
|
765
|
+
exit_code: 1,
|
|
766
|
+
class: "generic_failure",
|
|
767
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
768
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
769
|
+
emitting_commands: ["*"],
|
|
770
|
+
canonical_code: "field_duplicate",
|
|
771
|
+
aliases: [],
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
code: "field_invalid",
|
|
775
|
+
meaning: "Field invalid condition.",
|
|
776
|
+
stability: "stable",
|
|
777
|
+
exit_code: 2,
|
|
778
|
+
class: "usage",
|
|
779
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
780
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
781
|
+
emitting_commands: ["*"],
|
|
782
|
+
canonical_code: "field_invalid",
|
|
783
|
+
aliases: [],
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
code: "field_mcp_input_collision",
|
|
787
|
+
meaning: "Field mcp input collision condition.",
|
|
788
|
+
stability: "stable",
|
|
789
|
+
exit_code: 1,
|
|
790
|
+
class: "generic_failure",
|
|
791
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
792
|
+
sources: ["core/profile/profile-lint.ts"],
|
|
793
|
+
emitting_commands: ["*"],
|
|
794
|
+
canonical_code: "field_mcp_input_collision",
|
|
795
|
+
aliases: [],
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
code: "github_source_entry_unbuilt",
|
|
799
|
+
meaning: "Github source entry unbuilt condition.",
|
|
800
|
+
stability: "stable",
|
|
801
|
+
exit_code: 2,
|
|
802
|
+
class: "usage",
|
|
803
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
804
|
+
sources: ["sdk/extension/shared.ts"],
|
|
805
|
+
emitting_commands: ["*"],
|
|
806
|
+
canonical_code: "github_source_entry_unbuilt",
|
|
807
|
+
aliases: [],
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
code: "history_author_acknowledge_required_values_missing",
|
|
811
|
+
meaning: "History author acknowledge required values missing condition.",
|
|
812
|
+
stability: "provisional",
|
|
813
|
+
exit_code: 2,
|
|
814
|
+
class: "usage",
|
|
815
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
816
|
+
sources: ["sdk/author-attribution.ts"],
|
|
817
|
+
emitting_commands: ["*"],
|
|
818
|
+
canonical_code: "history_author_acknowledge_required_values_missing",
|
|
819
|
+
aliases: [],
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
code: "history_author_acknowledge_selector_conflict",
|
|
823
|
+
meaning: "History author acknowledge selector conflict condition.",
|
|
824
|
+
stability: "provisional",
|
|
825
|
+
exit_code: 2,
|
|
826
|
+
class: "usage",
|
|
827
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
828
|
+
sources: ["sdk/author-attribution.ts"],
|
|
829
|
+
emitting_commands: ["*"],
|
|
830
|
+
canonical_code: "history_author_acknowledge_selector_conflict",
|
|
831
|
+
aliases: [],
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
code: "history_author_acknowledge_selector_required",
|
|
835
|
+
meaning: "History author acknowledge selector required condition.",
|
|
836
|
+
stability: "stable",
|
|
837
|
+
exit_code: 2,
|
|
838
|
+
class: "usage",
|
|
839
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
840
|
+
sources: ["sdk/author-attribution.ts"],
|
|
841
|
+
emitting_commands: ["*"],
|
|
842
|
+
canonical_code: "history_author_acknowledge_selector_required",
|
|
843
|
+
aliases: [],
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
code: "history_author_acknowledge_target_not_actionable",
|
|
847
|
+
meaning: "History author acknowledge target not actionable condition.",
|
|
848
|
+
stability: "provisional",
|
|
849
|
+
exit_code: 2,
|
|
850
|
+
class: "usage",
|
|
851
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
852
|
+
sources: ["sdk/author-attribution.ts"],
|
|
853
|
+
emitting_commands: ["*"],
|
|
854
|
+
canonical_code: "history_author_acknowledge_target_not_actionable",
|
|
855
|
+
aliases: [],
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
code: "history_author_acknowledge_target_unreadable",
|
|
859
|
+
meaning: "History author acknowledge target unreadable condition.",
|
|
860
|
+
stability: "provisional",
|
|
861
|
+
exit_code: 2,
|
|
862
|
+
class: "usage",
|
|
863
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
864
|
+
sources: ["sdk/author-attribution.ts"],
|
|
865
|
+
emitting_commands: ["*"],
|
|
866
|
+
canonical_code: "history_author_acknowledge_target_unreadable",
|
|
867
|
+
aliases: [],
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
code: "history_drift_chain_mismatch",
|
|
871
|
+
meaning: "History drift chain mismatch condition.",
|
|
872
|
+
stability: "stable",
|
|
873
|
+
exit_code: 1,
|
|
874
|
+
class: "generic_failure",
|
|
875
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
876
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
877
|
+
emitting_commands: ["*"],
|
|
878
|
+
canonical_code: "history_drift_chain_mismatch",
|
|
879
|
+
aliases: ["validate_history_drift_chain_mismatches"],
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
code: "history_drift_hash_mismatch",
|
|
883
|
+
meaning: "History drift hash mismatch condition.",
|
|
884
|
+
stability: "stable",
|
|
885
|
+
exit_code: 1,
|
|
886
|
+
class: "generic_failure",
|
|
887
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
888
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
889
|
+
emitting_commands: ["*"],
|
|
890
|
+
canonical_code: "history_drift_hash_mismatch",
|
|
891
|
+
aliases: ["validate_history_drift_hash_mismatches"],
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
code: "history_drift_missing_stream",
|
|
895
|
+
meaning: "History drift missing stream condition.",
|
|
896
|
+
stability: "stable",
|
|
897
|
+
exit_code: 1,
|
|
898
|
+
class: "generic_failure",
|
|
899
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
900
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
901
|
+
emitting_commands: ["*"],
|
|
902
|
+
canonical_code: "history_drift_missing_stream",
|
|
903
|
+
aliases: ["validate_history_drift_missing_streams"],
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
code: "history_drift_unreadable_stream",
|
|
907
|
+
meaning: "History drift unreadable stream condition.",
|
|
908
|
+
stability: "stable",
|
|
909
|
+
exit_code: 1,
|
|
910
|
+
class: "generic_failure",
|
|
911
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
912
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
913
|
+
emitting_commands: ["*"],
|
|
914
|
+
canonical_code: "history_drift_unreadable_stream",
|
|
915
|
+
aliases: ["validate_history_drift_unreadable_streams"],
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
code: "history_merge_conflict_markers_detected",
|
|
919
|
+
meaning: "History merge conflict markers detected condition.",
|
|
920
|
+
stability: "stable",
|
|
921
|
+
exit_code: 1,
|
|
922
|
+
class: "generic_failure",
|
|
923
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
924
|
+
sources: ["core/history/read.ts"],
|
|
925
|
+
emitting_commands: ["*"],
|
|
926
|
+
canonical_code: "merge_conflict_markers_detected",
|
|
927
|
+
aliases: [],
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
code: "history_stream_over_compact_threshold",
|
|
931
|
+
meaning: "History stream over compact threshold condition.",
|
|
932
|
+
stability: "stable",
|
|
933
|
+
exit_code: 1,
|
|
934
|
+
class: "generic_failure",
|
|
935
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
936
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
937
|
+
emitting_commands: ["*"],
|
|
938
|
+
canonical_code: "history_stream_over_compact_threshold",
|
|
939
|
+
aliases: [],
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
code: "history_target_out_of_range",
|
|
943
|
+
meaning: "History target out of range condition.",
|
|
944
|
+
stability: "stable",
|
|
945
|
+
exit_code: 1,
|
|
946
|
+
class: "generic_failure",
|
|
947
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
948
|
+
sources: ["core/history/projection.ts"],
|
|
949
|
+
emitting_commands: ["*"],
|
|
950
|
+
canonical_code: "history_target_out_of_range",
|
|
951
|
+
aliases: [],
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
code: "history_unknown_author_events",
|
|
955
|
+
meaning: "History unknown author events condition.",
|
|
956
|
+
stability: "stable",
|
|
957
|
+
exit_code: 2,
|
|
958
|
+
class: "usage",
|
|
959
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
960
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
961
|
+
emitting_commands: ["*"],
|
|
962
|
+
canonical_code: "history_unknown_author_events",
|
|
963
|
+
aliases: ["validate_history_unknown_author_events"],
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
code: "host_environment_capacity_fault",
|
|
967
|
+
meaning: "Host environment capacity fault condition.",
|
|
968
|
+
stability: "provisional",
|
|
969
|
+
exit_code: 1,
|
|
970
|
+
class: "generic_failure",
|
|
971
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
972
|
+
sources: ["sdk/environment/host-environment-errors.ts"],
|
|
973
|
+
emitting_commands: ["*"],
|
|
974
|
+
canonical_code: "host_environment_capacity_fault",
|
|
975
|
+
aliases: [],
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
code: "host_environment_operation_invalid",
|
|
979
|
+
meaning: "Host environment operation invalid condition.",
|
|
980
|
+
stability: "provisional",
|
|
981
|
+
exit_code: 2,
|
|
982
|
+
class: "usage",
|
|
983
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
984
|
+
sources: ["sdk/environment/host-environment-errors.ts"],
|
|
985
|
+
emitting_commands: ["*"],
|
|
986
|
+
canonical_code: "host_environment_operation_invalid",
|
|
987
|
+
aliases: [],
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
code: "host_environment_permission_fault",
|
|
991
|
+
meaning: "Host environment permission fault condition.",
|
|
992
|
+
stability: "provisional",
|
|
993
|
+
exit_code: 1,
|
|
994
|
+
class: "generic_failure",
|
|
995
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
996
|
+
sources: ["sdk/environment/host-environment-errors.ts"],
|
|
997
|
+
emitting_commands: ["*"],
|
|
998
|
+
canonical_code: "host_environment_permission_fault",
|
|
999
|
+
aliases: [],
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
code: "host_environment_resource_fault",
|
|
1003
|
+
meaning: "Host environment resource fault condition.",
|
|
1004
|
+
stability: "provisional",
|
|
1005
|
+
exit_code: 1,
|
|
1006
|
+
class: "generic_failure",
|
|
1007
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1008
|
+
sources: ["sdk/environment/host-environment-errors.ts"],
|
|
1009
|
+
emitting_commands: ["*"],
|
|
1010
|
+
canonical_code: "host_environment_resource_fault",
|
|
1011
|
+
aliases: [],
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
code: "improvement_metric_contract_conflict",
|
|
1015
|
+
meaning: "Improvement metric contract conflict condition.",
|
|
1016
|
+
stability: "provisional",
|
|
1017
|
+
exit_code: 4,
|
|
1018
|
+
class: "conflict",
|
|
1019
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1020
|
+
sources: ["sdk/improvement-ledger.ts"],
|
|
1021
|
+
emitting_commands: ["*"],
|
|
1022
|
+
canonical_code: "improvement_metric_contract_conflict",
|
|
1023
|
+
aliases: [],
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
code: "improvement_observation_conflict",
|
|
1027
|
+
meaning: "Improvement observation conflict condition.",
|
|
1028
|
+
stability: "provisional",
|
|
1029
|
+
exit_code: 4,
|
|
1030
|
+
class: "conflict",
|
|
1031
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1032
|
+
sources: ["sdk/improvement-ledger.ts"],
|
|
1033
|
+
emitting_commands: ["*"],
|
|
1034
|
+
canonical_code: "improvement_observation_conflict",
|
|
1035
|
+
aliases: [],
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
code: "init_existing_settings_requires_force",
|
|
1039
|
+
meaning: "Init existing settings requires force condition.",
|
|
1040
|
+
stability: "stable",
|
|
1041
|
+
exit_code: 2,
|
|
1042
|
+
class: "usage",
|
|
1043
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1044
|
+
sources: ["sdk/init.ts"],
|
|
1045
|
+
emitting_commands: ["*"],
|
|
1046
|
+
canonical_code: "init_existing_settings_requires_force",
|
|
1047
|
+
aliases: [],
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
code: "init_gitignore_unwritable",
|
|
1051
|
+
meaning: "Init gitignore unwritable condition.",
|
|
1052
|
+
stability: "stable",
|
|
1053
|
+
exit_code: 1,
|
|
1054
|
+
class: "generic_failure",
|
|
1055
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1056
|
+
sources: ["sdk/workspace.ts"],
|
|
1057
|
+
emitting_commands: ["*"],
|
|
1058
|
+
canonical_code: "init_gitignore_unwritable",
|
|
1059
|
+
aliases: [],
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
code: "init_id_prefix_conflict",
|
|
1063
|
+
meaning: "Init id prefix conflict condition.",
|
|
1064
|
+
stability: "stable",
|
|
1065
|
+
exit_code: 2,
|
|
1066
|
+
class: "usage",
|
|
1067
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1068
|
+
sources: ["sdk/init.ts"],
|
|
1069
|
+
emitting_commands: ["*"],
|
|
1070
|
+
canonical_code: "init_id_prefix_conflict",
|
|
1071
|
+
aliases: [],
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
code: "init_id_prefix_path_like",
|
|
1075
|
+
meaning: "Init id prefix path like condition.",
|
|
1076
|
+
stability: "stable",
|
|
1077
|
+
exit_code: 2,
|
|
1078
|
+
class: "usage",
|
|
1079
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1080
|
+
sources: ["sdk/init.ts"],
|
|
1081
|
+
emitting_commands: ["*"],
|
|
1082
|
+
canonical_code: "init_id_prefix_path_like",
|
|
1083
|
+
aliases: [],
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
code: "integrity_history_conflict_marker",
|
|
1087
|
+
meaning: "Integrity history conflict marker condition.",
|
|
1088
|
+
stability: "stable",
|
|
1089
|
+
exit_code: 4,
|
|
1090
|
+
class: "conflict",
|
|
1091
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1092
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1093
|
+
emitting_commands: ["*"],
|
|
1094
|
+
canonical_code: "integrity_history_conflict_marker",
|
|
1095
|
+
aliases: ["validate_storage_history_conflict_markers"],
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
code: "integrity_history_invalid_json",
|
|
1099
|
+
meaning: "Integrity history invalid json condition.",
|
|
1100
|
+
stability: "stable",
|
|
1101
|
+
exit_code: 2,
|
|
1102
|
+
class: "usage",
|
|
1103
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1104
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1105
|
+
emitting_commands: ["*"],
|
|
1106
|
+
canonical_code: "integrity_history_invalid_json",
|
|
1107
|
+
aliases: [],
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
code: "integrity_history_unreadable",
|
|
1111
|
+
meaning: "Integrity history unreadable condition.",
|
|
1112
|
+
stability: "stable",
|
|
1113
|
+
exit_code: 1,
|
|
1114
|
+
class: "generic_failure",
|
|
1115
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1116
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1117
|
+
emitting_commands: ["*"],
|
|
1118
|
+
canonical_code: "integrity_history_unreadable",
|
|
1119
|
+
aliases: [],
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
code: "integrity_item_ahead_format_version",
|
|
1123
|
+
meaning: "Integrity item ahead format version condition.",
|
|
1124
|
+
stability: "stable",
|
|
1125
|
+
exit_code: 1,
|
|
1126
|
+
class: "generic_failure",
|
|
1127
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1128
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1129
|
+
emitting_commands: ["*"],
|
|
1130
|
+
canonical_code: "integrity_item_ahead_format_version",
|
|
1131
|
+
aliases: ["validate_format_version_ahead_items"],
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
code: "integrity_item_conflict_marker",
|
|
1135
|
+
meaning: "Integrity item conflict marker condition.",
|
|
1136
|
+
stability: "stable",
|
|
1137
|
+
exit_code: 4,
|
|
1138
|
+
class: "conflict",
|
|
1139
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1140
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1141
|
+
emitting_commands: ["*"],
|
|
1142
|
+
canonical_code: "integrity_item_conflict_marker",
|
|
1143
|
+
aliases: [],
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
code: "integrity_item_outdated_format_version",
|
|
1147
|
+
meaning: "Integrity item outdated format version condition.",
|
|
1148
|
+
stability: "stable",
|
|
1149
|
+
exit_code: 1,
|
|
1150
|
+
class: "generic_failure",
|
|
1151
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1152
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1153
|
+
emitting_commands: ["*"],
|
|
1154
|
+
canonical_code: "integrity_item_outdated_format_version",
|
|
1155
|
+
aliases: ["validate_format_version_outdated_items"],
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
code: "integrity_item_parse_failed",
|
|
1159
|
+
meaning: "Integrity item parse failed condition.",
|
|
1160
|
+
stability: "stable",
|
|
1161
|
+
exit_code: 1,
|
|
1162
|
+
class: "generic_failure",
|
|
1163
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1164
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1165
|
+
emitting_commands: ["*"],
|
|
1166
|
+
canonical_code: "integrity_item_parse_failed",
|
|
1167
|
+
aliases: [],
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
code: "integrity_item_unreadable",
|
|
1171
|
+
meaning: "Integrity item unreadable condition.",
|
|
1172
|
+
stability: "stable",
|
|
1173
|
+
exit_code: 1,
|
|
1174
|
+
class: "generic_failure",
|
|
1175
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1176
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1177
|
+
emitting_commands: ["*"],
|
|
1178
|
+
canonical_code: "integrity_item_unreadable",
|
|
1179
|
+
aliases: [],
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
code: "invalid_argument_value",
|
|
1183
|
+
meaning: "Invalid argument value condition.",
|
|
1184
|
+
stability: "stable",
|
|
1185
|
+
exit_code: 2,
|
|
1186
|
+
class: "usage",
|
|
1187
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1188
|
+
sources: [
|
|
1189
|
+
"cli/error-guidance.ts",
|
|
1190
|
+
"core/telemetry/observability.ts",
|
|
1191
|
+
"sdk/context-intent-contracts.ts",
|
|
1192
|
+
"sdk/governance/assurance-mutation-error.ts",
|
|
1193
|
+
"sdk/lifecycle/create.ts",
|
|
1194
|
+
],
|
|
1195
|
+
emitting_commands: ["*", "create"],
|
|
1196
|
+
canonical_code: "invalid_argument_value",
|
|
1197
|
+
aliases: [],
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
code: "invalid_command_usage",
|
|
1201
|
+
meaning: "Invalid command usage condition.",
|
|
1202
|
+
stability: "stable",
|
|
1203
|
+
exit_code: 2,
|
|
1204
|
+
class: "usage",
|
|
1205
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1206
|
+
sources: ["cli/error-guidance.ts", "core/telemetry/observability.ts"],
|
|
1207
|
+
emitting_commands: ["*"],
|
|
1208
|
+
canonical_code: "invalid_command_usage",
|
|
1209
|
+
aliases: [],
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
code: "invalid_event_cursor",
|
|
1213
|
+
meaning: "Invalid event cursor condition.",
|
|
1214
|
+
stability: "stable",
|
|
1215
|
+
exit_code: 2,
|
|
1216
|
+
class: "usage",
|
|
1217
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1218
|
+
sources: ["sdk/mutation-events.ts"],
|
|
1219
|
+
emitting_commands: ["*"],
|
|
1220
|
+
canonical_code: "invalid_event_cursor",
|
|
1221
|
+
aliases: [],
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
code: "invalid_event_follow_interval",
|
|
1225
|
+
meaning: "Invalid event follow interval condition.",
|
|
1226
|
+
stability: "stable",
|
|
1227
|
+
exit_code: 2,
|
|
1228
|
+
class: "usage",
|
|
1229
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1230
|
+
sources: ["sdk/mutation-events.ts"],
|
|
1231
|
+
emitting_commands: ["*"],
|
|
1232
|
+
canonical_code: "invalid_event_follow_interval",
|
|
1233
|
+
aliases: [],
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
code: "invalid_event_limit",
|
|
1237
|
+
meaning: "Invalid event limit condition.",
|
|
1238
|
+
stability: "stable",
|
|
1239
|
+
exit_code: 2,
|
|
1240
|
+
class: "usage",
|
|
1241
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1242
|
+
sources: ["sdk/mutation-events.ts"],
|
|
1243
|
+
emitting_commands: ["*"],
|
|
1244
|
+
canonical_code: "invalid_event_limit",
|
|
1245
|
+
aliases: [],
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
code: "invalid_event_since",
|
|
1249
|
+
meaning: "Invalid event since condition.",
|
|
1250
|
+
stability: "stable",
|
|
1251
|
+
exit_code: 2,
|
|
1252
|
+
class: "usage",
|
|
1253
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1254
|
+
sources: ["sdk/mutation-events.ts"],
|
|
1255
|
+
emitting_commands: ["*"],
|
|
1256
|
+
canonical_code: "invalid_event_since",
|
|
1257
|
+
aliases: [],
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
code: "invalid_history_analytics_limit",
|
|
1261
|
+
meaning: "Invalid history analytics limit condition.",
|
|
1262
|
+
stability: "provisional",
|
|
1263
|
+
exit_code: 2,
|
|
1264
|
+
class: "usage",
|
|
1265
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1266
|
+
sources: ["sdk/history-analytics.ts"],
|
|
1267
|
+
emitting_commands: ["*"],
|
|
1268
|
+
canonical_code: "invalid_history_analytics_limit",
|
|
1269
|
+
aliases: [],
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
code: "invalid_history_analytics_minimum_sample",
|
|
1273
|
+
meaning: "Invalid history analytics minimum sample condition.",
|
|
1274
|
+
stability: "provisional",
|
|
1275
|
+
exit_code: 2,
|
|
1276
|
+
class: "usage",
|
|
1277
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1278
|
+
sources: ["sdk/history-analytics.ts"],
|
|
1279
|
+
emitting_commands: ["*"],
|
|
1280
|
+
canonical_code: "invalid_history_analytics_minimum_sample",
|
|
1281
|
+
aliases: [],
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
code: "invalid_history_analytics_since",
|
|
1285
|
+
meaning: "Invalid history analytics since condition.",
|
|
1286
|
+
stability: "provisional",
|
|
1287
|
+
exit_code: 2,
|
|
1288
|
+
class: "usage",
|
|
1289
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1290
|
+
sources: ["sdk/history-analytics.ts"],
|
|
1291
|
+
emitting_commands: ["*"],
|
|
1292
|
+
canonical_code: "invalid_history_analytics_since",
|
|
1293
|
+
aliases: [],
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
code: "invalid_improvement_ledger",
|
|
1297
|
+
meaning: "Invalid improvement ledger condition.",
|
|
1298
|
+
stability: "provisional",
|
|
1299
|
+
exit_code: 1,
|
|
1300
|
+
class: "generic_failure",
|
|
1301
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1302
|
+
sources: ["sdk/improvement-ledger-validation.ts"],
|
|
1303
|
+
emitting_commands: ["*"],
|
|
1304
|
+
canonical_code: "invalid_improvement_ledger",
|
|
1305
|
+
aliases: [],
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
code: "invalid_improvement_metric",
|
|
1309
|
+
meaning: "Invalid improvement metric condition.",
|
|
1310
|
+
stability: "provisional",
|
|
1311
|
+
exit_code: 2,
|
|
1312
|
+
class: "usage",
|
|
1313
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1314
|
+
sources: ["sdk/improvement-ledger.ts"],
|
|
1315
|
+
emitting_commands: ["*"],
|
|
1316
|
+
canonical_code: "invalid_improvement_metric",
|
|
1317
|
+
aliases: [],
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
code: "invalid_improvement_observation",
|
|
1321
|
+
meaning: "Invalid improvement observation condition.",
|
|
1322
|
+
stability: "provisional",
|
|
1323
|
+
exit_code: 2,
|
|
1324
|
+
class: "usage",
|
|
1325
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1326
|
+
sources: ["sdk/improvement-ledger.ts"],
|
|
1327
|
+
emitting_commands: ["*"],
|
|
1328
|
+
canonical_code: "invalid_improvement_observation",
|
|
1329
|
+
aliases: [],
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
code: "invalid_improvement_observation_limit",
|
|
1333
|
+
meaning: "Invalid improvement observation limit condition.",
|
|
1334
|
+
stability: "provisional",
|
|
1335
|
+
exit_code: 2,
|
|
1336
|
+
class: "usage",
|
|
1337
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1338
|
+
sources: ["sdk/improvement-ledger.ts"],
|
|
1339
|
+
emitting_commands: ["*"],
|
|
1340
|
+
canonical_code: "invalid_improvement_observation_limit",
|
|
1341
|
+
aliases: [],
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
code: "invalid_improvement_observation_timestamp",
|
|
1345
|
+
meaning: "Invalid improvement observation timestamp condition.",
|
|
1346
|
+
stability: "provisional",
|
|
1347
|
+
exit_code: 2,
|
|
1348
|
+
class: "usage",
|
|
1349
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1350
|
+
sources: ["sdk/improvement-ledger.ts"],
|
|
1351
|
+
emitting_commands: ["*"],
|
|
1352
|
+
canonical_code: "invalid_improvement_observation_timestamp",
|
|
1353
|
+
aliases: [],
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
code: "invalid_provenance_predicate",
|
|
1357
|
+
meaning: "Invalid provenance predicate condition.",
|
|
1358
|
+
stability: "stable",
|
|
1359
|
+
exit_code: 2,
|
|
1360
|
+
class: "usage",
|
|
1361
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1362
|
+
sources: ["sdk/history-provenance.ts"],
|
|
1363
|
+
emitting_commands: ["*"],
|
|
1364
|
+
canonical_code: "invalid_provenance_predicate",
|
|
1365
|
+
aliases: [],
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
code: "invalid_query_cursor",
|
|
1369
|
+
meaning: "Invalid query cursor condition.",
|
|
1370
|
+
stability: "stable",
|
|
1371
|
+
exit_code: 2,
|
|
1372
|
+
class: "usage",
|
|
1373
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1374
|
+
sources: ["sdk/pagination.ts"],
|
|
1375
|
+
emitting_commands: ["*"],
|
|
1376
|
+
canonical_code: "invalid_query_cursor",
|
|
1377
|
+
aliases: [],
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
code: "invalid_read_output_session",
|
|
1381
|
+
meaning: "Invalid read output session condition.",
|
|
1382
|
+
stability: "provisional",
|
|
1383
|
+
exit_code: 2,
|
|
1384
|
+
class: "usage",
|
|
1385
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1386
|
+
sources: ["sdk/read-output-session.ts"],
|
|
1387
|
+
emitting_commands: ["*"],
|
|
1388
|
+
canonical_code: "invalid_read_output_session",
|
|
1389
|
+
aliases: [],
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
code: "invalid_workspace_snapshot_target",
|
|
1393
|
+
meaning: "Invalid workspace snapshot target condition.",
|
|
1394
|
+
stability: "provisional",
|
|
1395
|
+
exit_code: 2,
|
|
1396
|
+
class: "usage",
|
|
1397
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1398
|
+
sources: ["sdk/workspace-snapshot.ts"],
|
|
1399
|
+
emitting_commands: ["*"],
|
|
1400
|
+
canonical_code: "invalid_workspace_snapshot_target",
|
|
1401
|
+
aliases: [],
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
code: "item_document_invalid",
|
|
1405
|
+
meaning: "Item document invalid condition.",
|
|
1406
|
+
stability: "stable",
|
|
1407
|
+
exit_code: 1,
|
|
1408
|
+
class: "generic_failure",
|
|
1409
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1410
|
+
sources: ["core/item/item-format.ts"],
|
|
1411
|
+
emitting_commands: ["*"],
|
|
1412
|
+
canonical_code: "item_document_invalid",
|
|
1413
|
+
aliases: [],
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
code: "item_document_roundtrip_failed",
|
|
1417
|
+
meaning: "Item document roundtrip failed condition.",
|
|
1418
|
+
stability: "stable",
|
|
1419
|
+
exit_code: 1,
|
|
1420
|
+
class: "generic_failure",
|
|
1421
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1422
|
+
sources: ["core/item/item-format.ts"],
|
|
1423
|
+
emitting_commands: ["*"],
|
|
1424
|
+
canonical_code: "item_document_roundtrip_failed",
|
|
1425
|
+
aliases: [],
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
code: "item_id_collision",
|
|
1429
|
+
meaning: "Item id collision condition.",
|
|
1430
|
+
stability: "stable",
|
|
1431
|
+
exit_code: 4,
|
|
1432
|
+
class: "conflict",
|
|
1433
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1434
|
+
sources: ["sdk/lifecycle/copy.ts"],
|
|
1435
|
+
emitting_commands: ["copy"],
|
|
1436
|
+
canonical_code: "item_id_collision",
|
|
1437
|
+
aliases: [],
|
|
1438
|
+
},
|
|
1439
|
+
{
|
|
1440
|
+
code: "item_not_found",
|
|
1441
|
+
meaning: "Item not found condition.",
|
|
1442
|
+
stability: "stable",
|
|
1443
|
+
exit_code: 3,
|
|
1444
|
+
class: "not_found",
|
|
1445
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1446
|
+
sources: ["cli/error-guidance.ts", "core/telemetry/observability.ts"],
|
|
1447
|
+
emitting_commands: ["*"],
|
|
1448
|
+
canonical_code: "item_not_found",
|
|
1449
|
+
aliases: [],
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
code: "likely_duplicate",
|
|
1453
|
+
meaning: "Likely duplicate condition.",
|
|
1454
|
+
stability: "stable",
|
|
1455
|
+
exit_code: 4,
|
|
1456
|
+
class: "conflict",
|
|
1457
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1458
|
+
sources: ["sdk/similarity.ts"],
|
|
1459
|
+
emitting_commands: ["*"],
|
|
1460
|
+
canonical_code: "likely_duplicate",
|
|
1461
|
+
aliases: [],
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
code: "linked_test_remove_no_match",
|
|
1465
|
+
meaning: "Linked test remove no match condition.",
|
|
1466
|
+
stability: "provisional",
|
|
1467
|
+
exit_code: 3,
|
|
1468
|
+
class: "not_found",
|
|
1469
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1470
|
+
sources: ["sdk/test/execution.ts"],
|
|
1471
|
+
emitting_commands: ["*"],
|
|
1472
|
+
canonical_code: "linked_test_remove_no_match",
|
|
1473
|
+
aliases: [],
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
code: "linked_test_value_not_quoted",
|
|
1477
|
+
meaning: "Linked test value not quoted condition.",
|
|
1478
|
+
stability: "stable",
|
|
1479
|
+
exit_code: 1,
|
|
1480
|
+
class: "generic_failure",
|
|
1481
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1482
|
+
sources: ["cli/error-guidance.ts"],
|
|
1483
|
+
emitting_commands: ["*"],
|
|
1484
|
+
canonical_code: "linked_test_value_not_quoted",
|
|
1485
|
+
aliases: [],
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
code: "list_source_incomplete",
|
|
1489
|
+
meaning: "List source incomplete condition.",
|
|
1490
|
+
stability: "stable",
|
|
1491
|
+
exit_code: 1,
|
|
1492
|
+
class: "generic_failure",
|
|
1493
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1494
|
+
sources: ["sdk/query/list.ts"],
|
|
1495
|
+
emitting_commands: ["list"],
|
|
1496
|
+
canonical_code: "list_source_incomplete",
|
|
1497
|
+
aliases: [],
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
code: "local_package_archive_unsafe",
|
|
1501
|
+
meaning: "Local package archive unsafe condition.",
|
|
1502
|
+
stability: "stable",
|
|
1503
|
+
exit_code: 2,
|
|
1504
|
+
class: "usage",
|
|
1505
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1506
|
+
sources: ["sdk/extension/install-sources.ts"],
|
|
1507
|
+
emitting_commands: ["*"],
|
|
1508
|
+
canonical_code: "local_package_archive_unsafe",
|
|
1509
|
+
aliases: [],
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
code: "local_source_not_found_bare_name",
|
|
1513
|
+
meaning: "Local source not found bare name condition.",
|
|
1514
|
+
stability: "stable",
|
|
1515
|
+
exit_code: 3,
|
|
1516
|
+
class: "not_found",
|
|
1517
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1518
|
+
sources: ["sdk/extension/install-sources.ts"],
|
|
1519
|
+
emitting_commands: ["*"],
|
|
1520
|
+
canonical_code: "local_source_not_found_bare_name",
|
|
1521
|
+
aliases: [],
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
code: "lock_conflict",
|
|
1525
|
+
meaning: "Lock conflict condition.",
|
|
1526
|
+
stability: "stable",
|
|
1527
|
+
exit_code: 4,
|
|
1528
|
+
class: "conflict",
|
|
1529
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1530
|
+
sources: ["cli/error-guidance.ts", "core/lock/lock.ts", "core/telemetry/observability.ts"],
|
|
1531
|
+
emitting_commands: ["*"],
|
|
1532
|
+
canonical_code: "lock_conflict",
|
|
1533
|
+
aliases: [],
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
code: "locks_stale_count",
|
|
1537
|
+
meaning: "Locks stale count condition.",
|
|
1538
|
+
stability: "stable",
|
|
1539
|
+
exit_code: 1,
|
|
1540
|
+
class: "generic_failure",
|
|
1541
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1542
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1543
|
+
emitting_commands: ["*"],
|
|
1544
|
+
canonical_code: "locks_stale_count",
|
|
1545
|
+
aliases: [],
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
code: "locks_unreadable",
|
|
1549
|
+
meaning: "Locks unreadable condition.",
|
|
1550
|
+
stability: "stable",
|
|
1551
|
+
exit_code: 1,
|
|
1552
|
+
class: "generic_failure",
|
|
1553
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1554
|
+
sources: ["core/diagnostics/remediation.ts"],
|
|
1555
|
+
emitting_commands: ["*"],
|
|
1556
|
+
canonical_code: "locks_unreadable",
|
|
1557
|
+
aliases: [],
|
|
1558
|
+
},
|
|
1559
|
+
{
|
|
1560
|
+
code: "malformed_plan_step_evidence",
|
|
1561
|
+
meaning: "Malformed plan step evidence condition.",
|
|
1562
|
+
stability: "stable",
|
|
1563
|
+
exit_code: 2,
|
|
1564
|
+
class: "usage",
|
|
1565
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1566
|
+
sources: ["sdk/lifecycle/plan.ts"],
|
|
1567
|
+
emitting_commands: ["plan"],
|
|
1568
|
+
canonical_code: "malformed_plan_step_evidence",
|
|
1569
|
+
aliases: [],
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
code: "manifest_capabilities_absent",
|
|
1573
|
+
meaning: "Manifest capabilities absent condition.",
|
|
1574
|
+
stability: "stable",
|
|
1575
|
+
exit_code: 1,
|
|
1576
|
+
class: "generic_failure",
|
|
1577
|
+
recovery: "Inspect the structured error guidance and retry the suggested command.",
|
|
1578
|
+
sources: ["sdk/compose.ts"],
|
|
1579
|
+
emitting_commands: ["*"],
|
|
1580
|
+
canonical_code: "manifest_capabilities_absent",
|
|
1581
|
+
aliases: [],
|
|
1582
|
+
},
|
|
1583
|
+
];
|
|
1584
|
+
//# sourceMappingURL=generated-error-code-catalog-part-1.js.map
|
|
1585
|
+
//# debugId=1822a3b2-8164-56f7-96e3-d4c657f95fa6
|