[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-replay-qa-api":3,"mdc-x6m901-key":36,"related-repo-openai-replay-qa-api":2215,"related-org-openai-replay-qa-api":2336},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"replay-qa-api","call Replay QA REST API","Use when calling Replay QA's REST API directly from Codex. Covers bearer-token setup, Replay recording prerequisites, project creation from Replay recordings or target URLs, polling, bug retrieval, journeys, test runs, explorations, and fix workflow discipline.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"QA","qa","tag",{"name":17,"slug":18,"type":15},"REST API","rest-api",{"name":20,"slug":21,"type":15},"Testing","testing",{"name":23,"slug":24,"type":15},"Debugging","debugging",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Freplayio\u002Fskills\u002Freplay-qa-api","---\nname: \"replay-qa-api\"\ndescription: \"Use when calling Replay QA's REST API directly from Codex. Covers bearer-token setup, Replay recording prerequisites, project creation from Replay recordings or target URLs, polling, bug retrieval, journeys, test runs, explorations, and fix workflow discipline.\"\n---\n\n# Replay QA API\n\nUse the Replay QA REST API directly when a task needs Replay QA analysis.\nThis skill is instructions-only: do not use Replay MCP tools, Codex apps, or plugin hooks as substitutes for Replay QA REST API calls.\n\n## Replay.io Skill Prerequisite\n\nBefore making any Replay QA API call, make sure the `replayio` skill in this same Codex plugin bundle has been loaded and applied for the current session.\n\nIf setup is unknown, load `..\u002Freplayio\u002FSKILL.md` first and follow it before continuing. In particular, verify:\n\n- `REPLAY_API_KEY` is mapped from `SECRET_REPLAY_API_KEY` when available.\n- `REPLAY_QA_API_KEY` is mapped from `SECRET_REPLAY_QA_API_KEY`.\n- `AGENT_BROWSER_EXECUTABLE_PATH` points at Replay Chromium.\n- `RECORD_ALL_CONTENT` and `RECORD_REPLAY_VERBOSE` are set.\n- Any Replay recording referenced by Replay QA has uploaded or has a concrete recording UUID.\n\nDo not proceed with project creation or polling if this prerequisite is unknown. Load and apply the `replayio` skill first, then return to this skill.\n\n## Authentication\n\nReplay QA API tokens are bearer tokens that start with `lqa_`. Generate one in Replay QA Settings and store it as `SECRET_REPLAY_QA_API_KEY` when the host supports project secrets. Map it before calling the API:\n\n```bash\nif [ -z \"${REPLAY_QA_API_KEY:-}\" ] && [ -n \"${SECRET_REPLAY_QA_API_KEY:-}\" ]; then\n  export REPLAY_QA_API_KEY=\"$SECRET_REPLAY_QA_API_KEY\"\nfi\n\ntest -n \"${REPLAY_QA_API_KEY:-}\"\n```\n\nNever print the token.\n\n## Base URL\n\nUse:\n\n```bash\nexport REPLAY_QA_API_BASE=\"${REPLAY_QA_API_BASE:-https:\u002F\u002Fqa.replay.io\u002Fapi\u002Fv1}\"\n```\n\nAll requests need:\n\n```bash\n-H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n-H \"Content-Type: application\u002Fjson\"\n```\n\n## Create A Project From A Replay Recording\n\nUse this when you already have an uploaded Replay recording UUID. When `recording_id` is present, `target_url` is not required.\n\nRequired input:\n\n- `name`: clear project or scenario name.\n- `recording_id`: Replay recording UUID.\n- `instructions`: include the raw test source URL when possible and the exact failure message or stack.\n- `webhook_url`: optional.\n\n```bash\ncurl -sS -X POST \"$REPLAY_QA_API_BASE\u002Fprojects\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"name\": \"S01 - checkout total does not update\",\n    \"recording_id\": \"00000000-0000-0000-0000-000000000000\",\n    \"instructions\": \"Analyze this Replay recording of a failing automated test.\\n\\nTest source:\\nhttps:\u002F\u002Fraw.githubusercontent.com\u002Forg\u002Frepo\u002Frefs\u002Fheads\u002Fbranch\u002Ftests\u002Fcheckout.spec.ts\\n\\nError:\\nExpected checkout total to update after clicking Confirm Checkout.\\n\\nExplain the root cause and the code change that should fix it.\"\n  }'\n```\n\nSave the returned project `id` and project `url` if present. If only an id is returned, the overview URL is:\n\n```text\nhttps:\u002F\u002Fqa.replay.io\u002Fp\u002F:projectId\u002Foverview\n```\n\n## Create A Project For Live App Exploration\n\nUse this when Replay QA should explore an app URL instead of analyzing one recording.\n\n```bash\ncurl -sS -X POST \"$REPLAY_QA_API_BASE\u002Fprojects\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"name\": \"Todo app smoke exploration\",\n    \"target_url\": \"https:\u002F\u002Fexample.com\",\n    \"instructions\": \"Explore the main user flows and report correctness, polish, and UX bugs.\"\n  }'\n```\n\nOptional fields supported by the API include `webhook_url`, `backend_recording_url`, `backend_log_url`, `logins`, and `design_document`. Only include credentials when the user explicitly provided them for this app.\n\n## Poll Project Status\n\nPoll every 30 seconds until the project reports completion. Status can be returned either at the top level or under `project.status`, so inspect the response shape instead of assuming one field.\n\n```bash\nPROJECT_ID=\"...\"\n\ncurl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fstatus\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n```\n\nFor long-running analysis, report that Replay QA is still processing rather than guessing from partial data.\n\n## Fetch Bugs\n\nList bugs:\n\n```bash\ncurl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fbugs?page_size=100\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n```\n\nFilter open bugs:\n\n```bash\ncurl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fbugs?status=open&page_size=100\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n```\n\nFetch full bug detail:\n\n```bash\nBUG_ID=\"...\"\n\ncurl -sS \"$REPLAY_QA_API_BASE\u002Fbugs\u002F$BUG_ID\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n```\n\nUse bug detail as the source of truth for root cause, reproduction steps, expected behavior, actual behavior, severity, and Replay evidence.\n\n## Journeys, Test Runs, And Explorations\n\nList journeys:\n\n```bash\ncurl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fjourneys?page_size=100\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n```\n\nList test runs:\n\n```bash\ncurl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Ftest-runs?page_size=100\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n```\n\nList explorations:\n\n```bash\ncurl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fexplorations?page_size=100\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n```\n\nStart another exploration:\n\n```bash\ncurl -sS -X POST \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fexplorations\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"prompt\": \"Re-test checkout, saved drafts, and navigation edge cases.\",\n    \"agent_count\": 3\n  }'\n```\n\n`agent_count` must be between 1 and 10.\n\n## Fix Workflow Discipline\n\nWhen Replay QA is used to guide fixes:\n\n1. Create Replay QA projects for all selected failing recordings before fixing.\n2. Wait for each selected project to finish analysis.\n3. Fetch full bug details.\n4. Group bugs by root cause and affected file.\n5. Patch only from Replay QA evidence plus the current source file.\n6. Re-run the app or tests with Replay agent-browser recording enabled.\n7. Report project IDs, bug IDs, recording IDs, files changed, and remaining undiagnosed failures.\n\nDo not infer a root cause from source reading while Replay QA analysis is still pending.\n\n## API Reference\n\nKey endpoints:\n\n| Method | Path | Purpose |\n|---|---|---|\n| `GET` | `\u002Fprojects` | List projects |\n| `POST` | `\u002Fprojects` | Create a recording-analysis or app-exploration project |\n| `GET` | `\u002Fprojects\u002F{project_id}` | Get project details |\n| `GET` | `\u002Fprojects\u002F{project_id}\u002Fstatus` | Get project summary\u002Fstatus |\n| `GET` | `\u002Fprojects\u002F{project_id}\u002Fbugs` | List bugs |\n| `GET` | `\u002Fbugs\u002F{bug_id}` | Get bug detail |\n| `GET` | `\u002Fprojects\u002F{project_id}\u002Fjourneys` | List journeys |\n| `GET` | `\u002Fprojects\u002F{project_id}\u002Ftest-runs` | List test runs |\n| `GET` | `\u002Fprojects\u002F{project_id}\u002Fexplorations` | List explorations |\n| `POST` | `\u002Fprojects\u002F{project_id}\u002Fexplorations` | Start a new exploration |\n\nOpenAPI spec:\n\n```text\nhttps:\u002F\u002Fqa.replay.io\u002Fapi\u002Fv1\u002Fopenapi.json\n```\n\n## Reporting\n\nWhen reporting Replay QA API work, include:\n\n- Project ID and URL, if returned.\n- Recording ID or target URL analyzed.\n- Status response summary.\n- Bug count and each bug ID inspected.\n- Root cause and recommended fix from bug detail.\n- Any 401, 404, rate limit, or incomplete-analysis blocker.\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,49,55,62,76,89,166,178,184,204,376,381,387,392,487,492,547,553,574,579,625,787,808,818,824,829,975,1017,1023,1036,1140,1145,1151,1156,1226,1231,1301,1306,1404,1409,1415,1420,1490,1495,1565,1570,1640,1645,1792,1803,1809,1814,1853,1858,1864,1869,2151,2156,2165,2171,2176,2209],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","Replay QA API",{"type":42,"tag":50,"props":51,"children":52},"p",{},[53],{"type":47,"value":54},"Use the Replay QA REST API directly when a task needs Replay QA analysis.\nThis skill is instructions-only: do not use Replay MCP tools, Codex apps, or plugin hooks as substitutes for Replay QA REST API calls.",{"type":42,"tag":56,"props":57,"children":59},"h2",{"id":58},"replayio-skill-prerequisite",[60],{"type":47,"value":61},"Replay.io Skill Prerequisite",{"type":42,"tag":50,"props":63,"children":64},{},[65,67,74],{"type":47,"value":66},"Before making any Replay QA API call, make sure the ",{"type":42,"tag":68,"props":69,"children":71},"code",{"className":70},[],[72],{"type":47,"value":73},"replayio",{"type":47,"value":75}," skill in this same Codex plugin bundle has been loaded and applied for the current session.",{"type":42,"tag":50,"props":77,"children":78},{},[79,81,87],{"type":47,"value":80},"If setup is unknown, load ",{"type":42,"tag":68,"props":82,"children":84},{"className":83},[],[85],{"type":47,"value":86},"..\u002Freplayio\u002FSKILL.md",{"type":47,"value":88}," first and follow it before continuing. In particular, verify:",{"type":42,"tag":90,"props":91,"children":92},"ul",{},[93,113,131,142,161],{"type":42,"tag":94,"props":95,"children":96},"li",{},[97,103,105,111],{"type":42,"tag":68,"props":98,"children":100},{"className":99},[],[101],{"type":47,"value":102},"REPLAY_API_KEY",{"type":47,"value":104}," is mapped from ",{"type":42,"tag":68,"props":106,"children":108},{"className":107},[],[109],{"type":47,"value":110},"SECRET_REPLAY_API_KEY",{"type":47,"value":112}," when available.",{"type":42,"tag":94,"props":114,"children":115},{},[116,122,123,129],{"type":42,"tag":68,"props":117,"children":119},{"className":118},[],[120],{"type":47,"value":121},"REPLAY_QA_API_KEY",{"type":47,"value":104},{"type":42,"tag":68,"props":124,"children":126},{"className":125},[],[127],{"type":47,"value":128},"SECRET_REPLAY_QA_API_KEY",{"type":47,"value":130},".",{"type":42,"tag":94,"props":132,"children":133},{},[134,140],{"type":42,"tag":68,"props":135,"children":137},{"className":136},[],[138],{"type":47,"value":139},"AGENT_BROWSER_EXECUTABLE_PATH",{"type":47,"value":141}," points at Replay Chromium.",{"type":42,"tag":94,"props":143,"children":144},{},[145,151,153,159],{"type":42,"tag":68,"props":146,"children":148},{"className":147},[],[149],{"type":47,"value":150},"RECORD_ALL_CONTENT",{"type":47,"value":152}," and ",{"type":42,"tag":68,"props":154,"children":156},{"className":155},[],[157],{"type":47,"value":158},"RECORD_REPLAY_VERBOSE",{"type":47,"value":160}," are set.",{"type":42,"tag":94,"props":162,"children":163},{},[164],{"type":47,"value":165},"Any Replay recording referenced by Replay QA has uploaded or has a concrete recording UUID.",{"type":42,"tag":50,"props":167,"children":168},{},[169,171,176],{"type":47,"value":170},"Do not proceed with project creation or polling if this prerequisite is unknown. Load and apply the ",{"type":42,"tag":68,"props":172,"children":174},{"className":173},[],[175],{"type":47,"value":73},{"type":47,"value":177}," skill first, then return to this skill.",{"type":42,"tag":56,"props":179,"children":181},{"id":180},"authentication",[182],{"type":47,"value":183},"Authentication",{"type":42,"tag":50,"props":185,"children":186},{},[187,189,195,197,202],{"type":47,"value":188},"Replay QA API tokens are bearer tokens that start with ",{"type":42,"tag":68,"props":190,"children":192},{"className":191},[],[193],{"type":47,"value":194},"lqa_",{"type":47,"value":196},". Generate one in Replay QA Settings and store it as ",{"type":42,"tag":68,"props":198,"children":200},{"className":199},[],[201],{"type":47,"value":128},{"type":47,"value":203}," when the host supports project secrets. Map it before calling the API:",{"type":42,"tag":205,"props":206,"children":211},"pre",{"className":207,"code":208,"language":209,"meta":210,"style":210},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","if [ -z \"${REPLAY_QA_API_KEY:-}\" ] && [ -n \"${SECRET_REPLAY_QA_API_KEY:-}\" ]; then\n  export REPLAY_QA_API_KEY=\"$SECRET_REPLAY_QA_API_KEY\"\nfi\n\ntest -n \"${REPLAY_QA_API_KEY:-}\"\n","bash","",[212],{"type":42,"tag":68,"props":213,"children":214},{"__ignoreMap":210},[215,294,329,338,348],{"type":42,"tag":216,"props":217,"children":220},"span",{"class":218,"line":219},"line",1,[221,227,233,238,243,248,253,258,263,267,272,276,280,284,289],{"type":42,"tag":216,"props":222,"children":224},{"style":223},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[225],{"type":47,"value":226},"if",{"type":42,"tag":216,"props":228,"children":230},{"style":229},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[231],{"type":47,"value":232}," [",{"type":42,"tag":216,"props":234,"children":235},{"style":229},[236],{"type":47,"value":237}," -z",{"type":42,"tag":216,"props":239,"children":240},{"style":229},[241],{"type":47,"value":242}," \"${",{"type":42,"tag":216,"props":244,"children":246},{"style":245},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[247],{"type":47,"value":121},{"type":42,"tag":216,"props":249,"children":250},{"style":229},[251],{"type":47,"value":252},":-}\"",{"type":42,"tag":216,"props":254,"children":255},{"style":229},[256],{"type":47,"value":257}," ]",{"type":42,"tag":216,"props":259,"children":260},{"style":229},[261],{"type":47,"value":262}," &&",{"type":42,"tag":216,"props":264,"children":265},{"style":229},[266],{"type":47,"value":232},{"type":42,"tag":216,"props":268,"children":269},{"style":229},[270],{"type":47,"value":271}," -n",{"type":42,"tag":216,"props":273,"children":274},{"style":229},[275],{"type":47,"value":242},{"type":42,"tag":216,"props":277,"children":278},{"style":245},[279],{"type":47,"value":128},{"type":42,"tag":216,"props":281,"children":282},{"style":229},[283],{"type":47,"value":252},{"type":42,"tag":216,"props":285,"children":286},{"style":229},[287],{"type":47,"value":288}," ];",{"type":42,"tag":216,"props":290,"children":291},{"style":223},[292],{"type":47,"value":293}," then\n",{"type":42,"tag":216,"props":295,"children":297},{"class":218,"line":296},2,[298,304,309,314,319,324],{"type":42,"tag":216,"props":299,"children":301},{"style":300},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[302],{"type":47,"value":303},"  export",{"type":42,"tag":216,"props":305,"children":306},{"style":245},[307],{"type":47,"value":308}," REPLAY_QA_API_KEY",{"type":42,"tag":216,"props":310,"children":311},{"style":229},[312],{"type":47,"value":313},"=",{"type":42,"tag":216,"props":315,"children":316},{"style":229},[317],{"type":47,"value":318},"\"",{"type":42,"tag":216,"props":320,"children":321},{"style":245},[322],{"type":47,"value":323},"$SECRET_REPLAY_QA_API_KEY",{"type":42,"tag":216,"props":325,"children":326},{"style":229},[327],{"type":47,"value":328},"\"\n",{"type":42,"tag":216,"props":330,"children":332},{"class":218,"line":331},3,[333],{"type":42,"tag":216,"props":334,"children":335},{"style":223},[336],{"type":47,"value":337},"fi\n",{"type":42,"tag":216,"props":339,"children":341},{"class":218,"line":340},4,[342],{"type":42,"tag":216,"props":343,"children":345},{"emptyLinePlaceholder":344},true,[346],{"type":47,"value":347},"\n",{"type":42,"tag":216,"props":349,"children":351},{"class":218,"line":350},5,[352,358,363,367,371],{"type":42,"tag":216,"props":353,"children":355},{"style":354},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[356],{"type":47,"value":357},"test",{"type":42,"tag":216,"props":359,"children":361},{"style":360},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[362],{"type":47,"value":271},{"type":42,"tag":216,"props":364,"children":365},{"style":229},[366],{"type":47,"value":242},{"type":42,"tag":216,"props":368,"children":369},{"style":245},[370],{"type":47,"value":121},{"type":42,"tag":216,"props":372,"children":373},{"style":229},[374],{"type":47,"value":375},":-}\"\n",{"type":42,"tag":50,"props":377,"children":378},{},[379],{"type":47,"value":380},"Never print the token.",{"type":42,"tag":56,"props":382,"children":384},{"id":383},"base-url",[385],{"type":47,"value":386},"Base URL",{"type":42,"tag":50,"props":388,"children":389},{},[390],{"type":47,"value":391},"Use:",{"type":42,"tag":205,"props":393,"children":395},{"className":207,"code":394,"language":209,"meta":210,"style":210},"export REPLAY_QA_API_BASE=\"${REPLAY_QA_API_BASE:-https:\u002F\u002Fqa.replay.io\u002Fapi\u002Fv1}\"\n",[396],{"type":42,"tag":68,"props":397,"children":398},{"__ignoreMap":210},[399],{"type":42,"tag":216,"props":400,"children":401},{"class":218,"line":219},[402,407,412,416,421,426,431,436,441,445,449,454,458,463,468,473,477,482],{"type":42,"tag":216,"props":403,"children":404},{"style":300},[405],{"type":47,"value":406},"export",{"type":42,"tag":216,"props":408,"children":409},{"style":245},[410],{"type":47,"value":411}," REPLAY_QA_API_BASE",{"type":42,"tag":216,"props":413,"children":414},{"style":229},[415],{"type":47,"value":313},{"type":42,"tag":216,"props":417,"children":418},{"style":229},[419],{"type":47,"value":420},"\"${",{"type":42,"tag":216,"props":422,"children":423},{"style":245},[424],{"type":47,"value":425},"REPLAY_QA_API_BASE",{"type":42,"tag":216,"props":427,"children":428},{"style":229},[429],{"type":47,"value":430},":-",{"type":42,"tag":216,"props":432,"children":433},{"style":245},[434],{"type":47,"value":435},"https",{"type":42,"tag":216,"props":437,"children":438},{"style":229},[439],{"type":47,"value":440},":\u002F\u002F",{"type":42,"tag":216,"props":442,"children":443},{"style":245},[444],{"type":47,"value":14},{"type":42,"tag":216,"props":446,"children":447},{"style":360},[448],{"type":47,"value":130},{"type":42,"tag":216,"props":450,"children":451},{"style":245},[452],{"type":47,"value":453},"replay",{"type":42,"tag":216,"props":455,"children":456},{"style":360},[457],{"type":47,"value":130},{"type":42,"tag":216,"props":459,"children":460},{"style":245},[461],{"type":47,"value":462},"io",{"type":42,"tag":216,"props":464,"children":465},{"style":229},[466],{"type":47,"value":467},"\u002F",{"type":42,"tag":216,"props":469,"children":470},{"style":245},[471],{"type":47,"value":472},"api",{"type":42,"tag":216,"props":474,"children":475},{"style":229},[476],{"type":47,"value":467},{"type":42,"tag":216,"props":478,"children":479},{"style":245},[480],{"type":47,"value":481},"v1",{"type":42,"tag":216,"props":483,"children":484},{"style":229},[485],{"type":47,"value":486},"}\"\n",{"type":42,"tag":50,"props":488,"children":489},{},[490],{"type":47,"value":491},"All requests need:",{"type":42,"tag":205,"props":493,"children":495},{"className":207,"code":494,"language":209,"meta":210,"style":210},"-H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n-H \"Content-Type: application\u002Fjson\"\n",[496],{"type":42,"tag":68,"props":497,"children":498},{"__ignoreMap":210},[499,527],{"type":42,"tag":216,"props":500,"children":501},{"class":218,"line":219},[502,508,513,518,523],{"type":42,"tag":216,"props":503,"children":505},{"style":504},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[506],{"type":47,"value":507},"-H",{"type":42,"tag":216,"props":509,"children":510},{"style":229},[511],{"type":47,"value":512}," \"",{"type":42,"tag":216,"props":514,"children":515},{"style":360},[516],{"type":47,"value":517},"Authorization: Bearer ",{"type":42,"tag":216,"props":519,"children":520},{"style":245},[521],{"type":47,"value":522},"$REPLAY_QA_API_KEY",{"type":42,"tag":216,"props":524,"children":525},{"style":229},[526],{"type":47,"value":328},{"type":42,"tag":216,"props":528,"children":529},{"class":218,"line":296},[530,534,538,543],{"type":42,"tag":216,"props":531,"children":532},{"style":504},[533],{"type":47,"value":507},{"type":42,"tag":216,"props":535,"children":536},{"style":229},[537],{"type":47,"value":512},{"type":42,"tag":216,"props":539,"children":540},{"style":360},[541],{"type":47,"value":542},"Content-Type: application\u002Fjson",{"type":42,"tag":216,"props":544,"children":545},{"style":229},[546],{"type":47,"value":328},{"type":42,"tag":56,"props":548,"children":550},{"id":549},"create-a-project-from-a-replay-recording",[551],{"type":47,"value":552},"Create A Project From A Replay Recording",{"type":42,"tag":50,"props":554,"children":555},{},[556,558,564,566,572],{"type":47,"value":557},"Use this when you already have an uploaded Replay recording UUID. When ",{"type":42,"tag":68,"props":559,"children":561},{"className":560},[],[562],{"type":47,"value":563},"recording_id",{"type":47,"value":565}," is present, ",{"type":42,"tag":68,"props":567,"children":569},{"className":568},[],[570],{"type":47,"value":571},"target_url",{"type":47,"value":573}," is not required.",{"type":42,"tag":50,"props":575,"children":576},{},[577],{"type":47,"value":578},"Required input:",{"type":42,"tag":90,"props":580,"children":581},{},[582,593,603,614],{"type":42,"tag":94,"props":583,"children":584},{},[585,591],{"type":42,"tag":68,"props":586,"children":588},{"className":587},[],[589],{"type":47,"value":590},"name",{"type":47,"value":592},": clear project or scenario name.",{"type":42,"tag":94,"props":594,"children":595},{},[596,601],{"type":42,"tag":68,"props":597,"children":599},{"className":598},[],[600],{"type":47,"value":563},{"type":47,"value":602},": Replay recording UUID.",{"type":42,"tag":94,"props":604,"children":605},{},[606,612],{"type":42,"tag":68,"props":607,"children":609},{"className":608},[],[610],{"type":47,"value":611},"instructions",{"type":47,"value":613},": include the raw test source URL when possible and the exact failure message or stack.",{"type":42,"tag":94,"props":615,"children":616},{},[617,623],{"type":42,"tag":68,"props":618,"children":620},{"className":619},[],[621],{"type":47,"value":622},"webhook_url",{"type":47,"value":624},": optional.",{"type":42,"tag":205,"props":626,"children":628},{"className":207,"code":627,"language":209,"meta":210,"style":210},"curl -sS -X POST \"$REPLAY_QA_API_BASE\u002Fprojects\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"name\": \"S01 - checkout total does not update\",\n    \"recording_id\": \"00000000-0000-0000-0000-000000000000\",\n    \"instructions\": \"Analyze this Replay recording of a failing automated test.\\n\\nTest source:\\nhttps:\u002F\u002Fraw.githubusercontent.com\u002Forg\u002Frepo\u002Frefs\u002Fheads\u002Fbranch\u002Ftests\u002Fcheckout.spec.ts\\n\\nError:\\nExpected checkout total to update after clicking Confirm Checkout.\\n\\nExplain the root cause and the code change that should fix it.\"\n  }'\n",[629],{"type":42,"tag":68,"props":630,"children":631},{"__ignoreMap":210},[632,678,706,729,747,755,764,773],{"type":42,"tag":216,"props":633,"children":634},{"class":218,"line":219},[635,640,645,650,655,659,664,669,673],{"type":42,"tag":216,"props":636,"children":637},{"style":504},[638],{"type":47,"value":639},"curl",{"type":42,"tag":216,"props":641,"children":642},{"style":360},[643],{"type":47,"value":644}," -sS",{"type":42,"tag":216,"props":646,"children":647},{"style":360},[648],{"type":47,"value":649}," -X",{"type":42,"tag":216,"props":651,"children":652},{"style":360},[653],{"type":47,"value":654}," POST",{"type":42,"tag":216,"props":656,"children":657},{"style":229},[658],{"type":47,"value":512},{"type":42,"tag":216,"props":660,"children":661},{"style":245},[662],{"type":47,"value":663},"$REPLAY_QA_API_BASE",{"type":42,"tag":216,"props":665,"children":666},{"style":360},[667],{"type":47,"value":668},"\u002Fprojects",{"type":42,"tag":216,"props":670,"children":671},{"style":229},[672],{"type":47,"value":318},{"type":42,"tag":216,"props":674,"children":675},{"style":245},[676],{"type":47,"value":677}," \\\n",{"type":42,"tag":216,"props":679,"children":680},{"class":218,"line":296},[681,686,690,694,698,702],{"type":42,"tag":216,"props":682,"children":683},{"style":360},[684],{"type":47,"value":685},"  -H",{"type":42,"tag":216,"props":687,"children":688},{"style":229},[689],{"type":47,"value":512},{"type":42,"tag":216,"props":691,"children":692},{"style":360},[693],{"type":47,"value":517},{"type":42,"tag":216,"props":695,"children":696},{"style":245},[697],{"type":47,"value":522},{"type":42,"tag":216,"props":699,"children":700},{"style":229},[701],{"type":47,"value":318},{"type":42,"tag":216,"props":703,"children":704},{"style":245},[705],{"type":47,"value":677},{"type":42,"tag":216,"props":707,"children":708},{"class":218,"line":331},[709,713,717,721,725],{"type":42,"tag":216,"props":710,"children":711},{"style":360},[712],{"type":47,"value":685},{"type":42,"tag":216,"props":714,"children":715},{"style":229},[716],{"type":47,"value":512},{"type":42,"tag":216,"props":718,"children":719},{"style":360},[720],{"type":47,"value":542},{"type":42,"tag":216,"props":722,"children":723},{"style":229},[724],{"type":47,"value":318},{"type":42,"tag":216,"props":726,"children":727},{"style":245},[728],{"type":47,"value":677},{"type":42,"tag":216,"props":730,"children":731},{"class":218,"line":340},[732,737,742],{"type":42,"tag":216,"props":733,"children":734},{"style":360},[735],{"type":47,"value":736},"  -d",{"type":42,"tag":216,"props":738,"children":739},{"style":229},[740],{"type":47,"value":741}," '",{"type":42,"tag":216,"props":743,"children":744},{"style":360},[745],{"type":47,"value":746},"{\n",{"type":42,"tag":216,"props":748,"children":749},{"class":218,"line":350},[750],{"type":42,"tag":216,"props":751,"children":752},{"style":360},[753],{"type":47,"value":754},"    \"name\": \"S01 - checkout total does not update\",\n",{"type":42,"tag":216,"props":756,"children":758},{"class":218,"line":757},6,[759],{"type":42,"tag":216,"props":760,"children":761},{"style":360},[762],{"type":47,"value":763},"    \"recording_id\": \"00000000-0000-0000-0000-000000000000\",\n",{"type":42,"tag":216,"props":765,"children":767},{"class":218,"line":766},7,[768],{"type":42,"tag":216,"props":769,"children":770},{"style":360},[771],{"type":47,"value":772},"    \"instructions\": \"Analyze this Replay recording of a failing automated test.\\n\\nTest source:\\nhttps:\u002F\u002Fraw.githubusercontent.com\u002Forg\u002Frepo\u002Frefs\u002Fheads\u002Fbranch\u002Ftests\u002Fcheckout.spec.ts\\n\\nError:\\nExpected checkout total to update after clicking Confirm Checkout.\\n\\nExplain the root cause and the code change that should fix it.\"\n",{"type":42,"tag":216,"props":774,"children":776},{"class":218,"line":775},8,[777,782],{"type":42,"tag":216,"props":778,"children":779},{"style":360},[780],{"type":47,"value":781},"  }",{"type":42,"tag":216,"props":783,"children":784},{"style":229},[785],{"type":47,"value":786},"'\n",{"type":42,"tag":50,"props":788,"children":789},{},[790,792,798,800,806],{"type":47,"value":791},"Save the returned project ",{"type":42,"tag":68,"props":793,"children":795},{"className":794},[],[796],{"type":47,"value":797},"id",{"type":47,"value":799}," and project ",{"type":42,"tag":68,"props":801,"children":803},{"className":802},[],[804],{"type":47,"value":805},"url",{"type":47,"value":807}," if present. If only an id is returned, the overview URL is:",{"type":42,"tag":205,"props":809,"children":813},{"className":810,"code":812,"language":47,"meta":210},[811],"language-text","https:\u002F\u002Fqa.replay.io\u002Fp\u002F:projectId\u002Foverview\n",[814],{"type":42,"tag":68,"props":815,"children":816},{"__ignoreMap":210},[817],{"type":47,"value":812},{"type":42,"tag":56,"props":819,"children":821},{"id":820},"create-a-project-for-live-app-exploration",[822],{"type":47,"value":823},"Create A Project For Live App Exploration",{"type":42,"tag":50,"props":825,"children":826},{},[827],{"type":47,"value":828},"Use this when Replay QA should explore an app URL instead of analyzing one recording.",{"type":42,"tag":205,"props":830,"children":832},{"className":207,"code":831,"language":209,"meta":210,"style":210},"curl -sS -X POST \"$REPLAY_QA_API_BASE\u002Fprojects\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"name\": \"Todo app smoke exploration\",\n    \"target_url\": \"https:\u002F\u002Fexample.com\",\n    \"instructions\": \"Explore the main user flows and report correctness, polish, and UX bugs.\"\n  }'\n",[833],{"type":42,"tag":68,"props":834,"children":835},{"__ignoreMap":210},[836,875,902,925,940,948,956,964],{"type":42,"tag":216,"props":837,"children":838},{"class":218,"line":219},[839,843,847,851,855,859,863,867,871],{"type":42,"tag":216,"props":840,"children":841},{"style":504},[842],{"type":47,"value":639},{"type":42,"tag":216,"props":844,"children":845},{"style":360},[846],{"type":47,"value":644},{"type":42,"tag":216,"props":848,"children":849},{"style":360},[850],{"type":47,"value":649},{"type":42,"tag":216,"props":852,"children":853},{"style":360},[854],{"type":47,"value":654},{"type":42,"tag":216,"props":856,"children":857},{"style":229},[858],{"type":47,"value":512},{"type":42,"tag":216,"props":860,"children":861},{"style":245},[862],{"type":47,"value":663},{"type":42,"tag":216,"props":864,"children":865},{"style":360},[866],{"type":47,"value":668},{"type":42,"tag":216,"props":868,"children":869},{"style":229},[870],{"type":47,"value":318},{"type":42,"tag":216,"props":872,"children":873},{"style":245},[874],{"type":47,"value":677},{"type":42,"tag":216,"props":876,"children":877},{"class":218,"line":296},[878,882,886,890,894,898],{"type":42,"tag":216,"props":879,"children":880},{"style":360},[881],{"type":47,"value":685},{"type":42,"tag":216,"props":883,"children":884},{"style":229},[885],{"type":47,"value":512},{"type":42,"tag":216,"props":887,"children":888},{"style":360},[889],{"type":47,"value":517},{"type":42,"tag":216,"props":891,"children":892},{"style":245},[893],{"type":47,"value":522},{"type":42,"tag":216,"props":895,"children":896},{"style":229},[897],{"type":47,"value":318},{"type":42,"tag":216,"props":899,"children":900},{"style":245},[901],{"type":47,"value":677},{"type":42,"tag":216,"props":903,"children":904},{"class":218,"line":331},[905,909,913,917,921],{"type":42,"tag":216,"props":906,"children":907},{"style":360},[908],{"type":47,"value":685},{"type":42,"tag":216,"props":910,"children":911},{"style":229},[912],{"type":47,"value":512},{"type":42,"tag":216,"props":914,"children":915},{"style":360},[916],{"type":47,"value":542},{"type":42,"tag":216,"props":918,"children":919},{"style":229},[920],{"type":47,"value":318},{"type":42,"tag":216,"props":922,"children":923},{"style":245},[924],{"type":47,"value":677},{"type":42,"tag":216,"props":926,"children":927},{"class":218,"line":340},[928,932,936],{"type":42,"tag":216,"props":929,"children":930},{"style":360},[931],{"type":47,"value":736},{"type":42,"tag":216,"props":933,"children":934},{"style":229},[935],{"type":47,"value":741},{"type":42,"tag":216,"props":937,"children":938},{"style":360},[939],{"type":47,"value":746},{"type":42,"tag":216,"props":941,"children":942},{"class":218,"line":350},[943],{"type":42,"tag":216,"props":944,"children":945},{"style":360},[946],{"type":47,"value":947},"    \"name\": \"Todo app smoke exploration\",\n",{"type":42,"tag":216,"props":949,"children":950},{"class":218,"line":757},[951],{"type":42,"tag":216,"props":952,"children":953},{"style":360},[954],{"type":47,"value":955},"    \"target_url\": \"https:\u002F\u002Fexample.com\",\n",{"type":42,"tag":216,"props":957,"children":958},{"class":218,"line":766},[959],{"type":42,"tag":216,"props":960,"children":961},{"style":360},[962],{"type":47,"value":963},"    \"instructions\": \"Explore the main user flows and report correctness, polish, and UX bugs.\"\n",{"type":42,"tag":216,"props":965,"children":966},{"class":218,"line":775},[967,971],{"type":42,"tag":216,"props":968,"children":969},{"style":360},[970],{"type":47,"value":781},{"type":42,"tag":216,"props":972,"children":973},{"style":229},[974],{"type":47,"value":786},{"type":42,"tag":50,"props":976,"children":977},{},[978,980,985,987,993,994,1000,1001,1007,1009,1015],{"type":47,"value":979},"Optional fields supported by the API include ",{"type":42,"tag":68,"props":981,"children":983},{"className":982},[],[984],{"type":47,"value":622},{"type":47,"value":986},", ",{"type":42,"tag":68,"props":988,"children":990},{"className":989},[],[991],{"type":47,"value":992},"backend_recording_url",{"type":47,"value":986},{"type":42,"tag":68,"props":995,"children":997},{"className":996},[],[998],{"type":47,"value":999},"backend_log_url",{"type":47,"value":986},{"type":42,"tag":68,"props":1002,"children":1004},{"className":1003},[],[1005],{"type":47,"value":1006},"logins",{"type":47,"value":1008},", and ",{"type":42,"tag":68,"props":1010,"children":1012},{"className":1011},[],[1013],{"type":47,"value":1014},"design_document",{"type":47,"value":1016},". Only include credentials when the user explicitly provided them for this app.",{"type":42,"tag":56,"props":1018,"children":1020},{"id":1019},"poll-project-status",[1021],{"type":47,"value":1022},"Poll Project Status",{"type":42,"tag":50,"props":1024,"children":1025},{},[1026,1028,1034],{"type":47,"value":1027},"Poll every 30 seconds until the project reports completion. Status can be returned either at the top level or under ",{"type":42,"tag":68,"props":1029,"children":1031},{"className":1030},[],[1032],{"type":47,"value":1033},"project.status",{"type":47,"value":1035},", so inspect the response shape instead of assuming one field.",{"type":42,"tag":205,"props":1037,"children":1039},{"className":207,"code":1038,"language":209,"meta":210,"style":210},"PROJECT_ID=\"...\"\n\ncurl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fstatus\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n",[1040],{"type":42,"tag":68,"props":1041,"children":1042},{"__ignoreMap":210},[1043,1068,1075,1117],{"type":42,"tag":216,"props":1044,"children":1045},{"class":218,"line":219},[1046,1051,1055,1059,1064],{"type":42,"tag":216,"props":1047,"children":1048},{"style":245},[1049],{"type":47,"value":1050},"PROJECT_ID",{"type":42,"tag":216,"props":1052,"children":1053},{"style":229},[1054],{"type":47,"value":313},{"type":42,"tag":216,"props":1056,"children":1057},{"style":229},[1058],{"type":47,"value":318},{"type":42,"tag":216,"props":1060,"children":1061},{"style":360},[1062],{"type":47,"value":1063},"...",{"type":42,"tag":216,"props":1065,"children":1066},{"style":229},[1067],{"type":47,"value":328},{"type":42,"tag":216,"props":1069,"children":1070},{"class":218,"line":296},[1071],{"type":42,"tag":216,"props":1072,"children":1073},{"emptyLinePlaceholder":344},[1074],{"type":47,"value":347},{"type":42,"tag":216,"props":1076,"children":1077},{"class":218,"line":331},[1078,1082,1086,1090,1094,1099,1104,1109,1113],{"type":42,"tag":216,"props":1079,"children":1080},{"style":504},[1081],{"type":47,"value":639},{"type":42,"tag":216,"props":1083,"children":1084},{"style":360},[1085],{"type":47,"value":644},{"type":42,"tag":216,"props":1087,"children":1088},{"style":229},[1089],{"type":47,"value":512},{"type":42,"tag":216,"props":1091,"children":1092},{"style":245},[1093],{"type":47,"value":663},{"type":42,"tag":216,"props":1095,"children":1096},{"style":360},[1097],{"type":47,"value":1098},"\u002Fprojects\u002F",{"type":42,"tag":216,"props":1100,"children":1101},{"style":245},[1102],{"type":47,"value":1103},"$PROJECT_ID",{"type":42,"tag":216,"props":1105,"children":1106},{"style":360},[1107],{"type":47,"value":1108},"\u002Fstatus",{"type":42,"tag":216,"props":1110,"children":1111},{"style":229},[1112],{"type":47,"value":318},{"type":42,"tag":216,"props":1114,"children":1115},{"style":245},[1116],{"type":47,"value":677},{"type":42,"tag":216,"props":1118,"children":1119},{"class":218,"line":340},[1120,1124,1128,1132,1136],{"type":42,"tag":216,"props":1121,"children":1122},{"style":360},[1123],{"type":47,"value":685},{"type":42,"tag":216,"props":1125,"children":1126},{"style":229},[1127],{"type":47,"value":512},{"type":42,"tag":216,"props":1129,"children":1130},{"style":360},[1131],{"type":47,"value":517},{"type":42,"tag":216,"props":1133,"children":1134},{"style":245},[1135],{"type":47,"value":522},{"type":42,"tag":216,"props":1137,"children":1138},{"style":229},[1139],{"type":47,"value":328},{"type":42,"tag":50,"props":1141,"children":1142},{},[1143],{"type":47,"value":1144},"For long-running analysis, report that Replay QA is still processing rather than guessing from partial data.",{"type":42,"tag":56,"props":1146,"children":1148},{"id":1147},"fetch-bugs",[1149],{"type":47,"value":1150},"Fetch Bugs",{"type":42,"tag":50,"props":1152,"children":1153},{},[1154],{"type":47,"value":1155},"List bugs:",{"type":42,"tag":205,"props":1157,"children":1159},{"className":207,"code":1158,"language":209,"meta":210,"style":210},"curl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fbugs?page_size=100\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n",[1160],{"type":42,"tag":68,"props":1161,"children":1162},{"__ignoreMap":210},[1163,1203],{"type":42,"tag":216,"props":1164,"children":1165},{"class":218,"line":219},[1166,1170,1174,1178,1182,1186,1190,1195,1199],{"type":42,"tag":216,"props":1167,"children":1168},{"style":504},[1169],{"type":47,"value":639},{"type":42,"tag":216,"props":1171,"children":1172},{"style":360},[1173],{"type":47,"value":644},{"type":42,"tag":216,"props":1175,"children":1176},{"style":229},[1177],{"type":47,"value":512},{"type":42,"tag":216,"props":1179,"children":1180},{"style":245},[1181],{"type":47,"value":663},{"type":42,"tag":216,"props":1183,"children":1184},{"style":360},[1185],{"type":47,"value":1098},{"type":42,"tag":216,"props":1187,"children":1188},{"style":245},[1189],{"type":47,"value":1103},{"type":42,"tag":216,"props":1191,"children":1192},{"style":360},[1193],{"type":47,"value":1194},"\u002Fbugs?page_size=100",{"type":42,"tag":216,"props":1196,"children":1197},{"style":229},[1198],{"type":47,"value":318},{"type":42,"tag":216,"props":1200,"children":1201},{"style":245},[1202],{"type":47,"value":677},{"type":42,"tag":216,"props":1204,"children":1205},{"class":218,"line":296},[1206,1210,1214,1218,1222],{"type":42,"tag":216,"props":1207,"children":1208},{"style":360},[1209],{"type":47,"value":685},{"type":42,"tag":216,"props":1211,"children":1212},{"style":229},[1213],{"type":47,"value":512},{"type":42,"tag":216,"props":1215,"children":1216},{"style":360},[1217],{"type":47,"value":517},{"type":42,"tag":216,"props":1219,"children":1220},{"style":245},[1221],{"type":47,"value":522},{"type":42,"tag":216,"props":1223,"children":1224},{"style":229},[1225],{"type":47,"value":328},{"type":42,"tag":50,"props":1227,"children":1228},{},[1229],{"type":47,"value":1230},"Filter open bugs:",{"type":42,"tag":205,"props":1232,"children":1234},{"className":207,"code":1233,"language":209,"meta":210,"style":210},"curl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fbugs?status=open&page_size=100\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n",[1235],{"type":42,"tag":68,"props":1236,"children":1237},{"__ignoreMap":210},[1238,1278],{"type":42,"tag":216,"props":1239,"children":1240},{"class":218,"line":219},[1241,1245,1249,1253,1257,1261,1265,1270,1274],{"type":42,"tag":216,"props":1242,"children":1243},{"style":504},[1244],{"type":47,"value":639},{"type":42,"tag":216,"props":1246,"children":1247},{"style":360},[1248],{"type":47,"value":644},{"type":42,"tag":216,"props":1250,"children":1251},{"style":229},[1252],{"type":47,"value":512},{"type":42,"tag":216,"props":1254,"children":1255},{"style":245},[1256],{"type":47,"value":663},{"type":42,"tag":216,"props":1258,"children":1259},{"style":360},[1260],{"type":47,"value":1098},{"type":42,"tag":216,"props":1262,"children":1263},{"style":245},[1264],{"type":47,"value":1103},{"type":42,"tag":216,"props":1266,"children":1267},{"style":360},[1268],{"type":47,"value":1269},"\u002Fbugs?status=open&page_size=100",{"type":42,"tag":216,"props":1271,"children":1272},{"style":229},[1273],{"type":47,"value":318},{"type":42,"tag":216,"props":1275,"children":1276},{"style":245},[1277],{"type":47,"value":677},{"type":42,"tag":216,"props":1279,"children":1280},{"class":218,"line":296},[1281,1285,1289,1293,1297],{"type":42,"tag":216,"props":1282,"children":1283},{"style":360},[1284],{"type":47,"value":685},{"type":42,"tag":216,"props":1286,"children":1287},{"style":229},[1288],{"type":47,"value":512},{"type":42,"tag":216,"props":1290,"children":1291},{"style":360},[1292],{"type":47,"value":517},{"type":42,"tag":216,"props":1294,"children":1295},{"style":245},[1296],{"type":47,"value":522},{"type":42,"tag":216,"props":1298,"children":1299},{"style":229},[1300],{"type":47,"value":328},{"type":42,"tag":50,"props":1302,"children":1303},{},[1304],{"type":47,"value":1305},"Fetch full bug detail:",{"type":42,"tag":205,"props":1307,"children":1309},{"className":207,"code":1308,"language":209,"meta":210,"style":210},"BUG_ID=\"...\"\n\ncurl -sS \"$REPLAY_QA_API_BASE\u002Fbugs\u002F$BUG_ID\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n",[1310],{"type":42,"tag":68,"props":1311,"children":1312},{"__ignoreMap":210},[1313,1337,1344,1381],{"type":42,"tag":216,"props":1314,"children":1315},{"class":218,"line":219},[1316,1321,1325,1329,1333],{"type":42,"tag":216,"props":1317,"children":1318},{"style":245},[1319],{"type":47,"value":1320},"BUG_ID",{"type":42,"tag":216,"props":1322,"children":1323},{"style":229},[1324],{"type":47,"value":313},{"type":42,"tag":216,"props":1326,"children":1327},{"style":229},[1328],{"type":47,"value":318},{"type":42,"tag":216,"props":1330,"children":1331},{"style":360},[1332],{"type":47,"value":1063},{"type":42,"tag":216,"props":1334,"children":1335},{"style":229},[1336],{"type":47,"value":328},{"type":42,"tag":216,"props":1338,"children":1339},{"class":218,"line":296},[1340],{"type":42,"tag":216,"props":1341,"children":1342},{"emptyLinePlaceholder":344},[1343],{"type":47,"value":347},{"type":42,"tag":216,"props":1345,"children":1346},{"class":218,"line":331},[1347,1351,1355,1359,1363,1368,1373,1377],{"type":42,"tag":216,"props":1348,"children":1349},{"style":504},[1350],{"type":47,"value":639},{"type":42,"tag":216,"props":1352,"children":1353},{"style":360},[1354],{"type":47,"value":644},{"type":42,"tag":216,"props":1356,"children":1357},{"style":229},[1358],{"type":47,"value":512},{"type":42,"tag":216,"props":1360,"children":1361},{"style":245},[1362],{"type":47,"value":663},{"type":42,"tag":216,"props":1364,"children":1365},{"style":360},[1366],{"type":47,"value":1367},"\u002Fbugs\u002F",{"type":42,"tag":216,"props":1369,"children":1370},{"style":245},[1371],{"type":47,"value":1372},"$BUG_ID",{"type":42,"tag":216,"props":1374,"children":1375},{"style":229},[1376],{"type":47,"value":318},{"type":42,"tag":216,"props":1378,"children":1379},{"style":245},[1380],{"type":47,"value":677},{"type":42,"tag":216,"props":1382,"children":1383},{"class":218,"line":340},[1384,1388,1392,1396,1400],{"type":42,"tag":216,"props":1385,"children":1386},{"style":360},[1387],{"type":47,"value":685},{"type":42,"tag":216,"props":1389,"children":1390},{"style":229},[1391],{"type":47,"value":512},{"type":42,"tag":216,"props":1393,"children":1394},{"style":360},[1395],{"type":47,"value":517},{"type":42,"tag":216,"props":1397,"children":1398},{"style":245},[1399],{"type":47,"value":522},{"type":42,"tag":216,"props":1401,"children":1402},{"style":229},[1403],{"type":47,"value":328},{"type":42,"tag":50,"props":1405,"children":1406},{},[1407],{"type":47,"value":1408},"Use bug detail as the source of truth for root cause, reproduction steps, expected behavior, actual behavior, severity, and Replay evidence.",{"type":42,"tag":56,"props":1410,"children":1412},{"id":1411},"journeys-test-runs-and-explorations",[1413],{"type":47,"value":1414},"Journeys, Test Runs, And Explorations",{"type":42,"tag":50,"props":1416,"children":1417},{},[1418],{"type":47,"value":1419},"List journeys:",{"type":42,"tag":205,"props":1421,"children":1423},{"className":207,"code":1422,"language":209,"meta":210,"style":210},"curl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fjourneys?page_size=100\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n",[1424],{"type":42,"tag":68,"props":1425,"children":1426},{"__ignoreMap":210},[1427,1467],{"type":42,"tag":216,"props":1428,"children":1429},{"class":218,"line":219},[1430,1434,1438,1442,1446,1450,1454,1459,1463],{"type":42,"tag":216,"props":1431,"children":1432},{"style":504},[1433],{"type":47,"value":639},{"type":42,"tag":216,"props":1435,"children":1436},{"style":360},[1437],{"type":47,"value":644},{"type":42,"tag":216,"props":1439,"children":1440},{"style":229},[1441],{"type":47,"value":512},{"type":42,"tag":216,"props":1443,"children":1444},{"style":245},[1445],{"type":47,"value":663},{"type":42,"tag":216,"props":1447,"children":1448},{"style":360},[1449],{"type":47,"value":1098},{"type":42,"tag":216,"props":1451,"children":1452},{"style":245},[1453],{"type":47,"value":1103},{"type":42,"tag":216,"props":1455,"children":1456},{"style":360},[1457],{"type":47,"value":1458},"\u002Fjourneys?page_size=100",{"type":42,"tag":216,"props":1460,"children":1461},{"style":229},[1462],{"type":47,"value":318},{"type":42,"tag":216,"props":1464,"children":1465},{"style":245},[1466],{"type":47,"value":677},{"type":42,"tag":216,"props":1468,"children":1469},{"class":218,"line":296},[1470,1474,1478,1482,1486],{"type":42,"tag":216,"props":1471,"children":1472},{"style":360},[1473],{"type":47,"value":685},{"type":42,"tag":216,"props":1475,"children":1476},{"style":229},[1477],{"type":47,"value":512},{"type":42,"tag":216,"props":1479,"children":1480},{"style":360},[1481],{"type":47,"value":517},{"type":42,"tag":216,"props":1483,"children":1484},{"style":245},[1485],{"type":47,"value":522},{"type":42,"tag":216,"props":1487,"children":1488},{"style":229},[1489],{"type":47,"value":328},{"type":42,"tag":50,"props":1491,"children":1492},{},[1493],{"type":47,"value":1494},"List test runs:",{"type":42,"tag":205,"props":1496,"children":1498},{"className":207,"code":1497,"language":209,"meta":210,"style":210},"curl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Ftest-runs?page_size=100\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n",[1499],{"type":42,"tag":68,"props":1500,"children":1501},{"__ignoreMap":210},[1502,1542],{"type":42,"tag":216,"props":1503,"children":1504},{"class":218,"line":219},[1505,1509,1513,1517,1521,1525,1529,1534,1538],{"type":42,"tag":216,"props":1506,"children":1507},{"style":504},[1508],{"type":47,"value":639},{"type":42,"tag":216,"props":1510,"children":1511},{"style":360},[1512],{"type":47,"value":644},{"type":42,"tag":216,"props":1514,"children":1515},{"style":229},[1516],{"type":47,"value":512},{"type":42,"tag":216,"props":1518,"children":1519},{"style":245},[1520],{"type":47,"value":663},{"type":42,"tag":216,"props":1522,"children":1523},{"style":360},[1524],{"type":47,"value":1098},{"type":42,"tag":216,"props":1526,"children":1527},{"style":245},[1528],{"type":47,"value":1103},{"type":42,"tag":216,"props":1530,"children":1531},{"style":360},[1532],{"type":47,"value":1533},"\u002Ftest-runs?page_size=100",{"type":42,"tag":216,"props":1535,"children":1536},{"style":229},[1537],{"type":47,"value":318},{"type":42,"tag":216,"props":1539,"children":1540},{"style":245},[1541],{"type":47,"value":677},{"type":42,"tag":216,"props":1543,"children":1544},{"class":218,"line":296},[1545,1549,1553,1557,1561],{"type":42,"tag":216,"props":1546,"children":1547},{"style":360},[1548],{"type":47,"value":685},{"type":42,"tag":216,"props":1550,"children":1551},{"style":229},[1552],{"type":47,"value":512},{"type":42,"tag":216,"props":1554,"children":1555},{"style":360},[1556],{"type":47,"value":517},{"type":42,"tag":216,"props":1558,"children":1559},{"style":245},[1560],{"type":47,"value":522},{"type":42,"tag":216,"props":1562,"children":1563},{"style":229},[1564],{"type":47,"value":328},{"type":42,"tag":50,"props":1566,"children":1567},{},[1568],{"type":47,"value":1569},"List explorations:",{"type":42,"tag":205,"props":1571,"children":1573},{"className":207,"code":1572,"language":209,"meta":210,"style":210},"curl -sS \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fexplorations?page_size=100\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\"\n",[1574],{"type":42,"tag":68,"props":1575,"children":1576},{"__ignoreMap":210},[1577,1617],{"type":42,"tag":216,"props":1578,"children":1579},{"class":218,"line":219},[1580,1584,1588,1592,1596,1600,1604,1609,1613],{"type":42,"tag":216,"props":1581,"children":1582},{"style":504},[1583],{"type":47,"value":639},{"type":42,"tag":216,"props":1585,"children":1586},{"style":360},[1587],{"type":47,"value":644},{"type":42,"tag":216,"props":1589,"children":1590},{"style":229},[1591],{"type":47,"value":512},{"type":42,"tag":216,"props":1593,"children":1594},{"style":245},[1595],{"type":47,"value":663},{"type":42,"tag":216,"props":1597,"children":1598},{"style":360},[1599],{"type":47,"value":1098},{"type":42,"tag":216,"props":1601,"children":1602},{"style":245},[1603],{"type":47,"value":1103},{"type":42,"tag":216,"props":1605,"children":1606},{"style":360},[1607],{"type":47,"value":1608},"\u002Fexplorations?page_size=100",{"type":42,"tag":216,"props":1610,"children":1611},{"style":229},[1612],{"type":47,"value":318},{"type":42,"tag":216,"props":1614,"children":1615},{"style":245},[1616],{"type":47,"value":677},{"type":42,"tag":216,"props":1618,"children":1619},{"class":218,"line":296},[1620,1624,1628,1632,1636],{"type":42,"tag":216,"props":1621,"children":1622},{"style":360},[1623],{"type":47,"value":685},{"type":42,"tag":216,"props":1625,"children":1626},{"style":229},[1627],{"type":47,"value":512},{"type":42,"tag":216,"props":1629,"children":1630},{"style":360},[1631],{"type":47,"value":517},{"type":42,"tag":216,"props":1633,"children":1634},{"style":245},[1635],{"type":47,"value":522},{"type":42,"tag":216,"props":1637,"children":1638},{"style":229},[1639],{"type":47,"value":328},{"type":42,"tag":50,"props":1641,"children":1642},{},[1643],{"type":47,"value":1644},"Start another exploration:",{"type":42,"tag":205,"props":1646,"children":1648},{"className":207,"code":1647,"language":209,"meta":210,"style":210},"curl -sS -X POST \"$REPLAY_QA_API_BASE\u002Fprojects\u002F$PROJECT_ID\u002Fexplorations\" \\\n  -H \"Authorization: Bearer $REPLAY_QA_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"prompt\": \"Re-test checkout, saved drafts, and navigation edge cases.\",\n    \"agent_count\": 3\n  }'\n",[1649],{"type":42,"tag":68,"props":1650,"children":1651},{"__ignoreMap":210},[1652,1700,1727,1750,1765,1773,1781],{"type":42,"tag":216,"props":1653,"children":1654},{"class":218,"line":219},[1655,1659,1663,1667,1671,1675,1679,1683,1687,1692,1696],{"type":42,"tag":216,"props":1656,"children":1657},{"style":504},[1658],{"type":47,"value":639},{"type":42,"tag":216,"props":1660,"children":1661},{"style":360},[1662],{"type":47,"value":644},{"type":42,"tag":216,"props":1664,"children":1665},{"style":360},[1666],{"type":47,"value":649},{"type":42,"tag":216,"props":1668,"children":1669},{"style":360},[1670],{"type":47,"value":654},{"type":42,"tag":216,"props":1672,"children":1673},{"style":229},[1674],{"type":47,"value":512},{"type":42,"tag":216,"props":1676,"children":1677},{"style":245},[1678],{"type":47,"value":663},{"type":42,"tag":216,"props":1680,"children":1681},{"style":360},[1682],{"type":47,"value":1098},{"type":42,"tag":216,"props":1684,"children":1685},{"style":245},[1686],{"type":47,"value":1103},{"type":42,"tag":216,"props":1688,"children":1689},{"style":360},[1690],{"type":47,"value":1691},"\u002Fexplorations",{"type":42,"tag":216,"props":1693,"children":1694},{"style":229},[1695],{"type":47,"value":318},{"type":42,"tag":216,"props":1697,"children":1698},{"style":245},[1699],{"type":47,"value":677},{"type":42,"tag":216,"props":1701,"children":1702},{"class":218,"line":296},[1703,1707,1711,1715,1719,1723],{"type":42,"tag":216,"props":1704,"children":1705},{"style":360},[1706],{"type":47,"value":685},{"type":42,"tag":216,"props":1708,"children":1709},{"style":229},[1710],{"type":47,"value":512},{"type":42,"tag":216,"props":1712,"children":1713},{"style":360},[1714],{"type":47,"value":517},{"type":42,"tag":216,"props":1716,"children":1717},{"style":245},[1718],{"type":47,"value":522},{"type":42,"tag":216,"props":1720,"children":1721},{"style":229},[1722],{"type":47,"value":318},{"type":42,"tag":216,"props":1724,"children":1725},{"style":245},[1726],{"type":47,"value":677},{"type":42,"tag":216,"props":1728,"children":1729},{"class":218,"line":331},[1730,1734,1738,1742,1746],{"type":42,"tag":216,"props":1731,"children":1732},{"style":360},[1733],{"type":47,"value":685},{"type":42,"tag":216,"props":1735,"children":1736},{"style":229},[1737],{"type":47,"value":512},{"type":42,"tag":216,"props":1739,"children":1740},{"style":360},[1741],{"type":47,"value":542},{"type":42,"tag":216,"props":1743,"children":1744},{"style":229},[1745],{"type":47,"value":318},{"type":42,"tag":216,"props":1747,"children":1748},{"style":245},[1749],{"type":47,"value":677},{"type":42,"tag":216,"props":1751,"children":1752},{"class":218,"line":340},[1753,1757,1761],{"type":42,"tag":216,"props":1754,"children":1755},{"style":360},[1756],{"type":47,"value":736},{"type":42,"tag":216,"props":1758,"children":1759},{"style":229},[1760],{"type":47,"value":741},{"type":42,"tag":216,"props":1762,"children":1763},{"style":360},[1764],{"type":47,"value":746},{"type":42,"tag":216,"props":1766,"children":1767},{"class":218,"line":350},[1768],{"type":42,"tag":216,"props":1769,"children":1770},{"style":360},[1771],{"type":47,"value":1772},"    \"prompt\": \"Re-test checkout, saved drafts, and navigation edge cases.\",\n",{"type":42,"tag":216,"props":1774,"children":1775},{"class":218,"line":757},[1776],{"type":42,"tag":216,"props":1777,"children":1778},{"style":360},[1779],{"type":47,"value":1780},"    \"agent_count\": 3\n",{"type":42,"tag":216,"props":1782,"children":1783},{"class":218,"line":766},[1784,1788],{"type":42,"tag":216,"props":1785,"children":1786},{"style":360},[1787],{"type":47,"value":781},{"type":42,"tag":216,"props":1789,"children":1790},{"style":229},[1791],{"type":47,"value":786},{"type":42,"tag":50,"props":1793,"children":1794},{},[1795,1801],{"type":42,"tag":68,"props":1796,"children":1798},{"className":1797},[],[1799],{"type":47,"value":1800},"agent_count",{"type":47,"value":1802}," must be between 1 and 10.",{"type":42,"tag":56,"props":1804,"children":1806},{"id":1805},"fix-workflow-discipline",[1807],{"type":47,"value":1808},"Fix Workflow Discipline",{"type":42,"tag":50,"props":1810,"children":1811},{},[1812],{"type":47,"value":1813},"When Replay QA is used to guide fixes:",{"type":42,"tag":1815,"props":1816,"children":1817},"ol",{},[1818,1823,1828,1833,1838,1843,1848],{"type":42,"tag":94,"props":1819,"children":1820},{},[1821],{"type":47,"value":1822},"Create Replay QA projects for all selected failing recordings before fixing.",{"type":42,"tag":94,"props":1824,"children":1825},{},[1826],{"type":47,"value":1827},"Wait for each selected project to finish analysis.",{"type":42,"tag":94,"props":1829,"children":1830},{},[1831],{"type":47,"value":1832},"Fetch full bug details.",{"type":42,"tag":94,"props":1834,"children":1835},{},[1836],{"type":47,"value":1837},"Group bugs by root cause and affected file.",{"type":42,"tag":94,"props":1839,"children":1840},{},[1841],{"type":47,"value":1842},"Patch only from Replay QA evidence plus the current source file.",{"type":42,"tag":94,"props":1844,"children":1845},{},[1846],{"type":47,"value":1847},"Re-run the app or tests with Replay agent-browser recording enabled.",{"type":42,"tag":94,"props":1849,"children":1850},{},[1851],{"type":47,"value":1852},"Report project IDs, bug IDs, recording IDs, files changed, and remaining undiagnosed failures.",{"type":42,"tag":50,"props":1854,"children":1855},{},[1856],{"type":47,"value":1857},"Do not infer a root cause from source reading while Replay QA analysis is still pending.",{"type":42,"tag":56,"props":1859,"children":1861},{"id":1860},"api-reference",[1862],{"type":47,"value":1863},"API Reference",{"type":42,"tag":50,"props":1865,"children":1866},{},[1867],{"type":47,"value":1868},"Key endpoints:",{"type":42,"tag":1870,"props":1871,"children":1872},"table",{},[1873,1897],{"type":42,"tag":1874,"props":1875,"children":1876},"thead",{},[1877],{"type":42,"tag":1878,"props":1879,"children":1880},"tr",{},[1881,1887,1892],{"type":42,"tag":1882,"props":1883,"children":1884},"th",{},[1885],{"type":47,"value":1886},"Method",{"type":42,"tag":1882,"props":1888,"children":1889},{},[1890],{"type":47,"value":1891},"Path",{"type":42,"tag":1882,"props":1893,"children":1894},{},[1895],{"type":47,"value":1896},"Purpose",{"type":42,"tag":1898,"props":1899,"children":1900},"tbody",{},[1901,1927,1952,1977,2002,2027,2052,2077,2102,2127],{"type":42,"tag":1878,"props":1902,"children":1903},{},[1904,1914,1922],{"type":42,"tag":1905,"props":1906,"children":1907},"td",{},[1908],{"type":42,"tag":68,"props":1909,"children":1911},{"className":1910},[],[1912],{"type":47,"value":1913},"GET",{"type":42,"tag":1905,"props":1915,"children":1916},{},[1917],{"type":42,"tag":68,"props":1918,"children":1920},{"className":1919},[],[1921],{"type":47,"value":668},{"type":42,"tag":1905,"props":1923,"children":1924},{},[1925],{"type":47,"value":1926},"List projects",{"type":42,"tag":1878,"props":1928,"children":1929},{},[1930,1939,1947],{"type":42,"tag":1905,"props":1931,"children":1932},{},[1933],{"type":42,"tag":68,"props":1934,"children":1936},{"className":1935},[],[1937],{"type":47,"value":1938},"POST",{"type":42,"tag":1905,"props":1940,"children":1941},{},[1942],{"type":42,"tag":68,"props":1943,"children":1945},{"className":1944},[],[1946],{"type":47,"value":668},{"type":42,"tag":1905,"props":1948,"children":1949},{},[1950],{"type":47,"value":1951},"Create a recording-analysis or app-exploration project",{"type":42,"tag":1878,"props":1953,"children":1954},{},[1955,1963,1972],{"type":42,"tag":1905,"props":1956,"children":1957},{},[1958],{"type":42,"tag":68,"props":1959,"children":1961},{"className":1960},[],[1962],{"type":47,"value":1913},{"type":42,"tag":1905,"props":1964,"children":1965},{},[1966],{"type":42,"tag":68,"props":1967,"children":1969},{"className":1968},[],[1970],{"type":47,"value":1971},"\u002Fprojects\u002F{project_id}",{"type":42,"tag":1905,"props":1973,"children":1974},{},[1975],{"type":47,"value":1976},"Get project details",{"type":42,"tag":1878,"props":1978,"children":1979},{},[1980,1988,1997],{"type":42,"tag":1905,"props":1981,"children":1982},{},[1983],{"type":42,"tag":68,"props":1984,"children":1986},{"className":1985},[],[1987],{"type":47,"value":1913},{"type":42,"tag":1905,"props":1989,"children":1990},{},[1991],{"type":42,"tag":68,"props":1992,"children":1994},{"className":1993},[],[1995],{"type":47,"value":1996},"\u002Fprojects\u002F{project_id}\u002Fstatus",{"type":42,"tag":1905,"props":1998,"children":1999},{},[2000],{"type":47,"value":2001},"Get project summary\u002Fstatus",{"type":42,"tag":1878,"props":2003,"children":2004},{},[2005,2013,2022],{"type":42,"tag":1905,"props":2006,"children":2007},{},[2008],{"type":42,"tag":68,"props":2009,"children":2011},{"className":2010},[],[2012],{"type":47,"value":1913},{"type":42,"tag":1905,"props":2014,"children":2015},{},[2016],{"type":42,"tag":68,"props":2017,"children":2019},{"className":2018},[],[2020],{"type":47,"value":2021},"\u002Fprojects\u002F{project_id}\u002Fbugs",{"type":42,"tag":1905,"props":2023,"children":2024},{},[2025],{"type":47,"value":2026},"List bugs",{"type":42,"tag":1878,"props":2028,"children":2029},{},[2030,2038,2047],{"type":42,"tag":1905,"props":2031,"children":2032},{},[2033],{"type":42,"tag":68,"props":2034,"children":2036},{"className":2035},[],[2037],{"type":47,"value":1913},{"type":42,"tag":1905,"props":2039,"children":2040},{},[2041],{"type":42,"tag":68,"props":2042,"children":2044},{"className":2043},[],[2045],{"type":47,"value":2046},"\u002Fbugs\u002F{bug_id}",{"type":42,"tag":1905,"props":2048,"children":2049},{},[2050],{"type":47,"value":2051},"Get bug detail",{"type":42,"tag":1878,"props":2053,"children":2054},{},[2055,2063,2072],{"type":42,"tag":1905,"props":2056,"children":2057},{},[2058],{"type":42,"tag":68,"props":2059,"children":2061},{"className":2060},[],[2062],{"type":47,"value":1913},{"type":42,"tag":1905,"props":2064,"children":2065},{},[2066],{"type":42,"tag":68,"props":2067,"children":2069},{"className":2068},[],[2070],{"type":47,"value":2071},"\u002Fprojects\u002F{project_id}\u002Fjourneys",{"type":42,"tag":1905,"props":2073,"children":2074},{},[2075],{"type":47,"value":2076},"List journeys",{"type":42,"tag":1878,"props":2078,"children":2079},{},[2080,2088,2097],{"type":42,"tag":1905,"props":2081,"children":2082},{},[2083],{"type":42,"tag":68,"props":2084,"children":2086},{"className":2085},[],[2087],{"type":47,"value":1913},{"type":42,"tag":1905,"props":2089,"children":2090},{},[2091],{"type":42,"tag":68,"props":2092,"children":2094},{"className":2093},[],[2095],{"type":47,"value":2096},"\u002Fprojects\u002F{project_id}\u002Ftest-runs",{"type":42,"tag":1905,"props":2098,"children":2099},{},[2100],{"type":47,"value":2101},"List test runs",{"type":42,"tag":1878,"props":2103,"children":2104},{},[2105,2113,2122],{"type":42,"tag":1905,"props":2106,"children":2107},{},[2108],{"type":42,"tag":68,"props":2109,"children":2111},{"className":2110},[],[2112],{"type":47,"value":1913},{"type":42,"tag":1905,"props":2114,"children":2115},{},[2116],{"type":42,"tag":68,"props":2117,"children":2119},{"className":2118},[],[2120],{"type":47,"value":2121},"\u002Fprojects\u002F{project_id}\u002Fexplorations",{"type":42,"tag":1905,"props":2123,"children":2124},{},[2125],{"type":47,"value":2126},"List explorations",{"type":42,"tag":1878,"props":2128,"children":2129},{},[2130,2138,2146],{"type":42,"tag":1905,"props":2131,"children":2132},{},[2133],{"type":42,"tag":68,"props":2134,"children":2136},{"className":2135},[],[2137],{"type":47,"value":1938},{"type":42,"tag":1905,"props":2139,"children":2140},{},[2141],{"type":42,"tag":68,"props":2142,"children":2144},{"className":2143},[],[2145],{"type":47,"value":2121},{"type":42,"tag":1905,"props":2147,"children":2148},{},[2149],{"type":47,"value":2150},"Start a new exploration",{"type":42,"tag":50,"props":2152,"children":2153},{},[2154],{"type":47,"value":2155},"OpenAPI spec:",{"type":42,"tag":205,"props":2157,"children":2160},{"className":2158,"code":2159,"language":47,"meta":210},[811],"https:\u002F\u002Fqa.replay.io\u002Fapi\u002Fv1\u002Fopenapi.json\n",[2161],{"type":42,"tag":68,"props":2162,"children":2163},{"__ignoreMap":210},[2164],{"type":47,"value":2159},{"type":42,"tag":56,"props":2166,"children":2168},{"id":2167},"reporting",[2169],{"type":47,"value":2170},"Reporting",{"type":42,"tag":50,"props":2172,"children":2173},{},[2174],{"type":47,"value":2175},"When reporting Replay QA API work, include:",{"type":42,"tag":90,"props":2177,"children":2178},{},[2179,2184,2189,2194,2199,2204],{"type":42,"tag":94,"props":2180,"children":2181},{},[2182],{"type":47,"value":2183},"Project ID and URL, if returned.",{"type":42,"tag":94,"props":2185,"children":2186},{},[2187],{"type":47,"value":2188},"Recording ID or target URL analyzed.",{"type":42,"tag":94,"props":2190,"children":2191},{},[2192],{"type":47,"value":2193},"Status response summary.",{"type":42,"tag":94,"props":2195,"children":2196},{},[2197],{"type":47,"value":2198},"Bug count and each bug ID inspected.",{"type":42,"tag":94,"props":2200,"children":2201},{},[2202],{"type":47,"value":2203},"Root cause and recommended fix from bug detail.",{"type":42,"tag":94,"props":2205,"children":2206},{},[2207],{"type":47,"value":2208},"Any 401, 404, rate limit, or incomplete-analysis blocker.",{"type":42,"tag":2210,"props":2211,"children":2212},"style",{},[2213],{"type":47,"value":2214},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2216,"total":2335},[2217,2235,2249,2261,2281,2303,2323],{"slug":2218,"name":2218,"fn":2219,"description":2220,"org":2221,"tags":2222,"stars":25,"repoUrl":26,"updatedAt":27},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2223,2226,2229,2232],{"name":2224,"slug":2225,"type":15},"Accessibility","accessibility",{"name":2227,"slug":2228,"type":15},"Charts","charts",{"name":2230,"slug":2231,"type":15},"Data Visualization","data-visualization",{"name":2233,"slug":2234,"type":15},"Design","design",{"slug":2236,"name":2236,"fn":2237,"description":2238,"org":2239,"tags":2240,"stars":25,"repoUrl":26,"updatedAt":2248},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2241,2244,2247],{"name":2242,"slug":2243,"type":15},"Agents","agents",{"name":2245,"slug":2246,"type":15},"Browser Automation","browser-automation",{"name":20,"slug":21,"type":15},"2026-04-06T18:41:03.44016",{"slug":2250,"name":2250,"fn":2251,"description":2252,"org":2253,"tags":2254,"stars":25,"repoUrl":26,"updatedAt":2260},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2255,2256,2259],{"name":2245,"slug":2246,"type":15},{"name":2257,"slug":2258,"type":15},"Local Development","local-development",{"name":20,"slug":21,"type":15},"2026-04-06T18:41:17.526867",{"slug":2262,"name":2262,"fn":2263,"description":2264,"org":2265,"tags":2266,"stars":25,"repoUrl":26,"updatedAt":2280},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2267,2268,2271,2274,2277],{"name":2242,"slug":2243,"type":15},{"name":2269,"slug":2270,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2272,"slug":2273,"type":15},"SDK","sdk",{"name":2275,"slug":2276,"type":15},"Serverless","serverless",{"name":2278,"slug":2279,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2282,"name":2282,"fn":2283,"description":2284,"org":2285,"tags":2286,"stars":25,"repoUrl":26,"updatedAt":2302},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2287,2290,2293,2296,2299],{"name":2288,"slug":2289,"type":15},"Frontend","frontend",{"name":2291,"slug":2292,"type":15},"React","react",{"name":2294,"slug":2295,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2297,"slug":2298,"type":15},"UI Components","ui-components",{"name":2300,"slug":2301,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":2304,"name":2304,"fn":2305,"description":2306,"org":2307,"tags":2308,"stars":25,"repoUrl":26,"updatedAt":2322},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2309,2312,2315,2318,2321],{"name":2310,"slug":2311,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2313,"slug":2314,"type":15},"Cost Optimization","cost-optimization",{"name":2316,"slug":2317,"type":15},"LLM","llm",{"name":2319,"slug":2320,"type":15},"Performance","performance",{"name":2300,"slug":2301,"type":15},"2026-04-06T18:40:44.377464",{"slug":2324,"name":2324,"fn":2325,"description":2326,"org":2327,"tags":2328,"stars":25,"repoUrl":26,"updatedAt":2334},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2329,2330,2333],{"name":2313,"slug":2314,"type":15},{"name":2331,"slug":2332,"type":15},"Database","database",{"name":2316,"slug":2317,"type":15},"2026-04-06T18:41:08.513425",600,{"items":2337,"total":2534},[2338,2359,2382,2399,2415,2432,2451,2463,2477,2491,2503,2518],{"slug":2339,"name":2339,"fn":2340,"description":2341,"org":2342,"tags":2343,"stars":2356,"repoUrl":2357,"updatedAt":2358},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2344,2347,2350,2353],{"name":2345,"slug":2346,"type":15},"Documents","documents",{"name":2348,"slug":2349,"type":15},"Healthcare","healthcare",{"name":2351,"slug":2352,"type":15},"Insurance","insurance",{"name":2354,"slug":2355,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":2360,"name":2360,"fn":2361,"description":2362,"org":2363,"tags":2364,"stars":2379,"repoUrl":2380,"updatedAt":2381},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2365,2368,2370,2373,2376],{"name":2366,"slug":2367,"type":15},".NET","dotnet",{"name":2369,"slug":2360,"type":15},"ASP.NET Core",{"name":2371,"slug":2372,"type":15},"Blazor","blazor",{"name":2374,"slug":2375,"type":15},"C#","csharp",{"name":2377,"slug":2378,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":2383,"name":2383,"fn":2384,"description":2385,"org":2386,"tags":2387,"stars":2379,"repoUrl":2380,"updatedAt":2398},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2388,2391,2394,2397],{"name":2389,"slug":2390,"type":15},"Apps SDK","apps-sdk",{"name":2392,"slug":2393,"type":15},"ChatGPT","chatgpt",{"name":2395,"slug":2396,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":2400,"name":2400,"fn":2401,"description":2402,"org":2403,"tags":2404,"stars":2379,"repoUrl":2380,"updatedAt":2414},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2405,2408,2411],{"name":2406,"slug":2407,"type":15},"API Development","api-development",{"name":2409,"slug":2410,"type":15},"CLI","cli",{"name":2412,"slug":2413,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2416,"name":2416,"fn":2417,"description":2418,"org":2419,"tags":2420,"stars":2379,"repoUrl":2380,"updatedAt":2431},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2421,2424,2427,2428],{"name":2422,"slug":2423,"type":15},"Cloudflare","cloudflare",{"name":2425,"slug":2426,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2269,"slug":2270,"type":15},{"name":2429,"slug":2430,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":2433,"name":2433,"fn":2434,"description":2435,"org":2436,"tags":2437,"stars":2379,"repoUrl":2380,"updatedAt":2450},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2438,2441,2444,2447],{"name":2439,"slug":2440,"type":15},"Productivity","productivity",{"name":2442,"slug":2443,"type":15},"Project Management","project-management",{"name":2445,"slug":2446,"type":15},"Strategy","strategy",{"name":2448,"slug":2449,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2452,"name":2452,"fn":2453,"description":2454,"org":2455,"tags":2456,"stars":2379,"repoUrl":2380,"updatedAt":2462},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2457,2458,2460,2461],{"name":2233,"slug":2234,"type":15},{"name":2459,"slug":2452,"type":15},"Figma",{"name":2288,"slug":2289,"type":15},{"name":2395,"slug":2396,"type":15},"2026-04-12T05:06:47.939943",{"slug":2464,"name":2464,"fn":2465,"description":2466,"org":2467,"tags":2468,"stars":2379,"repoUrl":2380,"updatedAt":2476},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2469,2470,2473,2474,2475],{"name":2233,"slug":2234,"type":15},{"name":2471,"slug":2472,"type":15},"Design System","design-system",{"name":2459,"slug":2452,"type":15},{"name":2288,"slug":2289,"type":15},{"name":2297,"slug":2298,"type":15},"2026-05-10T05:59:52.971881",{"slug":2478,"name":2478,"fn":2479,"description":2480,"org":2481,"tags":2482,"stars":2379,"repoUrl":2380,"updatedAt":2490},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2483,2484,2485,2488,2489],{"name":2233,"slug":2234,"type":15},{"name":2471,"slug":2472,"type":15},{"name":2486,"slug":2487,"type":15},"Documentation","documentation",{"name":2459,"slug":2452,"type":15},{"name":2288,"slug":2289,"type":15},"2026-05-16T06:07:47.821474",{"slug":2492,"name":2492,"fn":2493,"description":2494,"org":2495,"tags":2496,"stars":2379,"repoUrl":2380,"updatedAt":2502},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2497,2498,2499,2500,2501],{"name":2233,"slug":2234,"type":15},{"name":2459,"slug":2452,"type":15},{"name":2288,"slug":2289,"type":15},{"name":2297,"slug":2298,"type":15},{"name":2377,"slug":2378,"type":15},"2026-05-16T06:07:40.583615",{"slug":2504,"name":2504,"fn":2505,"description":2506,"org":2507,"tags":2508,"stars":2379,"repoUrl":2380,"updatedAt":2517},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2509,2512,2513,2516],{"name":2510,"slug":2511,"type":15},"Animation","animation",{"name":2412,"slug":2413,"type":15},{"name":2514,"slug":2515,"type":15},"Creative","creative",{"name":2233,"slug":2234,"type":15},"2026-05-02T05:31:48.48485",{"slug":2519,"name":2519,"fn":2520,"description":2521,"org":2522,"tags":2523,"stars":2379,"repoUrl":2380,"updatedAt":2533},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2524,2525,2526,2529,2532],{"name":2514,"slug":2515,"type":15},{"name":2233,"slug":2234,"type":15},{"name":2527,"slug":2528,"type":15},"Image Generation","image-generation",{"name":2530,"slug":2531,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]