Skip to repository content22 lines · 386 B · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-27T23:30:06.977Z 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
get-released-version
1#!/usr/bin/env bash
2
3channel="$1"
4
5query=""
6case $channel in
7 stable)
8 ;;
9 preview)
10 query="&preview=1"
11 ;;
12 nightly)
13 query="&nightly=1"
14 ;;
15 *)
16 echo "this must be run on either of stable|preview|nightly release branches" >&2
17 exit 1
18 ;;
19esac
20
21curl -s "https://cloud.zed.dev/releases/$channel/latest/asset?asset=zed&os=macos&arch=aarch64" | jq -r .version
22