.PHONY: check lint format lint-ts lint-py format-ts format-py docs docs-strict docs-live docs-clean check: lint-ts lint-py @echo "All checks passed." lint: lint-ts lint-py lint-ts: cd nemoclaw && npm run check lint-py: cd nemoclaw-blueprint && $(MAKE) check format: format-ts format-py format-ts: cd nemoclaw && npm run lint:fix && npm run format format-py: cd nemoclaw-blueprint && $(MAKE) format # --- Documentation --- docs: uv run --group docs sphinx-build -b html docs docs/_build/html docs-strict: uv run --group docs sphinx-build -W -b html docs docs/_build/html docs-live: uv run --group docs sphinx-autobuild docs docs/_build/html --open-browser docs-clean: rm -rf docs/_build