From 5d8b27594e6d27912ef48774ea7fadb7549a4688 Mon Sep 17 00:00:00 2001 From: abrichr Date: Wed, 2 Sep 2026 12:22:28 -0400 Subject: [PATCH] docs: lead pip install with openadapt flow tutorial The launcher first command is `openadapt flow tutorial`. Halt demo stays `openadapt quickstart --break-it`. Pin the README string. --- README.md | 2 +- tests/test_distribution.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 74dc351..c12ce80 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ The server generates the public synthetic tutorial at serve time. It isn't in th ```bash python -m pip install --upgrade openadapt -openadapt quickstart +openadapt flow tutorial openadapt-agent serve --allow-run ``` diff --git a/tests/test_distribution.py b/tests/test_distribution.py index f67544b..ea609ce 100644 --- a/tests/test_distribution.py +++ b/tests/test_distribution.py @@ -276,6 +276,7 @@ def test_identity_sentence_is_shared() -> None: assert "authoring connect" in README.read_text(encoding="utf-8") assert "authoring connect" in LLMS_TXT.read_text(encoding="utf-8") assert "openadapt connect" in README.read_text(encoding="utf-8") + assert "openadapt flow tutorial" in README.read_text(encoding="utf-8") assert "openadapt quickstart --break-it" in README.read_text(encoding="utf-8") assert "If the tool returns unsigned success, treat it as failure" in README.read_text( encoding="utf-8"