Aura v1.5.02
Aura 1.5.02
This release is a focused cleanup pass for the Worker write path.
The old compiler orchestration layer has been removed from normal Worker execution. Craft remains in place as Aura’s lightweight anti slop gate, but the extra compiler style retry/bounce machinery is gone.
What changed
-
Simplified the Worker write flow:
- proposal
- Craft gate
- approval
- write
- validation/recovery
-
Removed stale compiler repair paths and related result handling.
-
Kept Craft active for obvious AI slop, placeholder code, demo scaffolding, syntax issues, and unsafe generated shapes.
-
Cleaned up Worker result tracking so Craft-blocked writes are treated as normal not-applied writes.
-
Reduced leftover quality-bounce / patch-quality state from the hot path.
-
Preserved the existing safety rails:
- diff approval
- backups
- protected delete paths
- read-before-edit checks
- py_compile and validation recovery
Why
This makes the Worker path easier to reason about and should make normal runs feel a little smoother. Aura still keeps its safety membrane, but with less internal ceremony between a good patch and approval.
Notes
This is mostly an internal cleanup release. User facing behavior should feel familiar, just with fewer stale blocker paths and a cleaner write pipeline.