Skip to repository content69 lines · 2.9 KB · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T05:07:36.193Z 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
zed.metainfo.xml.in
1<?xml version="1.0" encoding="UTF-8"?>
2<component type="desktop-application">
3 <id>$APP_ID</id>
4 <metadata_license>MIT</metadata_license>
5 <project_license>Apache-2.0 and GPL-3.0-or-later</project_license>
6
7 <name>$APP_NAME</name>
8 <summary>OpenAgents desktop client and integrated development environment</summary>
9 <developer id="com.openagents">
10 <name translate="no">OpenAgents</name>
11 </developer>
12 <description>
13 <p>
14 Omega is the OpenAgents desktop client and integrated development environment.
15 It is a fork of Zed maintained for OpenAgents product surfaces.
16 </p>
17 <p>Features:</p>
18 <ul>
19 <li>Performance: Efficiently uses every CPU core and your GPU for instant startup, quick file loading, and responsive keystrokes.</li>
20 <li>Language-aware: Maintains a syntax tree for precise highlighting, and auto-indent, with LSP support for autocompletion and refactoring.</li>
21 <li>Local-first editing: Works offline for everyday editing without requiring Zed production services.</li>
22 <li>Open source: Distributed under GPL-3.0-or-later and Apache-2.0 with third-party notices included in the package.</li>
23 </ul>
24 </description>
25
26 <launchable type="desktop-id">$APP_ID.desktop</launchable>
27
28 <branding>
29 <color type="primary" scheme_preference="light">$BRANDING_LIGHT</color>
30 <color type="primary" scheme_preference="dark">$BRANDING_DARK</color>
31 </branding>
32
33 <content_rating type="oars-1.1">
34 <content_attribute id="social-chat">intense</content_attribute>
35 <content_attribute id="social-audio">intense</content_attribute>
36 </content_rating>
37
38 <url type="homepage">https://github.com/OpenAgentsInc/omega</url>
39 <url type="bugtracker">https://github.com/OpenAgentsInc/omega/issues</url>
40 <url type="help">https://github.com/OpenAgentsInc/omega#readme</url>
41 <url type="vcs-browser">https://github.com/OpenAgentsInc/omega</url>
42 <url type="contribute">https://github.com/OpenAgentsInc/omega/blob/main/CONTRIBUTING.md</url>
43
44 <supports>
45 <internet>offline-only</internet>
46 </supports>
47 <recommends>
48 <control>pointing</control>
49 <control>keyboard</control>
50 <display_length compare="ge">768</display_length>
51 </recommends>
52
53 <screenshots>
54 <screenshot type="default">
55 <caption>Omega desktop editor</caption>
56 <image>https://raw.githubusercontent.com/OpenAgentsInc/omega/main/crates/zed/resources/app-icon@2x.png</image>
57 </screenshot>
58 </screenshots>
59
60 <releases>
61 @release_info@
62 <release version="0.0.0" date="1970-01-01">
63 <description>
64 <p>Dummy release to keep flatpak-builder AppStream metadata validation from complaining</p>
65 </description>
66 </release>
67 </releases>
68</component>
69