Skip to repository content27 lines · 895 B · rust
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T01:42:50.738Z 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
agent_computer_ui.rs
1//! Minimal Omega Agent Computer launch surface (`OMEGA-AC-02`).
2//!
3//! One operator-reachable panel starts a cloud turn through supervised
4//! `omega_effectd`. GPUI stays projection-only. Credentials stay runtime-only.
5//! This is not a Full Auto surface and does not own a second cloud thread store.
6
7mod panel;
8
9pub use panel::{init, AgentComputerPanel};
10
11pub const DEFAULT_CONTROL_PLANE_BASE_URL: &str = "https://openagents.com";
12pub const DEFAULT_REPO_REF: &str = "OpenAgentsInc/openagents";
13
14#[cfg(test)]
15mod tests {
16 use super::*;
17
18 #[test]
19 fn agent_computer_surface_is_not_full_auto() {
20 let names = module_path!();
21 assert!(names.contains("agent_computer_ui"));
22 assert!(!names.contains("full_auto"));
23 assert_eq!(DEFAULT_CONTROL_PLANE_BASE_URL, "https://openagents.com");
24 assert_eq!(DEFAULT_REPO_REF, "OpenAgentsInc/openagents");
25 }
26}
27