v0.12.9 — Claude Code Hooks for Real-Time Team Sync
What's New
Claude Code Hooks Integration
- Pre-Edit/Write hook: Checks team zone ownership before Claude edits any file
- WARN zones show alert but allow edit
- BLOCK zones prevent Claude from editing — must coordinate with zone owner
- Post-Edit/Read hook: Checks for unread messages, pending syncs, impact alerts after every edit/read
- New
aura live checkcommand — ultra-fast local marker check (~5ms) for hook use
How to Enable Hooks
Add to ~/.claude/settings.json under hooks (or run aura init in a new session):
"PreToolUse": [
{ "matcher": "Edit", "hooks": [{ "type": "command", "command": "FILE=$(jq -r '.tool_input.file_path // \"\"'); ALERTS=$(aura live check --file \"$FILE\" 2>/dev/null); if [ -n \"$ALERTS\" ]; then echo \"$ALERTS\" | grep -q 'ZONE BLOCK' && echo \"{\\\"decision\\\":\\\"block\\\",\\\"reason\\\":\\\"$ALERTS\\\"}\" || echo \"{\\\"decision\\\":\\\"allow\\\",\\\"reason\\\":\\\"$ALERTS\\\"}\"; fi" }] }
]Update
sudo aura updateFull Changelog: v0.12.8...v0.12.9