This release adds 3 notable features for engineering teams evaluating rollout.
✓ No known CVEs patched in this version
Topics
+14 more
Affected surfaces
Summary
AI summaryAdded an optional LLM-backed transcript summarizer that can be enabled via configuration.
Full changelog
Optional second tier of the transcript memory pipeline: replace the rule-based heuristic summarizer with an LLM that can compress decisions, abandoned approaches, and error chains the heuristic cannot infer.
Added
- Pluggable LLM-backed transcript summarizer. Off by default — set
summarizer.kindto"llm"in.ait/memory-policy.jsonto opt in. - Two providers, both stdlib
urllib(no SDK dependency):anthropic—/v1/messages, default modelclaude-haiku-4-5-20251001.openai-compat—<base_url>/chat/completions. Works with OpenAI, Azure OpenAI, Together, OpenRouter, vLLM, and Ollama (base_url=http://localhost:11434/v1).
- LLM failures (missing API key, network, malformed response) log a warning and transparently fall back to the heuristic. Misconfiguration never blocks the attempt lifecycle.
Configuration
{
"summarizer": {
"kind": "llm",
"llm": {
"provider": "anthropic",
"model": "claude-haiku-4-5-20251001",
"api_key_env": "ANTHROPIC_API_KEY",
"max_chars": 600
}
}
}
API keys are never written to memory-policy.json — only the env var name. ait reads the secret at summary time so it stays in shell config / direnv / your system keychain.
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]