-
Notifications
You must be signed in to change notification settings - Fork 66
[Audit] Add loading spinners to 43 commands missing progress feedback #88
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Problem
43 out of 60 commands have no spinner or progress indicator. Users see no feedback during potentially long operations — the CLI appears frozen.
Commands Missing Spinners
High-priority (perform I/O or network):
translate— converts between agent formats, can be slow for large skillspublish— submits to marketplacescan— security scanningagent(all subcommands) — agent detection, installationremove— filesystem operationssync— syncs across agentsmemory— 1,027 LOC, reads/writes statemesh— network operations
Medium-priority:
list,activity,context,session,learn,team,pluginagents-md,audit,cicd,command,create,doctor
Proposed Solution
Import spinner from onboarding/ and wrap I/O-heavy sections:
const s = spinner();
s.start('Translating skill...');
// ... work ...
s.stop('Translation complete');Acceptance Criteria
- All commands that perform I/O have spinner feedback
- Spinners are suppressed in
--quietand--jsonmodes - Build passes
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request