From 5f734750961c8906fba4f0a5cd882126b9e985d6 Mon Sep 17 00:00:00 2001 From: David Plakon Date: Tue, 21 Jul 2026 14:51:33 -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 --- .agents/skills/setup/SKILL.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.agents/skills/setup/SKILL.md b/.agents/skills/setup/SKILL.md index 9d19ff2..64807e3 100644 --- a/.agents/skills/setup/SKILL.md +++ b/.agents/skills/setup/SKILL.md @@ -38,6 +38,16 @@ cd poc-agent-oss Also confirm `python3 --version` is 3.8+. There are no other dependencies — every script uses the Python standard library only. +If the user wants to run poc-bot as an Oz cloud or scheduled agent (skip for purely +local runs), also verify the Oz CLI: + +```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`. + ## Step 1: Create .env ```bash