Skip to repository content22 lines · 618 B · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T01:27:27.346Z 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-eval
1#!/usr/bin/env bash
2#
3# Run the zed-eval Python CLI from this checkout without manually setting
4# PYTHONPATH or installing the tool globally.
5#
6# Usage:
7# crates/eval_cli/script/zed-eval doctor
8
9set -euo pipefail
10
11SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
12REPO_ROOT="$(cd "$SCRIPT_DIR/../../.." && pwd)"
13PACKAGE_DIR="$REPO_ROOT/crates/eval_cli/zed_eval"
14
15if ! command -v uv >/dev/null 2>&1; then
16 echo "error: uv is required to run zed-eval from source" >&2
17 echo "Install uv from https://docs.astral.sh/uv/getting-started/installation/" >&2
18 exit 1
19fi
20
21exec uv run --project "$PACKAGE_DIR" zed-eval "$@"
22