-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathextension.toml
More file actions
50 lines (42 loc) · 1.87 KB
/
extension.toml
File metadata and controls
50 lines (42 loc) · 1.87 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
id = "aar-agent"
name = "Aar Agent"
version = "0.3.2"
schema_version = 1
authors = ["fischerf"]
description = "Aar adaptive action & reasoning agent — provider-agnostic AI agent with ACP support"
repository = "https://github.com/fischerf/aar"
# ---------------------------------------------------------------------------
# Agent server — speaks Agent Client Protocol (ACP)
# ---------------------------------------------------------------------------
#
# Each platform archive is a small tarball / zip that contains only a launcher
# script (launch.sh or launch.cmd). The script installs aar-agent from PyPI
# if needed, then starts `aar acp` on the port Zed passes via ZED_AGENT_PORT
# (default 8000).
#
# Build the archives with:
# scripts/zed/build_archives.sh
#
# Then attach them to the GitHub Release for the matching version tag.
# ---------------------------------------------------------------------------
[agent_servers.aar]
name = "Aar"
icon = "icon/aar.svg"
[agent_servers.aar.env]
# Signals to the agent that it was launched by Zed — useful for log filtering.
AAR_LAUNCHED_BY = "zed"
[agent_servers.aar.targets.darwin-aarch64]
archive = "https://github.com/fischerf/aar/releases/download/v0.3.2/aar-zed-darwin-aarch64.tar.gz"
cmd = "./launch.sh"
[agent_servers.aar.targets.darwin-x86_64]
archive = "https://github.com/fischerf/aar/releases/download/v0.3.2/aar-zed-darwin-x86_64.tar.gz"
cmd = "./launch.sh"
[agent_servers.aar.targets.linux-x86_64]
archive = "https://github.com/fischerf/aar/releases/download/v0.3.2/aar-zed-linux-x86_64.tar.gz"
cmd = "./launch.sh"
[agent_servers.aar.targets.linux-aarch64]
archive = "https://github.com/fischerf/aar/releases/download/v0.3.2/aar-zed-linux-aarch64.tar.gz"
cmd = "./launch.sh"
[agent_servers.aar.targets.windows-x86_64]
archive = "https://github.com/fischerf/aar/releases/download/v0.3.2/aar-zed-windows-x86_64.zip"
cmd = "./launch.cmd"