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 CHANGED
@@ -240,4 +240,4 @@ The OpenClaw agent provides:
240
240
 
241
241
  ---
242
242
 
243
- Built by [froggo.pro](https://froggo.pro) — local-first SEO intelligence.
243
+ Built by [ukkometa.fi](https://ukkometa.fi) — local-first SEO intelligence.
@@ -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
- npx seo-intel setup
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
- echo " Setup complete. You can close this window."
11
- read -n 1 -s -r -p " Press any key to exit..."
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seo-intel",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Local Ahrefs-style SEO competitor intelligence. Crawl → SQLite → cloud analysis.",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -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🐸 SEO Intel — Agent-Powered Setup\x1b[0m\n');
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 {