This release adds 1 notable feature for engineering teams evaluating rollout.
✓ No known CVEs patched in this version
Topics
+14 more
Summary
AI summaryAdded Cursor CLI session capture via stdout JSON streaming to the unified transcript pipeline.
Full changelog
The transcript memory pipeline is now feature-complete. All five supported agents flow through the same .ait/transcripts/ → summarizer → recall pipeline.
Added
- Cursor CLI session capture via
cursor-agent --print --output-format stream-json. The runner auto-enables stdout capture for the cursor adapter, parses Cursor's typed events (system,user,assistant,tool_call,result), coalesces assistant chunks, and persists the result as common envelope under.ait/transcripts/<attempt-id>.jsonl.
Coverage table
| Agent | Capture mechanism |
| --- | --- |
| Claude Code | Native SessionEnd hook → transcript copy |
| Codex CLI | Native SessionEnd hook → transcript copy |
| Aider | Post-run chat-history conversion |
| Gemini CLI | Native Stop hook → transcript copy |
| Cursor | Stdout stream-json post-processing (this release) |
Every session in any of these agents:
- lands as one ait attempt with a full transcript under
.ait/transcripts/, - is summarized by the heuristic (default) or LLM summarizer (
anthropic/openai-compat), - is recalled by every future session in every agent.
A Claude session next month can pick up where last week's Cursor session left off.
Setup
ait adapter setup claude-code # native hooks
ait adapter setup codex # native hooks
ait adapter setup gemini # native hooks
# aider and cursor work automatically once you run them through ait:
ait run --adapter aider -- aider src/file.py
ait run --adapter cursor -- cursor-agent --print --output-format stream-json "..."
Install: pipx install ait-vcs or npm install -g ait-vcs.
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
About Ait
All releases →Related context
Related tools
Earlier breaking changes
- v0.55.52 Keep the built-in claude-code reviewer pinned to the local claude -p CLI even when repository policy defines a conflicting command override.
Beta — feedback welcome: [email protected]