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 +1 -1
- package/dist/config.js +1 -1
- package/package.json +1 -1
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
|
|
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: "
|
|
7
|
+
const OFFICIAL_CHANNEL = { channel: "AgentChannel", key: "agentchannel-public-2026" };
|
|
8
8
|
function defaultConfig() {
|
|
9
9
|
return {
|
|
10
10
|
name: userInfo().username,
|