Architecture linting for Python repositories
Project description
Keeping Python repos from turning into spaghetti.
Most linters catch bad code inside files. Strata catches architectural drift: code crossing the wrong boundary, living in the wrong module, or growing into the wrong shape.
As a repository grows, code moves, lessons get forgotten, and the mental map decays. Tests preserve behavior and types preserve interfaces. Strata makes the repository's architectural expectations executable.
Strata enforces:
- which layers may import which;
- what each module or role file may contain;
- whether orchestrator functions stay small;
- whether dataflow and mutation are explicit;
- whether names such as
validate_*mean what they claim.
It ships a coherent default architecture rather than a blank rule framework, then lets projects disable, extend, or replace parts deliberately.
Strata is functional and self-hosting, but remains pre-release.
Installation
pip install stratalint
The distribution name is stratalint; the installed command is strata.
Quick Start
Add strata.toml at the repository root:
roots = ["src/my_package"]
tests = ["tests"]
tooling = ["scripts"]
Then run:
strata check
All rule families are enabled by default. Product roots and tooling receive structural rules; tests receive test-convention and annotation rules.
Default Structure
Product code uses domain, subdomain, then role. Tests mirror the code they cover;
tooling uses one ownership level because scripts/ already establishes the outer
boundary.
src/my_package/
└── domain/
└── subdomain/
├── main/
│ └── run.py
├── helpers/
├── classes/
├── models.py
├── types.py
├── constants.py
└── exceptions.py
tests/unit/src/my_package/domain/subdomain/
├── _test_types.py
└── test_run.py
scripts/
├── run_tool.py
└── tool_name/
├── main/
├── helpers/
└── classes/
Direct scripts/*.py files are thin command adapters. Supporting logic belongs
under scripts/<tool>/<role>/.
Core Commands
strata check
strata rule SFS131
strata map run_plan --depth 3
strata check enforces the configured architecture, strata rule explains one
rule and its remediation, and strata map renders a conservative downstream call
tree. Mapping does not require Strata configuration or rule adoption.
Enforce It, Then See It
Because Strata enforces the structure, it can also render it. strata map
produces a deterministic downstream call tree with clickable path:line
locations, marking unresolved dynamic calls, depth limits, and cycles.
$ strata map run_map --depth 4
run_map(...) src/strata/cli/main/map.py:21
├── _parser(...) src/strata/cli/main/map.py:53
├── resolve_mapping_project(...) src/strata/mapping/core/main/resolve_project.py:11
│ └── resolve_mapping_project(...) src/strata/mapping/core/helpers/project.py:15
│ ├── _find_project_root(...) src/strata/mapping/core/helpers/project.py:73
│ ├── _explicit_source(...) src/strata/mapping/core/helpers/project.py:65
│ ├── _optional_config_source(...) src/strata/mapping/core/helpers/project.py:38
│ │ └── find_config_source(...) src/strata/config/core/main/find_config.py:12 (depth limit)
│ └── _configured_project(...) src/strata/mapping/core/helpers/project.py:45
│ ├── load_config(...) src/strata/config/core/main/load_config.py:15 (depth limit)
│ └── _configured_source(...) src/strata/mapping/core/helpers/project.py:57
└── build_call_map(...) src/strata/mapping/core/main/build.py:12
├── provider(...) src/strata/mapping/core/main/build.py:24 (unresolved parameter call)
└── render_tree(...) src/strata/mapping/core/helpers/render.py:19
├── _child_lines(...) src/strata/mapping/core/helpers/render.py:41
│ └── _child_lines(...) src/strata/mapping/core/helpers/render.py:41 (cycle)
└── _label(...) src/strata/mapping/core/helpers/render.py:88
The map is useful precisely because it is not guessing. strata check enforces
layers, roles, and public surfaces first, and strata map then renders the
structure the code is required to expose.
Philosophy
Strata is strict by default wherever it can make an honest deterministic claim. Following the rules should remove repeated architectural decisions from everyday work. Deliberate differences belong in selection, configuration, or custom rules, where they remain visible, rather than in scattered inline suppressions.
Agent Skills
Generate repository-aware guidance from the active ruleset:
strata skills update
strata skills update --global
The generated skill includes Strata usage, rule-supported architecture examples,
navigation and work-handoff guidance, and every enabled core and custom rule.
Existing user-authored skill files are preserved unless --force is supplied.
Custom Rules
Custom checks use X... codes and the same RuleContext as core rules. Once
configured, they participate in strata check, strata rule, and generated agent
skills. See the
custom-rule guide
for the complete API and configuration.
Documentation
The quickstart, architecture model, configuration reference, adoption guide, and CLI reference live in the Strata documentation repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file stratalint-0.1.2.tar.gz.
File metadata
- Download URL: stratalint-0.1.2.tar.gz
- Upload date:
- Size: 553.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3fbbf376a8e5f2fa9a68703cac0beb0d011e00d3d5cb30943b2cca84906d8b8
|
|
| MD5 |
ac600c2cca017b382a143da8dee72166
|
|
| BLAKE2b-256 |
72f4a3daca5025dc59b8a75fd9dbee35ff1029d836728ce0e9e574faf915eed1
|
Provenance
The following attestation bundles were made for stratalint-0.1.2.tar.gz:
Publisher:
publish.yml on chio-labs/strata
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
stratalint-0.1.2.tar.gz -
Subject digest:
b3fbbf376a8e5f2fa9a68703cac0beb0d011e00d3d5cb30943b2cca84906d8b8 - Sigstore transparency entry: 2137750905
- Sigstore integration time:
-
Permalink:
chio-labs/strata@e3beb6d1727ca5e066db4151dc7d3c7eca5bd9bf -
Branch / Tag:
refs/heads/main - Owner: https://github.com/chio-labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e3beb6d1727ca5e066db4151dc7d3c7eca5bd9bf -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file stratalint-0.1.2-py3-none-any.whl.
File metadata
- Download URL: stratalint-0.1.2-py3-none-any.whl
- Upload date:
- Size: 132.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b353c1f1f2f222c9a3f19d39119a513a1a27aa7f6ed4ac02446a5fdc6cfdfbf
|
|
| MD5 |
1b6cec6ebe524efb7faa64eebcb10d82
|
|
| BLAKE2b-256 |
fb4de8fd77bf300dab8ec52dfc47ab4d19b2e4842468465ed4e952088acfe453
|
Provenance
The following attestation bundles were made for stratalint-0.1.2-py3-none-any.whl:
Publisher:
publish.yml on chio-labs/strata
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
stratalint-0.1.2-py3-none-any.whl -
Subject digest:
6b353c1f1f2f222c9a3f19d39119a513a1a27aa7f6ed4ac02446a5fdc6cfdfbf - Sigstore transparency entry: 2137751312
- Sigstore integration time:
-
Permalink:
chio-labs/strata@e3beb6d1727ca5e066db4151dc7d3c7eca5bd9bf -
Branch / Tag:
refs/heads/main - Owner: https://github.com/chio-labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e3beb6d1727ca5e066db4151dc7d3c7eca5bd9bf -
Trigger Event:
workflow_dispatch
-
Statement type: