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
1 change: 1 addition & 0 deletions .claude/sessions/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.md merge=union
10 changes: 10 additions & 0 deletions .claude/sessions/2026-03-27.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### 14:39 - fix/command-mode-session-exit (#90)

- Did:
- Verified fix was already applied: removed `this.commandMode.exit()` from `session-clear` and `session-new` handlers in `src/ClaudeCli.ts`
- Ran type-check, build (105 tests), biome CI. All passed.
- Committed, pushed, and created PR #125 with auto-merge enabled
- Files: `src/ClaudeCli.ts` (2 deletions)
- Decisions:
- CI is blocked by pre-existing audit failures (GHSA-c2c7-rcm5-vvqj, GHSA-48c2-rrv3-qjmp, GHSA-v3rj-xjv7-4jmq, GHSA-3v7f-55p6-f55p) in transitive dev deps (knip, @shellicar/build-clean). Not introduced by this PR. Requires separate security/maintenance PR.
- Next: Fix pre-existing audit failures on main (separate maintenance-release PR) to unblock PR #125 auto-merge
# Session Log: 2026-03-27

### 07:36 - fix/slash-command-attachments (Stage 1 of #89)
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed [CVE-2026-33532](https://github.com/advisories/GHSA-48c2-rrv3-qjmp) (stack overflow) in yaml
- Fixed [GHSA-v3rj-xjv7-4jmq](https://github.com/advisories/GHSA-v3rj-xjv7-4jmq) (DoS) in smol-toml

### Fixed

- `session-clear` and `session-new` commands no longer exit command mode

### Changed

- Updated `@shellicar/mcp-exec` to 1.0.0-preview.6
Expand Down
2 changes: 0 additions & 2 deletions src/ClaudeCli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,6 @@ export class ClaudeCli {
this.term.log('Session cleared');
this.printContext();
this.printSessionCost();
this.commandMode.exit();
this.scheduleRedraw();
break;
case 'session-new': {
Expand All @@ -582,7 +581,6 @@ export class ClaudeCli {
}
this.printContext();
this.printSessionCost();
this.commandMode.exit();
this.scheduleRedraw();
break;
}
Expand Down
Loading