> ## Documentation Index
> Fetch the complete documentation index at: https://vida.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Generate a reusable browser helper

> Starts browser-helper generation from the finalized recordings for the selected domain. The response includes the resulting skill identifier and a conversation reference for following the Computer Agent's work and tool calls. Supply a neutral skill name when the domain contains customer-specific information or would make a poor reusable name.




## OpenAPI

````yaml post /api/v2/computer/accounts/{targetAccountId}/workflow-recordings/{domainKey}/generate
openapi: 3.0.0
info:
  version: 2.0.0
  title: Vida API
  description: Vida API Documentation
servers:
  - url: https://api.vida.dev
    description: Vida Production
    variables:
      baseUrl:
        default: api.vida.dev
        description: Production API Root
security: []
tags:
  - name: Agents
  - name: Inbound Email
    description: Control which senders may create inbound email work for an Agent.
  - name: Features
    description: Inspect capabilities available within an account hierarchy.
  - name: Conversation Logs
    description: Query conversation activity and calculate account-level metrics.
  - name: Computer Agents
    description: Set up, configure, inspect, and manage Vida Computer Agents.
  - name: Computer Agent Sessions
    description: View and reset Computer Agent sessions.
  - name: Accounts
  - name: Agent Templates
    description: Create, manage, and apply reusable Agent configurations.
paths:
  /api/v2/computer/accounts/{targetAccountId}/workflow-recordings/{domainKey}/generate:
    post:
      tags:
        - Computer Agents
      summary: Generate a reusable browser helper
      description: >
        Starts browser-helper generation from the finalized recordings for the
        selected domain. The response includes the resulting skill identifier
        and a conversation reference for following the Computer Agent's work and
        tool calls. Supply a neutral skill name when the domain contains
        customer-specific information or would make a poor reusable name.
      operationId: workflowRecordingsPostDomainGenerate
      parameters:
        - name: targetAccountId
          in: path
          required: true
          description: ''
          schema:
            type: string
        - name: domainKey
          in: path
          required: true
          description: ''
          schema: {}
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                skillName:
                  type: string
                  maxLength: 128
                  description: >-
                    Optional reusable name. Vida converts it to the returned
                    safe skillSlug.
      responses:
        '200':
          description: Browser-helper generation started
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  state:
                    type: string
                  phase:
                    type: string
                  generationId:
                    type: string
                  recordingIds:
                    type: array
                    description: Immutable recording snapshot used by this generation.
                    items:
                      type: string
                  updatedAt:
                    type: string
                    format: date-time
                  lastActivityAt:
                    type: string
                    format: date-time
                  sessionKey:
                    type: string
                  skillSlug:
                    type: string
                  evidenceRoot:
                    type: string
                    description: >-
                      Workspace-relative directory containing the selected
                      recording evidence.
                  conversationRef:
                    type: object
                    required:
                      - sessionKey
                      - resolve
                    properties:
                      sessionKey:
                        type: string
                      resolve:
                        type: object
                        required:
                          - method
                          - href
                          - body
                        properties:
                          method:
                            type: string
                            enum:
                              - POST
                          href:
                            type: string
                          body:
                            type: object
                            required:
                              - sessionKey
                            properties:
                              sessionKey:
                                type: string
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: query
      name: token
      description: Vida API Token

````