Skills site-profile
Short alias for external-site-profile-learning. Use this when investigating, adding, validating, or debugging external website profiles for the 99idea Playwright browser demo.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/allens0104/site-profile" ~/.claude/skills/openclaw-skills-site-profile && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/allens0104/site-profile" ~/.openclaw/skills/openclaw-skills-site-profile && rm -rf "$T"
manifest:
skills/allens0104/site-profile/SKILL.mdsource content
Site profile skill
This is the short public alias for:
external-site-profile-learning
Also available as simpler aliases:
profile站点配置
Use this skill when you want to:
- add a new external site profile
- debug why a site works heuristically but fails under Gemini
- classify whether a site should be generic, blocked, special, or config-driven
- validate a site in both heuristic and Gemini modes
Primary guidance
Follow the same workflow as the full skill:
- probe the site
- classify the UI pattern and failure mode
- add a data-only profile when justified
- validate heuristic and Gemini flows
- keep special/rate-limited sites out of the default regression matrix
- use grouped regression runs when debugging popup-heavy or heavy-page sites
Key rules
- Prefer URL or title verification for external sites.
- Prefer exact selectors over broad selectors.
- If a profile exists, normalize generated
andtype
steps back to the profile selectors.click - Treat login walls, hidden inputs, duplicate controls, and anti-bot behavior as different problem types.
- Prefer grouped validation commands such as
,validate:external:core
, andvalidate:external:popup
for targeted debugging.validate:external:heavy
Quick invocation template
You do not need to use only
/site-profile.
Reliable invocation patterns include:
/site-profileuse the site-profile skill- a natural-language request that clearly asks to turn an already-proven flow into a stable reusable profile
Use prompts like:
Use /site-profile to turn this site into a stable external profile, then validate both heuristic and Gemini planning.
使用 /site-profile 把这个网站沉淀成稳定 profile,并分别验证 heuristic 和 Gemini 两条链路。
Please turn this already-working site flow into a stable reusable profile and validate both heuristic and Gemini modes.
Output contract
The skill output should always include:
- failure class or site class
- exact selectors chosen and why
- verification mode and expected signal
- validation commands run (or planned)
- final status: stable / blocked / special-case
Pointer
For the full detailed playbook, also see:
in this repositoryskills/external-site-profile-learning/SKILL.md