aicq-openclaw-plugin 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -11876,7 +11876,7 @@ var plugin = definePluginEntry({
11876
11876
  logger,
11877
11877
  html: managementHtml
11878
11878
  });
11879
- const mgmtPort = parseInt(process.env.AICQ_MGMT_PORT || "461099", 10);
11879
+ const mgmtPort = parseInt(process.env.AICQ_MGMT_PORT || "16888", 10);
11880
11880
  const mgmtServer = http.createServer((req, res) => {
11881
11881
  managementHandler(req, res).catch((err) => {
11882
11882
  logger.error("[HTTP] Management server error: " + (err instanceof Error ? err.message : err));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aicq-openclaw-plugin",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "AICQ OpenClaw plugin - end-to-end encrypted P2P chat for AI agents",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",