feat: initial implementation — server, daemon, shell#1
Open
Conversation
added 30 commits
April 6, 2026 16:42
First implementation commit bringing Phase 1 and Phase 2 batch1-batch6 code into version control. Previously all implementation lived as untracked files across multiple agent workspaces with zero commits. - apps/server/: Node.js coordination core, HTTP API surface, tests (coordinator.js, http-server.js, protocol.js, 26/26 tests pass) - apps/shell/: Thin web shell (overview, status, approval points) - daemon/: Go daemon execution engine (lanes, runs, worktree, recovery) (6 test files, ~2,382 lines of tests) - docs/: Architecture and runtime docs - runtime/: Shared runtime config and daemon state This is a baseline commit to enable real PR review and QA gates. Subsequent commits will iterate on top of this foundation.
…onflict/merge evidence anchors - Add DELIVERY_STATE_GRAPH and PR_WRITEBACK_STATE_GRAPH to coordinator - Add normalizeGate helper for delivery state transitions - Update http-server.js for closeout/debug endpoints - Update coordinator tests and runtime-http tests (26/26 pass) - Add control-plane API surface gap analysis draft
…ty surfaces Previous #83 commit accidentally overwrote the baseline server code that contained the #85 integration test and explanation_projection logic. Restored from baseline (285b0bd): - coordinator.js: explanation_projection, buildRunExplanationProjection, batch6 truth - http-server.js: all /v1/ routes including run-history, replay, debug, compatibility - test: batch6 integration replay/debug test (139 lines)
…1 reads and approval decision
added 27 commits
April 8, 2026 05:38
Larkspur-Wang
added a commit
that referenced
this pull request
Apr 8, 2026
feat: land realtime path and release gate tooling
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
What's included
apps/server/ — Node.js coordination core
coordinator.js(2,364 lines) — Topic truth, message routing, human gates, delivery statehttp-server.js(676 lines) — Full/v1/REST API surface (topics, runs, debug, inbox, PRs, compatibility)protocol.js,errors.js,utils.js— Shared utilitiesdaemon/ — Go execution engine
apps/shell/ — Web shell
docs/
Next steps