Generates a lightweight `tests/test_runnability.py` for a Python recipe. The test just imports the recipe's agent module and asserts that `root_agent is not None` (and `app is not None` if the module defines one). The skill parses agent.py with `ast` to figure out which import-time side effects need mocking (`vertexai.init`, `google.auth.default`) and which env vars need setting (`GOOGLE_CLOUD_PROJECT`, `INTEGRATION_TEST`), and only emits the boilerplate the recipe actually needs. Runs in dry-run (report + preview) and apply (write to disk) modes. Use when the user wants to "add a runnability test", "generate test_runnability.py", "create a smoke test for the recipe", or fix the missing-required-file failure from `python-validate-recipe.yml`.
75
92%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Use this skill to create the tests/test_runnability.py file that every Python recipe under core/python/, contrib/, or skills/python/ must ship (see python-validate-recipe.yml Check 4). The generated test is deliberately minimal — it just verifies the agent module imports and defines the expected globals. Business-logic testing lives elsewhere.
Runs scripts/generate_runnability_test.py against a recipe directory. Steps:
Locate agent.py. Walks the recipe safely (excludes .venv, venv, env, build, dist, __pycache__, node_modules, tests, *.egg-info, and dot-directories) and picks the shallowest agent.py match. If none is found, errors out and suggests --agent-file. Only one file is generated per invocation.
Parse agent.py AND every ancestor package __init__.py with ast to detect:
root_agent = ... present? Is app = ... present?__init__.py) — does vertexai.init(...) fire at module load? Does google.auth.default()? Every ancestor __init__.py is checked because Python runs each of them in order when the test does import a.b.agent (a/__init__.py, then a/b/__init__.py, then the module), so a side effect in any of them matters as much as one in agent.py. Historical bug closed by this: cross-session-memory has _, project_id = google.auth.default() in __init__.py; before, the scanner missed it and the generated test crashed in CI without ADC. Detection uses ast.walk (any depth), so it is intentionally broad — a call nested in a function body still flags the recipe; the resulting patch is a harmless no-op if it never fires at import time, whereas a missed import-time call would crash the generated test.__init__.py) — does the code read GOOGLE_CLOUD_PROJECT via os.getenv / os.environ.get / os.environ["…"]? Only reads count: an os.environ["…"] = value write means the recipe sets its own value and doesn't depend on the test providing one, so it's ignored.Scan all source .py files in the recipe directory tree (same safe walker) for INTEGRATION_TEST env-var reads. This is a per-package convention: agent.py often calls a helper (e.g. retrievers.create_search_tool) at module load, and THAT helper — which may live anywhere in the recipe tree, not necessarily beside agent.py — is what reads INTEGRATION_TEST. Restricting the scan to agent.py would miss it.
Emit the test. Two shapes:
import <module> + assert root_agent is not None (and app is not None if present).setdefault calls at the top of the test function; a with patch(...): block around the import listing every patch needed (patch("vertexai.init") when vertexai is used, patch("google.auth.default", return_value=(MagicMock(), "test-project")) when the recipe touches google.auth); and assertions outside the with block (the patches are only needed during import; keeping them active around assertions would be misleading).The google.auth.default patch is what makes the test survive a recipe that calls google.auth.default() unconditionally at import time (like cross-session-memory's __init__.py). Just setting GOOGLE_CLOUD_PROJECT isn't enough for that pattern — the call still fires and still needs valid ADC — hence the patch.
Emission is post-processed through ruff format when available, so multi-patch with (...): blocks come out already wrapped per the repo's ruff config.
Write it to <recipe-dir>/tests/test_runnability.py (creating tests/ if needed). Refuses to clobber an existing file unless --overwrite is passed.
.py files) or written.tests/test_runnability.py is never silently overwritten. The user must explicitly opt in with --overwrite.tests/ directory is created if missing (mkdir -p equivalent). No other directory or file is added.ruff check and ruff format --check under the root config.Always use the script — never hand-write tests/test_runnability.py yourself. The skill exists to keep the boilerplate consistent across recipes.
Ask for the recipe directory if the user hasn't given one. Recipe roots live under core/python/<name>/, contrib/<name>/, or skills/python/<name>/.
Always start with --dry-run unless the user has explicitly said "apply", "generate it", "just do it", or equivalent. Show them what would land before writing.
Report only what matters. Render a compact 3-column Markdown table (Rule / Status / Details) summarising the action plus the detections. Do NOT dump the raw JSON or the raw generated Python. Include the generated file's content as a fenced code block below the table so the user can review before deciding.
If action is refused_overwrite, tell the user the file already exists and offer to re-run with --overwrite. Don't do it silently.
If action is error, surface the message verbatim and stop. Common cases: no agent.py found (suggest --agent-file), parse error in agent.py.
Offer to apply after a dry-run. Do NOT paste the raw command as a copy-and-paste snippet for the user; ask something like "Want me to write this file?" and if they agree, run apply yourself.
After apply mode succeeds, remind the user to run the test locally to confirm it passes:
cd <RECIPE_DIR> && uv run pytest tests/test_runnability.py -vDo not commit any changes. Show the diff or file contents; let the user commit.
| Field | Required | Description |
|---|---|---|
--recipe-dir | Yes | Path to the recipe root (e.g. core/python/cross-session-memory, contrib/my-recipe, skills/python/my-skill). |
--dry-run | No | Print the JSON report (with the generated content in test_content) without writing any file. |
--overwrite | No | Overwrite an existing tests/test_runnability.py. Default: refuse and exit 1. |
--agent-file | No | Override auto-detection of the entry-point file. Path is relative to --recipe-dir (or absolute). Use when the recipe uses a non-standard layout (rare — <2% of recipes). |
uv run --no-project python3 .agents/skills/generate-python-runnability-test/scripts/generate_runnability_test.py \
--recipe-dir <RECIPE_DIR> --dry-runOutput on stdout: JSON with agent_file, module_name, detections, test_content, action (would_write / refused_overwrite / error), and message. Exit code 0.
Note: no --with flags are needed — the script only uses Python's stdlib (ast, argparse, json, pathlib, dataclasses, os, sys, subprocess, textwrap). uv run --no-project python3 is used (rather than a bare python3) to guarantee a modern managed interpreter, consistent with the other Python recipe skills; the system python3 on macOS can still be an old version. Dry-runs remain cheap and side-effect-free.
uv run --no-project python3 .agents/skills/generate-python-runnability-test/scripts/generate_runnability_test.py \
--recipe-dir <RECIPE_DIR>Writes <RECIPE_DIR>/tests/test_runnability.py. Refuses if the file exists (exit 1).
uv run --no-project python3 .agents/skills/generate-python-runnability-test/scripts/generate_runnability_test.py \
--recipe-dir <RECIPE_DIR> --overwriteuv run --no-project python3 .agents/skills/generate-python-runnability-test/scripts/generate_runnability_test.py \
--recipe-dir <RECIPE_DIR> --agent-file some/other/entry.py --dry-runPath is relative to --recipe-dir or absolute. The generated import uses the module path derived from the relative location (e.g. some/other/entry.py → import some.other.entry).
Do not dump raw JSON. Render a compact table summarising the action and the detections, then include the generated file's content as a fenced code block below.
| Rule | Status | Details |
|---|
agent-file, module, detections, write. Use backticks for clarity.ok / would_write / wrote / refused_overwrite / error. No emoji unless the user has asked.detections, list only what was found (e.g. "root_agent, app, needs vertexai patch + GCP project env + INTEGRATION_TEST env"). Don't list what was NOT found.test_content as a fenced Python code block so the user can review it before deciding.would_write (dry-run) — offer to apply yourself. Do NOT paste the raw command. Ask "Want me to write this file?" If the user agrees, run the apply command yourself and render the resulting report as another compact confirmation. If they decline, stop.
refused_overwrite — tell the user the file already exists and offer to re-run with --overwrite. Do NOT overwrite silently. If they agree, run with --overwrite.
error — surface the message verbatim and stop. Do not attempt to work around it.
wrote (apply) — end with:
Next steps:
cd <RECIPE_DIR> && uv run pytest tests/test_runnability.py -v
git diff # review before committingThen stop. Do not commit. Do not run any further tools. End your turn.
a862ebc
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.