sync: merge upstream nanoclaw (2026-03-16)#102
Merged
Conversation
`claude remote-control` prompts "Enable Remote Control? (y/n)" on every launch. With stdin set to 'ignore', the process exits immediately because it cannot read the response. Pipe 'y\n' to stdin instead. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
systemd's default KillMode=control-group kills all processes in the cgroup on service restart, including the detached claude remote-control process. KillMode=process only kills the main Node.js process, letting detached children survive. restoreRemoteControl() already handles reattaching on startup. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…stdin-clean fix: auto-accept remote-control prompt to prevent immediate exit
Collaborator
Author
|
Got it, PR #102 is merged! 🎉 |
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
Merges 7 upstream commits from qwibitai/nanoclaw. Clean merge — no conflicts.
Upstream commits
•
c8f03eddocs: update token count to 40.5k tokens•
8b64741chore: bump version to 1.2.15•
4b53ce0Merge pull request nanocoai#1133 — remote-control stdin fix•
2608127fix: add KillMode=process so remote-control survives restarts•
12ff258style: format remote-control tests with prettier•
9244828test: update remote-control tests for stdin pipe change•
d49af91fix: auto-accept remote-control prompt to prevent immediate exitKey changes
• Remote-control fixes: stdin pipe handling, auto-accept prompt, KillMode=process for systemd
• Version bump to 1.2.15
Conflicts
None — clean merge.
CI checks
npm ci— clean installnpx tsc --noEmit— typecheck passesnpx prettier --check 'src/**/*.ts'— formatting OKnpx vitest run— 430 tests pass (23 test files)🤖 Generated with Claude Code