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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ 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.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.2.18] - 2026-08-11

### Fixed
- **Windows: every `child_process` spawn was missing `windowsHide`, so the daemon (and any hook
spawned by Claude Code/Cursor/Codex) flashed a visible console/terminal window constantly.**
Reported and first patched by [@lnorton89](https://github.com/lnorton89) (7 sites: `keeper.js`
self-relaunch, `git`/ripgrep probes, the notebook viewer's browser-open call). This release adds
`windowsHide: true` to 4 more sites in `src/indexer/git.ts` (high-frequency: fires on every
keeper cache save/reconcile) and ~13 more across `hooks/*.mjs` (the recall/nudge/elicit hooks
shipped by `coldstart init`), found via an exhaustive audit of every `execFile`/`execFileSync`/
`spawn` call site. A permanent static test (`tests/windows-hide-coverage.test.ts`) now guards
against any future call site reintroducing the gap. Verified on a real `windows-latest` CI
runner (daemon/CLI shape) and on real Windows 11 hardware (hooks shape). (#149, #151)

## [2.2.17] - 2026-08-08

### Changed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cstart/coldstart",
"version": "2.2.17",
"version": "2.2.18",
"mcpName": "io.github.AkashGoenka/coldstart",
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/AkashGoenka/coldstart",
"source": "github"
},
"version": "2.2.17",
"version": "2.2.18",
"websiteUrl": "https://coldstartmcp.dev/",
"icons": [
{
Expand All @@ -21,7 +21,7 @@
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@cstart/coldstart",
"version": "2.2.17",
"version": "2.2.18",
"transport": {
"type": "stdio"
}
Expand Down
Loading