$git clone https://github.com/iflytek/astron-rpa🤖 Pioneering Open-Source Enterprise RPA Desktop Application
| 1 | # AstronRPA |
| 2 | |
| 3 | <div align="center"> |
| 4 | |
| 5 |  |
| 6 | |
| 7 | **🤖 Pioneering Open-Source Enterprise RPA Desktop Application** |
| 8 | |
| 9 | <p align="center"> |
| 10 | <a href="https://www.iflyrpa.com">Astron RPA Official Site</a> · |
| 11 | <a href="./BUILD_GUIDE.md">Deployment Guide</a> · |
| 12 | <a href="https://www.iflyrpa.com/docs/">User Documentation</a> · |
| 13 | <a href="./FAQ.md">FAQ</a> |
| 14 | </p> |
| 15 | |
| 16 | [](LICENSE) |
| 17 | [](https://github.com/iflytek/astron-rpa/releases) |
| 18 | [](https://www.python.org/) |
| 19 | [](https://github.com/iflytek/astron-rpa/stargazers) |
| 20 | |
| 21 | English | [简体中文](README.zh.md) |
| 22 | |
| 23 | </div> |
| 24 | |
| 25 | ## 📋 Overview |
| 26 | |
| 27 | AstronRPA is an enterprise-grade Robotic Process Automation (RPA) desktop application. Through a visual designer, it supports low-code/no-code development, enabling users to rapidly build workflows and automate desktop software and web pages. |
| 28 | |
| 29 | [Astron Agent](https://github.com/iflytek/astron-agent) is the native Agent platform supported by this project. Users can directly call RPA workflow nodes in Astron Agent, and also use Agent workflows in AstronRPA, achieving efficient collaboration between automation processes and intelligent agent systems, empowering broader business automation scenarios. |
| 30 | |
| 31 | ### 🎯 Why Choose AstronRPA? |
| 32 | |
| 33 | - **🛠️ Comprehensive Automation Support**: Comprehensive coverage of Windows desktop applications and web page automation. Supports common office software like WPS and Office, financial and ERP systems like Kingdee and YonYou, and various browsers like IE, Edge, and Chrome, enabling end-to-end cross-application automation. |
| 34 | - **🧩 Highly Component-based**: 300+ pre-built atomic capabilities covering UI operations, data processing, and system interactions. Supports visual orchestration and custom component extensions with high flexibility and maintainability. |
| 35 | - **🏭 Enterprise-grade Security & Collaboration**: Built-in excellence center and team marketplace with enterprise modules. Provides terminal monitoring, scheduling modes, robot team sharing and collaborative functions. Build a complete enterprise automation management ecosystem with process security, permission control, and cross-team collaboration. |
| 36 | - **👨💻 Developer-friendly Experience**: Low-code, visual process design and debugging environment. Quickly build automation workflows through intuitive drag-and-drop methods, reducing development barriers, improving development efficiency, and enabling business users to participate in automation creation. |
| 37 | - **🤖 Native Agent Empowerment**: Deep integration with Astron Agent platform supporting bi-directional calls between automation processes and AI agents with capability fusion. Achieve seamless connection between task reasoning, decision making, and automated execution, expanding automation boundaries. |
| 38 | - **🌐 Multi-channel Trigger Integration**: Supports direct execution, scheduled tasks, scheduling modes, API calls, and MCP services. Flexible integration capabilities to quickly respond to third-party system integration needs and easily embed in complex business scenarios. |
| 39 | |
| 40 | ## 🚀 Quick Start |
| 41 | |
| 42 | ### System Requirements |
| 43 | - 💻 **Client Operating System**: Windows 10/11 (primary support) |
| 44 | - 🧠 **RAM** >= 8 GiB |
| 45 | |
| 46 | ### **Server**: Deploy with Docker |
| 47 | |
| 48 | Recommended for quick deployment: |
| 49 | |
| 50 | ```bash |
| 51 | # Clone the repository |
| 52 | git clone https://github.com/iflytek/astron-rpa.git |
| 53 | cd astron-rpa |
| 54 | |
| 55 | # Enter docker directory |
| 56 | cd docker |
| 57 | |
| 58 | # Copy .env |
| 59 | cp .env.example .env |
| 60 | |
| 61 | # Modify casdoor service configuration in .env (8000 is the default port) |
| 62 | CASDOOR_EXTERNAL_ENDPOINT="http://{YOUR_SERVER_IP}:8000" |
| 63 | |
| 64 | # 🚀 Start all services |
| 65 | docker compose up -d |
| 66 | |
| 67 | # 📊 Check service status |
| 68 | docker compose ps |
| 69 | ``` |
| 70 | |
| 71 | - After all services have started, open your browser and go to: `http://{YOUR_SE |