Context
packages/loopover-mcp/bin/loopover-mcp.js:58's CLI_COMMAND_SPEC entry for cache reads ["status", "clear"] — omitting "list". runCacheCli (line 2302) fully supports list/ls, and both printCacheHelp and the README document loopover-mcp cache list. Because CLI_COMMAND_SPEC is the single source used by buildBashCompletion/buildZshCompletion/buildFishCompletion/buildPowershellCompletion (lines 2565-2650) and suggestCommand's typo-suggester, this one stale entry silently breaks tab-completion for cache list (but not status/clear) across all four shells.
Requirements
- Add
"list" to CLI_COMMAND_SPEC's cache entry.
- Verify no other command in
CLI_COMMAND_SPEC has a similar stale/incomplete subcommand list by cross-checking each against its actual run*Cli implementation.
Test Coverage Requirements
Match this package's existing test conventions for completion-script generation; add a test confirming cache list appears in the generated completion output for at least one shell.
Deliverables
Expected Outcome
Tab-completion for loopover-mcp cache list works correctly across bash/zsh/fish/PowerShell.
Links & Resources
packages/loopover-mcp/bin/loopover-mcp.js:58,2302,2565-2650
Context
packages/loopover-mcp/bin/loopover-mcp.js:58'sCLI_COMMAND_SPECentry forcachereads["status", "clear"]— omitting"list".runCacheCli(line 2302) fully supportslist/ls, and bothprintCacheHelpand the README documentloopover-mcp cache list. BecauseCLI_COMMAND_SPECis the single source used bybuildBashCompletion/buildZshCompletion/buildFishCompletion/buildPowershellCompletion(lines 2565-2650) andsuggestCommand's typo-suggester, this one stale entry silently breaks tab-completion forcache list(but notstatus/clear) across all four shells.Requirements
"list"toCLI_COMMAND_SPEC'scacheentry.CLI_COMMAND_SPEChas a similar stale/incomplete subcommand list by cross-checking each against its actualrun*Cliimplementation.Test Coverage Requirements
Match this package's existing test conventions for completion-script generation; add a test confirming
cache listappears in the generated completion output for at least one shell.Deliverables
CLI_COMMAND_SPEC.cacheincludes"list".Expected Outcome
Tab-completion for
loopover-mcp cache listworks correctly across bash/zsh/fish/PowerShell.Links & Resources
packages/loopover-mcp/bin/loopover-mcp.js:58,2302,2565-2650