You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generate human-readable activity status messages during long-running agent executions so users can see what the agent is doing (e.g., "Searching codebase...", "Analyzing 15 files...", "Writing test cases...").
Prior Art
AutoGPT generates activity status updates during graph execution — each block emits a status string that's streamed to the UI in real-time. Users see "Running code block...", "Waiting for API response...", "Processing 3/5 items..." instead of a blank spinner.
OpenClaw shows tool names during execution but lacks descriptive progress messages.
Motivation
RustyClaw's TUI currently shows streaming LLM responses, but during tool execution (especially long-running commands, web fetches, or multi-step operations), users see minimal feedback. Activity status messages improve UX by making the agent's work transparent.
Summary
Generate human-readable activity status messages during long-running agent executions so users can see what the agent is doing (e.g., "Searching codebase...", "Analyzing 15 files...", "Writing test cases...").
Prior Art
Motivation
RustyClaw's TUI currently shows streaming LLM responses, but during tool execution (especially long-running commands, web fetches, or multi-step operations), users see minimal feedback. Activity status messages improve UX by making the agent's work transparent.
Proposed Design
execute_command: "Runningcargo test..."web_fetch: "Fetching https://example.com (2.3 KB received)..."search_files: "Searching 142 files for pattern..."sessions_spawn: "Spawning sub-agent for code review..."Acceptance Criteria
Related Issues