Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T04:17:13.398Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

download.proto

37 lines · 574 B · text
1syntax = "proto3";
2package zed.messages;
3
4import "core.proto";
5import "worktree.proto";
6
7message DownloadFileByPath {
8  uint64 project_id = 1;
9  uint64 worktree_id = 2;
10  string path = 3;
11  uint64 file_id = 4;
12}
13
14message DownloadFileResponse {
15  uint64 file_id = 1;
16}
17
18message CreateFileForPeer {
19  uint64 project_id = 1;
20  PeerId peer_id = 2;
21  oneof variant {
22    FileState state = 3;
23    FileChunk chunk = 4;
24  }
25}
26
27message FileState {
28  uint64 id = 1;
29  optional File file = 2;
30  uint64 content_size = 3;
31}
32
33message FileChunk {
34  uint64 file_id = 1;
35  bytes data = 2;
36}
37
Served at tenant.openagents/omega Member data and write actions are omitted.