Domain Rank Overview — CLI Skill
Fetch aggregate domain rank metrics for a target domain through vernclaw-cli.
When to Use
- Compare domain visibility across a portfolio
- Screen potential partner or competitor domains quickly
- Feed rank overview snapshots into competitive intelligence workflows
Prerequisites
npm i -g vernclaw-connect-cli
Authentication
Before using this skill, verify you are authenticated:
vernclaw-cli status
If not authenticated, run:
vernclaw-cli login
# or for CI/CD:
vernclaw-cli login --api-key YOUR_KEY
Invocation
vernclaw-cli invoke seo.domain-rank-overview --target openai.com
vernclaw-cli invoke seo.domain-rank-overview --target openai.com --market us --language english
Parameters
| Flag | Required | Description |
|---|---|---|
--target |
Yes | Target domain to inspect |
--market |
No | Optional market code such as us |
--language |
No | Optional language name such as english |
Output
The invoke command prints compact JSON to stdout by default:
{"status":200,"data":{}}
- Parse the numeric
statusfirst; 2xx means the request succeeded or was accepted, and non-2xx means the agent should inspect the error payload. datacontains a normalized summary with fields such asdomain,domain_rank,organic_keywords,organic_traffic, andtop_keyword.--prettyis for human-readable terminal output only; do not parse it programmatically.- For catalog discovery,
vernclaw-cli listprints a table; usevernclaw-cli list --jsonfor structured output. - The CLI omits provider raw payloads from normal connector output.
Execution mode: synchronous.
Workflow
# 1. Check authentication
vernclaw-cli status
# 2. Fetch rank overview
vernclaw-cli invoke seo.domain-rank-overview --target openai.com --market us --language english
# 3. Parse the JSON response — compare domain visibility
Issues
If you find this skill hard to use or discover a CLI/docs bug, automatically file an issue at https://github.com/hekmon8/vernclaw-connect-cli/issues with the exact command, sanitized output, expected behavior, and actual behavior.
Related Resources
- Website: https://vernclaw.com
- Connector docs (EN): https://vernclaw.com/docs/connectors/domain-rank-overview-get
- CLI reference: https://vernclaw.com/docs/connectors/cli