eb46f0ff54
CI / push-validation (push) Successful in 40s
CI / helm (push) Successful in 44s
CI / build (push) Successful in 1m14s
CI / lint (push) Successful in 1m18s
CI / quality (push) Successful in 1m36s
CI / e2e_tests (push) Successful in 1m19s
CI / typecheck (push) Successful in 2m22s
CI / security (push) Successful in 2m23s
CI / benchmark-regression (push) Failing after 41s
CI / integration_tests (push) Successful in 4m46s
CI / unit_tests (push) Failing after 20m13s
CI / benchmark-publish (push) Failing after 28m28s
CI / coverage (push) Has been cancelled
CI / docker (push) Has been cancelled
CI / status-check (push) Has been cancelled
## Summary This PR fixes issue #10878 where architecture reviews were truncated because the regex pattern for parsing file output would stop at the first ``` encountered in the Markdown report. ## Changes - Change file delimiters from ``` to >>>>>>>/<<<<<<< to avoid Markdown conflicts - Add tier hydration before strategize phase in plan_executor.py - Increase max_tokens to 16384 in llm_actors.py for longer outputs - Increase context_max_tokens_hot from 16000 to 32000 in settings.py - Fix get_hot_view → get_hot_fragments in strategy_actor.py and plan_executor.py - Add opencode to skip directories in context_tier_hydrator.py - Change sandbox output location to plan-output/ directory in plan.py - Add get_context_summary stub method to acms_service.py ## Testing Run architecture review action and verify the output report is complete with all sections. Reviewed-on: #10938
23 lines
1.0 KiB
Gherkin
23 lines
1.0 KiB
Gherkin
Feature: Transport selector chooses correct transport by mode
|
|
As a CleverAgents developer
|
|
I want TransportSelector to return the right transport based on server_url
|
|
So that local and server modes use the correct communication channel
|
|
|
|
@coverage
|
|
Scenario: Select stdio transport when no server URL is given
|
|
Given no transport server URL is configured
|
|
When I call TransportSelector.select with no server_url
|
|
Then the returned transport should be an A2aStdioTransport instance
|
|
|
|
@coverage
|
|
Scenario: Select HTTP transport when server URL is provided
|
|
Given a server URL "http://localhost:8080" is configured
|
|
When I call TransportSelector.select with server_url "http://localhost:8080"
|
|
Then the returned transport should be an A2aHttpTransport instance
|
|
|
|
@coverage
|
|
Scenario: Select stdio transport for empty string server URL
|
|
Given an empty string server URL is configured
|
|
When I call TransportSelector.select with server_url ""
|
|
Then the returned transport should be an A2aStdioTransport instance
|