mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-23 05:06:40 +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.
10 lines
496 B
Plaintext
10 lines
496 B
Plaintext
---
|
|
description: Rules for installation and provisioning scripts
|
|
globs: scripts/**/*.sh
|
|
alwaysApply: false
|
|
---
|
|
|
|
# Automation Scripts
|
|
|
|
- Automate everything that can be automated. If a dependency can be downloaded and installed, do it automatically — never require the user to manually download and set up prerequisites.
|
|
- Use sensible defaults for paths and configuration (e.g. `/opt/` for system-wide tools). Allow overrides via environment variables for users who need non-standard locations. |