claudeers.

🔓 unclaimed — this page was auto-generated from GitHub. Are you the creator?

Claim this page →
// Uncategorized / Others

OpenAdapt

Open Source Generative Process Automation (i.e. Generative RPA). AI-First Process Automation with Large ([Language (LLMs) / Action (LAMs) / Multimodal (LMMs)…

Actively maintained
100/100
last commit 25 days ago
last release 25 days ago
releases 117
open issues 0
// install
git clone https://github.com/OpenAdaptAI/OpenAdapt

OpenAdapt: AI-First Process Automation with Large Multimodal Models (LMMs)

OpenAdapt is the open source software adapter between Large Multimodal Models (LMMs) and traditional desktop and web GUIs.

Record GUI demonstrations, train ML models, and evaluate agents - all from a unified CLI.

Join us on Discord | Documentation | OpenAdapt.ai


Architecture

OpenAdapt v1.0+ uses a modular meta-package architecture. The main openadapt package provides a unified CLI and depends on focused sub-packages via PyPI:

PackageDescriptionRepository
openadaptMeta-package with unified CLIThis repo
openadapt-captureEvent recording and storageopenadapt-capture
openadapt-mlML engine, training, inferenceopenadapt-ml
openadapt-evalsBenchmark evaluationopenadapt-evals
openadapt-viewerHTML visualizationopenadapt-viewer
openadapt-groundingUI element localizationopenadapt-grounding
openadapt-retrievalMultimodal demo retrievalopenadapt-retrieval
openadapt-privacyPII/PHI scrubbingopenadapt-privacy
openadapt-wrightDev automationopenadapt-wright
openadapt-heraldSocial media from git historyopenadapt-herald
openadapt-crierTelegram approval botopenadapt-crier
openadapt-consiliumMulti-model consensusopenadapt-consilium
openadapt-desktopDesktop GUI applicationopenadapt-desktop
openadapt-traySystem tray appopenadapt-tray
openadapt-agentProduction execution engineopenadapt-agent
openadapt-telemetryError trackingopenadapt-telemetry

Installation

Install what you need:

pip install openadapt              # Minimal CLI only
pip install openadapt[capture]     # GUI capture/recording
pip install openadapt[ml]          # ML training and inference
pip install openadapt[evals]       # Benchmark evaluation
pip install openadapt[privacy]     # PII/PHI scrubbing
pip install openadapt[all]         # Everything

Requirements: Python 3.10+


Quick Start

1. Record a demonstration

openadapt capture start --name my-task
# Perform actions in your GUI, then press Ctrl+C to stop

2. Train a model

openadapt train start --capture my-task --model qwen3vl-2b

3. Evaluate

openadapt eval run --checkpoint training_output/model.pt --benchmark waa

4. View recordings

openadapt capture view my-task

Ecosystem

Core Platform Components

PackageDescriptionRepository
openadaptMeta-package with unified CLIThis repo
openadapt-captureEvent recording and storageopenadapt-capture
openadapt-mlML engine, training, inferenceopenadapt-ml
openadapt-evalsBenchmark evaluationopenadapt-evals
openadapt-viewerHTML visualizationopenadapt-viewer
openadapt-groundingUI element localizationopenadapt-grounding
openadapt-retrievalMultimodal demo retrievalopenadapt-retrieval
openadapt-privacyPII/PHI scrubbingopenadapt-privacy

Applications and Tools

PackageDescriptionRepository
openadapt-desktopDesktop GUI applicationopenadapt-desktop
openadapt-traySystem tray appopenadapt-tray
openadapt-agentProduction execution engineopenadapt-agent
openadapt-wrightDev automationopenadapt-wright
openadapt-heraldSocial media from git historyopenadapt-herald
openadapt-crierTelegram approval botopenadapt-crier
openadapt-consiliumMulti-model consensusopenadapt-consilium
openadapt-telemetryError trackingopenadapt-telemetry

CLI Reference

openadapt capture start --name <name>    Start recording
openadapt capture stop                    Stop recording
openadapt capture list                    List captures
openadapt capture view <name>             Open capture viewer

openadapt train start --capture <name>    Train model on capture
openadapt train status                    Check training progress
openadapt train stop                      Stop training

openadapt eval run --checkpoint <path>    Evaluate trained model
openadapt eval run --agent api-claude     Evaluate API agent
openadapt eval mock --tasks 10            Run mock evaluation

openadapt serve --port 8080               Start dashboard server
openadapt version                         Show installed versions
openadapt doctor                          Check system requirements

How It Works

See the full Architecture Evolution for detailed documentation.

Three-Phase Pipeline

OpenAdapt follows a streamlined Demonstrate → Learn → Execute pipeline:

1. DEMONSTRATE (Observation Collection)

  • Capture: Record user actions and screenshots with openadapt-capture
  • Privacy: Scrub PII/PHI from recordings with openadapt-privacy
  • Store: Build a searchable demonstration library

2. LEARN (Policy Acquisition)

  • Retrieval Path: Embed demonstrations, index them, and enable semantic search
  • Training Path: Load demonstrations and fine-tune Vision-Language Models (VLMs)
  • Abstraction: Progress from literal replay to template-based automation

3. EXECUTE (Agent Deployment)

  • Observe: Take screenshots and gather accessibility information
  • Policy: Use demonstration context to decide actions via VLMs (Claude, GPT-4o, Qwen3-VL)
  • Ground: Map intentions to specific UI coordinates with openadapt-grounding
  • Act: Execute validated actions with safety gates
  • Evaluate: Measure success with openadapt-evals and feed results back for improvement

Core Approach: Trajectory-Conditioned Disambiguation

Zero-shot VLMs fail on GUI tasks not due to lack of capability, but due to ambiguity in UI affordances. OpenAdapt resolves this by conditioning agents on human demonstrations — "show, don't tell."

No RetrievalWith Retrieval
No Fine-tuning46.7% (zero-shot baseline)100% first-action (n=45, shared entry point)
Fine-tuningStandard SFT (baseline)Demo-conditioned FT (planned)

The bottom-right cell is OpenAdapt's unique value: training models to use demonstrations they haven't seen before, combining retrieval with fine-tuning for maximum accuracy. Phase 2 (retrieval-only prompting) is validated; Phase 3 (demo-conditioned fine-tuning) is in progress.

Validated result: On a controlled macOS benchmark (45 System Settings tasks sharing a common navigation entry point), demo-conditioned prompting improved first-action accuracy from 46.7% to 100%. A length-matched control (+11.1 pp only) confirms the benefit is semantic, not token-length. See the research thesis for methodology and the publication roadmap for limitations.

Industry validation: OpenCUA (NeurIPS 2025 Spotlight, XLANG Lab) reused OpenAdapt's macOS accessibility capture code in their AgentNetTool, but uses demos only for model training — not runtime conditioning. No open-source CUA framework currently does demo-conditioned inference, which remains OpenAdapt's architectural differentiator.

Key Concepts

  • Policy/Grounding Separation: The Policy decides what to do; Grounding determines where to do it
  • Safety Gate: Runtime validation layer before action execution (confirm mode for high-risk actions)
  • Abstraction Ladder: Progressive generalization from literal replay to goal-level automation
  • Evaluation-Driven Feedback: Success traces become new training data

Terminology

TermDescription
ObservationWhat the agent perceives (screenshot, accessibility tree)
ActionWhat the agent does (click, type, scroll, etc.)
TrajectorySequence of observation-action pairs
DemonstrationHuman-provided example trajectory
PolicyDecision-making component that maps observations to actions
GroundingMapping intent to specific UI elements (coordinates)

Demos

Legacy Version (v0.46.0) Examples:

Note: These demos show the legacy monolithic version. For current v1.0+ modular architecture examples, see the documentation.


Permissions

macOS: Grant Accessibility, Screen Recording, and Input Monitoring permissions to your terminal. See permissions guide.

Windows: Run as Administrator if needed for input capture.


Legacy Version

The monolithic OpenAdapt codebase (v0.46.0) is preserved in the legacy/ directory.

To use the legacy version:

pip install openadapt==0.46.0

See docs/LEGACY_FREEZE.md for migration guide and details.


Contributing

  1. Join Discord
  2. Pick an issue from the relevant sub-package repository
  3. Submit a PR

For sub-package development:

git clone https://github.com/OpenAdaptAI/openadapt-ml  # or other sub-package
cd openadapt-ml
pip install -e ".[dev]"


Support


License

MIT License - see LICENSE for details.

// compatibility

Platformscli, api, desktop, web
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguagePython

// faq

What is OpenAdapt?

Open Source Generative Process Automation (i.e. Generative RPA). AI-First Process Automation with Large ([Language (LLMs) / Action (LAMs) / Multimodal (LMMs)] / Visual Language (VLMs)) Models. It is open-source on GitHub.

Is OpenAdapt free to use?

OpenAdapt is open-source under the MIT license, so it is free to use.

What category does OpenAdapt belong to?

OpenAdapt is listed under uncategorized in the Claudeers registry of Claude-compatible tools.

0 views
1,632 stars
unclaimed
updated 11 days ago

// embed badge

OpenAdapt on Claudeers
[![Claudeers](https://claudeers.com/api/badge/openadapt.svg)](https://claudeers.com/openadapt)

// retro hit counter

OpenAdapt hit counter
[![Hits](https://claudeers.com/api/counter/openadapt.svg)](https://claudeers.com/openadapt)

// reviews

// guestbook

0/500

// related in Uncategorized / Others

🔓

FULL Augment Code, Claude Code, Cluely, CodeBuddy, Comet, Cursor, Devin AI, Junie, Kiro, Leap.new, Lovable, Manus, NotionAI, Orchids.app, Perplexity, Poke, Q…

// uncategorizedx1xhlol/141,492GPL-3.0[ claude ]
🔓

The agent engineering platform.

// uncategorizedlangchain-ai/Python140,862MIT[ claude ]
🔓

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

// uncategorizedn8n-io/TypeScript195,721NOASSERTION[ claude ]
🔓

100+ AI Agent & RAG apps you can actually run — clone, customize, ship.

// uncategorizedShubhamsaboo/Python116,798Apache-2.0[ claude ]

// built by

Connectorlinks several projects together across the ecosystem · 9 connections

1 of its contributors also build on official projectsclaude-cookbooks, claude-quickstarts

→ see how OpenAdapt connects across the ecosystem