Conversation
…192, #195, #198) - Real HMAC-SHA256 signature verification with constant-time comparison - Path traversal prevention in project export (reject .. components) - Read loop with Content-Length parsing and 1MB max for webhooks - Template project creation wrapped in transaction (#197) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
, #214, #200, #201) - BackendHealthMonitor: defer process.terminate() on timeout - MCPHealthMonitor: defer + catch both terminate leaked processes - chatStore: hoist unlisten to outer scope, cleanup in catch - notificationStore: track toast timeouts in Map, clear on remove Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
, #194, #193) - Orchestrator: NSLock for activeRunners access - LMStudioBackend: callback-based dataTask -> async/await - NotificationService: sync dbQueue.write -> async await - chat.rs: try_lock() -> .lock().await to prevent dropped messages - health.rs: panic!() -> fallback empty query with error log Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- App.tsx: showChatPanel added to useEffect deps (#202) - ProjectDetailPanel: cancelled flag prevents stale fetches (#203) - projectStore: deleteProject with try/catch rollback (#204) - settingsStore: fetchSettings error handling (#205) - agentStore: fetchAgentTypes error handling (#206) - TerminalOutput: reset lines on taskId change (#207) - PublishingView: t -> tabKey to avoid i18n shadow (#208) - GitGraphView: fetchData wrapped in useCallback (#209) - taskStore: batchRetry/batchCancel with rollback (#210) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- ProjectChatService: add @mainactor class isolation, all property mutations now confined to main thread - MultiBackendRunner: wrap isRunning/liveOutput/addOutputLine in MainActor.run, mark addOutputLine as @mainactor - ContentView: replace try! DatabaseQueue() with safe fallback Root cause: @observable properties mutated from background threads while SwiftUI's AttributeGraph was reading them during layout, causing EXC_BAD_INSTRUCTION (SIGILL) on the main thread. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This was referenced Mar 6, 2026
This was referenced Mar 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
@Observablemutations off main thread causingEXC_BAD_INSTRUCTION(SIGILL)Phases
Builds
Test plan
🤖 Generated with Claude Code