web-skills-protocol
SKILL.md
Web Skills Protocol — Agent Skill
When a user asks you to interact with a website, check for published skills first before attempting to scrape HTML, guess at UI elements, or reverse-engineer APIs.
Discovery Workflow
Step 1: Check for skills.txt
Fetch {origin}/skills.txt (e.g., https://bobs-store.com/skills.txt).
- 200 response → Parse it. Proceed to Step 3.
- 404 response → Go to Step 2.
Step 2: Check for agents.txt (fallback)
Fetch {origin}/agents.txt.
- 200 response → Parse it. Proceed to Step 3.
- Both 404 → The site does not support WSP. Fall back to normal browsing/scraping.