forge_inspect
Analyze a page for tap forging: detect framework, SSR state, APIs, and generate extraction strategies. Re-forge broken taps by inspecting page changes, or probe write actions without side effects.
Instructions
Analyze a page for tap forging: detects framework, SSR state, APIs, and generates extraction strategies. Also use this to re-forge a broken tap — inspect the page again to find what changed. Pass probe_writes:true to discover write actions without triggering them (zero side effects).
AUTHORING PRINCIPLE: Prefer API > SSR > DOM. handle.fetch (cookie-aware) and handle.ssrState beat handle.eval(querySelectorAll); handle.find / handle.copyAll beat hand-rolled selectors. Read existing_taps first — if one already covers part of the need, compose with it inside handle.pipe rather than re-extracting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | ||
| probe_writes | No | Discover write actions (POST/PUT/PATCH/DELETE) without executing them. Captures endpoints + payloads via abort intercept. | |
| detail | No | Comma-separated extra sections to include: network,ssr,auth,a11y,annotations,structure,deep. 'structure' adds per-candidate anti-scraping diagnostics (Flexbox order, custom fonts, canvas, ::before/::after content, homoglyphs) + href stability score. 'deep' additionally computes readable_ratio (expensive). Use 'all' for the full payload. Default returns top candidates + confidence + status only. |