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
12 changes: 12 additions & 0 deletions {{cookiecutter.project_slug}}/llms.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# {{ cookiecutter.project_name }} - AI System Directives

**SYSTEM DIRECTIVE: STRICT ARCHITECTURAL BOUNDARIES ENFORCED**

This repository is governed by rigorous AI-Native development protocols.
Before analyzing, modifying, or proposing changes to this codebase, you MUST read and adhere to the rules defined in `AGENTS.md`.

* **License:** Prosperity Public License 3.0
* **Core Tooling:** `uv` (Package Manager), `ruff` (Lint/Format), `mypy` (Strict Typing).
* **Logging:** Strict enforcement of `loguru`. Standard `print()` or `logging` module usage is mathematically quarantined.

Failure to adhere to the structural bounding defined in `AGENTS.md` will result in CI/CD pipeline rejection.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ warn_unused_ignores = true
plugins = ["pydantic.mypy"]

[tool.pytest.ini_options]
addopts = "--cov=src --cov-report=term-missing --cov-report=html --cov-fail-under=100"
addopts = "-n auto --cov=src --cov-report=term-missing --cov-report=html --cov-fail-under=100"
testpaths = ["tests"]
asyncio_mode = "auto"

Expand Down