Merged
Conversation
Flutter-style hint bar shown at startup. Keys: r = soft restart (no reinstall), R = hard restart (reinstall + re-resolve ports), s = status table (PID/port/uptime), l = cycle log filter, q/Ctrl+C = graceful quit. Restart loop lives in cli.py; keyboard loop runs as a daemon thread in runner.py. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
devlauncher now writes .devlauncher.json on start (deleted on exit)
and runs an MCP server (devlauncher-mcp) that Claude Code picks up
automatically. Two tools exposed:
devlauncher_status() — services, ports, PIDs; crashed
services detected via os.kill(pid, 0)
devlauncher_logs(service, lines) — last N lines from log buffer
MCP server registers itself in ~/.claude/settings.json on first run.
Log files written to .devlauncher-logs/<service>.log for on-demand
agent access.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Add mcp to install_requires. Register devlauncher-mcp as a console_scripts entry point. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
README: interactive commands section, agent awareness section, corrected dependency note. CHANGELOG: Keep a Changelog format covering v0.2.0 and v0.1.0. .gitignore: add .devlauncher.json, .devlauncher-logs/, and .omc/. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- mcp_server.py: wrap os.kill(pid, 0) in sys.platform != "win32" guard (WinError 87 on Windows; liveness check degrades gracefully to best-effort) - test_runner_interactive.py: skip _kill_all tests on Windows — os.getpgid and os.killpg are POSIX-only; Windows code path uses proc.terminate() - pyproject.toml: bump requires-python to >=3.10 (mcp requires 3.10+), drop Python 3.9 classifier - tests.yml: remove 3.9 from CI matrix - README: update Python version requirement Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
test_status_live_checks_pid_on_crash tests os.kill behavior which is guarded by sys.platform != "win32" in production — skip it on Windows to match the intentional platform behavior. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
No description provided.