La trazabilidad git es parte de la gobernanza del runtime.

  • Nunca commitear runtime/state/* (estado vivo operacional).
  • Staging selectivo: separar runtime/docs/tooling.
  • No crear tags/checkpoints con worktree sucio.
  • Contiene estado vivo (episodic memory, discovered nodes, cluster snapshot).
  • Cambia por operación normal.
  • Introduce ruido y puede filtrar información operativa.
flowchart TD
  D[Changes] --> S[Selective staging]
  S --> T[Tests/build PASS]
  T --> C[Commit semántico]
  C --> CLEAN[Worktree limpio]
  CLEAN --> TAG[Tag checkpoint]

Ver WORKTREE_GOVERNANCE.md en el repo runtime para las reglas completas.