@@ -19,7 +19,7 @@ JSON-RPC extension details; README stays at overview level.
1919
2020This section keeps only the protocol-relevant variables.
2121For the full runtime variable catalog and defaults, see
22- [ ` ../src/opencode_a2a_server /config.py ` ] ( ../src/opencode_a2a_server /config.py ) .
22+ [ ` ../src/opencode_a2a /config.py ` ] ( ../src/opencode_a2a /config.py ) .
2323Deployment supervision is intentionally out of scope for this project; use your
2424own process manager, container runtime, or host orchestration.
2525
@@ -99,7 +99,7 @@ starting that upstream process:
9999If your provider uses environment variables for auth, export them before
100100starting ` opencode serve ` .
101101
102- Then start ` opencode-a2a-server ` against that explicit upstream URL:
102+ Then start ` opencode-a2a ` against that explicit upstream URL:
103103
104104``` bash
105105OPENCODE_BASE_URL=http://127.0.0.1:4096 \
@@ -108,7 +108,7 @@ A2A_HOST=127.0.0.1 \
108108A2A_PORT=8000 \
109109A2A_PUBLIC_URL=http://127.0.0.1:8000 \
110110OPENCODE_WORKSPACE_ROOT=/abs/path/to/workspace \
111- opencode-a2a-server serve
111+ opencode-a2a serve
112112```
113113
114114## Core Behavior
@@ -443,7 +443,7 @@ Consumer guidance:
443443- Treat ` metadata.shared.model ` as request-scoped preference data rather than
444444 deployment configuration.
445445- Provider auth and service-level model defaults belong to ` opencode serve ` ,
446- not to ` opencode-a2a-server ` .
446+ not to ` opencode-a2a ` .
447447
448448Minimal example:
449449
@@ -856,7 +856,7 @@ If an SSE connection drops, use `GET /v1/tasks/{task_id}:subscribe` to re-subscr
856856- Idempotency contract: repeated ` tasks/cancel ` on an already ` canceled ` task returns the current terminal task state without error.
857857- Terminal subscribe contract: calling ` subscribe ` on a terminal task replays one terminal ` Task ` snapshot and then closes the stream.
858858- These two semantics are also declared as machine-readable ` service_behaviors ` in the compatibility profile and wire contract extensions.
859- - The service emits lightweight metric log records (` logger=opencode_a2a_server .execution.executor ` ):
859+ - The service emits lightweight metric log records (` logger=opencode_a2a .execution.executor ` ):
860860 - ` a2a_stream_requests_total `
861861 - ` a2a_stream_active ` (` value=1 ` when a stream starts, ` value=-1 ` when it closes)
862862 - ` opencode_stream_retries_total `
0 commit comments