nexarch 0.4.6 → 0.4.7

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.
@@ -5,7 +5,7 @@ import process from "process";
5
5
  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
- const CLI_VERSION = "0.4.6";
8
+ const CLI_VERSION = "0.4.7";
9
9
  const AGENT_ENTITY_TYPE = "agent";
10
10
  const TECH_COMPONENT_ENTITY_TYPE = "technology_component";
11
11
  function parseFlag(args, flag) {
@@ -12,7 +12,22 @@ export async function setup(args) {
12
12
  await login(args);
13
13
  }
14
14
  requireCredentials(); // ensure login succeeded before continuing
15
- const registry = await fetchAgentRegistryOrThrow();
15
+ let registry;
16
+ try {
17
+ registry = await fetchAgentRegistryOrThrow();
18
+ }
19
+ catch (err) {
20
+ const message = err instanceof Error ? err.message : String(err);
21
+ if (/session has expired|token is invalid, expired, or revoked/i.test(message)) {
22
+ console.log("Session expired. Re-authenticating…\n");
23
+ await login(args);
24
+ requireCredentials();
25
+ registry = await fetchAgentRegistryOrThrow();
26
+ }
27
+ else {
28
+ throw err;
29
+ }
30
+ }
16
31
  console.log(`Using integration registry release v${registry.release.version}.`);
17
32
  console.log("Detecting installed MCP clients…\n");
18
33
  const clients = detectClientsFromRegistry(registry);
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.4.6" },
71
+ clientInfo: { name: "nexarch-cli", version: "0.4.7" },
72
72
  }, options);
73
73
  }
74
74
  export async function mcpListTools(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexarch",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "Your architecture workspace for AI delivery.",
5
5
  "keywords": [
6
6
  "nexarch",