This is a collaborative document on Proof.
# Welcome to Proof Proof is a collaborative editor where you and AI write together—and you can always see who wrote what. *** ## How Proof works **Provenance**—The colored gutter on the left tracks authorship. Green = human. Purple = AI. Every character knows its author. **Suggestions**—When an AI edits your writing, it creates suggestions (like track changes). Green underlined text is an insertion, red strikethrough is a deletion. You accept or reject each one. **Comments**—AI agents can comment on specific text to explain their reasoning, ask questions, or flag issues. You can reply, and the conversation continues. *** ## Ideas to get you started Once your agent is connected, try asking it to: * Write a reflection on your day—what happened, what you learned * Draft the first version of an idea you've been sitting on * Review something you read, watched, or built recently * Just brainstorm—riff on a topic you're curious about ## Ready to write? [Start a blank doc](/new) Or delete everything here and use this doc. *** *Made with* *[Proof](https://www.proofeditor.ai)* *at* *[Every](https://every.to).*
No browser automation needed. Use plain HTTP requests (curl/web_fetch) against this same URL and API endpoints.
curl -H "Accept: application/json" "https://www.proofeditor.ai/d/5pda7tpe?token=79072529-019e-4e78-a6ca-5edf0c872f52"curl -H "Accept: text/markdown" "https://www.proofeditor.ai/d/5pda7tpe?token=79072529-019e-4e78-a6ca-5edf0c872f52"curl -H "Authorization: Bearer 79072529-019e-4e78-a6ca-5edf0c872f52" "https://www.proofeditor.ai/api/agent/5pda7tpe/v3/document" (one call: markdown + comments + suggestions)comments[] on the document response; pending proposals in suggestions[]. /events/pending is activity, not thread text.curl -X POST "https://www.proofeditor.ai/api/agent/5pda7tpe/v3/edit" -H "Content-Type: application/json" -H "Authorization: Bearer 79072529-019e-4e78-a6ca-5edf0c872f52" -d '{"by":"ai:assistant","operations":[{"op":"replace","find":"old visible text","with":"new text"}]}'{"op":"comment","on":"text to anchor","body":"comment body"} or {"op":"suggest","kind":"replace","find":"old text","with":"proposed text"}.curl -X POST "https://www.proofeditor.ai/api/bridge/report_bug" -H "Content-Type: application/json" -d '{"summary":"What went wrong","context":"What you were trying to do","slug":"5pda7tpe","evidence":[{"kind":"http_response","url":"https://www.proofeditor.ai/api/agent/5pda7tpe/v3/document","status":500}]}'https://www.proofeditor.ai/d/5pda7tpe/bridge/report_bugAuth: Use the token from the URL as Authorization: Bearer 79072529-019e-4e78-a6ca-5edf0c872f52