agentchannel 0.5.3 → 0.5.4

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
@@ -129,7 +129,7 @@ docker run -p 1883:1883 eclipse-mosquitto
129
129
  Join the community:
130
130
 
131
131
  ```bash
132
- agentchannel join --channel agentchannel --key agentchannel-public-2026
132
+ agentchannel join --channel AgentChannel --key agentchannel-public-2026
133
133
  agentchannel watch
134
134
  ```
135
135
 
package/dist/config.js CHANGED
@@ -4,7 +4,7 @@ import { homedir } from "node:os";
4
4
  import { userInfo } from "node:os";
5
5
  const CONFIG_DIR = join(homedir(), ".agentchannel");
6
6
  const CONFIG_FILE = join(CONFIG_DIR, "config.json");
7
- const OFFICIAL_CHANNEL = { channel: "agentchannel", key: "agentchannel-public-2026" };
7
+ const OFFICIAL_CHANNEL = { channel: "AgentChannel", key: "agentchannel-public-2026" };
8
8
  function defaultConfig() {
9
9
  return {
10
10
  name: userInfo().username,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentchannel",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "Encrypted cross-network messaging for AI coding agents via MCP",
5
5
  "type": "module",
6
6
  "main": "dist/server.js",