From 0927b67a5533737dd77190833e85b70be4c24b65 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 25 Feb 2026 17:08:22 +0000 Subject: [PATCH 1/2] docs: fix outdated documentation (automated weekly drift check) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - CLAUDE.md: Update `global_config.llm_config.default_model` to `global_config.default_llm.default_model` - Evidence: `common/config_models.py` defines `DefaultLlm` (containing `default_model`) and `LlmConfig` (containing `retry`, `cache_enabled`) separately. - manual_docs/branch_comparison.md: Change `pytest-asyncio` support for `main` from `✅` to `❌` - Evidence: `pyproject.toml` dependencies do not include `pytest-asyncio`, and `uv run pip list` confirms it is not installed. - docs/content/docs/index.mdx: Replace `make setup` with `uv sync` - Evidence: `Makefile` does not contain a `setup` target. - docs/content/docs/index.mdx: Replace `uv run python src/main.py` with `uv run python main.py` - Evidence: `main.py` resides in the project root, not in `src/`. Co-authored-by: Miyamura80 <38335479+Miyamura80@users.noreply.github.com> --- CLAUDE.md | 2 +- docs/content/docs/index.mdx | 4 ++-- manual_docs/branch_comparison.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index c424a66..b5fa17a 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -67,7 +67,7 @@ from common import global_config # Access config values global_config.example_parent.example_child -global_config.llm_config.default_model +global_config.default_llm.default_model # Access secrets from .env global_config.OPENAI_API_KEY diff --git a/docs/content/docs/index.mdx b/docs/content/docs/index.mdx index a092dab..977c8b1 100644 --- a/docs/content/docs/index.mdx +++ b/docs/content/docs/index.mdx @@ -17,7 +17,7 @@ import { Step, Steps } from 'fumadocs-ui/components/steps'; Create and activate your virtual environment using `uv`: ```bash -make setup +uv sync ``` This will create a `.venv` directory and sync all dependencies from `pyproject.toml`. @@ -51,7 +51,7 @@ make all Or run specific Python files directly: ```bash -uv run python src/main.py +uv run python main.py ``` diff --git a/manual_docs/branch_comparison.md b/manual_docs/branch_comparison.md index 57280cf..6e08f31 100644 --- a/manual_docs/branch_comparison.md +++ b/manual_docs/branch_comparison.md @@ -45,7 +45,7 @@ This document provides a detailed comparison of features available in the `main` |---------|:------:|:------:|-------| | pytest framework | ✅ | ✅ | Python testing | | TestTemplate base class | ✅ | ✅ | Shared test utilities | -| pytest-asyncio | ✅ | ✅ | Async test support | +| pytest-asyncio | ❌ | ✅ | Async test support | | E2E test structure | ❌ | ✅ | End-to-end testing patterns | ### Web Framework From 819093577d9eda0e39efb62a58477a6aacf7d461 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 25 Feb 2026 19:46:40 +0000 Subject: [PATCH 2/2] docs: fix outdated documentation (automated weekly drift check) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - CLAUDE.md: Update `global_config.llm_config.default_model` to `global_config.default_llm.default_model` - Evidence: `common/config_models.py` defines `DefaultLlm` (containing `default_model`) and `LlmConfig` (containing `retry`, `cache_enabled`) separately. - manual_docs/branch_comparison.md: Change `pytest-asyncio` support for `main` from `✅` to `❌` - Evidence: `pyproject.toml` dependencies do not include `pytest-asyncio`, and `uv run pip list` confirms it is not installed. - docs/content/docs/index.mdx: Replace `make setup` with `uv sync` - Evidence: `Makefile` does not contain a `setup` target. - docs/content/docs/index.mdx: Replace `uv run python src/main.py` with `uv run python main.py` - Evidence: `main.py` resides in the project root, not in `src/`. Co-authored-by: Miyamura80 <38335479+Miyamura80@users.noreply.github.com>