Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T01:29:01.085Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

install-zed-eval

28 lines · 847 B · text
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
Served at tenant.openagents/omega Member data and write actions are omitted.