We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8ddda9a + 89e59de commit 7b8e3a6Copy full SHA for 7b8e3a6
3 files changed
memanto/cli/commands/connect.py
@@ -379,7 +379,7 @@ def connect_list(
379
installed_global = {a.name for a in detect_memanto_installed_global()}
380
381
table = Table(show_header=True, header_style=BOLD_PRIMARY)
382
- table.add_column("Agent", style=BRIGHT)
+ table.add_column("Agent Name", style=PRIMARY)
383
table.add_column("Detected", justify="center", width=10)
384
table.add_column("Local", justify="center", width=10)
385
table.add_column("Global", justify="center", width=10)
@@ -395,7 +395,7 @@ def connect_list(
395
global_icon = "[green]●[/green]" if is_global else "[dim]○[/dim]"
396
397
table.add_row(
398
- agent.display_name,
+ agent.name,
399
det_icon,
400
local_icon,
401
global_icon,
memanto/cli/commands/core.py
@@ -18,7 +18,6 @@
18
BOLD_BRIGHT,
19
BOLD_PRIMARY,
20
BRIGHT,
21
- ERROR,
22
PRIMARY,
23
SUCCESS,
24
WARNING,
memanto/cli/ui/display.py
@@ -157,15 +157,15 @@ def show_welcome_banner(config_manager: ConfigManager) -> None:
157
console.print(Rule("Quick Start", style=PRIMARY))
158
159
commands = [
160
- ("memanto status", "Full dashboard"),
161
("memanto agent create <agent_name_or_id>", "Create a new memanto agent"),
162
- ("memanto agent activate <agent_name_or_id>", "Begin a session"),
163
('memanto remember "..."', "Store a memory"),
164
('memanto recall "..."', "Search memories"),
165
('memanto answer "..."', "Ask a question (RAG)"),
166
("memanto connect list", "See agent integrations"),
167
("memanto connect <agent>", "Connect to an AI agent"),
168
- ("memanto serve", "Start API server"),
+ ("memanto ui", "Open the web dashboard UI"),
+ ("memanto status", "Full dashboard"),
+ ("memanto serve", "Start local REST API server"),
169
]
170
171
cmd_table = Table(show_header=False, box=None, padding=(0, 1), show_edge=False)
0 commit comments