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
Fix help text alignment, remove redundant --pick flag, drop Aider agent (#27)
- Remove phantom 'e' key from Status tab help (never implemented)
- Add n/N search match navigation to Agents tab help (undocumented)
- Remove redundant --pick/-p flag from agents CLI (default behavior)
- Remove Aider from agent catalog (unused)
- Add Shell Completions section to README
- Update CLI CLAUDE.md with completions command and benchmarks symlink
- Remove stale --pick reference from README
- Bump version to 0.11.2
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
TUI and CLI for browsing AI models, benchmarks, coding agents, and statuses for AI providers.
10
10
11
11
-**Models Tab**: Browse 3,000+ models across 85+ providers from [models.dev](https://models.dev) with capability indicators, adaptive layouts, and provider categorization
12
-
-**Agents Tab**: Track AI coding assistants (Claude Code, Aider, Cursor, etc.) with version detection, changelogs, and GitHub integration
12
+
-**Agents Tab**: Track AI coding assistants (Claude Code, Cursor, Codex, etc.) with version detection, changelogs, and GitHub integration
13
13
-**Benchmarks Tab**: Compare model performance across 15+ benchmarks from [Artificial Analysis](https://artificialanalysis.ai), with head-to-head tables, scatter plots, radar charts, and creator filtering
14
14
-**Status Tab**: Monitor provider health with live incident tracking and scheduled maintenance across 21+ providers
15
15
@@ -412,7 +412,6 @@ agents claude --version 1.0.170 # Specific version
412
412
413
413
```bash
414
414
agents claude --list # List all versions
415
-
agents claude --pick # Alias for the interactive release browser
Copy file name to clipboardExpand all lines: src/cli/CLAUDE.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# CLI Module — Architecture & Patterns
2
2
3
3
## Module Purpose
4
-
Subcommands for models, benchmarks, agents: thin clap wrappers (`list.rs`, `search.rs`, `show.rs`, `benchmarks.rs`) that delegate to interactive pickers or direct output. Binary aliases support `models <cmd>`and `agents <cmd>` (detected via argv[0]).
4
+
Subcommands for models, benchmarks, agents: thin clap wrappers (`list.rs`, `search.rs`, `show.rs`, `benchmarks.rs`) that delegate to interactive pickers or direct output. Binary aliases support `models <cmd>`, `agents <cmd>`, and `benchmarks <cmd>` (detected via argv[0]).
5
5
6
6
## Shared Picker Infrastructure (`picker.rs`)
7
7
@@ -31,6 +31,8 @@ All 3 pickers (models, benchmarks, agents) follow the same lifecycle:
31
31
-`models list` — filters + sort, delegates to picker or table output
32
32
-`models search <query>` — keyword match, interactive picker for selection
33
33
-`models show <name>` — single-model detail view with benchmarks/capabilities
34
+
-`models providers` — list all providers, supports --json
-`models benchmarks` — interactive picker, can output JSON via --json
35
37
-`agents status|latest|list-sources` — table output; `agents status` sorts by most recently updated and includes a "Status" column with service health icons
36
38
-`agents <tool>` — release browser with changelog search (agents_ui.rs)
0 commit comments