eval-harness

(★ 32)

My own personal evaluation harness

File Explorer

  • .gitignore
  • .pre-commit-config.yaml
  • .python-version
  • AGENTS.md
  • CLAUDE.md
  • LICENSE
  • main.py
  • pyproject.toml
  • README.md
  • ruff.toml
  • uv.lock

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

act

View Details ▼

Execute GitHub Actions locally using Docker.

act {{[-l|--list]}}

List the available jobs:

act

Run the default event:

act {{event_type}}

Run a specific event:

🔍

docker build

View Details ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

uv run

View Details ▼

Run a command or script in the project environment.

uv run {{path/to/script.py}}

Run a Python script:

uv run {{[-m|--module]}} {{module_name}}

Run a Python module:

uv run {{[-w|--with]}} {{package}} {{command}}

Run a command with additional packages installed temporarily:

🔍

uv sync

View Details ▼

Update the project's environment to match the lockfile.

uv sync

Sync the project environment with the lockfile:

uv sync --all-extras

Sync and include all optional dependencies:

uv sync --extra {{extra_name}}

Sync with specific optional dependencies:

🔍

defaults

View Details ▼

Read and write macOS user configuration for applications.

defaults read "{{application}}" "{{option}}"

Read system defaults for an application option:

defaults read -app "{{application}}" "{{option}}"

Read default values for an application option:

defaults find "{{keyword}}"

Search for a keyword in domain names, keys, and values:

// repository documentation