# terminator **Repository Path**: anonyteam/terminator ## Basic Information - **Project Name**: terminator - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-13 - **Last Updated**: 2025-09-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # terminator 🤖 Mediar.ai https://github.com/user-attachments/assets/00329105-8875-48cb-8970-a62a85a9ebd0

Join us on Discord YouTube @mediar_ai Crates.io - terminator-rs Crates.io - workflow recorder

Install in Cursor Install in VS Code Install in VS Code Insiders

## 🚀 What's new - 08/25 Big release — NodeJS SDK in YAML workflows, run JS in browser, OS event recording → YAML generation in MCP, and more - 08/25 [we raised $2.8m to give AI hands to every desktop](https://x.com/louis030195/status/1948745185178914929) ⚠ > AI-powered desktop automation — open source, MIT-licensed, cross-platform, accessibility-first. > Works across all apps and browsers. Inspired by GitHub Actions & Playwright. > 100x faster than generic AI agents, >95% success rate, no vendor lock-in. ## 🧠 Why Terminator ### For Developers - Create automations that work across any desktop app or browser - Runs 100x faster than ChatGPT Agents, Claude, Perplexity Comet, BrowserBase, BrowserUse - \>95% success rate without costly consultant armies (UIPath, Automation Anywhere) - MIT-licensed — fork it, ship it, no lock-in We achieve this by pre-training workflows as deterministic code, and calling AI only when recovery is needed. ### For Teams [Our private beta workflow builder](https://www.mediar.ai/) + managed hosting = plug-and-play automation engine for your business: - Record & map your processes in days - Deploy AI to execute them at >95% accuracy - Kill repetitive work without legacy RPA complexity or cost ## ⚡ Quick start: MCP We recommend using [MCP](https://github.com/mediar-ai/terminator/tree/main/terminator-mcp-agent) as AI's IQ is far higher than the programmer. ## ⚡ Quick start: programmatic control ### 🐍 Python ```python import terminator # Control applications programmatically desktop = terminator.Desktop() desktop.open_application('calc') desktop.locator('name:Seven').click() desktop.locator('name:Plus').click() desktop.locator('name:Three').click() desktop.locator('name:Equals').click() # Result: 10 appears in calculator ``` **Installation:** ```bash pip install terminator.py ``` ### 🟦 TypeScript / Node.js ```typescript const { Desktop } = require("terminator.js"); // Async/await for modern control flow const desktop = new Desktop(); await desktop.openApplication("notepad"); await desktop.locator("name:Edit").typeText("Hello from TypeScript!"); await desktop.pressKey("{Ctrl}s"); // Save ``` **Installation:** ```bash npm install terminator.js # or: bun add terminator.js ``` ## Feature Support While Terminator aims for full cross-platform support, current capabilities vary by OS. Windows is the primary development target and has the most complete feature set. | Feature | Windows | macOS | Linux | Notes | | ---------------------------- | :-----: | :---: | :---: | ---------------------------------------------------- | | **Core Automation** | | | | | | Element Locators | ✅ | 🟡 | 🟡 | Find elements by `name`, `role`, `window`, etc. | | UI Actions (`click`, `type`) | ✅ | 🟡 | 🟡 | Core interactions with UI elements. | | Application Management | ✅ | 🟡 | 🟡 | Launch, list, and manage applications. | | Window Management | ✅ | 🟡 | 🟡 | Get active window, list windows. | | **Advanced Features** | | | | | | Workflow Recording | ✅ | ❌ | ❌ | Record human workflows for deterministic automation. | | Monitor Management | ✅ | 🟡 | 🟡 | Multi-display support. | | Screen & Element Capture | ✅ | ✅ | 🟡 | Take screenshots of displays or elements. | | **Language Bindings** | | | | | | Python (`terminator.py`) | ✅ | ✅ | ✅ | `pip install terminator.py` | | TypeScript (`terminator.js`) | ✅ | ✅ | ✅ | `npm i terminator.js` | | MCP (`terminator-mcp-agent`) | ✅ | ✅ | ✅ | `npx -y terminator-mcp-agent --add-to-app [app]` | | Rust (`terminator-rs`) | ✅ | ✅ | ✅ | `cargo add terminator-rs` | **Legend:** - ✅: **Supported** - The feature is stable and well-tested. - 🟡: **Partial / Experimental** - The feature is in development and may have limitations. - ❌: **Not Supported** - The feature is not yet available on this platform. ## 🕵️ How to Inspect Accessibility Elements (like `name:Seven`) To create reliable selectors (e.g. `name:Seven`, `role:Button`, `window:Calculator`), you need to inspect the Accessibility Tree of your OS. Here's how to explore UI elements on each platform: ### 🪟 Windows - **Tool:** [Accessibility Insights for Windows](https://accessibilityinsights.io/downloads/) - **Alt:** [Inspect.exe](https://learn.microsoft.com/en-us/windows/win32/winauto/inspect-objects) (comes with Windows SDK) - **Usage:** Open the app you want to inspect → launch Accessibility Insights → hover or use keyboard navigation to explore the UI tree (Name, Role, ControlType, AutomationId). > These tools show you the `Name`, `Role`, `ControlType`, and other metadata used in Terminator selectors. --- ### 🍎 macOS - **Tool:** [Accessibility Inspector](https://developer.apple.com/documentation/xcode/accessibility_inspector) - **Usage:** Comes with Xcode → Open `Xcode > Open Developer Tool > Accessibility Inspector` → Use the target icon to explore UI elements on screen. --- ### 🐧 Linux - **Tool:** [Accerciser](https://wiki.gnome.org/Apps/Accerciser) - **Install:** ```bash sudo apt install accerciser ``` - **Usage:** Launch Accerciser → Select the window/app → Browse the accessible widget tree. --- ### 💡 Tip Once you identify the structure of your UI: ```python # Sample pattern desktop.locator('window:Calculator') .locator('role:Button') .locator('name:Seven') ``` You can build and debug selector paths incrementally using `.locator()` chaining. ## Explore Further - [https://github.com/mediar-ai/terminator/examples](https://github.com/mediar-ai/terminator/tree/main/examples) ## contributing contributions are welcome! please feel free to submit issues and pull requests. many parts are experimental, and help is appreciated. join our [discord](https://discord.gg/dU9EBuw7Uq) to discuss. ## businesses if you want desktop automation at scale for your business, [let's talk](https://mediar.ai)