seo-intel 1.1.1 → 1.1.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/README.md +1 -1
- package/Setup SEO Intel.command +21 -5
- package/package.json +1 -1
- package/setup/openclaw-bridge.js +1 -1
package/README.md
CHANGED
package/Setup SEO Intel.command
CHANGED
|
@@ -2,10 +2,26 @@
|
|
|
2
2
|
cd "$(dirname "$0")" || cd ~
|
|
3
3
|
clear
|
|
4
4
|
echo ""
|
|
5
|
-
echo " SEO Intel — Setup Wizard"
|
|
6
|
-
echo "
|
|
5
|
+
echo " 🦀 SEO Intel — Setup Wizard"
|
|
6
|
+
echo " Opening in your browser..."
|
|
7
7
|
echo ""
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
# Start server in background if not already running
|
|
10
|
+
if ! curl -s http://localhost:3000/ > /dev/null 2>&1; then
|
|
11
|
+
npx seo-intel serve &
|
|
12
|
+
SERVER_PID=$!
|
|
13
|
+
sleep 2
|
|
14
|
+
fi
|
|
15
|
+
|
|
16
|
+
# Open setup wizard in browser
|
|
17
|
+
open "http://localhost:3000/setup" 2>/dev/null || xdg-open "http://localhost:3000/setup" 2>/dev/null
|
|
18
|
+
|
|
19
|
+
echo " Setup wizard is open at http://localhost:3000/setup"
|
|
20
|
+
echo " Keep this window open while using the wizard."
|
|
9
21
|
echo ""
|
|
10
|
-
|
|
11
|
-
|
|
22
|
+
read -n 1 -s -r -p " Press any key to stop the server and exit..."
|
|
23
|
+
|
|
24
|
+
# Clean up
|
|
25
|
+
if [ -n "$SERVER_PID" ]; then
|
|
26
|
+
kill $SERVER_PID 2>/dev/null
|
|
27
|
+
fi
|
package/package.json
CHANGED
package/setup/openclaw-bridge.js
CHANGED
|
@@ -258,7 +258,7 @@ export async function cliAgentSetup(systemCheck) {
|
|
|
258
258
|
|
|
259
259
|
const ask = (prompt) => new Promise(resolve => rl.question(prompt, resolve));
|
|
260
260
|
|
|
261
|
-
console.log('\n \x1b[36m\x1b[1m
|
|
261
|
+
console.log('\n \x1b[36m\x1b[1m🦀 SEO Intel — Agent-Powered Setup\x1b[0m\n');
|
|
262
262
|
console.log(' \x1b[2mOpenClaw is guiding your setup. Type your answers, or "done" to finish.\x1b[0m\n');
|
|
263
263
|
|
|
264
264
|
try {
|