Skip to content
Closed
Changes from all commits
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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.41] (unreleased)

### Added

- **Hostability.** Tencent Lighthouse deployment flow, Feishu/Lark smoke-tested integration,
and companion documentation for self-host and cloud install paths.
- **Orientation cache.** Native PEEK/Aleph-style workspace context injection — no MCP
dependency — giving the model a persistent, low-latency map of the project.
- **Hardening.** Fixes for macOS file writes, Windows input/composer edge cases, sync
tool-cancel reliability, sub-agent/RLM output robustness, and doctor-noise cleanup.
- **Cockpit UX.** Sidebar and presentation panels (Now, Recent, Pending, Budget, Levers)
so the user feels like they're driving the agent, not watching from the back seat.
- **Tool-calling accuracy.** Strict-mode (`/beta`) tool schema classification and
adaptation behind `DS_TUI_STRICT_TOOLS`, measured on `deepseek eval`.
Comment on lines +10 to +21
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The changelog entry for v0.8.41 should be refined for accuracy and consistency with the project's standards:

  • Section Grouping: The "Hardening" bullet describes bug fixes (macOS file writes, Windows edge cases, etc.). Following the "Keep a Changelog" format used in previous versions (e.g., line 52), these should be moved to a ### Fixed section.
  • Panel Name Accuracy: The "Cockpit UX" entry mentions panels named "Now, Recent, Pending, Budget, Levers". However, the implementation in crates/tui/src/tui/sidebar.rs (lines 48-53) uses "Work, Tasks, Agents, Context". The changelog should use the actual UI labels.
  • Environment Variable Wiring: The entry mentions DS_TUI_STRICT_TOOLS. However, this variable is not wired up in crates/tui/src/config.rs, and the DS_ prefix is inconsistent with the DEEPSEEK_ prefix used for all other environment variables in the project. Also, the PR description mentions "Windows containment" which is missing from the changelog entry.
  • Formatting: Commands and environment variables like DS_TUI_STRICT_TOOLS and deepseek eval should be wrapped in backticks for consistency with previous entries.
Suggested change
### Added
- **Hostability.** Tencent Lighthouse deployment flow, Feishu/Lark smoke-tested integration,
and companion documentation for self-host and cloud install paths.
- **Orientation cache.** Native PEEK/Aleph-style workspace context injection — no MCP
dependency — giving the model a persistent, low-latency map of the project.
- **Hardening.** Fixes for macOS file writes, Windows input/composer edge cases, sync
tool-cancel reliability, sub-agent/RLM output robustness, and doctor-noise cleanup.
- **Cockpit UX.** Sidebar and presentation panels (Now, Recent, Pending, Budget, Levers)
so the user feels like they're driving the agent, not watching from the back seat.
- **Tool-calling accuracy.** Strict-mode (`/beta`) tool schema classification and
adaptation behind `DS_TUI_STRICT_TOOLS`, measured on `deepseek eval`.
### Added
- **Hostability.** Tencent Lighthouse deployment flow, Feishu/Lark smoke-tested integration,
and companion documentation for self-host and cloud install paths.
- **Orientation cache.** Native PEEK/Aleph-style workspace context injection — no MCP
dependency — giving the model a persistent, low-latency map of the project.
- **Cockpit UX.** Sidebar and presentation panels (Work, Tasks, Agents, Context)
so the user feels like they're driving the agent, not watching from the back seat.
- **Tool-calling accuracy.** Strict-mode (`/beta`) tool schema classification and
adaptation behind `DS_TUI_STRICT_TOOLS`, measured on `deepseek eval`.
### Fixed
- **Hardening.** Fixes for macOS file writes, Windows input/composer edge cases, sync
tool-cancel reliability, sub-agent/RLM output robustness, and doctor-noise cleanup.


## [0.8.40] - 2026-05-21

### Added
Expand Down
Loading