-
Notifications
You must be signed in to change notification settings - Fork 102
feat(orchestrator): LangGraph orchestrator package — P1a (3/3) - #1119
Draft
najmuzzaman-mohammad wants to merge 1 commit into
Draft
feat(orchestrator): LangGraph orchestrator package — P1a (3/3) #1119najmuzzaman-mohammad wants to merge 1 commit into
najmuzzaman-mohammad wants to merge 1 commit into
Conversation
...rate + HITL (P1a) First real increment: a tested Python LangGraph orchestrator that owns task lifecycle on top of Claude Code/Codex (inner harness untouched), re-hydrating run-state from the Go record. 25 tests green, no model key required. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
Important
Review skipped
Draft detected.
Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro
Run ID: 0842dcdb-efa7-4319-b174-a241286f290d
You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.
Use the checkbox below for a quick retry:
- 🔍 Trigger review
✨ Finishing Touches
🧪 Generate unit tests (beta)
- Create PR with unit tests
- Commit unit tests in branch
deepagents/03-orchestrator
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.
Comment @coderabbitai help to get the list of available commands and usage tips.
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.
orchestrator package — P1a (3/3 in stack)
First real implementation increment: a tested LangGraph orchestrator that owns
task lifecycle on top of Claude Code/Codex. 25 tests green, no model key.
lifecycle.py— real lifecycle model (faithful to broker_lifecycle_transition.go) + P1 policy.runstate.py— re-hydrate from the Go record + one-way projection back.graph.py— route -> dispatch_turn -> (human_gate | continue); HITL via interrupt().harness.py— Harness protocol; FakeHarness + ClaudeAgentHarness (P2 stub).wire.py— Go<->Python contract (secrets cross as env-var names only).service.py— FastAPI /run, /resume, /health.Run:
cd orchestrator && uv venv .venv && uv pip install langgraph langgraph-checkpoint-sqlite fastapi sse-starlette uvicorn pydantic pytest httpx && .venv/bin/pytest -qDeferred (next stacked PRs): P1b Go dispatch client + projection + flag; P2 real
Claude Agent SDK harness; SSE streaming; CI. Base:
deepagents/02-spikes.🤖 Generated with Claude Code