@arcforge/err 2.0.114 → 2.0.115
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 +35 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcforge/err",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.115",
|
|
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.115"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/bun": "latest",
|
package/src/map.ts
CHANGED
|
@@ -299,6 +299,13 @@ export const errorMap = {
|
|
|
299
299
|
},
|
|
300
300
|
|
|
301
301
|
// ── Project (build/project/*.ts) ────────────────────────────────────────
|
|
302
|
+
AGENT_UNRESOLVED: {
|
|
303
|
+
code: "AX-PROJECT-034",
|
|
304
|
+
title: "Agent Not Resolved",
|
|
305
|
+
description: "An agent reference did not resolve to an agent directory — the path holds no axon.config.ts, or the name exists in neither this profile's agents nor any watched path.",
|
|
306
|
+
source: "manifest",
|
|
307
|
+
severity: "fatal",
|
|
308
|
+
},
|
|
302
309
|
PROJECT_NOT_FOUND: {
|
|
303
310
|
code: "AX-PROJECT-017",
|
|
304
311
|
title: "Project Not Found",
|
|
@@ -1327,6 +1334,13 @@ export const errorMap = {
|
|
|
1327
1334
|
source: "cli",
|
|
1328
1335
|
severity: "fatal",
|
|
1329
1336
|
},
|
|
1337
|
+
PROMPT_NOT_INSTALLABLE: {
|
|
1338
|
+
code: "AX-PROJECT-032",
|
|
1339
|
+
title: "Prompts Are Not Installed Into Agents",
|
|
1340
|
+
description: "A prompt is content, not a capability: it resolves from the global cache and renders on demand, so every agent can already use it without declaring anything. Installing one into an agent would put content through the code path — an ABI check, a node_modules link, an agent reload — for something that needs none of it.",
|
|
1341
|
+
source: "manifest",
|
|
1342
|
+
severity: "fatal",
|
|
1343
|
+
},
|
|
1330
1344
|
PORT_UNAVAILABLE: {
|
|
1331
1345
|
code: "AX-PROJECT-031",
|
|
1332
1346
|
title: "No Free Port",
|
|
@@ -1460,6 +1474,27 @@ export const errorMap = {
|
|
|
1460
1474
|
source: "cli",
|
|
1461
1475
|
severity: "fatal",
|
|
1462
1476
|
},
|
|
1477
|
+
NO_EDITOR_ATTACHED: {
|
|
1478
|
+
code: "AX-TUI-042",
|
|
1479
|
+
title: "No Editor Attached",
|
|
1480
|
+
description: "Opening a pane hands it to a connected editor, and none is listening. Open this project in an editor running the Axon Fleet extension — it dials each running TUI itself, so the connection appears on its own once the window is up.",
|
|
1481
|
+
source: "tui",
|
|
1482
|
+
severity: "fatal",
|
|
1483
|
+
},
|
|
1484
|
+
NO_SESSION_TO_OPEN: {
|
|
1485
|
+
code: "AX-TUI-043",
|
|
1486
|
+
title: "No Session To Open",
|
|
1487
|
+
description: "A runtime pane is a view of one conversation, and no agent is focused yet — so there is nothing to point it at. Start or focus an agent first.",
|
|
1488
|
+
source: "tui",
|
|
1489
|
+
severity: "fatal",
|
|
1490
|
+
},
|
|
1491
|
+
CLEAR_IMMUTABLE_DEPLOYED: {
|
|
1492
|
+
code: "AX-TUI-041",
|
|
1493
|
+
title: "Cannot Clear A Deployment's Conversation",
|
|
1494
|
+
description: "A deployed agent owns its own session in the cloud — the TUI attaches to whatever session it is already running, so there is no fresh one to start from here. Use `:close` to detach, or clear it on a local instance of the same agent.",
|
|
1495
|
+
source: "tui",
|
|
1496
|
+
severity: "fatal",
|
|
1497
|
+
},
|
|
1463
1498
|
OLLAMA_PULL_FAILED: {
|
|
1464
1499
|
code: "AX-TUI-040",
|
|
1465
1500
|
title: "Model Download Failed",
|