Reorganize OpenCode context initialization

This commit is contained in:
Fabio Scotto di Santolo
2026-04-03 17:06:13 +02:00
parent f86195a9ae
commit a84fe5c8e8
25 changed files with 125 additions and 26 deletions

View File

@@ -0,0 +1,6 @@
# Ansible Rules
- Prefer modules over shell
- Keep tasks idempotent
- Use group_vars and host_vars properly
- Avoid duplication

View File

@@ -0,0 +1,5 @@
# Dotfiles Rules
- No system logic inside dotfiles
- Keep them portable
- Follow layering

View File

@@ -0,0 +1,8 @@
# Safety Rules
Never break an existing host.
- Identify host, layer, risk
- Always test with --limit
- Use dry-run (--check --diff)
- Avoid destructive changes

View File

@@ -0,0 +1,5 @@
# Workflow Rules
- Small incremental changes
- Validate on one host
- Expand gradually