Skip to repository content31 lines · 514 B · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T04:14:46.155Z 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
core.proto
1syntax = "proto3";
2package zed.messages;
3
4message PeerId {
5 uint32 owner_id = 1;
6 uint32 id = 2;
7}
8
9message User {
10 reserved 4;
11 uint64 id = 1;
12 string username = 6;
13 string github_login = 2;
14 string avatar_url = 3;
15 optional string name = 5;
16}
17
18message Nonce {
19 uint64 upper_half = 1;
20 uint64 lower_half = 2;
21}
22
23message Collaborator {
24 PeerId peer_id = 1;
25 uint32 replica_id = 2;
26 uint64 user_id = 3;
27 bool is_host = 4;
28 optional string committer_name = 5;
29 optional string committer_email = 6;
30}
31