Extension command.execute can be accepted but never delivered, hanging slash-command invocation
Nobody has claimed this yet.
Assessment
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Newbie friendliness
- 38/100
- Issue type
- Bug
- Clarity
- Mostly clear
- Activity status
- Active
- Tech stack
- javascript
Research direction
Start at the runtime command-event routing path, especially targeted-owner resolution, publish_session_event, post_response_notifications, gated_sessions, and the pending command response wait. Trace the extension reload/resume flow and add the requested regression coverage for immediate slash-command invocation; done means command.execute reaches its owner and completes, or delivery failure resolves promptly with an actionable error.
Written by the indexing model from the issue text.
Description
Drafted by GIthub Copilot with human review.
Summary
An extension slash command can be recognized by Copilot CLI and dispatched as command.execute, yet never reach the owning extension handler. The invocation then hangs silently because the runtime waits indefinitely for session.commands.handlePendingCommand and no timeout or delivery error is surfaced.
This is exposed through the public extension SDK, but the captured failure occurs in runtime command-event routing before SDK handler entry. Please triage as a runtime-root-cause bug.
Environment
- Copilot CLI:
1.0.84-8 - OS: Windows 11
- Extension API:
@github/copilot-sdk/extensionviajoinSession({ commands: [...] }) - Reproduced: September 15, 2026
Reproduction
-
Load an extension that registers a slash command through
joinSession, for example:await joinSession({ commands: [{ name: "bookmarks", description: "Open the session bookmark manager", handler: async () => { // Instrument handler entry here. }, }], }); -
Reload extensions.
-
Confirm the extension reaches
=== ready ===and can service another registered callback. In this reproduction, its canvas provider successfully handled rehydration. -
Invoke
/bookmarksinteractively.
Actual behavior
- CLI recognizes and invokes the registered slash command.
- Runtime emits
command.executeevent ID537170aa-2e69-41b6-a37b-ad0e505ea166. - The detached host-delivery queue starts and reports successful completion.
- The owning extension never enters the command handler.
- No
command.completedevent is emitted. - No
No client found for commanderror is emitted. - The invocation remains pending indefinitely without user-visible failure.
Relevant runtime timeline:
2026-09-15T08:44:56.142Z slash_command_invoked
2026-09-15T08:44:56.143Z Detached host delivery started
delivery_kind="reserved_event"
event_type="command.execute"
event_id="537170aa-2e69-41b6-a37b-ad0e505ea166"
2026-09-15T08:44:56.146Z Detached host delivery completed
2026-09-15T08:44:56.146Z Detached host delivery retirement decision completed
Temporary instrumentation around command-handler entry, session.rpc.canvas.open, and the canvas provider confirmed that neither the command handler nor downstream canvas call was reached. The same extension process had successfully handled canvas-provider rehydration approximately 35 seconds earlier.
Expected behavior
One of the following should happen deterministically:
command.executereaches the registered owner, the handler runs, andcommand.completedresolves the invocation; or- Delivery failure/disconnection is detected and the pending invocation fails promptly with an actionable error.
A request-like control-plane event must not be considered successfully delivered merely because it was queued somewhere that may never drain.
Suspected runtime area
Runtime source currently:
- resolves a targeted owner for
command.execute; - calls
publish_session_eventfor that connection; - treats an event queued in
post_response_notificationsbehind agated_sessionsdispatch token as successfully published; and - waits on the pending command response without a timeout.
This makes a stale or unreleased create/resume response gate one plausible mechanism: publication reports success, so no undelivered-command rejection occurs, but the owner never receives the event. The logs do not expose the connection ID or gate token, so this is a hypothesis rather than a proven precise race.
Relationship to #2368
This appears to be a sibling or incomplete-fix path for #2368, not necessarily the identical implementation defect:
- #2368 concerned lost
external_tool.requestedevents and SDK event-forwarder lag. - This reproduction concerns targeted
command.executedelivery after extension reload. - Both turn a lost request-like event into an indefinite hang because no timeout or disconnect failure resolves the pending request.
Requested fix
- Guarantee delivery or explicit rejection for targeted
command.executeevents. - Do not treat indefinitely gated notifications as successful delivery.
- Add a bounded timeout/disconnection failure for pending command execution as defense in depth.
- Add a regression test covering extension reload/resume followed by immediate slash-command invocation.
- 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
-
Difficulty 2/5 1-3 hours Newbie friendliness 82/100
infinispan/infinispan#18150 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 84/100
-
untriaged
Difficulty 2/5 1-3 hours Newbie friendliness 82/100
opensearch-project/k-NN#3597 ·
-
bug
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
-
bug
Difficulty 2/5 1-3 hours Newbie friendliness 82/100