Skip to content

Commit fe90e17

Browse files
committed
docs: add Claude Code and Codex CLI installation instructions
1 parent 14687f0 commit fe90e17

File tree

1 file changed

+28
-13
lines changed

1 file changed

+28
-13
lines changed

README.md

Lines changed: 28 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,30 +21,45 @@ PAGERANGERS_API_TOKEN=your_api_key_here
2121
PAGERANGERS_PROJECT_HASH=your_project_hash_here
2222
EOF
2323

24-
# 2. Run commands
25-
python3 scripts/pagerangers.py kpis
26-
python3 scripts/pagerangers.py rankings --limit 10
27-
python3 scripts/pagerangers.py keyword "SEO tools" --top 5
28-
python3 scripts/pagerangers.py prospects --limit 10
24+
# 2. Run commands (--json flag must come before subcommand)
25+
python3 scripts/pagerangers.py --json kpis
26+
python3 scripts/pagerangers.py --json rankings --limit 10
27+
python3 scripts/pagerangers.py --json keyword "SEO tools" --top 5
28+
python3 scripts/pagerangers.py --json prospects --limit 10
2929
```
3030

3131
## Installation
3232

33-
### As Claude Code Plugin
33+
### Claude Code (via Marketplace)
3434

3535
```bash
36-
# Clone and install
37-
git clone https://github.com/netresearch/pagerangers-skill
38-
cd pagerangers-skill
36+
# 1. Add Netresearch marketplace (once)
37+
/plugin marketplace add https://github.com/netresearch/claude-code-marketplace.git
3938

40-
# Install with dev dependencies (for testing)
41-
uv pip install -e ".[dev]"
39+
# 2. The skill auto-activates when you mention PageRangers or SEO rankings
4240
```
4341

44-
### As Standalone Script
42+
### Codex CLI
4543

4644
```bash
47-
# No installation needed - just run with Python 3.10+
45+
# Install skill directly from GitHub
46+
$skill-installer https://github.com/netresearch/pagerangers-skill
47+
48+
# Or clone manually
49+
git clone https://github.com/netresearch/pagerangers-skill ~/.codex/skills/pagerangers-seo
50+
```
51+
52+
### Manual Installation
53+
54+
```bash
55+
# Clone repository
56+
git clone https://github.com/netresearch/pagerangers-skill
57+
cd pagerangers-skill
58+
59+
# Install dependencies (optional, for development)
60+
uv pip install -e ".[dev]"
61+
62+
# Run directly with Python 3.10+
4863
python3 scripts/pagerangers.py --help
4964
```
5065

0 commit comments

Comments
 (0)