Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/skills/generate_and_merge/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Build notebooks for the autofit_workspace, then open and merge a PR into `main`,

Run from the workspace root:
```bash
PYTHONPATH=../PyAutoHands/autobuild python3 ../PyAutoHands/autobuild/generate.py autofit
PYTHONPATH=../PyAutoHands/autohands python3 ../PyAutoHands/autohands/generate.py autofit
```
This regenerates all notebooks in `notebooks/` from `scripts/`. It may take a few minutes.
It also regenerates the LLM-facing catalogue (`llms-full.txt` and `workspace_index.json`)
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/run_smoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def regenerate_notebook(nb_rel: str) -> Path:
The regenerated copy lives in /tmp; the on-disk `notebooks/` tree is
never modified, so a smoke run leaves the worktree clean.
"""
from build_util import py_to_notebook # PyAutoHands/autobuild on PYTHONPATH
from build_util import py_to_notebook # PyAutoHands/autohands on PYTHONPATH

script_path = SCRIPTS_DIR / Path(nb_rel).with_suffix(".py")
if not script_path.exists():
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/navigator_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Navigator Check

# Thin caller for PyAutoHands's reusable navigator-catalogue check. The check
# logic (path/banner lint + catalogue staleness) and its entrypoints live in
# PyAutoHands/autobuild; this workspace only declares which generator project to
# PyAutoHands/autohands; this workspace only declares which generator project to
# run. See PyAutoLabs/PyAutoHands/.github/workflows/navigator_check.yml.

on: [push, pull_request]
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ root):
```bash
pip install ipynb-py-convert
git clone https://github.com/PyAutoLabs/PyAutoHands.git ../PyAutoHands
PYTHONPATH=../PyAutoHands/autobuild python3 ../PyAutoHands/autobuild/generate.py autofit
PYTHONPATH=../PyAutoHands/autohands python3 ../PyAutoHands/autohands/generate.py autofit
```

Commit the regenerated notebooks alongside the script changes. The `/generate_and_merge` skill
Expand Down
2 changes: 1 addition & 1 deletion config/build/visualise_notebooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Format: flat list of notebook stems (no extension, no path).
# An empty list means no notebooks need re-visualisation in this workspace.
#
# This file overrides PyAutoHands/autobuild/config/visualise_notebooks.yaml
# This file overrides PyAutoHands/autohands/config/visualise_notebooks.yaml
# for this workspace. Add or remove entries here, not there.

[]
Loading