Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

OpenClaw plugin exposing 0 skills.

Install to Claude Code

openclaw plugin add Chethan616/Dex

Run in Claude Code. Add the marketplace first with /plugin marketplace add Chethan616/Dex if you haven't already.

README.md

Dex

A calm cockpit for commanding agents you can trust.

Dex is a Windows-first, chat-first control surface for a local AI agent that has hands on your machine — it can drive real Windows app GUIs (Office, browsers, settings panels, anything with a UI Automation tree), not just shell commands.

> v1 is desktop Windows only. Mobile, macOS, and Linux are in the roadmap but not built. See prompt.md §9 for the scope boundary.

---

Architecture

Flutter app (Dex)
   │  HTTP + WebSocket on 127.0.0.1:18789
   ▼
Dex gateway (Node 24)                       ← the brain · Anthropic Claude
   │  MCP stdio (picks per-turn based on SKILL.md descriptions)
   ▼
   ┌───────────────────────────┬─────────────────────────────┐
   ▼                           ▼                             ▼
Dex built-in            windows-desktop-              browser-control
shell / file / process  control MCP (UFO²)            MCP (browser-use)
                        Python 3.10/3.11              Python 3.11
                        Win32 UIA, Groq Qwen 3        Playwright + Groq Qwen 3
                        run_desktop_task              run_browser_task
  • Dex core (dex/core/) — sessions, channels, skills, memory, cron, built-in shell tools. Forked from OpenClaw at commit 7074cf8e23c1f64362c4f8c4bf32971ca94d5221 (see dex/core/HERITAGE.md).
  • UFO² (vendor/UFO/) — Windows native-app GUI automation via the accessibility tree.
  • browser-use (vendor/browser-use/) — browser automation via Playwright + an LLM-driven agent.
  • windows-desktop-control (dex/drivers/windows-desktop-control/) — MCP server exposing run_desktop_task to Claude.
  • browser-control (dex/drivers/browser-control/) — MCP server exposing run_browser_task to Claude.
  • app/ — the Flutter client. Talks to the Dex gateway. Implements design.md; renders Gemini-style tool chips so the user sees which tool Claude picked.

---

Quick start

> See PLAN.md for the full phased build plan and current progress.

# 1. one-time prereq check
.\scripts\setup-windows.ps1

# 2. when all phases are done
.\scripts\run-dev.ps1   # starts gateway + MCP server + Flutter app

Requirements:

  • Windows 10 / 11
  • Node 24 (or Node 22.19+)
  • Python 3.10
  • Flutter SDK with Windows desktop target enabled
  • Anthropic API key (OpenClaw)
  • Groq API key (UFO² default — Qwen 3, free)

---

Repo layout

D:\project1\
├── README.md                  this file
├── PLAN.md                    live progress tracker — read this first when resuming
├── LICENSES.md                third-party license audit
├── SECURITY.md                risk surface + isolation
├── design.md                  UI/UX spec — single source of design truth
├── prompt.md                  build contract — assistant rules of engagement
├── dex/                       Dex framework (Phase B.9+)
│   ├── core/                  forked OpenClaw runtime + dex binary
│   │   ├── HERITAGE.md        origin commit + MIT credit
│   │   ├── package.json       "name": "dexagent", "bin": { "dex": ... }
│   │   ├── src/               TS source (post-rebrand: Dex / DEX_*)
│   │   └── packages/          @dexagent/* workspace packages
│   └── drivers/               MCP driver servers (Python 3.10/3.11)
│       ├── windows-desktop-control/  FastMCP wrapper around UFO²
│       └── browser-control/   FastMCP wrapper around browser-use
├── vendor/
│   ├── UFO/                   pinned commit, do not modify
│   └── browser-use/           pinned commit, do not modify
├── docs/migration/            B.1 audit + B.11 migration report
├── app/                       Flutter desktop client (com.chethan616.dex)
└── scripts/                   PowerShell helpers (rebrand / audit / run-dev)

---

Pinned vendor commits

Recorded so builds are reproducible. Update only when intentionally bumping.

| Vendor | Commit | Date pinned | |---|---|---| | core/ (Dex brain — fork of openclaw/openclaw) | 7074cf8e23c1f64362c4f8c4bf32971ca94d5221 | 2026-06-03 — see core/HERITAGE.md | | microsoft/UFO | adef15b8789b015356977ed742916de2da644509 | 2026-05-26 | | browser-use/browser-use | 4931a7e0217cf9c64450348b96511733263c9268 | 2026-06-01 |

---

Workflow

graph TD
    %% Styling
    classDef layer fill:#f9f9f9,stroke:#333,stroke-width:2px;
    classDef core fill:#e1f5fe,stroke:#0288d1,stroke-width:2px;
    classDef backend fill:#f1f8e9,stroke:#689f38,stroke-width:2px;
    classDef bus fill:#fff3e0,stroke:#f57c00,stroke-width:2px,shape:circle;

    %% Layer 1 & 2: Transport & Security
    subgraph Communication [Layer 1 & 2: Transport & Security]
        direction LR
        WA(WhatsApp)
        TG(Telegram)
        DC(Discord)
        CLI(CLI)
        
        OG{Owner Gate}
        
        WA --> OG
        TG --> OG
        DC --> OG
        CLI --> OG
    end

    %% Drop unauthorized
    Drop((Dropped))
    OG -.->|Unauthorized| Drop

    %% Layer 3: Gateway
    GW(Layer 3: Gateway):::core
    OG -->|Authorized User| GW

    %% Layer 6: Event Bus
    EB((Layer 6:\nEvent Bus)):::bus
    GW -.->|Subscribes| EB
    EB -.->|Streams to| WA

    %% Layer 4: Brain & Orchestrator
    subgraph CoreEngine [Layer 4 & 5: The Core Engine]
        direction TB
        
        subgraph Brain [Brain: Planning Only]
            direction TB
            B1[1. Intent Normalization]
            B2[2. Semantic Cache]
            B3[3. Tier Classification]
            B4[4. Execution Planner]
            B1 --> B2 --> B3 --> B4
        end

        subgraph Orchestrator [Orchestrator: Coordination]
            direction TB
            O1[Agent Registry]
            O2[Dispatcher]
            O3[Retry / Recovery]
            O1 --> O2 <--> O3
        end
        
        Brain ===>|Generates Execution Plan| Orchestrator
    end

    GW ===>|TaskRequest| Brain
    Orchestrator -.->|Emits 'Thinking' Events| EB

    %% Layer 7: Agents & Backends
    subgraph Execution [Layer 7: Replaceable Execution Backends]
        direction TB
        DA[Desktop Agent] --> DA_B(Agent-S3 / UIA Capture)
        BA[Browser Agent] --> BA_B(browser-use)
        WA_A[Workspace Agent] --> WA_B(Google, MS365, Slack MCPs)
        SA[System Agent] --> SA_B(Persistent Elevated Shell Host)
    end
    
    class DA,BA,WA_A,SA core;
    class DA_B,BA_B,WA_B,SA_B backend;

    Orchestrator ===>|Resolves via Capabilities| DA
    Orchestrator ===>|Resolves via Capabilities| BA
    Orchestrator ===>|Resolves via Capabilities| WA_A
    Orchestrator ===>|Resolves via Capabilities| SA

---

License

Dex source in this repo is MIT. See LICENSES.md for the full third-party audit (vendored repos, Flutter deps, fonts). No AGPL components are bundled with the shipped product.

Related plugins

Browse all →