Skip to repository content27 lines · 771 B · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-27T23:37:33.755Z 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
omega-public-demo
1#!/usr/bin/env bash
2
3set -euo pipefail
4
5repository_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
6fixture_root="${repository_root}/assets/demo-workroom"
7active_source="${fixture_root}/src/commandPalette.ts"
8profile_root="$(mktemp -d "${TMPDIR:-/tmp}/omega-public-demo.XXXXXX")"
9
10echo "Omega public demo profile: ${profile_root}"
11echo "Omega public demo fixture: ${fixture_root}"
12
13if [[ -n "${OMEGA_DEMO_BINARY:-}" ]]; then
14 exec "${OMEGA_DEMO_BINARY}" \
15 --demo-workroom \
16 --user-data-dir "${profile_root}" \
17 "${fixture_root}" \
18 "${active_source}"
19fi
20
21cd "${repository_root}"
22exec cargo run --profile release-fast -- \
23 --demo-workroom \
24 --user-data-dir "${profile_root}" \
25 "${fixture_root}" \
26 "${active_source}"
27