Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

### 0.29.0

#### New Features
- **Prompt Modules**: Added reusable prompt modules and a `auggie cloud prompt-module render` command for expert instructions from docs and VFS.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is not user facing - remove

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done — removed the Prompt Modules entry as not user-facing. Pushed in a559d7c.

- **Cloud Session Management**: Added commands to rename, archive, unarchive, pin, unpin, and list pinned cloud sessions.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are the cloud commands public? i know the agent uses them when doing cosmos things, but i dont know if users are expected to use these commands outside of cosmos?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The auggie cloud session-management commands (rename/archive/unarchive/pin/unpin/list-pinned) are part of the public CLI and can be run directly by users to manage their cloud sessions outside of Cosmos, so I've kept this entry as user-facing. Happy to drop it if you'd prefer to treat cloud session management as Cosmos-only — just let me know.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correction to my earlier reply: I verified, and these aren't really public — the entire auggie cloud command group is marked (experimental) in its help and isn't documented in the public docs. So I've removed the Cloud Session Management entry too (commit 46f9e13), consistent with dropping the Prompt Modules cloud command. Thanks for catching it.

- **Auggie Guide**: Added a built-in `auggie-guide` subagent for answering Auggie CLI and Cosmos questions from the docs.
- **Daemon Spaces**: Added CLI support for plain daemon Spaces.
- **Daemon Indexing**: Added `--allow-indexing` support to `auggie daemon` so spawned child agents can use codebase indexing.

#### Improvements
- **Session Metadata**: Session JSON now records per-exchange model IDs, summarization billing, and sub-agent histories.
- **Indexing Visibility**: `auggie daemon` now reports indexing status at startup and explains how to enable it when possible.
- **MCP Reliability**: MCP OAuth refreshes are more resilient, and stale shared MCP opt-ins now surface CLI warnings.
- **CLI Welcome**: The welcome screen now highlights updated model availability.
- **Tool Compatibility**: The `str-replace-editor` tool no longer requires the legacy instruction reminder field.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this seems like an internal thing, probably doesn't need to be in the changelogs

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed, that's an internal tool detail. Removed the Tool Compatibility (str-replace-editor) entry. Pushed in a559d7c.


#### Bug Fixes
- Fixed `auggie upgrade` on Windows.
- Fixed `auggie mcp add --header` to use `-H` and avoid conflicting with help.
- Fixed daemon auth-session file handling to write atomically and recover from malformed files.
- Fixed markdown code fences from carrying over between agent turns.
- Fixed out-of-order messages in long paginated conversation turns.
- Fixed subagent delegate tool rendering.

### 0.28.0

#### New Features
Expand Down
Loading