Skip to content

Commit 7b8e3a6

Browse files
Merge pull request #19 from moorcheh-ai/fix/developer-exp
fix: update connect and status console output
2 parents 8ddda9a + 89e59de commit 7b8e3a6

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

memanto/cli/commands/connect.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def connect_list(
379379
installed_global = {a.name for a in detect_memanto_installed_global()}
380380

381381
table = Table(show_header=True, header_style=BOLD_PRIMARY)
382-
table.add_column("Agent", style=BRIGHT)
382+
table.add_column("Agent Name", style=PRIMARY)
383383
table.add_column("Detected", justify="center", width=10)
384384
table.add_column("Local", justify="center", width=10)
385385
table.add_column("Global", justify="center", width=10)
@@ -395,7 +395,7 @@ def connect_list(
395395
global_icon = "[green]●[/green]" if is_global else "[dim]○[/dim]"
396396

397397
table.add_row(
398-
agent.display_name,
398+
agent.name,
399399
det_icon,
400400
local_icon,
401401
global_icon,

memanto/cli/commands/core.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
BOLD_BRIGHT,
1919
BOLD_PRIMARY,
2020
BRIGHT,
21-
ERROR,
2221
PRIMARY,
2322
SUCCESS,
2423
WARNING,

memanto/cli/ui/display.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,15 +157,15 @@ def show_welcome_banner(config_manager: ConfigManager) -> None:
157157
console.print(Rule("Quick Start", style=PRIMARY))
158158

159159
commands = [
160-
("memanto status", "Full dashboard"),
161160
("memanto agent create <agent_name_or_id>", "Create a new memanto agent"),
162-
("memanto agent activate <agent_name_or_id>", "Begin a session"),
163161
('memanto remember "..."', "Store a memory"),
164162
('memanto recall "..."', "Search memories"),
165163
('memanto answer "..."', "Ask a question (RAG)"),
166164
("memanto connect list", "See agent integrations"),
167165
("memanto connect <agent>", "Connect to an AI agent"),
168-
("memanto serve", "Start API server"),
166+
("memanto ui", "Open the web dashboard UI"),
167+
("memanto status", "Full dashboard"),
168+
("memanto serve", "Start local REST API server"),
169169
]
170170

171171
cmd_table = Table(show_header=False, box=None, padding=(0, 1), show_edge=False)

0 commit comments

Comments
 (0)