Install
openclaw skills install @asale-ai/geo-updateUpdate the installed SEO + GEO skills and the seogeo CLI to the latest release. Reports the installed version, the latest published version, what changed, and reinstalls the skill set across every detected agent tool. Use when the user says "update geo", "update skills", "upgrade seogeo", "aggiorna", or asks whether a newer version exists.
openclaw skills install @asale-ai/geo-updateThe skills and the seogeo binary version together. Updating means
upgrading the binary, then reinstalling the skills that ship inside it.
seogeo --version
seogeo install --list --json
install --list prints every supported agent tool, whether it is detected
on this machine, and where its skills live. Show the user the installed
version and the detected targets before changing anything.
If seogeo is not found, the toolkit is not installed. Point the user at
the install command rather than trying to repair the installation:
curl -fsSL https://raw.githubusercontent.com/asale-ai/seo-geo-skill/main/install.sh | sh
curl -fsSL https://api.github.com/repos/asale-ai/seo-geo-skill/releases/latest \
| grep '"tag_name"'
Compare against seogeo --version. If they match, tell the user they are
current and stop — do not reinstall for no reason.
The install script is idempotent and replaces the binary in place:
curl -fsSL https://raw.githubusercontent.com/asale-ai/seo-geo-skill/main/install.sh | sh
On Windows PowerShell:
irm https://raw.githubusercontent.com/asale-ai/seo-geo-skill/main/install.ps1 | iex
The script verifies the release checksum before installing. If verification fails it aborts without touching the existing binary — report the failure verbatim and stop.
The new binary carries the new skills:
seogeo install --target all
This writes to every agent tool detected on the machine (Claude Code, Codex CLI, Gemini CLI, OpenCode, and any AGENTS.md-based agent) and skips the ones that are not present. To target one tool:
seogeo install --target claude
seogeo install --target codex
Preview without writing:
seogeo install --target all --dry-run --json
seogeo --version
seogeo commands --json | head -20
seogeo install --list
Confirm the version advanced and that the skill count matches what
install --list reports. Tell the user which tools were updated and remind
them that Claude Code picks up new skills on the next session start.
Updating never touches user state. These survive an upgrade:
| State | Location |
|---|---|
| Drift baselines | ~/.cache/seogeo/drift/baselines.db |
| CRM prospects | <data dir>/seogeo/prospects.json |
| DataForSEO cost ledger | <data dir>/seogeo/dataforseo-costs.json |
| Google API config | ~/.config/seogeo/google-api.json |
| Backlink API config | ~/.config/seogeo/backlinks-api.json |
Skill files are overwritten. If the user edited a bundled skill, tell them to copy it to a new name before updating.