seo-intel 1.2.0 → 1.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.2.1 (2026-03-28)
4
+
5
+ ### Dashboard
6
+ - Remove redundant Crawl/Extract buttons from status bar — terminal already has them
7
+ - Status bar now shows only Stop, Restart, and Stealth toggle (cleaner UI)
8
+ - Stealth toggle still controls `--stealth` flag for terminal Crawl/Extract buttons
9
+
3
10
  ## 1.2.0 (2026-03-28)
4
11
 
5
12
  ### AEO — AI Citability Audit (new feature)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seo-intel",
3
- "version": "1.2.0",
3
+ "version": "1.2.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",
@@ -1960,22 +1960,6 @@ function buildHtmlTemplate(data, opts = {}) {
1960
1960
  ` : ''}
1961
1961
  </div>
1962
1962
  <div class="es-controls" id="esControls${suffix}">
1963
- ${extractionStatus.liveProgress?.status === 'running' && extractionStatus.liveProgress?.command === 'crawl'
1964
- ? `<button class="es-btn running" id="btnCrawl${suffix}" onclick="startJob('crawl','${project}')" disabled>
1965
- <i class="fa-solid fa-spinner fa-spin"></i> Crawling\u2026
1966
- </button>`
1967
- : `<button class="es-btn" id="btnCrawl${suffix}" onclick="startJob('crawl','${project}')"${extractionStatus.liveProgress?.status === 'running' ? ' disabled' : ''}>
1968
- <i class="fa-solid fa-spider"></i> Crawl
1969
- </button>`
1970
- }
1971
- ${extractionStatus.liveProgress?.status === 'running' && extractionStatus.liveProgress?.command === 'extract'
1972
- ? `<button class="es-btn running" id="btnExtract${suffix}" onclick="startJob('extract','${project}')" disabled>
1973
- <i class="fa-solid fa-spinner fa-spin"></i> Extracting\u2026
1974
- </button>`
1975
- : `<button class="es-btn" id="btnExtract${suffix}" onclick="startJob('extract','${project}')"${extractionStatus.liveProgress?.status === 'running' ? ' disabled' : ''}>
1976
- <i class="fa-solid fa-brain"></i> Extract
1977
- </button>`
1978
- }
1979
1963
  <button class="es-btn es-btn-stop${extractionStatus.liveProgress?.status === 'running' ? ' active' : ''}" id="btnStop${suffix}" onclick="stopJob()">
1980
1964
  <i class="fa-solid fa-stop"></i> Stop
1981
1965
  </button>