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/fix-per-step-timing.md

This file was deleted.

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

## 0.17.7

### Patch Changes

- 0b0e20d: fix(timing): calculate individual step duration for each thought segment on resume and live execution

Previously, `totalSeconds` calculated on resume and at the end of a turn incorrectly used the entire multi-step conversation turn duration (e.g. 10 minutes), causing every thought segment in the same turn to display identical long total durations. Thinking duration and total segment elapsed time are now calculated per step (from `step/start` to `step/end`), accurately reporting the exact start-to-finish duration for each output segment independently.

## 0.17.6

### 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.6",
"version": "0.17.7",
"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.7

## 0.17.6

## 0.17.5
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.6",
"version": "0.17.7",
"type": "module",
"license": "MIT",
"bin": {
Expand Down