verify_claim
Verify a real-world claim by checking if a page contains a phrase, if a URL returns 2xx, or if a GitHub PR is merged, returning a boolean plus raw evidence.
Instructions
Generic claim verifier: one assertion in, a boolean verdict plus the raw evidence out. "contains" checks page text for a phrase, "status_2xx" checks the URL loads successfully, "github_merged" checks a GitHub PR is merged.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | URL for "contains" / "status_2xx" assertions. | |
| kind | No | For "github_merged" use "pr". | |
| repo | No | Repository as "owner/name" (for "github_merged"). | |
| number | No | PR number (for "github_merged"). | |
| assertion | No | The phrase to find (for "contains"). | |
| assertion_type | Yes |