-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathagent.json
More file actions
36 lines (36 loc) · 1.19 KB
/
agent.json
File metadata and controls
36 lines (36 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"id": "openhands",
"name": "OpenHands",
"version": "1.12.2",
"description": "AI-driven development platform - autonomous coding agent that can create/edit files, run commands, and browse the web",
"repository": "https://github.com/OpenHands/OpenHands-CLI",
"authors": [
"OpenHands <contact@all-hands.dev>"
],
"license": "MIT",
"icon": "./icon.svg",
"distribution": {
"binary": {
"darwin-aarch64": {
"archive": "https://github.com/OpenHands/OpenHands-CLI/releases/download/1.12.2/openhands-macos-arm64",
"cmd": "./openhands",
"args": ["acp"]
},
"darwin-x86_64": {
"archive": "https://github.com/OpenHands/OpenHands-CLI/releases/download/1.12.2/openhands-macos-intel",
"cmd": "./openhands",
"args": ["acp"]
},
"linux-aarch64": {
"archive": "https://github.com/OpenHands/OpenHands-CLI/releases/download/1.12.2/openhands-linux-arm64",
"cmd": "./openhands",
"args": ["acp"]
},
"linux-x86_64": {
"archive": "https://github.com/OpenHands/OpenHands-CLI/releases/download/1.12.2/openhands-linux-x86_64",
"cmd": "./openhands",
"args": ["acp"]
}
}
}
}