feat(dev): CodeZip dev runner and process lifecycle core - #1883
Open
tejaskash wants to merge 3 commits into
Open
feat(dev): CodeZip dev runner and process lifecycle core#1883tejaskash wants to merge 3 commits into
tejaskash wants to merge 3 commits into
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## feat/project-foundation #1883 +/- ##
==========================================================
Coverage ? 96.17%
==========================================================
Files ? 253
Lines ? 12455
Branches ? 0
==========================================================
Hits ? 11979
Misses ? 476
Partials ? 0 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
tejaskash
force-pushed
the
feat/dev-server-core
branch
from
July 31, 2026 16:55
f5e0f3a to
ba41e68
Compare
tejaskash
force-pushed
the
feat/dev-server-core
branch
4 times, most recently
from
August 3, 2026 18:01
750364c to
fe79c87
Compare
tejaskash
force-pushed
the
feat/dev-server-core
branch
from
August 3, 2026 21:16
fe79c87 to
356b555
Compare
tejaskash
force-pushed
the
feat/dev-server-core
branch
from
August 6, 2026 15:57
70f25ad to
970d944
Compare
tejaskash
force-pushed
the
feat/dev-server-core
branch
from
August 6, 2026 17:34
ddad635 to
dd9c5de
Compare
tejaskash
force-pushed
the
feat/dev-server-core
branch
from
August 6, 2026 18:43
5213de0 to
6cad8b2
Compare
tejaskash
force-pushed
the
feat/dev-server-core
branch
from
August 6, 2026 19:19
6cad8b2 to
c96378f
Compare
…ution Implements the core infrastructure for `agentcore project dev`: - ProcessSupervisor manages child processes with SIGTERM/SIGHUP cleanup - CodeZipDevRunner bootstraps Python (uvicorn) and TypeScript (tsx) runtimes - findAvailablePort walks up from requested port to find a free one - Consumer-owned DevRunner interface with ProcessExit union type
- port: reject non-EADDRINUSE errors instead of treating every failure as "port busy" (EACCES on a privileged port no longer masquerades as in-use and gets silently walked past) - dev: delete duplicate core/dev/run.ts; consume io/exec.ts (runProcess) so subprocess IO lives only in io/ (boundary of concern) - codezip: drop nodePackageManager lockfile detection; assume npm - process: rewrite watch() comment; tighten 128+signal comment
tejaskash
force-pushed
the
feat/dev-server-core
branch
from
August 6, 2026 19:22
3f9671b to
d20d71f
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.
Summary
SIGTERMtoSIGKILLescalationCodeZipDevRunnersupport for Python projects usinguvanduvicorn --reloadCodeZipDevRunnersupport for TypeScript projects usingnpmandtsx watchPORT,LOCAL_DEV, and caller-provided environment variables to the agent processDevRunnerinterface alongside its future handler and inject process dependencies for isolated testsVerification
bun test(565 tests)