seo-autopilot
Run local SEO autopilot for boll-koll.se or hyresbyte.se and return PR link plus summary.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install openclaw-skills-seo-autopilot
Repository
Skill path: skills/adamhjort/seo-autopilot
Run local SEO autopilot for boll-koll.se or hyresbyte.se and return PR link plus summary.
Open repositoryBest for
Primary workflow: Grow & Distribute.
Technical facets: Full Stack, Tech Writer.
Target audience: everyone.
License: MIT.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install seo-autopilot into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding seo-autopilot to shared team environments
- Use seo-autopilot for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: seo-autopilot
description: Run local SEO autopilot for boll-koll.se or hyresbyte.se and return PR link plus summary.
allowed-tools:
- exec
metadata:
triggers:
- "seo"
- "seo boll-koll.se"
- "seo hyresbyte.se"
allowed_sites:
- boll-koll.se
- hyresbyte.se
command:
- scripts/run.sh
license: MIT
---
# seo-autopilot
## Usage (WhatsApp / chat)
- seo
- seo boll-koll.se
- seo hyresbyte.se
Default site: boll-koll.se
## Safety
Only allow: boll-koll.se, hyresbyte.se
Never run arbitrary commands. Only run:
- scripts/run.sh <site>
## Behavior
1. Parse site from the message, default to boll-koll.se.
2. Refuse if site is not in allowlist.
3. Run: scripts/run.sh <site>
4. Extract PR url from stdout (line starting with "PR:").
5. If SEO_REPORT.md exists in the repo, include the top 3 findings in the reply.
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### _meta.json
```json
{
"owner": "adamhjort",
"slug": "seo-autopilot",
"displayName": "Seo Autopilot",
"latest": {
"version": "1.0.0",
"publishedAt": 1770422830306,
"commit": "https://github.com/openclaw/skills/commit/ad1523194799bad51d182612bb190c8ddac96831"
},
"history": []
}
```
### scripts/run.sh
```bash
#!/usr/bin/env bash
set -euo pipefail
SITE="${1:-boll-koll.se}"
if [[ "$SITE" != "boll-koll.se" && "$SITE" != "hyresbyte.se" ]]; then
echo "ERROR: invalid site: $SITE"
exit 2
fi
OUT="$(seo-autopilot "$SITE" 2>&1 || true)"
PR_URL="$(printf "%s\n" "$OUT" | sed -n 's/^PR: \(https\?:\/\/\S\+\).*$/\1/p' | head -n 1)"
echo "PR: ${PR_URL:-}"
echo "$OUT"
```