feat(cli): Integrate daemon commands#825
Draft
grypez wants to merge 2 commits intogrypez/add-daemon-lifecyclefrom
Draft
feat(cli): Integrate daemon commands#825grypez wants to merge 2 commits intogrypez/add-daemon-lifecyclefrom
grypez wants to merge 2 commits intogrypez/add-daemon-lifecyclefrom
Conversation
416a044 to
d9ebc9b
Compare
d9ebc9b to
b62e2c9
Compare
53d7d9a to
bb268c4
Compare
aa7c889 to
63ee66c
Compare
67de42f to
de33e8f
Compare
63ee66c to
308d469
Compare
de33e8f to
e6461cb
Compare
55f9f2f to
e1c27c6
Compare
e6461cb to
30f3d16
Compare
Base automatically changed from
grypez/add-daemon-cmd-handlers
to
grypez/add-daemon-lifecycle
February 11, 2026 12:36
30f3d16 to
91c0a8f
Compare
65cd022 to
387ab56
Compare
91c0a8f to
7486337
Compare
Add 12 command handlers registered via `registerDaemonCommands`: start, stop, restart, status, flush, pid, logs, launch, view, invoke, inspect, url-issue, and url-redeem. Each command follows a uniform `DaemonCommand` type and returns JSON-serializable results. The `view` command returns structured JSON for CLI consumption. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Wire daemon commands into the CLI via a new `kernel` command group. `daemon-process.ts` manages the daemon child process, and `kernel/index.ts` dispatches sub-commands (start, stop, status, etc.) through the IPC client. Adds e2e test scaffolding for daemon lifecycle. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
387ab56 to
a75c945
Compare
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.
Wire daemon commands into the CLI via a new
kernelcommand group.daemon-process.tsmanages the daemon child process, andkernel/index.tsdispatches sub-commands (start, stop, status, etc.) through the IPC client. Adds e2e test scaffolding for daemon lifecycle.