@arcforge/err 2.0.112 → 2.0.113
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/package.json +2 -2
- package/src/map.ts +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcforge/err",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.113",
|
|
4
4
|
"description": "Structured Axon errors — the code map every user-facing failure is rendered from.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"deploy": "echo \"This package is published ONLY by apps/tui/scripts/release.ts, which pins workspace:* deps to concrete versions first. Publishing it directly ships an unresolvable dependency.\" && exit 1"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@arcforge/types": "2.0.
|
|
18
|
+
"@arcforge/types": "2.0.113"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/bun": "latest",
|
package/src/map.ts
CHANGED
|
@@ -49,7 +49,7 @@ export const errorMap = {
|
|
|
49
49
|
PROMPT_NOT_FOUND: {
|
|
50
50
|
code: "AX-PROMPT-001",
|
|
51
51
|
title: "Prompt Not Found",
|
|
52
|
-
description: "The requested prompt
|
|
52
|
+
description: "The requested prompt could not be resolved — it is not declared by the agent, or the published package it names ships no prompt by that name.",
|
|
53
53
|
source: "runtime",
|
|
54
54
|
severity: "fatal",
|
|
55
55
|
},
|
|
@@ -202,6 +202,13 @@ export const errorMap = {
|
|
|
202
202
|
source: "cognet",
|
|
203
203
|
severity: "fatal",
|
|
204
204
|
},
|
|
205
|
+
COGNET_RUNTIME_UNAVAILABLE: {
|
|
206
|
+
code: "AX-COGNET-014",
|
|
207
|
+
title: "Cognet Runtime Temporarily Unavailable",
|
|
208
|
+
description: "The cognet runtime is declared but not present on disk — the dependency tree is mid-rewrite. Transient: the reload keeps the previous blueprint and picks the change up on the next watch event.",
|
|
209
|
+
source: "cognet",
|
|
210
|
+
severity: "recovered",
|
|
211
|
+
},
|
|
205
212
|
COGNET_NOT_FOUND: {
|
|
206
213
|
code: "AX-COGNET-013",
|
|
207
214
|
title: "Cognet Not Found",
|