nexarch 0.5.10 → 0.5.11
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.
|
@@ -69,6 +69,14 @@ export async function checkIn(args) {
|
|
|
69
69
|
return;
|
|
70
70
|
}
|
|
71
71
|
const cmd = result.command;
|
|
72
|
+
if (result.handled) {
|
|
73
|
+
console.log("Auto command handled by Nexarch runtime.");
|
|
74
|
+
if (result.audit?.runId) {
|
|
75
|
+
const s = result.audit.summary ?? {};
|
|
76
|
+
console.log(`Policy audit run: ${result.audit.runId} (${s.passCount ?? 0} pass, ${s.partialCount ?? 0} partial, ${s.failCount ?? 0} fail)`);
|
|
77
|
+
}
|
|
78
|
+
return;
|
|
79
|
+
}
|
|
72
80
|
console.log(`\n╔══════════════════════════════════════════════════════════════════╗`);
|
|
73
81
|
console.log(`║ COMMAND QUEUED — action required ║`);
|
|
74
82
|
console.log(`╚══════════════════════════════════════════════════════════════════╝`);
|
|
@@ -6,7 +6,7 @@ import { requireCredentials } from "../lib/credentials.js";
|
|
|
6
6
|
import { fetchAgentRegistryOrThrow } from "../lib/agent-registry.js";
|
|
7
7
|
import { callMcpTool, mcpInitialize, mcpListTools } from "../lib/mcp.js";
|
|
8
8
|
import { buildVersionAttributes } from "../lib/version-normalization.js";
|
|
9
|
-
const CLI_VERSION = "0.5.
|
|
9
|
+
const CLI_VERSION = "0.5.11";
|
|
10
10
|
const AGENT_ENTITY_TYPE = "agent";
|
|
11
11
|
const TECH_COMPONENT_ENTITY_TYPE = "technology_component";
|
|
12
12
|
function parseFlag(args, flag) {
|
package/dist/lib/mcp.js
CHANGED
|
@@ -68,7 +68,7 @@ export async function mcpInitialize(options = {}) {
|
|
|
68
68
|
return callMcpRpc("initialize", {
|
|
69
69
|
protocolVersion: "2024-11-05",
|
|
70
70
|
capabilities: {},
|
|
71
|
-
clientInfo: { name: "nexarch-cli", version: "0.5.
|
|
71
|
+
clientInfo: { name: "nexarch-cli", version: "0.5.11" },
|
|
72
72
|
}, options);
|
|
73
73
|
}
|
|
74
74
|
export async function mcpListTools(options = {}) {
|