From 1a040dfe56284193e7b3b99331a3ebb578c1da2e Mon Sep 17 00:00:00 2001 From: Phillip Moore Date: Fri, 6 Mar 2026 07:23:36 -0500 Subject: [PATCH 1/2] fix: update documented validation command to st-validate-local The previous command referenced a non-existent script (scripts/dev/validate_local.py). The correct entry point is st-validate-local from standard-tooling. Fixes #435 Co-Authored-By: Claude Opus 4.6 --- docs/repository-standards.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/repository-standards.md b/docs/repository-standards.md index 9c1d829..ea13c12 100644 --- a/docs/repository-standards.md +++ b/docs/repository-standards.md @@ -35,9 +35,7 @@ ## Local validation -- `uv run python3 scripts/dev/validate_local.py` -- Docs-only changes: `uv run python3 scripts/dev/validate_docs.py` -- Docs-only validation requires `markdownlint` on the PATH. +- `st-validate-local` ## Linting policy From 88ecc49ac5e849ae7810ab3b99fa446c044c8cbe Mon Sep 17 00:00:00 2001 From: Phillip Moore Date: Fri, 6 Mar 2026 07:26:27 -0500 Subject: [PATCH 2/2] fix: update validation command references to st-validate-local Also fixes the PR template which referenced the same non-existent script. Fixes #435 Co-Authored-By: Claude Opus 4.6 --- .github/pull_request_template.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 8665a93..9ce5bf4 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -13,8 +13,7 @@ ## Testing -- markdownlint -- uv run python3 scripts/dev/validate_local.py +- `st-validate-local` ## Notes