Files
quixos-protocol/proto/quixos/package.proto
T
timothy f4987093f6 Introduce repository-backed capability workspaces
- define and validate the capability and resource-lock languages
- provision workspace source repositories through Central Gitea
- build package runtimes from pinned standalone sources
- replace legacy schema compilation with workspace persistence plans
- add stable optimistic registers and Automerge CRDT documents
- modernize TypeScript/Nix package builds and runtime activation readiness
2026-09-04 19:08:10 -07:00

16 lines
283 B
Protocol Buffer

syntax = "proto3";
package quixos;
message PackageDescriptor {
string package_id = 1;
string package_revision_id = 2;
string runtime_protocol_version = 3;
repeated RuntimeExport exports = 4;
}
message RuntimeExport {
string export_id = 1;
string runtime_symbol = 2;
}