claude-code - 💡(How to fix) Fix [FEATURE] Support non-blocking concurrent interaction within a single session

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
RAW_BUFFERClick to expand / collapse

Preflight Checklist

  • I have searched existing requests and this feature hasn't been requested yet
  • This is a single feature request (not multiple features)

Problem Statement

当前会话是串行的,任务执行期间无法插入新问题。希望能支持后台任务执行 + 会话内非阻塞提问,让用户在等待长任务时可以继续交互 比如让 Claude 跑测试,同时问一个代码逻辑问题,不用等测试跑完

Proposed Solution

  1. Background execution — When a user prefixes a prompt with /bg (or Claude detects a long-running task), the task runs in the background. The user gets back the prompt immediately and can continue asking questions in the same session.
  2. Shared context — Background tasks and the foreground conversation share the same session context. Results from background tasks are appended to context when they complete, not blocked on.
  3. Status bar / notification — Show running background tasks in a status line (e.g., ⧖ 2 tasks running). When a background task finishes, surface a brief notification so the user knows to check results.
  4. Result retrieval — New command /tasks to list background tasks and their status; /tasks <id> to pull completed results into the conversation.

Alternative Solutions

No response

Priority

Critical - Blocking my work

Feature Category

CLI commands and flags

Use Case Example

No response

Additional Context

No response

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

claude-code - 💡(How to fix) Fix [FEATURE] Support non-blocking concurrent interaction within a single session