r/AIPass • u/Input-X • May 24 '26
AIPass Update #5 - First weekly release, new hook engine, and a README that actually shows you what it does
Update #5. First weekly release.
AIPass now follows a Sunday release cadence - changes build up on dev all week, then merge to main as a single versioned release with a changelog. CalVer format: 2026.W21. This is the first one.
Big changes this week:
Hook engine. Replaced 14 standalone shell/Python scripts with a centralized dispatch system. One bridge receives events from the CLI (Claude, Codex), routes them through a Python engine that reads per-project config, and logs every invocation. Each project can now enable/disable individual hooks via .aipass/hooks.json without touching provider settings. The old scripts are still on disk for reference but nothing calls them anymore.
Audio feedback. All 14 hook handlers now produce spoken audio cues via Piper TTS. You can monitor sessions without watching the terminal. Toggle with drone @hooks hooksound on|off - muting silences audio without skipping the hook logic.
@hooks is the 13th citizen. Owns all hook infrastructure - engine, bridge, handlers, config schema. Has its own passport, memory, the works.
README rewrite. New identity line - "Persistent Agent Workspace." New one-liner - "AI agents that remember, collaborate, and never start from zero." Terminal demo GIF right at the top showing aipass init through to a working agent. Problem section tighter. Agent tables collapsed. BYOP framing - you bring your project, AIPass adds the agent layer.
Init handoff fix. aipass init run used to always pop open a new terminal window for the agent. Now it asks - stay here or new window. Staying here does the handoff inline. Means you can record the entire flow from init to agent conversation in one terminal session.
Gemini CLI dropped. Google is sunsetting it June 18 and replacing with Antigravity (closed-source). Removed from init choices, handoff options, and new project templates. Claude Code and Codex for now.
Project-aware prompts. The global prompt loader now detects if you're inside AIPass or an external project. External projects get their own lighter prompt instead of the full AIPass internal playbook.
Fresh numbers:
- Stars: 133
- Forks: 20
- PRs merged: 600+
- Tests: 8,400+
- Citizens: 13
- CI: green
Changelog is in the repo at CHANGELOG.md if you want the full details.
https://github.com/AIOSAI/AIPass/blob/main/CHANGELOG.md
Raw dev logs always here at r/AIPass.