Skip to content

v0.12.9 — Claude Code Hooks for Real-Time Team Sync

Choose a tag to compare

@MHASK MHASK released this 30 Mar 17:25
· 19 commits to master since this release

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 check command — 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 update

Full Changelog: v0.12.8...v0.12.9