-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathextension.toml
More file actions
41 lines (35 loc) · 1.44 KB
/
extension.toml
File metadata and controls
41 lines (35 loc) · 1.44 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
id = "auggie"
name = "Auggie CLI"
version = "0.16.0"
schema_version = 1
authors = ["Augment Code <support@augmentcode.com>"]
description = "Augment Code's powerful software agent, backed by industry-leading context engine"
repository = "https://github.com/augmentcode/auggie-zed-extension"
[agent_servers.auggie]
name = "Auggie CLI"
icon = "auggie.svg"
[agent_servers.auggie.targets.darwin-aarch64]
archive = "https://registry.npmjs.org/@augmentcode/auggie/-/auggie-0.16.0.tgz"
cmd = "node"
args = ["./package/augment.mjs", "--acp"]
env = { AUGMENT_DISABLE_AUTO_UPDATE = "1" }
[agent_servers.auggie.targets.darwin-x86_64]
archive = "https://registry.npmjs.org/@augmentcode/auggie/-/auggie-0.16.0.tgz"
cmd = "node"
args = ["./package/augment.mjs", "--acp"]
env = { AUGMENT_DISABLE_AUTO_UPDATE = "1" }
[agent_servers.auggie.targets.linux-aarch64]
archive = "https://registry.npmjs.org/@augmentcode/auggie/-/auggie-0.16.0.tgz"
cmd = "node"
args = ["./package/augment.mjs", "--acp"]
env = { AUGMENT_DISABLE_AUTO_UPDATE = "1" }
[agent_servers.auggie.targets.linux-x86_64]
archive = "https://registry.npmjs.org/@augmentcode/auggie/-/auggie-0.16.0.tgz"
cmd = "node"
args = ["./package/augment.mjs", "--acp"]
env = { AUGMENT_DISABLE_AUTO_UPDATE = "1" }
[agent_servers.auggie.targets.windows-x86_64]
archive = "https://registry.npmjs.org/@augmentcode/auggie/-/auggie-0.16.0.tgz"
cmd = "node"
args = ["./package/augment.mjs", "--acp"]
env = { AUGMENT_DISABLE_AUTO_UPDATE = "1" }