@houseofmvps/claude-rank 1.7.1 → 1.7.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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "claude-rank",
3
3
  "description": "The most comprehensive SEO/GEO/AEO plugin for Claude Code. Audit, fix, and dominate search.",
4
- "version": "1.7.1",
4
+ "version": "1.7.2",
5
5
  "author": {
6
6
  "name": "Houseofmvps",
7
7
  "email": "houseofmvps2024@gmail.com"
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  <img src="assets/hero-banner.png" alt="claude-rank — SEO/GEO/AEO Plugin for Claude Code" width="100%"/>
4
4
 
5
- ### The most comprehensive SEO/GEO/AEO plugin for Claude Code. 80+ rules. Competitive X-Ray. Auto-fix everything. Dominate search — traditional and AI.
5
+ ### The most comprehensive SEO/GEO/AEO plugin for Claude Code. 85+ rules. Competitive X-Ray. Auto-fix everything. Dominate search — traditional and AI.
6
6
 
7
7
  [![npm version](https://img.shields.io/npm/v/%40houseofmvps%2Fclaude-rank?style=for-the-badge&logo=npm&color=CB3837)](https://www.npmjs.com/package/@houseofmvps/claude-rank)
8
8
  [![npm downloads](https://img.shields.io/npm/dm/%40houseofmvps%2Fclaude-rank?style=for-the-badge&logo=npm&color=blue&label=Monthly%20Downloads)](https://www.npmjs.com/package/@houseofmvps/claude-rank)
@@ -188,11 +188,11 @@ That's not an SEO problem. That's a visibility problem across every search surfa
188
188
  /claude-rank:rank-audit
189
189
  ```
190
190
 
191
- One command. Three scanners run in parallel — SEO, GEO, and AEO. 80+ rules checked. Every finding gets an automated fix. Score tracked over time. **Then it tells you exactly what to do in Google Search Console and Bing Webmaster Tools.**
191
+ One command. Three scanners run in parallel — SEO, GEO, and AEO. 85+ rules checked. Every finding gets an automated fix. Score tracked over time. **Then it tells you exactly what to do in Google Search Console and Bing Webmaster Tools.**
192
192
 
193
193
  ```
194
194
  SEO Score: 87/100 ████████████░░ (39 rules)
195
- GEO Score: 92/100 █████████████░ (25 rules)
195
+ GEO Score: 92/100 █████████████░ (34 rules)
196
196
  AEO Score: 78/100 ██████████░░░░ (12 rules)
197
197
  Overall: 86/100 READY TO RANK
198
198
  ```
@@ -215,7 +215,7 @@ Traditional search optimization. The foundation.
215
215
  | **Structured Data** | JSON-LD presence, schema validation against Google's required fields (14 schema types) |
216
216
  | **Cross-Page** | Duplicate titles across pages, duplicate descriptions, canonical conflicts, orphan pages |
217
217
 
218
- ### GEO Scanner — 25 Rules
218
+ ### GEO Scanner — 34 Rules
219
219
 
220
220
  Generative Engine Optimization. For AI search engines: ChatGPT, Perplexity, Gemini, Google AI Overviews.
221
221
 
@@ -382,7 +382,7 @@ Each audit produces separate SEO, GEO, and AEO scores plus a composite. Same rul
382
382
  |---------|-------------|
383
383
  | `claude-rank scan ./project` | Full SEO scan (39 rules) |
384
384
  | `claude-rank scan https://example.com` | Crawl and scan a live site (up to 50 pages) |
385
- | `claude-rank geo ./project` | GEO scan — AI search optimization (25 rules) |
385
+ | `claude-rank geo ./project` | GEO scan — AI search optimization (34 rules) |
386
386
  | `claude-rank aeo ./project` | AEO scan — answer engine optimization (12 rules) |
387
387
  | `claude-rank compete https://competitor.com .` | Competitive X-Ray — side-by-side comparison |
388
388
  | `claude-rank cwv https://example.com` | Core Web Vitals via Lighthouse (optional) |
@@ -411,7 +411,7 @@ Each audit produces separate SEO, GEO, and AEO scores plus a composite. Same rul
411
411
  | Feature | claude-rank | claude-seo |
412
412
  |---------|:-----------:|:----------:|
413
413
  | SEO rules | 39 | ~20 |
414
- | GEO — AI search (Perplexity, ChatGPT, Gemini) | 25 rules | Basic |
414
+ | GEO — AI search (Perplexity, ChatGPT, Gemini) | 34 rules | Basic |
415
415
  | AEO — featured snippets, voice search | 12 rules | None |
416
416
  | Core Web Vitals / Lighthouse | Yes (optional) | No |
417
417
  | Redirect chain detection | Yes | No |
@@ -463,7 +463,7 @@ See [SECURITY.md](SECURITY.md) for the full vulnerability disclosure policy.
463
463
 
464
464
  | Category | Count | Highlights |
465
465
  |---|---|---|
466
- | **Tools** | 10 | SEO scanner (39 rules), GEO scanner (25 rules), AEO scanner (12 rules), Competitive X-Ray (50+ tech patterns), Lighthouse/CWV scanner, schema engine, robots analyzer, sitemap analyzer, llms.txt generator, audit history |
466
+ | **Tools** | 10 | SEO scanner (39 rules), GEO scanner (34 rules), AEO scanner (12 rules), Competitive X-Ray (50+ tech patterns), Lighthouse/CWV scanner, schema engine, robots analyzer, sitemap analyzer, llms.txt generator, audit history |
467
467
  | **Skills** | 7 | /claude-rank:rank, /claude-rank:rank-audit, /claude-rank:rank-geo, /claude-rank:rank-aeo, /claude-rank:rank-fix, /claude-rank:rank-schema, /claude-rank:rank-compete |
468
468
  | **Agents** | 4 | SEO auditor (project-type-aware), GEO auditor (AI readiness levels), AEO auditor (snippet opportunities), Schema auditor (Google validation) |
469
469
  | **Commands** | 7 | All slash commands above |
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  // Standalone CLI: npx claude-rank <command> <directory>
3
- // Commands: scan, geo, aeo, schema, fix
3
+ // Commands: scan, geo, aeo, compete, cwv, schema
4
4
 
5
5
  const args = process.argv.slice(2);
6
6
  const jsonFlag = args.includes('--json');
@@ -97,6 +97,9 @@ if (command === 'compete') {
97
97
  const localDir = positional[2] || '.';
98
98
  const { resolve: resolvePath } = await import('path');
99
99
 
100
+ // Clear argv before importing so compete-scanner's inline CLI guard doesn't fire
101
+ process.argv = process.argv.slice(0, 2);
102
+
100
103
  const { compete } = await import(new URL('../tools/compete-scanner.mjs', import.meta.url));
101
104
  const { formatCompeteReport } = await import(new URL('../tools/lib/formatter.mjs', import.meta.url));
102
105
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@houseofmvps/claude-rank",
3
- "version": "1.7.1",
3
+ "version": "1.7.2",
4
4
  "description": "The most comprehensive SEO/GEO/AEO plugin for Claude Code. Audit, fix, and dominate search — traditional and AI.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -71,7 +71,7 @@ Advise on content optimizations the scanner cannot automate:
71
71
 
72
72
  ## Phase 7: Backlink Strategy
73
73
 
74
- Guide link building: create link-worthy assets, guest posting, broken link building, HARO.
74
+ Guide link building: create link-worthy assets, guest posting, broken link building, digital PR, expert roundups.
75
75
 
76
76
  ## Phase 8: Search Console Action Plan
77
77