What problem does it solve? Adding support for a new job board to an agentic job-search workspace normally means hand-writing a scraper, guessing at URL patterns, and hoping the parsing works. This Skill turns that into a guided workflow: it investigates the portal's real endpoints, scaffolds a standardized search CLI, and verifies it against live data before registering anything. ## Core Features & Use Cases - Portal reconnaissance: Fetches the target job board to identify search endpoints, query parameters, result fields, robots.txt rules, and authentication requirements before writing any code. - Standardized scaffolding: Generates a complete skill directory (SKILL.md, url-reference.md, TypeScript CLI with search/detail commands, tests) following a strict portal-skill contract with zero runtime dependencies. - Mandatory live verification: Runs a real search query and detail fetch, iterating on parsers until results are clean, so no broken skill ever gets registered. - Use Case: A user in Australia wants to search Seek from their job-search workspace. They invoke /add-portal with the Seek URL, answer a few questions, and receive a tested seek-search skill that plugs into their existing /scrape workflow. ## Quick Start Ask the agent to run /add-portal with the URL of the job board you want to add, then answer the interview questions about market, language, and a test query.