|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +### 0.16.0 |
| 4 | + |
| 5 | +#### New Features |
| 6 | +- Localhost OAuth login: local sessions now authenticate via browser-based OAuth flow instead of JSON paste |
| 7 | +- Session naming: name of sessions via `/rename` command is now displayed to the user |
| 8 | +- Model picker search: Option+M hotkey opens the model picker, which now supports search/filter |
| 9 | +- Prompt stashing: press Ctrl+S while typing to stash your prompt and recall it later |
| 10 | +- `/stats` command: view session billing and usage details |
| 11 | +- MCP server toggling: enable/disable individual MCP servers from the MCP popover |
| 12 | +- MCP log streaming: MCP server logs are now visible in the TUI for easier debugging |
| 13 | +- MCP token variable: `${augmentToken}` variable expansion available for MCP server headers |
| 14 | +- `.agents` directory: added support for `.agents` directory for skill and agent discovery |
| 15 | +- History summarization indicator: visual indicator shown when conversation history is being summarized |
| 16 | +- Hierarchical rules indicator: visual indicator showing active AGENTS.md rules |
| 17 | + |
| 18 | +#### Improvements |
| 19 | +- Auth flags: added `--augment-session-json` flag and `AUGMENT_SESSION_AUTH` env var as recommended auth methods (old flags deprecated but still work) |
| 20 | +- MCP compatibility: improved compatibility with non-standard MCP server JSON schemas (e.g., mcp-server-terminal) |
| 21 | +- View tool display: correctly shows "read directory" with entry count instead of "read file" with "0 lines" |
| 22 | +- Image attachment indicator moved closer to the input textbox |
| 23 | +- Removed distracting "Your queue is done!" popup |
| 24 | +- Removed misleading "To see what's new" message after upgrade |
| 25 | + |
| 26 | +#### Bug Fixes |
| 27 | +- Fixed Ctrl+C not exiting the CLI on macOS (no longer requires `kill -9`) |
| 28 | +- Fixed crash on exit on Windows (UV_HANDLE_CLOSING assertion) |
| 29 | +- Fixed crash when pasting text or using Ctrl+P prompt enhancement |
| 30 | +- Fixed `/logout` requiring two attempts to fully log out |
| 31 | +- Fixed built-in subagents (explore, plan) disappearing after config changes |
| 32 | +- Fixed sub-agents hanging indefinitely during codebase retrieval |
| 33 | +- Fixed interleaved/garbled streaming output when sending messages rapidly |
| 34 | +- Fixed Option+Backspace word deletion in kitty protocol terminals |
| 35 | +- Fixed Ctrl+W word deletion not treating newlines as word boundaries |
| 36 | +- Fixed verbose mode truncating the first line of bash command output |
| 37 | +- Fixed `--quiet` flag not suppressing MCP server initialization messages |
| 38 | +- Fixed MCP server OAuth authentication not responding to Enter key |
| 39 | +- Fixed session resume failing after workspace switch |
| 40 | +- Fixed `/new` command in cloud agent mode not creating a new session |
| 41 | +- Fixed message queue stalling until a new message was sent |
| 42 | +- Fixed spurious warnings when settings.json is empty |
| 43 | +- Fixed prompt hint color changing when text wraps to a new line |
| 44 | +- Fixed custom command parameter hint not disappearing after typing a space |
| 45 | +- Fixed text wrapping issues at narrow terminal widths |
| 46 | +- Fixed `auggie tools remove` not showing an error for non-existent tools |
| 47 | +- Fixed sub-agent failures showing "Done in 0s" instead of error details |
| 48 | +- Fixed numpad keys not working correctly |
| 49 | +- Improved error messages when resuming sessions |
| 50 | + |
3 | 51 | ### 0.15.0 |
4 | 52 |
|
5 | 53 | #### New Features |
|
0 commit comments