@houseofmvps/claude-rank 1.2.0 → 1.2.1
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 +58 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,6 +26,58 @@
|
|
|
26
26
|
|
|
27
27
|
---
|
|
28
28
|
|
|
29
|
+
## See It In Action
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
$ claude-rank scan ./my-saas-landing
|
|
33
|
+
|
|
34
|
+
╔════════════════════════════════════════════════╗
|
|
35
|
+
║ claude-rank SEO Audit ║
|
|
36
|
+
╠════════════════════════════════════════════════╣
|
|
37
|
+
║ Score: 65/100 ██████████░░░░░ NEEDS WORK ║
|
|
38
|
+
╠════════════════════════════════════════════════╣
|
|
39
|
+
║ Files scanned: 26 ║
|
|
40
|
+
║ Findings: 41 ║
|
|
41
|
+
║ Critical: 0 High: 1 Medium: 40 Low: 0 ║
|
|
42
|
+
╚════════════════════════════════════════════════╝
|
|
43
|
+
|
|
44
|
+
Findings:
|
|
45
|
+
HIGH thin-content
|
|
46
|
+
Page has only 190 words (minimum recommended: 300)
|
|
47
|
+
Files: dist/contact/index.html
|
|
48
|
+
|
|
49
|
+
MEDIUM title-too-long (18 pages)
|
|
50
|
+
Title is 63 chars (max recommended: 60)
|
|
51
|
+
Files: dist/about/index.html, dist/blog/..., +15 more
|
|
52
|
+
|
|
53
|
+
MEDIUM missing-main-landmark (9 pages)
|
|
54
|
+
Page is missing a <main> landmark element
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
$ claude-rank geo ./my-saas-landing
|
|
59
|
+
|
|
60
|
+
╔════════════════════════════════════════════════╗
|
|
61
|
+
║ claude-rank GEO Audit ║
|
|
62
|
+
╠════════════════════════════════════════════════╣
|
|
63
|
+
║ Score: 95/100 ██████████████░ EXCELLENT ║
|
|
64
|
+
╚════════════════════════════════════════════════╝
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
$ claude-rank scan https://houseofmvps.com # Scan any live URL
|
|
69
|
+
|
|
70
|
+
╔════════════════════════════════════════════════╗
|
|
71
|
+
║ claude-rank SEO Audit ║
|
|
72
|
+
╠════════════════════════════════════════════════╣
|
|
73
|
+
║ Score: 83/100 ████████████░░░ GOOD ║
|
|
74
|
+
╚════════════════════════════════════════════════╝
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
*Real output from scanning [savemrr.co](https://savemrr.co) (26-page SaaS landing) and [houseofmvps.com](https://houseofmvps.com).*
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
29
81
|
## Quick Start
|
|
30
82
|
|
|
31
83
|
### Install as a Claude Code plugin (recommended)
|
|
@@ -39,10 +91,12 @@ That's it. Restart Claude Code and all 6 skills + 4 agents are active.
|
|
|
39
91
|
### Or use standalone — no plugin install needed
|
|
40
92
|
|
|
41
93
|
```bash
|
|
42
|
-
npx @houseofmvps/claude-rank scan ./my-project
|
|
43
|
-
npx @houseofmvps/claude-rank
|
|
44
|
-
npx @houseofmvps/claude-rank
|
|
45
|
-
npx @houseofmvps/claude-rank
|
|
94
|
+
npx @houseofmvps/claude-rank scan ./my-project # Local directory
|
|
95
|
+
npx @houseofmvps/claude-rank scan https://example.com # Live URL
|
|
96
|
+
npx @houseofmvps/claude-rank geo ./my-project # AI search audit
|
|
97
|
+
npx @houseofmvps/claude-rank aeo ./my-project # Answer engine audit
|
|
98
|
+
npx @houseofmvps/claude-rank schema ./my-project # Structured data
|
|
99
|
+
npx @houseofmvps/claude-rank scan ./site --json # Raw JSON output
|
|
46
100
|
```
|
|
47
101
|
|
|
48
102
|
### Or install globally
|
package/package.json
CHANGED