feat(server): LangGraph Platform RemoteGraph integration #10792

Merged
HAL9000 merged 4 commits from feature/m9-langgraph-platform into master 2026-06-06 18:13:29 +00:00

4 Commits

Author SHA1 Message Date
HAL9000 76fc40ad8d fix(tests): allow empty URL in is_postgresql_url BDD step
CI / lint (pull_request) Successful in 45s
CI / build (pull_request) Successful in 52s
CI / quality (pull_request) Successful in 1m14s
CI / typecheck (pull_request) Successful in 1m17s
CI / security (pull_request) Successful in 1m18s
CI / push-validation (pull_request) Successful in 29s
CI / helm (pull_request) Successful in 53s
CI / unit_tests (pull_request) Successful in 6m2s
CI / docker (pull_request) Successful in 1m47s
CI / integration_tests (pull_request) Successful in 10m2s
CI / coverage (pull_request) Successful in 12m2s
CI / status-check (pull_request) Successful in 4s
The default Behave `parse` matcher requires `{url}` to match at least
one character, so the `is_postgresql_url returns False for empty
string` scenario (langgraph_platform_remote_graph.feature:193) raised
an undefined-step error rather than exercising the function. Switch
just this step to the `re` matcher so `""` matches; the implementation
already handles empty input correctly.

ISSUES CLOSED: #10792
2026-06-06 13:54:43 -04:00
HAL9000 16093b53e6 refactor(server): split langgraph platform step definitions and remove subproject artifact
Split the 573-line langgraph_platform_remote_graph_steps.py into three focused files (remote_graph_config_steps.py, remote_graph_manager_steps.py, postgresql_config_steps.py) to comply with the 500-line file limit.
Also removes the unwanted repo subproject entry (merge artifact).
2026-06-06 13:54:43 -04:00
HAL9000 093d993611 style(server): fix ruff format violations in langgraph platform step definitions and robot helper
Applied ruff format auto-fix to resolve line-length formatting violations in:
- features/steps/langgraph_platform_remote_graph_steps.py
- robot/helper_langgraph_platform_integration.py

These files had multi-line assert statements that ruff format collapses to
single lines when they fit within the line length limit.

ISSUES CLOSED: #693
2026-06-06 13:54:43 -04:00
HAL9000 152eddba7f feat(server): integrate LangGraph Platform with RemoteGraph for server execution 2026-06-06 13:54:43 -04:00