# SiteSignal Quick Public Bug Reproduction and Triage

> SiteSignal Quick Public Bug Reproduction and Triage is a paid API for AI agents from trinity-throw-thursday-gravity.trycloudflare.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Executes a bounded unauthenticated GET request against a public URL, checks status code and body text assertions, and returns reproducible bug-triage evidence with recommended next actions.

## Facts

- Endpoint: GET https://trinity-throw-thursday-gravity.trycloudflare.com/x402/bug-triage
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-quick-public-bug-reproduction-and-triage-721c899a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-z1haV2xJYFFafv99wz1u

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sitesignal-quick-public-bug-reproduction-and-triage-721c899a
```

Example prompt: Can you reproduce and triage this reported bug for me — fetch https://example.com/status, check that it returns a 200 and that the body contains the text 'All systems operational', and give me structured evidence I can use in a bug report? The user says they're seeing a 500 error instead.

## When to prefer this

Choose this endpoint when you need a lightweight, reproducible, evidence-backed snapshot of a public URL's HTTP behavior — specifically to confirm or deny a bug report with actual status codes and body-text assertions. It is ideal for QA workflows, pre-deploy checks, and stakeholder-ready bug triage rather than deep crawling, security scanning, or ongoing monitoring.

## Known failure modes

- Target URL is unreachable or DNS fails — returns connection error with triage note
- Target URL redirects or returns unexpected status — returns actual status with assertion diff
- Expected text not found in body — returns mismatch evidence with snippet of actual body
- URL is not a valid public HTTP URI — input validation error
- Response body too large or times out — bounded fetch aborts with timeout evidence

## How this service works

Run one bounded unauthenticated public GET, compare optional status and body-text assertions, and return reproducible bug-triage evidence and next actions.

## Output

Returns structured bug-triage evidence including the actual HTTP status code received, relevant body text match results against any provided assertions, a comparison of reported vs expected vs actual behavior, a reproducibility fingerprint, and recommended next actions for the engineering or QA team.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url",
      "reportedBehavior"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri"
      },
      "expectedText": {
       "type": "string",
       "maxLength": 500
      },
      "caseSensitive": {
       "type": "boolean",
       "default": false
      },
      "expectedStatus": {
       "type": "integer",
       "default": 200,
       "maximum": 599,
       "minimum": 100
      },
      "expectedBehavior": {
       "type": "string",
       "maxLength": 1000
      },
      "reportedBehavior": {
       "type": "string",
       "maxLength": 1000
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sitesignal-quick-public-bug-reproduction-and-triage-721c899a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trinity-throw-thursday-gravity.trycloudflare.com](https://www.zero.xyz/host/trinity-throw-thursday-gravity.trycloudflare.com/llms.txt)
