[v2] Redesign process and transport configuration APIs
Nobody has claimed this yet.
Assessment
- Difficulty
- 5/5
- Estimated time
- Over a week
- Newbie friendliness
- 25/100
- Issue type
- Feature
- Clarity
- Mostly clear
- Activity status
- Active
- Tech stack
- rust
- Domain
- api, backend, developer-experience
Research direction
Start by reviewing dotnet/src/Client.cs and dotnet/src/FfiRuntimeHost.cs, then confirm the current behavior against groundwork in #1930 and #1976. Trace the affected client options and transport abstractions across SDKs, documenting any runtime dependency. Done means tested cross-SDK behavior, migration documentation, and a linked consolidated runtime follow-up if required.
Written by the indexing model from the issue text.
Description
Summary
Implement a coherent redesign of the boundary between client-wide options, out-of-process transports, and the in-process runtime.
These items are planned v2 work carried forward from #1934. Investigation should determine the correct implementation against the current code, not independently decide whether the work is desirable. If current architecture or completed work contradicts an item, document that evidence and ask maintainers to confirm the change in direction.
Why this work exists
Several CopilotClientOptions were originally implemented by lowering them to environment variables on a spawned CLI process. That is coherent for stdio/TCP clients that own an OS process, but not for an in-process FFI runtime loaded into a shared host process. A process has one ambient environment, so independently mutating it for multiple clients does not provide per-client configuration.
The original in-process implementation rejected some unsupported options while silently ignoring others. #1976 added substantial compatible forwarding and validation; preserve that groundwork and verify the current behavior while implementing the intended v2 API boundary.
Original option and behavior inventory
The complete environment-lowered inventory recorded in #1934 was:
| Option | Environment variable(s) | Original in-process behavior |
|---|---|---|
Environment |
Replaces the process environment block | Rejected |
Telemetry |
COPILOT_OTEL_ENABLED, OTEL_EXPORTER_OTLP_ENDPOINT, OTEL_EXPORTER_OTLP_PROTOCOL, COPILOT_OTEL_FILE_EXPORTER_PATH, COPILOT_OTEL_EXPORTER_TYPE, COPILOT_OTEL_SOURCE_NAME, OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT |
Rejected |
GitHubToken |
COPILOT_SDK_AUTH_TOKEN, plus --auth-token-env |
Silently ignored |
BaseDirectory |
COPILOT_HOME |
Silently ignored |
Mode == Empty |
COPILOT_DISABLE_KEYTAR=1 |
Silently ignored |
ConnectionToken |
COPILOT_CONNECTION_TOKEN |
TCP-only; not applicable in-process |
The following options were lowered to CLI arguments, but the original FFI host_start arguments were hardcoded to [entrypoint, "--embedded-host"] and did not forward them:
UseLoggedInUser→--no-auto-loginSessionIdleTimeoutSeconds→--session-idle-timeoutEnableRemoteSessions→--remoteLogLevel→--log-level
The original workaround was to configure the host process before constructing a client:
- set
COPILOT_SDK_AUTH_TOKENfor authentication - set
COPILOT_HOMEfor the base directory - set
COPILOT_DISABLE_KEYTAR=1for empty mode - set the corresponding
COPILOT_OTEL_*andOTEL_*variables for telemetry
This workaround is historical context, not the desired v2 API.
Required changes
- Remove client-level working-directory and environment options across SDKs, leaving process-scoped configuration on the applicable transport.
- In Rust, move
working_directory,env,env_remove,program, prefix/raw arguments, andextra_argsfromClientOptionsto the out-of-process transport. These remained onClientOptionsbecause moving them was breaking and the existing Rust transport units/structs were not declared with the#[non_exhaustive]/Defaultextensibility needed to add fields compatibly. - Make Rust's supplied process environment semantics consistent with the other SDKs. The intended behavior from #1934 is that a nonempty supplied environment replaces the inherited environment instead of adding to it.
- Rename shared "child process" connection abstractions to "out of process" where they also cover unrelated TCP processes. Unrelated-process TCP should reject path and argument settings at runtime where they do not apply.
- Replace settings lowered into environment variables or command-line arguments with coherent first-class runtime/server configuration where needed for stdio, TCP, and in-process operation. Environment variables may remain as compatibility overrides.
- Ensure the runtime consumes the
host_startenv_jsoncontract for host-side reads so configuration remains per client rather than ambient to the host process. - Validate settings that cannot apply to in-process or unrelated-process TCP connections, avoiding silent no-ops.
The first-class configuration and env_json work may not be possible without runtime changes. If runtime changes are required, file a single follow-up issue describing the complete runtime work and treat implementation of those runtime changes as out of scope for this SDK issue.
Implementation preparation
- Account for relevant groundwork already merged in #1930 and #1976.
- Confirm the present behavior of all environment- and argument-lowered options listed above.
- Define the consistent public API shape and migration path in every affected SDK.
- Link the single runtime follow-up if required.
- Separate compatible groundwork that can safely land in v1 from the breaking v2 API changes.
Historical context
- #1934
- #1901
- #1920
- #1929
- #1930
- #1976
- #1993
- Original .NET references in #1934:
dotnet/src/Client.cs(ValidateEnvironmentOptions, in-process startup, child-process environment construction,ApplyTelemetryEnvironment, and auth argument handling) anddotnet/src/FfiRuntimeHost.cs
Completion
Implement and test the required cross-SDK behavior, link the consolidated runtime follow-up where required, and document migration from every removed, moved, renamed, or behaviorally changed API. Any item not implemented requires documented contradictory evidence and explicit maintainer agreement.
- Dominant language
- Java
- Stars
- 10.5k
- Forks
- 1.5k
- Avg merge
- 1d 12h
- Merged PRs (30d)
- 133
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from github/copilot-sdk
-
agentic-workflows
Difficulty 2/5 1-3 hours Newbie friendliness 68/100
github/copilot-sdk#2709 · 1 comment ·
-
Difficulty 1/5 Under an hour Newbie friendliness 78/100
github/copilot-sdk#2673 ·
-
bug testing
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
github/copilot-sdk#2628 ·
-
agentic-workflows
Difficulty 2/5 1-3 hours Newbie friendliness 68/100
github/copilot-sdk#2627 · 1 comment ·
-
agentic-workflows
Difficulty 2/5 1-3 hours Newbie friendliness 74/100
github/copilot-sdk#2493 ·
All issues in github/copilot-sdk
Similar issues
-
bug
Difficulty 1/5 Under an hour Newbie friendliness 90/100
apache/cloudstack#14222 ·
-
[BUG]茶杯方块在取茶时会引发崩溃 Open
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
-
1.0.0-alpha2 Type/Improvement
Difficulty 2/5 1-3 hours Newbie friendliness 68/100
wso2/dpdp-accelerator#272 ·
-
bug
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
apache/rocketmq-dashboard#4860 · 1 comment ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 82/100
infinispan/infinispan#18150 ·