Tears – Tiered Enforcement, Authorship Review System

4 pointsposted 10 hours ago
by truehill

4 Comments

riknos314

9 hours ago

I like this concept of adding additional context to the dependency graph of imports.

Any plans for tooling that would enable rules like "no code above tear <N> allowed in the production build"?

truehill

9 hours ago

Yes it's configurable in the toml. For example ``` [directory_requirements] "src/auth" = 0 "src/api" = 1 ``` Will force auth to have tier 0, not allow auth to import from anything other than tier 0 files, api will be enforced to have at most tier 1, and won't be able to import from anything vibe coded