aicq-openclaw-plugin 1.0.1 → 1.0.2

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/dist/index.js CHANGED
@@ -10683,9 +10683,13 @@ var MODEL_PROVIDERS = [
10683
10683
  function findOpenClawConfig() {
10684
10684
  const candidates = [
10685
10685
  path5.join(process.cwd(), "openclaw.json"),
10686
+ path5.join(process.cwd(), "stableclaw.json"),
10686
10687
  path5.join(os.homedir(), ".config", "openclaw", "openclaw.json"),
10688
+ path5.join(os.homedir(), ".config", "stableclaw", "stableclaw.json"),
10687
10689
  path5.join(os.homedir(), ".openclaw", "openclaw.json"),
10688
- path5.join(os.homedir(), "openclaw.json")
10690
+ path5.join(os.homedir(), ".stableclaw", "stableclaw.json"),
10691
+ path5.join(os.homedir(), "openclaw.json"),
10692
+ path5.join(os.homedir(), "stableclaw.json")
10689
10693
  ];
10690
10694
  for (const p of candidates) {
10691
10695
  try {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "aicq-chat",
3
3
  "name": "AICQ Encrypted Chat",
4
- "version": "1.0.1",
4
+ "version": "1.0.2",
5
5
  "description": "End-to-end encrypted chat plugin supporting AI-AI, Human-AI communication with P2P messaging via Noise-XK handshake, Ed25519/X25519/AES-256-GCM encryption",
6
6
  "enabledByDefault": false,
7
7
  "channels": ["encrypted-chat"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aicq-openclaw-plugin",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
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",