Conversation
mrcfps
approved these changes
Mar 30, 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.
What
Add non-blocking
pnpmcommands for launchd-based desktop startup so automation can restart the local stack without blocking on the Electron process.Why
pnpm startandpnpm restartintentionally stay attached to the Electron lifecycle, which makes them awkward for agents and other automation that need the command to return immediately.How
Add a
scripts/dev-launchd-bg.shwrapper that runs the existing launchd start flow inside a dedicatedtmuxsession and exposes matching background-aware start/stop/restart/status/logs commands through root package scripts.Affected areas
Checklist
pnpm typecheckpassespnpm lintpassespnpm testpassespnpm generate-typesrun (if API routes/schemas changed)anytypes introduced (useunknownwith narrowing)Notes for reviewers
This change only adds automation-oriented entrypoints; the existing blocking
pnpm start/pnpm restartbehavior remains unchanged for manual use.