Skip to content

Commit 83f6fe6

Browse files
ycjcl868ulivz
andauthored
chore: release beta v (#215)
Co-authored-by: chenhaoli <chenhaoli@bytedance.com>
1 parent b56213f commit 83f6fe6

File tree

13 files changed

+49
-32
lines changed

13 files changed

+49
-32
lines changed

.github/workflows/release-agent-tars.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
name: Release Agent-TARS app
22
on:
3-
# push:
4-
# branches:
5-
# - main
63
workflow_dispatch:
74

85
env:
@@ -69,7 +66,7 @@ jobs:
6966
cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles
7067
- name: install dependencies
7168
run: pnpm install
72-
- name: publish arm64
69+
- name: publish Mac Universal
7370
env:
7471
APPLE_ID: ${{ secrets.APPLE_ID }}
7572
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}

CONTRIBUTING.md

Lines changed: 37 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -57,30 +57,41 @@ This is a [Monorepo](https://pnpm.io/workspaces) project including the following
5757
```bash
5858
.
5959
├── README.md
60-
├── package.json # Electron application dependencies
61-
├── forge.config.ts # Electron pack and publish configuration
62-
├── electron.vite.config.ts # Electron bundle configuration
63-
64-
├── src # Electron application source code
65-
│   ├── main # Main process source code(Like backend)
66-
│   ├── preload # Preload script source code
67-
│   └── renderer # Renderer process source code(Like frontend)
68-
69-
├── packages # Packages or Modules or SDK for UI-TARS Desktop
70-
│   ├── action-parser # Action parser for parsing UI-TARS model output into actions
71-
│   ├── core # Core SDK package for UI-TARS Agent
72-
│   ├── electron-ipc # Electron IPC for communication between main and renderer processes
73-
│   ├── shared # Shared code of the project(including types, utils, constants, etc.)
74-
│   ├── utio # UTIO (UI-TARS Insights and Observation)
75-
│   ├── visualizer # Sharing HTML Visualization Reporter
76-
│ └── operators # Automation operators
77-
│ ├── browserbase # Browserbase integration
78-
│   └── nut-js # Nut.js integration
79-
80-
├── docs # Documentation of the project
81-
├── rfcs # RFCs (Request for Comments) for the project
82-
├── e2e # E2E test cases for the project
83-
├── playwright.config.ts # E2E test configuration
60+
├── apps
61+
│   ├── omega
62+
│   │   ├── src
63+
│   │   │   ├── main
64+
│   │   │   ├── preload
65+
│   │   │   ├── renderer
66+
│   │   │   └── vendor
67+
│   └── ui-tars
68+
│      └── src
69+
│        ├── main
70+
│         ├── preload
71+
│         └── renderer
72+
│ 
73+
├── packages
74+
│   ├── agent-infra
75+
│   │   ├── browser
76+
│   │   ├── browser-use
77+
│   │   ├── logger
78+
│   │   ├── mcp-client
79+
│   │   ├── mcp-servers
80+
│   │   ├── search
81+
│   │   └── shared
82+
│   ├── common
83+
│   │   ├── configs
84+
│   │   └── electron-build
85+
│   └── ui-tars
86+
│   ├── action-parser
87+
│   ├── cli
88+
│   ├── electron-ipc
89+
│   ├── operators
90+
│   ├── sdk
91+
│   ├── shared
92+
│   ├── tsconfig.node.json
93+
│   ├── utio
94+
│   └── visualizer
8495
└── vitest.*.mts # Unit test configuration
8596
```
8697

@@ -105,7 +116,8 @@ $ pnpm install
105116
#### Run the application
106117

107118
```bash
108-
$ pnpm run dev
119+
$ pnpm run dev:ui-tars # Start UI-TARS Desktop
120+
$ pnpm run dev:agent-tars # Start Agent-TARS Desktop
109121
```
110122

111123
After the application starts, you can see the UI-TARS interface within the application.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>com.apple.security.cs.allow-jit</key>
6+
<true/>
7+
</dict>
8+
</plist>

apps/omega/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "agent-tars-app",
3-
"version": "1.0.0-beta.1",
4-
"description": "An Electron application with React and TypeScript",
3+
"version": "1.0.0-alpha.1",
4+
"description": "A multimodal AI agent that revolutionizes GUI interaction",
55
"main": "./dist/main/index.js",
6-
"author": "example.com",
6+
"author": "ByteDance",
77
"homepage": "https://electron-vite.org",
88
"packageManager": "pnpm@9.12.3",
99
"scripts": {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)