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
5 changes: 5 additions & 0 deletions docs/ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ Two bounded exceptions keep central conformance at `migrating`:
The existing AGENTS/CLAUDE instruction surface also needs a fresh ADR-0039
baseline before it can be claimed fully governed.

Ruff is pinned to 0.16.0, while the enforced lint policy is declared explicitly
as `E4`, `E7`, `E9`, and `F`. Ruff 0.16 materially expanded its implicit
defaults; separating the tool version from the selected policy prevents a
dependency update from silently turning on hundreds of unrelated rules.

## Topology

The system is split into three layers:
Expand Down
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,16 @@ dependencies = [
# for production use stays lean; CI installs `.[test]`.
test = [
"pytest>=8",
"ruff==0.12.5",
"ruff==0.16.0",
]

# Ruff 0.16 expanded its implicit defaults from the historical Pyflakes/pycodestyle
# baseline to hundreds of additional rules. Keep the harness policy explicit so
# dependency releases cannot silently redefine the gate; lint-policy expansion is
# reviewed separately from tool maintenance.
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
Comment on lines +26 to +31

[project.scripts]
skillfoundry = "skillfoundry_harness.cli:main"

Expand Down