Skip to content

Catalyst Dev — Change Log

6.37.1

Apr 16, 2026

CI Release Notes Enhancement

The release pipeline now generates AI-enhanced changelogs automatically, matching the backfill format with structured titles and developer-focused summaries. Fixed a broken pipe issue in the enhancement script that was preventing changelog updates from completing under strict error handling.

PRs

  • dev: fix CI release notes to match backfill format (#177) (a64b71a)

6.37.0

Apr 16, 2026

Changelog Backfill and CI API Key Fix

Backfills AI-enhanced summaries for the four most recent releases (6.34.1 through 6.36.0) that shipped after the original backfill PR. Updates both release-note scripts to use LOCAL_ANTHROPIC_API_KEY instead of ANTHROPIC_API_KEY to avoid conflicts with Claude Code’s own key when running locally, with automatic fallback for CI.

PRs

  • dev: backfill AI-enhanced notes and use LOCAL_ANTHROPIC_API_KEY (#175) (6d60cc7)

6.36.0

Apr 16, 2026

AI-Enhanced Changelogs and Homepage Badge

All 51 catalyst-dev changelog entries now have Sonnet-generated titles and 2-4 sentence summaries. The website homepage gains a version badge that reads the latest release from CHANGELOG.md at build time. Changelog page styling follows a Conductor-inspired layout with small muted version numbers, bold release titles, and comfortable reading line-height. CI release note generation upgraded from Haiku to Sonnet, and a new add-changelog-media skill supports R2/CDN hosting for screenshots and GIF screencasts.

PRs

  • dev: AI-enhanced changelogs with titles, homepage badge, and Conductor-style styling (#170) (ebdaf99)

6.35.0

Apr 16, 2026

Activity Feed and Task List Integration

The orchestration monitor activity feed now shows tool names, text previews, and rate limit info instead of generic “new turn” labels. A new task list integration reads from ~/.claude/tasks/{sessionId}/ to display per-worker task progress with badges in the worker table and a collapsible task section in the detail drawer.

PRs

  • dev: fix activity feed labels and add task list integration (#165) (96e098e)

6.34.2

Apr 16, 2026

Watcher Subshell Detach

Adds disown after the background watcher subshell in catalyst-claude.sh to fully detach it from bash’s job table before exec replaces the process. This is a defensive fix that prevents any edge case where bash might send SIGHUP to the watcher on exit.

PRs

  • dev: disown watcher subshell before exec (#171) (5a902b3)

6.34.1

Apr 16, 2026

Warp Terminal Integration

Replaces child-process claude "$@" with exec claude "$@" in the session wrapper so the process image becomes claude directly, restoring Warp’s rich sidebar metadata (repo, branch, change count) and notification integration. Heartbeat and cleanup logic moves to a background watcher that polls the wrapper PID.

PRs

  • dev: exec claude in wrapper for Warp terminal integration (#168) (59e7509)

6.34.0

Apr 16, 2026

Session Time Filter Controls

Filter your Claude sessions in the sidebar by time range with a 5-option toggle (Active/1h/24h/48h/All) that replaces the previous hardcoded 1-hour cutoff. The filter setting persists across page reloads and works in both flat and grouped sidebar modes. Your previous “Active sessions only” behavior is preserved as the default filter option.

PRs

  • dev: add session time filter controls in sidebar (#164) (781ca18)

6.33.0

Apr 16, 2026

Linear Ticket Grouping

The orchestration monitor sidebar now groups sessions and orchestrators by Linear ticket ID when you select “ticket” grouping mode. Sessions group by their ticket field, while orchestrators appear in groups for each worker ticket they manage. Items without tickets collect in an “Unlinked” group at the bottom.

PRs

  • dev: add sidebar grouping by Linear ticket (#162) (d69aa05)

6.32.0

Apr 16, 2026

Dead Code Detection

Knip now runs automatically on every PR to catch unused exports, dead code, and unnecessary dependencies before they reach main. The CI quality gates will fail if any dead code is detected, keeping the codebase clean without manual oversight.

PRs

  • dev: add knip dead code checking to CI quality gates (#158) (f58d441)

6.31.0

Apr 16, 2026

Switch between flat list and grouped tree views with the new Flat/Repo toggle in the sidebar header. In Repo mode, orchestrators group by workspace and sessions by working directory, with collapsible headers showing item counts. Your grouping preference persists across sessions automatically.

PRs

  • dev: add sidebar grouping by repo/cwd (#157) (0101310)