From 48453cec6f27716524c206212d6db402392f3ae4 Mon Sep 17 00:00:00 2001 From: David Plakon Date: Tue, 21 Jul 2026 14:51:19 -0500 Subject: [PATCH] Add Oz CLI verify + install step to setup skill Verify the Oz CLI during setup and, when it is missing, prefer the standalone Oz CLI install over installing the full Warp app, with a deep link to the install docs and the macOS Homebrew command. Co-Authored-By: Oz --- .warp/skills/setup/SKILL.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.warp/skills/setup/SKILL.md b/.warp/skills/setup/SKILL.md index e89aeae..fc58eed 100644 --- a/.warp/skills/setup/SKILL.md +++ b/.warp/skills/setup/SKILL.md @@ -39,7 +39,13 @@ Work from the repository root (the directory containing `AGENTS.md` and `.env.ex `git status --short` (warn only about uncommitted changes to files a search-and-replace will touch — untracked or unrelated files are fine). 3. Check `python3 --version` (3.10+ required by the stats scripts). -4. Read `README.md` ("How to deploy" section) and skim +4. Verify the Oz CLI (needed for the Phase 6 Oz wiring — environments, schedules): + ```bash + oz whoami + ``` + - **Command not found** → if the [Warp app](https://docs.warp.dev/getting-started/installation-and-setup) is already installed, the CLI ships with it. Otherwise, prefer the standalone Oz CLI — there is no need to install the full Warp app just for the CLI. See [Installing the CLI](https://docs.warp.dev/reference/cli#installing-the-cli); on macOS: `brew tap warpdotdev/warp && brew install --cask oz`. + - **Not authenticated** → run `oz login` (interactive), or for CI/headless environments export `WARP_API_KEY`. +5. Read `README.md` ("How to deploy" section) and skim `.warp/skills/cro/references/config.md` so you know where values land. ## Phase 1 — Collect values from the user