ai_process
Automate and coordinate multi-step workflows for file operations, git management, web search, fetching, browser automation, and security analysis by describing your goal in natural language.
Instructions
Primary AI orchestration interface - intelligently processes complex requests by automatically selecting and coordinating multiple tools. Handles file operations, git management, web search, web fetching, browser automation, security analysis, and more. Describe your goal naturally - the AI will determine the best approach and execute multi-step workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
request | Yes | Natural language description of what you want to accomplish. Examples: "Search for React 19 features and analyze code examples", "Find all TypeScript files with TODO comments", "Check git status and create a summary of recent changes", "Fetch the latest Next.js documentation and extract routing information" |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"request": {
"description": "Natural language description of what you want to accomplish. Examples: \"Search for React 19 features and analyze code examples\", \"Find all TypeScript files with TODO comments\", \"Check git status and create a summary of recent changes\", \"Fetch the latest Next.js documentation and extract routing information\"",
"type": "string"
}
},
"required": [
"request"
],
"type": "object"
}