Skip to repository content28 lines · 847 B · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T02:29:12.249Z 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
install-zed-eval
1#!/usr/bin/env bash
2#
3# Install or update the zed-eval Python CLI as an editable uv tool.
4#
5# Usage:
6# crates/eval_cli/script/install-zed-eval
7#
8# After this, `zed-eval` is available on PATH (assuming uv's tool bin directory
9# is on PATH) and tracks changes in crates/eval_cli/zed_eval without reinstalling.
10
11set -euo pipefail
12
13SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
14REPO_ROOT="$(cd "$SCRIPT_DIR/../../.." && pwd)"
15PACKAGE_DIR="$REPO_ROOT/crates/eval_cli/zed_eval"
16
17if ! command -v uv >/dev/null 2>&1; then
18 echo "error: uv is required to install zed-eval" >&2
19 echo "Install uv from https://docs.astral.sh/uv/getting-started/installation/" >&2
20 exit 1
21fi
22
23uv tool install --editable "$PACKAGE_DIR" --force
24
25echo ""
26echo "Installed zed-eval from $PACKAGE_DIR"
27echo "If your shell cannot find 'zed-eval', run: uv tool update-shell"
28