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
4 changes: 3 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Unreleased]

## [1.23.1] - 2026-04-21

### Fixed
- **Health check loop stops when instance directory is removed externally** — previously, `rm -rf ~/.agend/instances/<name>` while the daemon was running caused the health check to respawn-crash every ~30s indefinitely, spamming `ENOENT … rotation-state.json` / `tmux server died` / `Failed to respawn Claude window`. Loop now detects missing `instanceDir` at the start of each tick and pauses itself.
- **Health check loop stops when instance directory is removed externally** (PR #46) — previously, `rm -rf ~/.agend/instances/<name>` while the daemon was running caused the health check to respawn-crash every ~30s indefinitely, spamming `ENOENT … rotation-state.json` / `tmux server died` / `Failed to respawn Claude window`. Loop now detects missing `instanceDir` at the start of each tick and pauses itself.

## [1.23.0] - 2026-04-20

Expand Down
4 changes: 3 additions & 1 deletion docs/CHANGELOG.zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@

## [未發佈] (Unreleased)

## [1.23.1] - 2026-04-21

### 修復 (Fixed)
- **Instance 目錄被外部刪除時健康檢查迴圈會停止** — 先前若 daemon 執行中有人 `rm -rf ~/.agend/instances/<name>`,健康檢查每 ~30s 會不斷嘗試 respawn,產生 `ENOENT … rotation-state.json` / `tmux server died` / `Failed to respawn Claude window` 的連鎖錯誤 spam。現在每次 tick 開頭會檢查 `instanceDir` 是否還存在,不存在就暫停該 instance 的健康檢查。
- **Instance 目錄被外部刪除時健康檢查迴圈會停止** (PR #46) — 先前若 daemon 執行中有人 `rm -rf ~/.agend/instances/<name>`,健康檢查每 ~30s 會不斷嘗試 respawn,產生 `ENOENT … rotation-state.json` / `tmux server died` / `Failed to respawn Claude window` 的連鎖錯誤 spam。現在每次 tick 開頭會檢查 `instanceDir` 是否還存在,不存在就暫停該 instance 的健康檢查。

## [1.23.0] - 2026-04-20

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": "@suzuke/agend",
"version": "1.23.0",
"version": "1.23.1",
"description": "Multi-agent fleet daemon — run any coding CLI (Claude, Gemini, Codex, OpenCode) from Telegram",
"type": "module",
"bin": {
Expand Down
Loading