2026-05-06 06:36:53 +00:00
# infra-run/scripts
This directory groups executable tooling used across the `infra-run` project. It separates shell-first operational scripts from future Python-based utilities while keeping both under one automation entry point.
## Diagram
``` mermaid
flowchart TD
A["scripts"] --> B["bash"]
A --> C["python"]
B --> D["Operational toolkits"]
C --> E["Future helper utilities"]
```
## Scope
2026-05-08 21:18:22 +00:00
- `bash` - current implementation area with operations toolkits.
2026-05-06 06:36:53 +00:00
- `python` - reserved space for future supporting utilities.
## Notes
- The repository currently emphasizes Bash because it maps directly to day-to-day Linux operations.
- The structure leaves room for higher-level helpers without mixing concerns.
2026-05-10 11:11:03 +00:00
- Bash tooling should remain safe by default, readable, and validated with `../../scripts/check-bash.sh` from the repository root.