- Browser-backed: Use the Computer Agent’s signed-in browser to navigate a website or call an application endpoint that depends on the browser session.
- Browser-independent: Work directly with an API, file, or data source without opening the browser.
Choose a helper or delegated work
Do not force exploratory or frequently changing work into one helper. Do not use free-form delegation for a sensitive operation that should have a narrow, testable contract.
Generate a helper from a browser workflow
Use the Browser workflow recorder when a process must be learned from a website:- Make sure the Computer Agent’s browser is signed in to the intended account.
- Record one complete, representative workflow and explain the intended business outcome.
- Stop the recording and start helper generation.
- Use a neutral skill name when the website address contains a customer name or another detail that should not become the reusable skill identity.
- Review the generation conversation and test every generated operation with safe data.
Build a Browser-independent helper
An API developer or an authorized setup Agent can add a focused helper to the skill that owns its instructions. Keep the implementation and usage guidance together so the capability can be installed, updated, and removed as one unit. Declare only the managed credentials the helper needs. The helper receives those values at execution time; callers supply business inputs, never secret values. The complete API walkthrough—including the helper source, managed-secret setup, registration, execution, and conversational test—is in Workspaces, helpers, and browser automation.Test before exposing it to conversations
Confirm that the helper appears in the selected Computer Agent’s helper list. Check its exact name, inputs, Browser requirement, owning skill, and required credential IDs. Run a safe representative request and inspect both the structured result and the destination system. The runtime result and the registered result description must agree, including filters, durable IDs, and normalized business fields callers rely on. Preserve opaque IDs exactly as returned. For a conversational Agent:- Computer can invoke an exact registered helper or delegate broader multi-step work.
- Browser is for ad hoc work in the live Browser, not registered helpers.
Creating and operating helpers through the API? See Workspaces, helpers, and browser automation.