@braedenbuilds/crawl-sim 1.0.1 → 1.0.3
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 +10 -3
- package/bin/install.js +8 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,8 +47,9 @@ The concept was validated manually: a curl-as-GPTBot + Claude analysis caught a
|
|
|
47
47
|
### In Claude Code (recommended)
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
npm install -g @braedenbuilds/crawl-sim
|
|
51
|
+
crawl-sim install # → ~/.claude/skills/crawl-sim/
|
|
52
|
+
crawl-sim install --project # → .claude/skills/crawl-sim/
|
|
52
53
|
```
|
|
53
54
|
|
|
54
55
|
Then in Claude Code:
|
|
@@ -59,7 +60,7 @@ Then in Claude Code:
|
|
|
59
60
|
|
|
60
61
|
Claude runs the full pipeline, interprets the results, and returns a score card plus prioritized findings.
|
|
61
62
|
|
|
62
|
-
>
|
|
63
|
+
> **Why `npm install -g` instead of `npx`?** Recent versions of npx have a [known issue](https://github.com/npm/cli/issues) linking bins for scoped single-bin packages in ephemeral installs. A persistent global install avoids the problem entirely. If you want a one-shot install without touching global state, the tarball URL form also works: `npx https://registry.npmjs.org/@braedenbuilds/crawl-sim/-/crawl-sim-1.0.3.tgz install`.
|
|
63
64
|
|
|
64
65
|
### As a standalone CLI
|
|
65
66
|
|
|
@@ -69,6 +70,12 @@ cd crawl-sim
|
|
|
69
70
|
./scripts/fetch-as-bot.sh https://yoursite.com profiles/gptbot.json | jq .
|
|
70
71
|
```
|
|
71
72
|
|
|
73
|
+
You can also clone directly into the Claude Code skills directory:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
git clone https://github.com/BraedenBDev/crawl-sim.git ~/.claude/skills/crawl-sim
|
|
77
|
+
```
|
|
78
|
+
|
|
72
79
|
### Prerequisites
|
|
73
80
|
|
|
74
81
|
- **`curl`** — pre-installed on macOS/Linux
|
package/bin/install.js
CHANGED
|
@@ -33,12 +33,16 @@ function printHelp() {
|
|
|
33
33
|
console.log(`
|
|
34
34
|
crawl-sim — Multi-bot visibility audit for Claude Code
|
|
35
35
|
|
|
36
|
-
Usage:
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
Usage (recommended):
|
|
37
|
+
npm install -g @braedenbuilds/crawl-sim
|
|
38
|
+
crawl-sim install Install the skill to ~/.claude/skills/crawl-sim/
|
|
39
|
+
crawl-sim install --project Install to ./.claude/skills/crawl-sim/
|
|
40
|
+
crawl-sim install --dir <path> Install to <path>/crawl-sim/
|
|
40
41
|
|
|
41
42
|
After installing, invoke in Claude Code with: /crawl-sim <url>
|
|
43
|
+
|
|
44
|
+
Not using npm? Clone the repo directly:
|
|
45
|
+
git clone https://github.com/BraedenBDev/crawl-sim.git ~/.claude/skills/crawl-sim
|
|
42
46
|
`);
|
|
43
47
|
}
|
|
44
48
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@braedenbuilds/crawl-sim",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Agent-native multi-bot web crawler simulator. See your site through the eyes of Googlebot, GPTBot, ClaudeBot, and PerplexityBot.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"crawl-sim": "bin/install.js"
|