This document provides core operating constraints for AI agents. These rules apply across all tasks within this environment.
- Scope: DO NOT write any files outside the project folder.
- Temporary Files: Use
.tmp/within the project root for all temporary files. Ensure this directory is created if it doesn't exist. - Planning Folder: Use
.plans/within the project root for all development plans. Ensure this directory is created if it doesn't exist. - Dependency Hygiene: Any new libraries or dependencies must be immediately added to the project's dependency manifests (e.g.,
pyproject.toml,requirements.txt,package.json) before proceeding with implementation.