Portal Community

ProcessPlugin Tools

Available when the ProcessPlugin is active. Enables agents to trigger Flow Studio workflows and hand off to other agents:

Tool NameDescriptionKey Parameters
start_workflowTriggers a Flow Studio workflow by definition IDworkflowDefinitionId, inputData (JSON)
get_workflow_statusReturns the current status of a running workflow instanceworkflowInstanceId
handoff_to_agentTransfers the conversation to a specialist agenttargetAgentId, reason, contextSummary
request_human_approvalSuspends workflow and sends an approval request to a human actorworkflowInstanceId, approvalMessage, actorUserId

start_workflow Tool Schema

{
  "name": "start_workflow",
  "description": "Triggers a Flow Studio workflow. Use this to initiate multi-step business processes such as vendor onboarding, expense approvals, or employee offboarding. Returns the workflow instance ID.",
  "input_schema": {
    "type": "object",
    "properties": {
      "workflowDefinitionId": {
        "type":        "string",
        "description": "The Flow Studio workflow definition ID to start"
      },
      "inputData": {
        "type":        "object",
        "description": "Initial data to pass into the workflow as input parameters"
      },
      "correlationId": {
        "type":        "string",
        "description": "Optional correlation ID to link this workflow to an external entity"
      }
    },
    "required": ["workflowDefinitionId"]
  }
}

WebDriverPlugin Tools

Available when the WebDriverPlugin is active. Enables agents to control a browser for web automation tasks:

Tool NameDescription
browser_navigateNavigate to a URL
browser_clickClick an element by CSS selector or XPath
browser_typeType text into an input field
browser_get_textExtract text from a page element
browser_screenshotTake a screenshot of the current page (returned as base64)
browser_waitWait for an element to appear or a condition to be true

ChatbotUIPlugin Tools

The ChatbotUIPlugin provides tools for controlling the chat interface from the agent's side:

Tool NameDescription
show_formRender an Atlas Form in the chat for user data collection
show_cardDisplay a structured data card (table, key-value pairs) in the chat
request_file_uploadPrompt the user to upload a file; returns file reference
show_confirmationDisplay a Yes/No confirmation button to the user

SemanticKernelPlugin Tools

Tool NameDescription
search_knowledgeExplicitly search the knowledge base (in addition to automatic RAG injection)
summarize_textCall the LLM to summarize a long text passage using a dedicated summarization prompt
translate_textTranslate text to a target language using the configured LLM