@nanobpm/nano-workforce 0.186.2 → 0.186.3

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [0.186.3](https://github.com/nanobpm/nano-workforce/compare/v0.186.2...v0.186.3) (2026-09-12)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **app:** redirect standalone /console routes to the engine console ([#780](https://github.com/nanobpm/nano-workforce/issues/780)) ([103e967](https://github.com/nanobpm/nano-workforce/commit/103e967b95191bb04239b5c6a2195913e50b8b9b)), closes [#771](https://github.com/nanobpm/nano-workforce/issues/771)
6
+
1
7
  ## [0.186.2](https://github.com/nanobpm/nano-workforce/compare/v0.186.1...v0.186.2) (2026-09-11)
2
8
 
3
9
  ### Bug Fixes
@@ -0,0 +1,127 @@
1
+ // Tests for app/consoleRedirect.ts — the standalone `/console` → engine-console redirect (issue
2
+ // #771). Covers the pure match/target derivation, origin resolution from NANOBPMN_BASE_URL, and the
3
+ // live listener-rewiring mount over a real node:http server (redirect fires for `/console/*`,
4
+ // passthrough for everything else, teardown restores the original handler).
5
+ import { createServer, type Server } from "node:http";
6
+ import type { AddressInfo } from "node:net";
7
+ import { test } from "node:test";
8
+ import { assert, assertEquals } from "#test-assert";
9
+ import {
10
+ consoleRedirectLocation,
11
+ mountConsoleRedirect,
12
+ resolveConsoleOrigin,
13
+ } from "./consoleRedirect.ts";
14
+
15
+ test("redirects a bare /console path to the console origin", () => {
16
+ assertEquals(consoleRedirectLocation("/console", "http://localhost:8080"), "http://localhost:8080/console");
17
+ });
18
+
19
+ test("preserves the full path and query under /console/", () => {
20
+ assertEquals(
21
+ consoleRedirectLocation("/console/app-view/Foo?tab=bar&x=1", "http://localhost:8080"),
22
+ "http://localhost:8080/console/app-view/Foo?tab=bar&x=1",
23
+ );
24
+ });
25
+
26
+ test("leaves /app/* and root routes unchanged (null)", () => {
27
+ assertEquals(consoleRedirectLocation("/app/api/agent", "http://localhost:8080"), null);
28
+ assertEquals(consoleRedirectLocation("/", "http://localhost:8080"), null);
29
+ assertEquals(consoleRedirectLocation("/agentic", "http://localhost:8080"), null);
30
+ });
31
+
32
+ test("does not match a sibling route that merely starts with 'console'", () => {
33
+ assertEquals(consoleRedirectLocation("/console-x", "http://localhost:8080"), null);
34
+ assertEquals(consoleRedirectLocation("/consolexyz/app", "http://localhost:8080"), null);
35
+ });
36
+
37
+ test("matches /console immediately followed by a query", () => {
38
+ assertEquals(consoleRedirectLocation("/console?next=1", "http://localhost:8080"), "http://localhost:8080/console?next=1");
39
+ });
40
+
41
+ test("normalises a trailing slash on the console origin", () => {
42
+ assertEquals(consoleRedirectLocation("/console/x", "http://localhost:8080/"), "http://localhost:8080/console/x");
43
+ });
44
+
45
+ test("handles an absent url", () => {
46
+ assertEquals(consoleRedirectLocation(undefined, "http://localhost:8080"), null);
47
+ });
48
+
49
+ test("resolveConsoleOrigin gives CAMUNDA_REST_ADDRESS precedence over NANOBPMN_BASE_URL", () => {
50
+ const read = (name: string): string | null =>
51
+ name === "CAMUNDA_REST_ADDRESS"
52
+ ? "http://engine.example:8080/v2"
53
+ : name === "NANOBPMN_BASE_URL"
54
+ ? "http://localhost:9999"
55
+ : null;
56
+ assertEquals(resolveConsoleOrigin(read), "http://engine.example:8080");
57
+ });
58
+
59
+ test("resolveConsoleOrigin uses NANOBPMN_BASE_URL when CAMUNDA_REST_ADDRESS is unset", () => {
60
+ const read = (name: string): string | null =>
61
+ name === "NANOBPMN_BASE_URL" ? "https://engine.example.com:9000" : null;
62
+ assertEquals(resolveConsoleOrigin(read), "https://engine.example.com:9000");
63
+ });
64
+
65
+ test("resolveConsoleOrigin derives the origin from NANOBPMN_BASE_URL", () => {
66
+ const read = (name: string): string | null =>
67
+ name === "NANOBPMN_BASE_URL" ? "https://engine.example.com:9000" : null;
68
+ assertEquals(resolveConsoleOrigin(read), "https://engine.example.com:9000");
69
+ });
70
+
71
+ test("resolveConsoleOrigin strips any path from the base", () => {
72
+ assertEquals(resolveConsoleOrigin(() => "https://engine.example.com/v2/"), "https://engine.example.com");
73
+ });
74
+
75
+ test("resolveConsoleOrigin defaults to localhost:8080 when unset", () => {
76
+ assertEquals(resolveConsoleOrigin(() => null), "http://localhost:8080");
77
+ });
78
+
79
+ test("resolveConsoleOrigin falls back to the default on an unparseable value", () => {
80
+ assertEquals(resolveConsoleOrigin(() => "not a url"), "http://localhost:8080");
81
+ });
82
+
83
+ /** Spin up a real server with an app handler, mount the redirect, and return a fetch helper. */
84
+ async function withServer(
85
+ run: (base: string, teardown: () => void) => Promise<void>,
86
+ ): Promise<void> {
87
+ const server: Server = createServer((_req, res) => {
88
+ res.statusCode = 200;
89
+ res.setHeader("content-type", "text/plain");
90
+ res.end("app-handled");
91
+ });
92
+ await new Promise<void>((resolve) => server.listen(0, "127.0.0.1", resolve));
93
+ const teardown = mountConsoleRedirect(server, "http://console.example:8080");
94
+ const { port } = server.address() as AddressInfo;
95
+ try {
96
+ await run(`http://127.0.0.1:${port}`, teardown);
97
+ } finally {
98
+ await new Promise<void>((resolve) => server.close(() => resolve()));
99
+ }
100
+ }
101
+
102
+ test("mount: /console/* is answered with a 302 to the console origin, not the app handler", async () => {
103
+ await withServer(async (base) => {
104
+ const res = await fetch(`${base}/console/app-view/Workforce?tab=x`, { redirect: "manual" });
105
+ assertEquals(res.status, 302);
106
+ assertEquals(res.headers.get("location"), "http://console.example:8080/console/app-view/Workforce?tab=x");
107
+ // 302 body is empty — the app handler must not have run.
108
+ assertEquals(await res.text(), "");
109
+ });
110
+ });
111
+
112
+ test("mount: a non-console request is delegated to the app handler unchanged", async () => {
113
+ await withServer(async (base) => {
114
+ const res = await fetch(`${base}/app/api/agent`, { redirect: "manual" });
115
+ assertEquals(res.status, 200);
116
+ assertEquals(await res.text(), "app-handled");
117
+ });
118
+ });
119
+
120
+ test("mount: teardown restores the original app handler for /console too", async () => {
121
+ await withServer(async (base, teardown) => {
122
+ teardown();
123
+ const res = await fetch(`${base}/console/x`, { redirect: "manual" });
124
+ assertEquals(res.status, 200);
125
+ assert((await res.text()) === "app-handled");
126
+ });
127
+ });
@@ -0,0 +1,122 @@
1
+ // Standalone `/console` → engine-console redirect (issue #771).
2
+ //
3
+ // When Nano Workforce runs **embedded** behind the nano console, the console origin serves
4
+ // `/console/*` (its app-view host, `/console/app-view/Workforce/…`) and the reverse proxy strips the
5
+ // `/console/app-view/Workforce` prefix before the app's own HTTP server ever sees the request — so
6
+ // the app only ever handles `/app/*`, `/agentic`, and its page routes at the root.
7
+ //
8
+ // Run **standalone** (the default `npm start` on a bare port, no console proxy in front), links the
9
+ // UI emits under `/console` — the engine console's own origin — hit this app's port instead, where
10
+ // nothing serves them: the runtime answers a bare 503 because `/console/*` is not a registered
11
+ // app-view route. This is a narrow Node request redirect that rewrites those `/console/*` requests to
12
+ // the engine console origin, preserving the full path + query, and leaves every other route
13
+ // (`/app/*`, `/agentic`, the Workforce page routes at the root) untouched — it only ever fires for a
14
+ // path that is exactly `/console` or under `/console/`.
15
+ //
16
+ // The redirect is derived, not configured twice: the engine console shares the engine's origin, so
17
+ // the target origin comes from the CANONICAL engine-address resolution (`resolveEngineAddress`,
18
+ // `app/enginePreflight.ts`) — an explicit `CAMUNDA_REST_ADDRESS` wins over `NANOBPMN_BASE_URL`
19
+ // (default `http://localhost:8080`), the same precedence and single source of truth the engine
20
+ // client uses, so the redirect target can never drift from the engine the app actually talks to.
21
+ // Mounting it when embedded is harmless: the proxy owns `/console` there, so the app's server never
22
+ // sees such a path.
23
+
24
+ import type { IncomingMessage, RequestListener, Server, ServerResponse } from "node:http";
25
+ import { resolveEngineAddress } from "./enginePreflight.ts";
26
+ import { envVar } from "./version.ts";
27
+
28
+ /** A minimal logging surface (structurally a subset of `Logger`) the mount uses at boot. */
29
+ export interface ConsoleRedirectLog {
30
+ info(msg: string): void;
31
+ }
32
+
33
+ /**
34
+ * The `Location` a `/console`-prefixed request should be redirected to, or `null` when the request
35
+ * is NOT a console route (and so must be left for the app's own handlers).
36
+ *
37
+ * Matches ONLY a path that is exactly `/console` or begins with `/console/` — a sibling route such
38
+ * as `/console-x` or `/app/console` is deliberately NOT matched, keeping the redirect narrow. The
39
+ * full original request target (path + query) is preserved by appending it verbatim to the console
40
+ * origin: because the request path already carries the `/console` prefix, the result is
41
+ * `<consoleOrigin>/console/<rest>?<query>`.
42
+ *
43
+ * @param url the raw request target (`req.url`), e.g. `/console/app-view/Foo?tab=bar`.
44
+ * @param consoleOrigin the engine console origin (scheme + authority, no trailing slash), e.g.
45
+ * `http://localhost:8080`.
46
+ */
47
+ export function consoleRedirectLocation(
48
+ url: string | undefined,
49
+ consoleOrigin: string,
50
+ ): string | null {
51
+ if (!url) return null;
52
+ const queryAt = url.indexOf("?");
53
+ const path = queryAt === -1 ? url : url.slice(0, queryAt);
54
+ if (path === "/console" || path.startsWith("/console/")) {
55
+ return `${consoleOrigin.replace(/\/+$/, "")}${url}`;
56
+ }
57
+ return null;
58
+ }
59
+
60
+ /**
61
+ * Resolve the engine console origin (scheme + authority) from the CANONICAL engine-address
62
+ * resolution (`resolveEngineAddress`, `app/enginePreflight.ts`). The engine console is served on the
63
+ * engine's own origin, so this reuses the single engine-base source of truth — including its
64
+ * precedence — rather than reading one input directly. That means an explicit `CAMUNDA_REST_ADDRESS`
65
+ * (already the `/v2` REST address) wins over `NANOBPMN_BASE_URL`, exactly as the engine client
66
+ * resolves it; the redirect target can never drift from the engine the app actually talks to. Only
67
+ * the origin is meaningful for the redirect, so any path/query on the resolved address (e.g. the
68
+ * `/v2` suffix) is discarded. Falls back to the localhost default when the resolved value is
69
+ * unparseable.
70
+ *
71
+ * `read` is injectable so resolution is testable without mutating `process.env`.
72
+ */
73
+ export function resolveConsoleOrigin(read: (name: string) => string | null = envVar): string {
74
+ const { restAddress } = resolveEngineAddress(read);
75
+ try {
76
+ return new URL(restAddress).origin;
77
+ } catch {
78
+ return "http://localhost:8080";
79
+ }
80
+ }
81
+
82
+ /**
83
+ * Prepend a `/console` → engine-console redirect in front of `server`'s existing request handling.
84
+ *
85
+ * The runtime has already attached the app's own `request` listener(s) by the time this runs, so we
86
+ * capture them, remove them, and install a single wrapper that either answers a `/console/*` request
87
+ * with a `302` (preserving path + query) or delegates to every captured listener unchanged. This
88
+ * keeps the app's own routing (control API, pages, agentic upgrade) intact for every non-console
89
+ * request while giving the redirect first refusal on the console prefix.
90
+ *
91
+ * Returns a teardown that restores the original listener set.
92
+ */
93
+ export function mountConsoleRedirect(
94
+ server: Server,
95
+ consoleOrigin: string,
96
+ log?: ConsoleRedirectLog,
97
+ ): () => void {
98
+ // `Server#listeners` is typed `Function[]` by Node; narrow to the request-listener signature so we
99
+ // can re-invoke and later restore them.
100
+ // biome-ignore lint/plugin: runtime/framework contract boundary for Node's untyped listeners()
101
+ const existing = server.listeners("request") as RequestListener[];
102
+ server.removeAllListeners("request");
103
+
104
+ const handler = (req: IncomingMessage, res: ServerResponse): void => {
105
+ const location = consoleRedirectLocation(req.url, consoleOrigin);
106
+ if (location !== null) {
107
+ res.statusCode = 302;
108
+ res.setHeader("Location", location);
109
+ res.end();
110
+ return;
111
+ }
112
+ for (const listener of existing) listener.call(server, req, res);
113
+ };
114
+
115
+ server.on("request", handler);
116
+ log?.info(`console redirect mounted: /console/* → ${consoleOrigin}/console/* (standalone links)`);
117
+
118
+ return () => {
119
+ server.removeListener("request", handler);
120
+ for (const listener of existing) server.on("request", listener);
121
+ };
122
+ }
package/main.ts CHANGED
@@ -21,6 +21,7 @@ import { Server } from "node:http";
21
21
  import { createNanoSdkEngineClient, runFromEnv, selectHost } from "@nanobpm/urban";
22
22
  import { type AgenticChannelHandle, mountAgenticChannel } from "./app/agentic/channel.ts";
23
23
  import { makeElementInstanceResolver } from "./app/agentic/element-instance.ts";
24
+ import { mountConsoleRedirect, resolveConsoleOrigin } from "./app/consoleRedirect.ts";
24
25
  import { announceEngine, resolveEngineAddress } from "./app/enginePreflight.ts";
25
26
  import { runEngineReconcile } from "./app/reconcile.ts";
26
27
  import { MAX_ROUNDS, pollOnce } from "./app/service.ts";
@@ -103,6 +104,20 @@ if (httpServer instanceof Server) {
103
104
  app.log.warn("agentic channel not mounted: app.httpServer is not a node:http Server on this host");
104
105
  }
105
106
 
107
+ // Standalone `/console` redirect (issue #771). Running behind the nano console, the console origin
108
+ // serves `/console/*` and the reverse proxy strips its app-view prefix before the app ever sees a
109
+ // request — but STANDALONE, the UI's `/console` links land on this app's own port, where nothing
110
+ // serves them, so the runtime answers a bare 503. Mount a narrow request redirect that rewrites
111
+ // `/console/*` to the engine console origin (derived from the CANONICAL engine-address resolution,
112
+ // `resolveEngineAddress`, so an explicit `CAMUNDA_REST_ADDRESS` wins over `NANOBPMN_BASE_URL`),
113
+ // preserving path + query, and leaves `/app/*`, `/agentic`, and the Workforce page routes untouched.
114
+ // Mounted last so it captures every request listener the runtime + agentic channel attached, and
115
+ // delegates each non-console request to them unchanged.
116
+ let consoleRedirectTeardown: (() => void) | undefined;
117
+ if (httpServer instanceof Server) {
118
+ consoleRedirectTeardown = mountConsoleRedirect(httpServer, resolveConsoleOrigin(), app.log);
119
+ }
120
+
106
121
  // Engine-reset reconciliation (issues #622, #630). On boot, compare the engine's incarnation epoch
107
122
  // against the last-seen value; on a REGRESSION (the engine was reset/restored/rewound and re-minted
108
123
  // its keys, Magikcraft/nano-bpm#1065) drive every dangling engine-backed inflight row to the defined
@@ -153,6 +168,12 @@ async function drainAndExit(): Promise<void> {
153
168
  if (shuttingDown) return;
154
169
  shuttingDown = true;
155
170
  if (pollTimer) clearTimeout(pollTimer);
171
+ // Restore the original request listener set (drops the /console redirect wrapper).
172
+ if (consoleRedirectTeardown) {
173
+ try {
174
+ consoleRedirectTeardown();
175
+ } catch { /* best-effort redirect teardown */ }
176
+ }
156
177
  // Tear the agentic families + hub down (releases the WS clients) before the app stops its HTTP
157
178
  // server, which the channel shares.
158
179
  if (agentic) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nanobpm/nano-workforce",
3
- "version": "0.186.2",
3
+ "version": "0.186.3",
4
4
  "description": "Nano Workforce — an Agent Graph Orchestration application for Agentic SDLC: durable BPMN processes that coordinate a graph of AI agents across the software delivery lifecycle.",
5
5
  "type": "module",
6
6
  "main": "main.ts",