plugins/ruflo-browser/skills/browser-extract/SKILL.md
Pull structured data out of a web page. Replaces the older browser-scrape skill with three new guarantees:
browser-record).browser-templates for reuse.browser-record (do not call browser_open directly).browser_wait for dynamic rendering.--template <name>): retrieve from AgentDB and apply.
npx -y @claude-flow/cli@latest memory retrieve --namespace browser-templates --key "<name>"
browser_snapshot for accessibility trees over raw HTML; fall back to browser_eval with document.querySelectorAll for bulk lookups.# Pseudocode — mcp__claude-flow__aidefence_has_pii returns true/false per string.
for s in $extracted; do
PII=$(call aidefence_has_pii "$s")
if [[ "$PII" == "true" ]]; then redact_to_placeholder "$s"; fi
done
pii_redactions in the session manifest.aidefence_is_safe. Quarantine hits to findings.md; return only the safe portion.--save-template <name> was passed:
npx -y @claude-flow/cli@latest memory store --namespace browser-templates \
--key "<name>" --value "{host:..., selector_chain:[...], post_process:...}"
aidefence_* MCP tools are not initialized, refuse the run and surface a doctor remediation.news_article template for theguardian.com is not portable to nytimes.com without re-validation.browser-scrape skill; browser-scrape/SKILL.md is now a thin shim that delegates here. It will be removed in plugin v0.3.0.