Skip to repository content72 lines · 1.4 KB · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T04:16:04.183Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
ai.proto
1syntax = "proto3";
2package zed.messages;
3
4import "task.proto";
5
6message GetAgentServerCommand {
7 uint64 project_id = 1;
8 string name = 2;
9 optional string root_dir = 3;
10}
11
12message GetContextServerCommand {
13 uint64 project_id = 1;
14 string server_id = 2;
15 optional string root_dir = 3;
16}
17
18message ContextServerCommand {
19 string path = 1;
20 repeated string args = 2;
21 map<string, string> env = 3;
22}
23
24message AgentServerCommand {
25 string path = 1;
26 repeated string args = 2;
27 map<string, string> env = 3;
28 string root_dir = 4;
29
30 optional SpawnInTerminal login = 5;
31}
32
33message ExternalAgentsUpdated {
34 uint64 project_id = 1;
35 repeated string names = 2;
36}
37
38message ExternalExtensionAgentTarget {
39 string archive = 1;
40 string cmd = 2;
41 repeated string args = 3;
42 optional string sha256 = 4;
43 map<string, string> env = 5;
44}
45
46message ExternalExtensionAgent {
47 string name = 1;
48 optional string icon_path = 2;
49 string extension_id = 3;
50 map<string, ExternalExtensionAgentTarget> targets = 4;
51 map<string, string> env = 5;
52 optional string version = 6;
53}
54
55message ExternalExtensionAgentsUpdated {
56 uint64 project_id = 1;
57 repeated ExternalExtensionAgent agents = 2;
58}
59
60message ExternalAgentLoadingStatusUpdated {
61 uint64 project_id = 1;
62 string name = 2;
63 reserved 3;
64 optional string status = 4;
65}
66
67message NewExternalAgentVersionAvailable {
68 uint64 project_id = 1;
69 string name = 2;
70 string version = 3;
71}
72