Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 0 additions & 7 deletions .changeset/clean-update-command.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/format-ask-user-question-result.md

This file was deleted.

11 changes: 11 additions & 0 deletions packages/bundle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# codsh-bundle

## 0.17.8

### Patch Changes

- 2555514: fix(update): silence package installation output and show updating loading hint on /update

Previously, running `/update` streamed the raw package installation output (`npm install` and `dsh profile register`) to the transcript. The command now runs the installation silently under a clean `updating` spinner loading indicator, reporting only the final success or failure message.
- 2555514: fix(transcript): format ask_user_question result as user reply instead of raw json

When `ask_user_question` completed, the transcript rendered the tool's raw `{ answers: [...] }` JSON payload into the terminal card. Tool results for `ask_user_question` are now formatted directly as the user's reply (selected options or custom text), cleanly omitting the body when dismissed or aborted without displaying raw JSON.

## 0.17.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bundle/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codsh-bundle",
"description": "The codsh runtime: the interactive TTY surface and code-cli agent preset, installed into a dsh profile. Users install codsh-cli (the launcher) — this package is what it registers.",
"version": "0.17.7",
"version": "0.17.8",
"type": "module",
"license": "MIT",
"main": "lib/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# codsh

## 0.17.8

## 0.17.7

## 0.17.6
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codsh-cli",
"description": "A Claude Code-style coding agent for the terminal, composed on the DeepSeek Harness (dsh). This is the zero-dependency launcher: it finds your dsh, registers the codsh-bundle runtime into a profile, and boots it.",
"version": "0.17.7",
"version": "0.17.8",
"type": "module",
"license": "MIT",
"bin": {
Expand Down
Loading