Release Notes: Chrome Extension 0.1.85
Version 0.1.85 is a development prerelease for testing the next hosted-agent capability slice.
What Changed
- Added extension-local transfer primitives:
transfer.write,transfer.read,transfer.clear, andtransfer.insert. - Added UI-oriented primitives for harder web-app workflows:
pointer.drag,text.insert, andkeyboard.press. - Added
storage.read_file, a read-only primitive for declared text and Markdown files in uploadedactions.json.storage. actions.site mode=listnow returns declared companionfilesandskills.- Skill front matter is surfaced automatically, while full skill bodies are read only when the agent calls
storage.read_file. - The MCP bridge exposes the same file and skill metadata when started with
--storage-root.
What To Test
- Install the Chrome extension package.
- Upload an
actions.json.storagecheckout that includes anactions.jsonwithx_actions.files. - Start the hosted
gpt-realtime-2agent. - Ask what actions, files, and skills are available on the current site.
- Ask it to read a relevant skill or Markdown reference.
- Test Trello-like workflows that require inserting text, dragging cards, and carrying structured data between tabs.
- If using the MCP bridge, call
actions.sitewithmode=listand confirm the returnedskillsinclude front matter but not full file bodies.
Boundaries
storage.read_fileis read-only.- The primitive reads declared storage companion files, not arbitrary local filesystem paths.
- Bookmarklet/embed hosts do not advertise
storage.read_fileyet.