@keychat-io/keychat 0.1.18 → 0.1.20
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/package.json +1 -1
- package/scripts/install.sh +1 -1
- package/scripts/postinstall.mjs +13 -0
package/package.json
CHANGED
package/scripts/install.sh
CHANGED
|
@@ -173,7 +173,7 @@ echo " 🎉 Keychat installed successfully!"
|
|
|
173
173
|
echo "════════════════════════════════════════"
|
|
174
174
|
echo ""
|
|
175
175
|
echo "Your agent's Keychat ID will appear in the gateway logs."
|
|
176
|
-
echo "Run 'openclaw
|
|
176
|
+
echo "Run 'openclaw logs --follow' to see it."
|
|
177
177
|
echo ""
|
|
178
178
|
echo "To connect: open the Keychat app and scan the QR code."
|
|
179
179
|
echo ""
|
package/scripts/postinstall.mjs
CHANGED
|
@@ -126,3 +126,16 @@ try {
|
|
|
126
126
|
console.warn(`[keychat] Could not auto-configure: ${err.message}`);
|
|
127
127
|
console.warn('[keychat] Run manually: openclaw config set channels.keychat.enabled true');
|
|
128
128
|
}
|
|
129
|
+
|
|
130
|
+
// Final summary
|
|
131
|
+
console.log("");
|
|
132
|
+
console.log("════════════════════════════════════════");
|
|
133
|
+
console.log(" 🎉 Keychat plugin installed!");
|
|
134
|
+
console.log("════════════════════════════════════════");
|
|
135
|
+
console.log("");
|
|
136
|
+
console.log("Next step: restart the gateway to activate Keychat");
|
|
137
|
+
console.log("");
|
|
138
|
+
console.log(" openclaw gateway restart");
|
|
139
|
+
console.log("");
|
|
140
|
+
console.log("Your agent's Keychat ID will appear in the gateway logs.");
|
|
141
|
+
console.log("Run 'openclaw logs --follow' to see it.");
|