mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 07:06:39 +00:00
3418e1fcde
- Updated coding rule descriptions for clarity and emphasis on readability, meaningful comments, and test verification. - Adjusted thresholds for test coverage on business logic from 80% to 75%, aligning with the canonical reference in `cursor-meta.mdc`. - Enhanced guidelines for handling skipped tests, emphasizing the need for investigation and classification. - Introduced completeness audit requirements for research decomposition to ensure thoroughness in addressing problem dimensions.
8 lines
703 B
Plaintext
8 lines
703 B
Plaintext
# Workspace Boundary
|
|
|
|
- Only modify files within the current repository (workspace root).
|
|
- Never write, edit, or delete files in sibling repositories or parent directories outside the workspace.
|
|
- When a task requires changes in another repository (e.g., admin API, flights, UI), **document** the required changes in the task's implementation notes or a dedicated cross-repo doc — do not implement them.
|
|
- The mock API at `e2e/mocks/mock_api/` may be updated to reflect the expected contract of external services, but this is a test mock — not the real implementation.
|
|
- If a task is entirely scoped to another repository, mark it as out-of-scope for this workspace and note the target repository.
|