|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +### 0.20.0 |
| 4 | + |
| 5 | +#### New Features |
| 6 | +- **@ Context Picker**: Type `@` in the input to browse and attach agents and rules files to your prompt |
| 7 | +- **Marketplace Auto-Update**: Installed marketplace repos are automatically updated in the background on startup; toggle in marketplace settings. |
| 8 | +- **Recommended Marketplaces**: Projects can declare recommended marketplaces in `.augment/settings.json` that prompt installation on first open. These must be in the project level settings.json file |
| 9 | +- **MCP OAuth Paste Mode**: When authenticating MCP servers over SSH, you can now paste the auth code or redirect URL directly instead of relying on localhost redirect |
| 10 | +- **Effort Levels**: Configure agent effort/reasoning levels for chat requests |
| 11 | +- **Enter Plan Mode Tool**: The agent can now enter plan mode mid-conversation when appropriate |
| 12 | + |
| 13 | +#### Improvements |
| 14 | +- **Parallel Tool Execution**: The CLI agent loop now executes independent tools in parallel for faster responses |
| 15 | +- **Plan Mode**: Plans are now saved to `~/.augment/plans/` and plan mode enforces strict read-only access |
| 16 | +- **Notification Bell on Ask-User**: Terminal bell now rings when the agent prompts for user input (when `notificationMode` is set to `bell`) |
| 17 | +- **Custom Command History**: Custom slash commands are now saved to input history for easy recall with the up arrow |
| 18 | +- **Models List**: `auggie models list` now shows full model information |
| 19 | +- **`--help` Output**: Added `--queue`, `--show-credits`, and `--mcp` to the CLI help text |
| 20 | +- **`--augment-session-json` Flag**: Now accepts both inline JSON and file paths (e.g., `--augment-session-json ~/.augment/session.json`) |
| 21 | +- **Conversation Retrieval**: Improved relevance ranking and caching for the conversation retrieval tool |
| 22 | +- **Terminal Tool**: Better detection of commands that block waiting for stdin input |
| 23 | +- **Jira/Confluence Errors**: Validation errors from Jira and Confluence are now surfaced in chat instead of showing a generic failure message |
| 24 | + |
| 25 | +#### Bug Fixes |
| 26 | +- Fixed `/mcp` toggle not actually enabling/disabling MCP servers |
| 27 | +- Fixed cursor position after the `/clear` command |
| 28 | +- Fixed file write/delete silently failing in multi-folder workspaces |
| 29 | +- Fixed queue display showing duplicate messages |
| 30 | +- Fixed auggie command [name] syntax for executing custom commands |
| 31 | + |
| 32 | +### 0.19.0 |
| 33 | + |
| 34 | +#### New Features |
| 35 | +- Multi-workspace support: work with multiple folders simultaneously via `--add-workspace` flag or `/add-workspace` slash command |
| 36 | +- Skills as slash commands: trigger skills deterministically via `/` commands instead of relying on agent auto-detection |
| 37 | +- Multiple settings files: choose which settings file to save to when multiple exist, with 🔒 indicators for organization-managed settings |
| 38 | +- MCP OAuth scopes: MCP server authentication now supports configuring OAuth scopes |
| 39 | + |
| 40 | +#### Improvements |
| 41 | +- Ask-user tool: replaced custom text input with a "Chat about this" option for more natural conversational clarification |
| 42 | +- Ask-user shortcuts: press number keys (1–9) to directly select options |
| 43 | + servers |
| 44 | +- Session picker: added keyboard shortcuts for faster navigation |
| 45 | +- Processing duration: now displays minutes and hours instead of only seconds |
| 46 | +- Input history: navigating history no longer opens the slash command menu |
| 47 | +- Pasting: pasting text no longer auto-switches to ask mode |
| 48 | +- Upgrade notification: now tells you to restart the CLI after upgrading |
| 49 | +- Session resume: resuming a session now preserves your originally selected model |
| 50 | +- Tool permissions: default to denylist mode to prevent accidental lockout from all tools |
| 51 | + |
| 52 | +#### Bug Fixes |
| 53 | +- Fixed CLI crash on startup caused by logger initialization order |
| 54 | +- Fixed stuck queued messages in cloud mode |
| 55 | +- Fixed apply_patch writing corrupted files when the model produced malformed output |
| 56 | +- Fixed slow CLI exit on macOS/Windows (improved from ~27s to ~200ms) |
| 57 | + |
3 | 58 | ### 0.18.0 |
4 | 59 |
|
5 | 60 | #### New Features |
|
0 commit comments