66a3aed528
- Add exec_shell_cancel tool to cancel one or all running background shell tasks - Add foreground-to-background detach path via ShellManager request_foreground_background() - Add wait_for_shell_delta_cancellable() so exec_shell_wait observes turn cancellation - Add ShellControlView (Ctrl+B) with Background/Cancel options for active foreground commands - Add 'Ctrl+B opens shell controls' hint in transcript for running exec cells - Register exec_shell_cancel in ToolRegistryBuilder::with_shell_tools() - Cancel-token checks in ShellInteractTool poll loop - Update keybinding registry and OPERATIONS_RUNBOOK with Ctrl+B documentation - Update TOOL_SURFACE.md with exec_shell_cancel entry - Update prompts (rlm first-class guidance, AGENTS.md issue-closure policy) - Tests: foreground_background, wait_cancel_leaves_running, cancel_tool_single, cancel_tool_all Closes #248
3.4 KiB
3.4 KiB
DeepSeek TUI Operations Runbook
This runbook covers practical debugging and incident response for the local CLI/TUI runtime.
Quick Triage
- Confirm binary + config:
cargo run -- --versioncat ~/.deepseek/config.toml(or inspect configured profile)
- Enable verbose logs:
RUST_LOG=deepseek_cli=debug cargo run- For HTTP retries/reconnects:
RUST_LOG=deepseek_cli::client=debug cargo run
- Capture current state:
ls ~/.deepseek/sessionsls ~/.deepseek/sessions/checkpointsls ~/.deepseek/tasks
Incident: Turn Hangs or Stream Stops
Symptoms:
- TUI remains in loading state
- partial assistant output with no completion
Checks:
- Inspect retry/health logs (
deepseek_cli::client) - Verify endpoint connectivity:
curl -sS https://api.deepseek.com/v1/models -H "Authorization: Bearer $DEEPSEEK_API_KEY"
- Confirm no local sandbox/permission deadlock in tool output
Actions:
- If a foreground shell command is running, press
Ctrl+Band choose whether to background it or cancel the current turn. - If the command was started in the background, ask the assistant to cancel it with
exec_shell_canceland the returned task id. - Use
EscorCtrl+Cto interrupt the current turn when you want to stop the request itself. - Retry prompt; if still failing, restart TUI.
- On restart, verify the previous queued/in-flight runtime turn is shown as interrupted rather than left in a running state.
Incident: Network Outage / Offline Behavior
Expected behavior:
- New prompts are queued while offline mode is active
- Queue state persists to
~/.deepseek/sessions/checkpoints/offline_queue.json
Checks:
- Open queue in TUI:
/queue list - Confirm persisted queue file exists and updates timestamp
Actions:
- Restore connectivity
- Re-send queued entries (from
/queue edit <n>+ Enter, or normal input flow) - Ensure queue file clears when queue is empty
Incident: Crash Recovery Needed
Expected behavior:
- Checkpoint stored at
~/.deepseek/sessions/checkpoints/latest.json - Startup begins a fresh session unless
--resume/--continueis supplied
Actions:
- Resume prior work explicitly via
deepseek --resume <id>orCtrl+Rin TUI - If checkpoint inspection is needed, inspect
latest.jsonfor schema mismatch/details - If schema is newer than binary supports, upgrade binary or remove stale checkpoint
Incident: Persistent State Schema Errors
Symptoms:
- Errors like
schema vX is newer than supported vY
Affected stores:
- sessions (
~/.deepseek/sessions/*.json) - runtime thread/turn/item records
- tasks (
~/.deepseek/tasks/tasks/*.json)
Actions:
- Confirm binary version and migration expectations
- Back up the state directory before editing
- Either:
- run with a newer compatible binary, or
- archive incompatible records and regenerate state
Incident: MCP/Tool Execution Failures
Checks:
- Validate
~/.deepseek/mcp.jsonschema and server command paths - Confirm server process can start manually
- Check sandbox denials in TUI history / logs
Actions:
- Retry with required approvals (or YOLO only when appropriate)
- Temporarily disable failing MCP server and isolate issue
- Re-enable after verification with
/mcpdiagnostics
Post-Incident Checklist
- Preserve logs and relevant state files
- Record trigger, impact, and mitigation
- Add or update regression tests (retry/recovery/schema)
- Update this runbook and architecture docs if behavior changed