@femtomc/mu-server 26.2.32 → 26.2.33

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/README.md CHANGED
@@ -87,16 +87,17 @@ Bun.serve(server);
87
87
 
88
88
  ### With Web UI (Recommended)
89
89
 
90
- The easiest way to run the server with the web interface:
90
+ The easiest way to run the server with the bundled web interface (and default terminal meta-agent chat):
91
91
 
92
92
  ```bash
93
93
  # From any mu repository
94
- mu serve
95
-
96
- # Or with custom ports
97
- mu serve --port 8080 --api-port 3001
94
+ mu serve # API + web UI + terminal meta-agent session
95
+ mu serve --no-open # Skip browser auto-open (headless/SSH)
96
+ mu serve --port 8080 # Custom shared API/web UI port
98
97
  ```
99
98
 
99
+ Type `/exit` (or press Ctrl+C) to stop both the chat session and server.
100
+
100
101
  ### Standalone Server
101
102
 
102
103
  ```bash
@@ -1,4 +1,5 @@
1
- import { type Channel, type MessagingMetaAgentBackend, MessagingMetaAgentRuntime } from "@femtomc/mu-control-plane";
1
+ import { type Channel } from "@femtomc/mu-control-plane";
2
+ import { type MessagingMetaAgentBackend, MessagingMetaAgentRuntime } from "@femtomc/mu-agent";
2
3
  export declare const ENV_VARS: {
3
4
  readonly slack: {
4
5
  readonly signingSecret: "MU_SLACK_SIGNING_SECRET";
@@ -1,4 +1,5 @@
1
- import { ApprovedCommandBroker, CommandContextResolver, ControlPlaneCommandPipeline, ControlPlaneOutbox, ControlPlaneOutboxDispatcher, ControlPlaneRuntime, DiscordControlPlaneAdapter, getControlPlanePaths, MessagingMetaAgentRuntime, PiMessagingMetaAgentBackend, SlackControlPlaneAdapter, TelegramControlPlaneAdapter, } from "@femtomc/mu-control-plane";
1
+ import { ControlPlaneCommandPipeline, ControlPlaneOutbox, ControlPlaneOutboxDispatcher, ControlPlaneRuntime, DiscordControlPlaneAdapter, getControlPlanePaths, SlackControlPlaneAdapter, TelegramControlPlaneAdapter, } from "@femtomc/mu-control-plane";
2
+ import { ApprovedCommandBroker, CommandContextResolver, MessagingMetaAgentRuntime, PiMessagingMetaAgentBackend, } from "@femtomc/mu-agent";
2
3
  export const ENV_VARS = {
3
4
  slack: { signingSecret: "MU_SLACK_SIGNING_SECRET" },
4
5
  discord: { signingSecret: "MU_DISCORD_SIGNING_SECRET" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@femtomc/mu-server",
3
- "version": "26.2.32",
3
+ "version": "26.2.33",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -23,9 +23,10 @@
23
23
  "start": "bun run dist/cli.js"
24
24
  },
25
25
  "dependencies": {
26
- "@femtomc/mu-core": "26.2.32",
27
- "@femtomc/mu-issue": "26.2.32",
28
- "@femtomc/mu-forum": "26.2.32",
29
- "@femtomc/mu-control-plane": "26.2.32"
26
+ "@femtomc/mu-agent": "26.2.33",
27
+ "@femtomc/mu-control-plane": "26.2.33",
28
+ "@femtomc/mu-core": "26.2.33",
29
+ "@femtomc/mu-forum": "26.2.33",
30
+ "@femtomc/mu-issue": "26.2.33"
30
31
  }
31
32
  }