Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T01:42:50.738Z 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

agent_computer_ui.rs

27 lines · 895 B · rust
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
Served at tenant.openagents/omega Member data and write actions are omitted.