feat(zeph-core): add spinner status indicators for long-running operations#701
Merged
feat(zeph-core): add spinner status indicators for long-running operations#701
Conversation
…tions Add send_status() calls across agent subsystems so users see what the agent is doing during operations that exceed ~300ms: - "thinking..." before LLM inference calls - "running tool..." before tool execution - "matching skills..." during skill matching with embeddings - "building context..." during concurrent RAG context fetch - "reloading skills..." during hot-reload with re-embedding - "saving..." during message persistence - "reflecting..." during self-learning reflection - "connecting to mcp..." during MCP server connection All status indicators are cleared after completion, including error paths, to prevent stale spinner state. Closes #694, closes #695, closes #696, closes #697, closes #698, closes #699, closes #700
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
send_status()calls across 6 agent subsystem files to display spinner indicators during long-running operations (LLM inference, tool execution, skill matching, context building, persistence, MCP connection, self-learning)Channelis already availableCloses #694, closes #695, closes #696, closes #697, closes #698, closes #699, closes #700
Test plan
cargo +nightly fmt --checkpassescargo clippy --workspace -- -D warningspasses (0 warnings)cargo nextest run --workspace --lib --binspasses (2241 tests, 0 failures)