-
Notifications
You must be signed in to change notification settings - Fork 442
Expand file tree
/
Copy pathcli.py
More file actions
897 lines (747 loc) · 35.1 KB
/
Copy pathcli.py
File metadata and controls
897 lines (747 loc) · 35.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
"""
Mini Agent - Interactive Runtime Example
Usage:
mini-agent [--workspace DIR] [--task TASK]
Examples:
mini-agent # Use current directory as workspace (interactive mode)
mini-agent --workspace /path/to/dir # Use specific workspace directory (interactive mode)
mini-agent --task "create a file" # Execute a task non-interactively
"""
import argparse
import asyncio
import platform
import subprocess
import sys
import threading
from datetime import datetime
from pathlib import Path
from typing import List
from prompt_toolkit import PromptSession
from prompt_toolkit.auto_suggest import AutoSuggestFromHistory
from prompt_toolkit.completion import WordCompleter
from prompt_toolkit.history import FileHistory
from prompt_toolkit.key_binding import KeyBindings
from prompt_toolkit.styles import Style
from mini_agent import LLMClient
from mini_agent.agent import Agent
from mini_agent.config import Config
from mini_agent.schema import LLMProvider
from mini_agent.tools.base import Tool
from mini_agent.tools.bash_tool import BashKillTool, BashOutputTool, BashTool
from mini_agent.tools.file_tools import EditTool, ReadTool, WriteTool
from mini_agent.tools.note_tool import SessionNoteTool
from mini_agent.tools.skill_tool import create_skill_tools
# Try to import MCP tools, but don't fail if they're not available
try:
from mini_agent.tools.mcp_loader import cleanup_mcp_connections, load_mcp_tools_async, set_mcp_timeout_config
MCP_AVAILABLE = True
except ImportError:
MCP_AVAILABLE = False
from mini_agent.utils import calculate_display_width
# ANSI color codes
class Colors:
"""Terminal color definitions"""
RESET = "\033[0m"
BOLD = "\033[1m"
DIM = "\033[2m"
# Foreground colors
BLACK = "\033[30m"
RED = "\033[31m"
GREEN = "\033[32m"
YELLOW = "\033[33m"
BLUE = "\033[34m"
MAGENTA = "\033[35m"
CYAN = "\033[36m"
WHITE = "\033[37m"
# Bright colors
BRIGHT_BLACK = "\033[90m"
BRIGHT_RED = "\033[91m"
BRIGHT_GREEN = "\033[92m"
BRIGHT_YELLOW = "\033[93m"
BRIGHT_BLUE = "\033[94m"
BRIGHT_MAGENTA = "\033[95m"
BRIGHT_CYAN = "\033[96m"
BRIGHT_WHITE = "\033[97m"
# Background colors
BG_RED = "\033[41m"
BG_GREEN = "\033[42m"
BG_YELLOW = "\033[43m"
BG_BLUE = "\033[44m"
def get_log_directory() -> Path:
"""Get the log directory path."""
return Path.home() / ".mini-agent" / "log"
def show_log_directory(open_file_manager: bool = True) -> None:
"""Show log directory contents and optionally open file manager.
Args:
open_file_manager: Whether to open the system file manager
"""
log_dir = get_log_directory()
print(f"\n{Colors.BRIGHT_CYAN}📁 Log Directory: {log_dir}{Colors.RESET}")
if not log_dir.exists() or not log_dir.is_dir():
print(f"{Colors.RED}Log directory does not exist: {log_dir}{Colors.RESET}\n")
return
log_files = list(log_dir.glob("*.log"))
if not log_files:
print(f"{Colors.YELLOW}No log files found in directory.{Colors.RESET}\n")
return
# Sort by modification time (newest first)
log_files.sort(key=lambda x: x.stat().st_mtime, reverse=True)
print(f"{Colors.DIM}{'─' * 60}{Colors.RESET}")
print(f"{Colors.BOLD}{Colors.BRIGHT_YELLOW}Available Log Files (newest first):{Colors.RESET}")
for i, log_file in enumerate(log_files[:10], 1):
mtime = datetime.fromtimestamp(log_file.stat().st_mtime)
size = log_file.stat().st_size
size_str = f"{size:,}" if size < 1024 else f"{size / 1024:.1f}K"
print(f" {Colors.GREEN}{i:2d}.{Colors.RESET} {Colors.BRIGHT_WHITE}{log_file.name}{Colors.RESET}")
print(f" {Colors.DIM}Modified: {mtime.strftime('%Y-%m-%d %H:%M:%S')}, Size: {size_str}{Colors.RESET}")
if len(log_files) > 10:
print(f" {Colors.DIM}... and {len(log_files) - 10} more files{Colors.RESET}")
print(f"{Colors.DIM}{'─' * 60}{Colors.RESET}")
# Open file manager
if open_file_manager:
_open_directory_in_file_manager(log_dir)
print()
def _open_directory_in_file_manager(directory: Path) -> None:
"""Open directory in system file manager (cross-platform)."""
system = platform.system()
try:
if system == "Darwin":
subprocess.run(["open", str(directory)], check=False)
elif system == "Windows":
subprocess.run(["explorer", str(directory)], check=False)
elif system == "Linux":
subprocess.run(["xdg-open", str(directory)], check=False)
except FileNotFoundError:
print(f"{Colors.YELLOW}Could not open file manager. Please navigate manually.{Colors.RESET}")
except Exception as e:
print(f"{Colors.YELLOW}Error opening file manager: {e}{Colors.RESET}")
def read_log_file(filename: str) -> None:
"""Read and display a specific log file.
Args:
filename: The log filename to read
"""
log_dir = get_log_directory()
log_file = log_dir / filename
if not log_file.exists() or not log_file.is_file():
print(f"\n{Colors.RED}❌ Log file not found: {log_file}{Colors.RESET}\n")
return
print(f"\n{Colors.BRIGHT_CYAN}📄 Reading: {log_file}{Colors.RESET}")
print(f"{Colors.DIM}{'─' * 80}{Colors.RESET}")
try:
with open(log_file, "r", encoding="utf-8") as f:
content = f.read()
print(content)
print(f"{Colors.DIM}{'─' * 80}{Colors.RESET}")
print(f"\n{Colors.GREEN}✅ End of file{Colors.RESET}\n")
except Exception as e:
print(f"\n{Colors.RED}❌ Error reading file: {e}{Colors.RESET}\n")
def print_banner():
"""Print welcome banner with proper alignment"""
BOX_WIDTH = 58
banner_text = f"{Colors.BOLD}🤖 Mini Agent - Multi-turn Interactive Session{Colors.RESET}"
banner_width = calculate_display_width(banner_text)
# Center the text with proper padding
total_padding = BOX_WIDTH - banner_width
left_padding = total_padding // 2
right_padding = total_padding - left_padding
print()
print(f"{Colors.BOLD}{Colors.BRIGHT_CYAN}╔{'═' * BOX_WIDTH}╗{Colors.RESET}")
print(
f"{Colors.BOLD}{Colors.BRIGHT_CYAN}║{Colors.RESET}{' ' * left_padding}{banner_text}{' ' * right_padding}{Colors.BOLD}{Colors.BRIGHT_CYAN}║{Colors.RESET}"
)
print(f"{Colors.BOLD}{Colors.BRIGHT_CYAN}╚{'═' * BOX_WIDTH}╝{Colors.RESET}")
print()
def print_help():
"""Print help information"""
help_text = f"""
{Colors.BOLD}{Colors.BRIGHT_YELLOW}Available Commands:{Colors.RESET}
{Colors.BRIGHT_GREEN}/help{Colors.RESET} - Show this help message
{Colors.BRIGHT_GREEN}/skills{Colors.RESET} - List all installed skills
{Colors.BRIGHT_GREEN}/clear{Colors.RESET} - Clear session history (keep system prompt)
{Colors.BRIGHT_GREEN}/history{Colors.RESET} - Show current session message count
{Colors.BRIGHT_GREEN}/stats{Colors.RESET} - Show session statistics
{Colors.BRIGHT_GREEN}/log{Colors.RESET} - Show log directory and recent files
{Colors.BRIGHT_GREEN}/log <file>{Colors.RESET} - Read a specific log file
{Colors.BRIGHT_GREEN}/exit{Colors.RESET} - Exit program (also: exit, quit, q)
{Colors.BOLD}{Colors.BRIGHT_YELLOW}Keyboard Shortcuts:{Colors.RESET}
{Colors.BRIGHT_CYAN}Esc{Colors.RESET} - Cancel current agent execution
{Colors.BRIGHT_CYAN}Ctrl+C{Colors.RESET} - Exit program
{Colors.BRIGHT_CYAN}Ctrl+U{Colors.RESET} - Clear current input line
{Colors.BRIGHT_CYAN}Ctrl+L{Colors.RESET} - Clear screen
{Colors.BRIGHT_CYAN}Ctrl+J{Colors.RESET} - Insert newline (also Ctrl+Enter)
{Colors.BRIGHT_CYAN}Tab{Colors.RESET} - Auto-complete commands
{Colors.BRIGHT_CYAN}↑/↓{Colors.RESET} - Browse command history
{Colors.BRIGHT_CYAN}→{Colors.RESET} - Accept auto-suggestion
{Colors.BOLD}{Colors.BRIGHT_YELLOW}Usage:{Colors.RESET}
- Enter your task directly, Agent will help you complete it
- Agent remembers all conversation content in this session
- Use {Colors.BRIGHT_GREEN}/clear{Colors.RESET} to start a new session
- Press {Colors.BRIGHT_CYAN}Enter{Colors.RESET} to submit your message
- Use {Colors.BRIGHT_CYAN}Ctrl+J{Colors.RESET} to insert line breaks within your message
"""
print(help_text)
def print_session_info(agent: Agent, workspace_dir: Path, model: str):
"""Print session information with proper alignment"""
BOX_WIDTH = 58
def print_info_line(text: str):
"""Print a single info line with proper padding"""
# Account for leading space
text_width = calculate_display_width(text)
padding = max(0, BOX_WIDTH - 1 - text_width)
print(f"{Colors.DIM}│{Colors.RESET} {text}{' ' * padding}{Colors.DIM}│{Colors.RESET}")
# Top border
print(f"{Colors.DIM}┌{'─' * BOX_WIDTH}┐{Colors.RESET}")
# Header (centered)
header_text = f"{Colors.BRIGHT_CYAN}Session Info{Colors.RESET}"
header_width = calculate_display_width(header_text)
header_padding_total = BOX_WIDTH - 1 - header_width # -1 for leading space
header_padding_left = header_padding_total // 2
header_padding_right = header_padding_total - header_padding_left
print(f"{Colors.DIM}│{Colors.RESET} {' ' * header_padding_left}{header_text}{' ' * header_padding_right}{Colors.DIM}│{Colors.RESET}")
# Divider
print(f"{Colors.DIM}├{'─' * BOX_WIDTH}┤{Colors.RESET}")
# Info lines
print_info_line(f"Model: {model}")
print_info_line(f"Workspace: {workspace_dir}")
print_info_line(f"Message History: {len(agent.messages)} messages")
print_info_line(f"Available Tools: {len(agent.tools)} tools")
# Bottom border
print(f"{Colors.DIM}└{'─' * BOX_WIDTH}┘{Colors.RESET}")
print()
print(f"{Colors.DIM}Type {Colors.BRIGHT_GREEN}/help{Colors.DIM} for help, {Colors.BRIGHT_GREEN}/exit{Colors.DIM} to quit{Colors.RESET}")
print()
def print_stats(agent: Agent, session_start: datetime):
"""Print session statistics"""
duration = datetime.now() - session_start
hours, remainder = divmod(int(duration.total_seconds()), 3600)
minutes, seconds = divmod(remainder, 60)
# Count different types of messages
user_msgs = sum(1 for m in agent.messages if m.role == "user")
assistant_msgs = sum(1 for m in agent.messages if m.role == "assistant")
tool_msgs = sum(1 for m in agent.messages if m.role == "tool")
print(f"\n{Colors.BOLD}{Colors.BRIGHT_CYAN}Session Statistics:{Colors.RESET}")
print(f"{Colors.DIM}{'─' * 40}{Colors.RESET}")
print(f" Session Duration: {hours:02d}:{minutes:02d}:{seconds:02d}")
print(f" Total Messages: {len(agent.messages)}")
print(f" - User Messages: {Colors.BRIGHT_GREEN}{user_msgs}{Colors.RESET}")
print(f" - Assistant Replies: {Colors.BRIGHT_BLUE}{assistant_msgs}{Colors.RESET}")
print(f" - Tool Calls: {Colors.BRIGHT_YELLOW}{tool_msgs}{Colors.RESET}")
print(f" Available Tools: {len(agent.tools)}")
if agent.api_total_tokens > 0:
print(f" API Tokens Used: {Colors.BRIGHT_MAGENTA}{agent.api_total_tokens:,}{Colors.RESET}")
print(f"{Colors.DIM}{'─' * 40}{Colors.RESET}\n")
def parse_args() -> argparse.Namespace:
"""Parse command line arguments
Returns:
Parsed arguments
"""
parser = argparse.ArgumentParser(
description="Mini Agent - AI assistant with file tools and MCP support",
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog="""
Examples:
mini-agent # Use current directory as workspace
mini-agent --workspace /path/to/dir # Use specific workspace directory
mini-agent log # Show log directory and recent files
mini-agent log agent_run_xxx.log # Read a specific log file
""",
)
parser.add_argument(
"--workspace",
"-w",
type=str,
default=None,
help="Workspace directory (default: current directory)",
)
parser.add_argument(
"--task",
"-t",
type=str,
default=None,
help="Execute a task non-interactively and exit",
)
parser.add_argument(
"--version",
"-v",
action="version",
version="mini-agent 0.1.0",
)
# Subcommands
subparsers = parser.add_subparsers(dest="command", help="Available commands")
# log subcommand
log_parser = subparsers.add_parser("log", help="Show log directory or read log files")
log_parser.add_argument(
"filename",
nargs="?",
default=None,
help="Log filename to read (optional, shows directory if omitted)",
)
return parser.parse_args()
async def initialize_base_tools(config: Config):
"""Initialize base tools (independent of workspace)
These tools are loaded from package configuration and don't depend on workspace.
Note: File tools are now workspace-dependent and initialized in add_workspace_tools()
Args:
config: Configuration object
Returns:
Tuple of (list of tools, skill loader if skills enabled)
"""
tools = []
skill_loader = None
# 1. Bash auxiliary tools (output monitoring and kill)
# Note: BashTool itself is created in add_workspace_tools() with workspace_dir as cwd
if config.tools.enable_bash:
bash_output_tool = BashOutputTool()
tools.append(bash_output_tool)
print(f"{Colors.GREEN}✅ Loaded Bash Output tool{Colors.RESET}")
bash_kill_tool = BashKillTool()
tools.append(bash_kill_tool)
print(f"{Colors.GREEN}✅ Loaded Bash Kill tool{Colors.RESET}")
# 3. Claude Skills (loaded from package directory)
if config.tools.enable_skills:
print(f"{Colors.BRIGHT_CYAN}Loading Claude Skills...{Colors.RESET}")
try:
# Resolve skills directory with priority search
# Expand ~ to user home directory for portability
skills_path = Path(config.tools.skills_dir).expanduser()
if skills_path.is_absolute():
skills_dir = str(skills_path)
else:
# Search in priority order:
# 1. Current directory (dev mode: ./skills or ./mini_agent/skills)
# 2. Package directory (installed: site-packages/mini_agent/skills)
search_paths = [
skills_path, # ./skills for backward compatibility
Path("mini_agent") / skills_path, # ./mini_agent/skills
Config.get_package_dir() / skills_path, # site-packages/mini_agent/skills
]
# Find first existing path
skills_dir = str(skills_path) # default
for path in search_paths:
if path.exists():
skills_dir = str(path.resolve())
break
skill_tools, skill_loader = create_skill_tools(skills_dir)
if skill_tools:
tools.extend(skill_tools)
print(f"{Colors.GREEN}✅ Loaded Skill tool (get_skill){Colors.RESET}")
else:
print(f"{Colors.YELLOW}⚠️ No available Skills found{Colors.RESET}")
except Exception as e:
print(f"{Colors.YELLOW}⚠️ Failed to load Skills: {e}{Colors.RESET}")
# 4. MCP tools (loaded with priority search)
if config.tools.enable_mcp and MCP_AVAILABLE:
print(f"{Colors.BRIGHT_CYAN}Loading MCP tools...{Colors.RESET}")
try:
# Apply MCP timeout configuration from config.yaml
mcp_config = config.tools.mcp
set_mcp_timeout_config(
connect_timeout=mcp_config.connect_timeout,
execute_timeout=mcp_config.execute_timeout,
sse_read_timeout=mcp_config.sse_read_timeout,
)
print(
f"{Colors.DIM} MCP timeouts: connect={mcp_config.connect_timeout}s, "
f"execute={mcp_config.execute_timeout}s, sse_read={mcp_config.sse_read_timeout}s{Colors.RESET}"
)
# Use priority search for mcp.json
mcp_config_path = Config.find_config_file(config.tools.mcp_config_path)
if mcp_config_path:
mcp_tools = await load_mcp_tools_async(str(mcp_config_path))
if mcp_tools:
tools.extend(mcp_tools)
print(f"{Colors.GREEN}✅ Loaded {len(mcp_tools)} MCP tools (from: {mcp_config_path}){Colors.RESET}")
else:
print(f"{Colors.YELLOW}⚠️ No available MCP tools found{Colors.RESET}")
else:
print(f"{Colors.YELLOW}⚠️ MCP config file not found: {config.tools.mcp_config_path}{Colors.RESET}")
except Exception as e:
print(f"{Colors.YELLOW}⚠️ Failed to load MCP tools: {e}{Colors.RESET}")
elif config.tools.enable_mcp:
print(f"{Colors.YELLOW}⚠️ MCP tools not available (mcp module not installed){Colors.RESET}")
print() # Empty line separator
return tools, skill_loader
def add_workspace_tools(tools: List[Tool], config: Config, workspace_dir: Path):
"""Add workspace-dependent tools
These tools need to know the workspace directory.
Args:
tools: Existing tools list to add to
config: Configuration object
workspace_dir: Workspace directory path
"""
# Ensure workspace directory exists
workspace_dir.mkdir(parents=True, exist_ok=True)
# Bash tool - needs workspace as cwd for command execution
if config.tools.enable_bash:
bash_tool = BashTool(workspace_dir=str(workspace_dir))
tools.append(bash_tool)
print(f"{Colors.GREEN}✅ Loaded Bash tool (cwd: {workspace_dir}){Colors.RESET}")
# File tools - need workspace to resolve relative paths
if config.tools.enable_file_tools:
tools.extend(
[
ReadTool(workspace_dir=str(workspace_dir)),
WriteTool(workspace_dir=str(workspace_dir)),
EditTool(workspace_dir=str(workspace_dir)),
]
)
print(f"{Colors.GREEN}✅ Loaded file operation tools (workspace: {workspace_dir}){Colors.RESET}")
# Session note tool - needs workspace to store memory file
if config.tools.enable_note:
tools.append(SessionNoteTool(memory_file=str(workspace_dir / ".agent_memory.json")))
print(f"{Colors.GREEN}✅ Loaded session note tool{Colors.RESET}")
async def _quiet_cleanup():
"""Clean up MCP connections, suppressing noisy asyncgen teardown tracebacks."""
if MCP_AVAILABLE:
# Silence the asyncgen finalization noise that anyio/mcp emits when
# stdio_client's task group is torn down across tasks. The handler is
# intentionally NOT restored: asyncgen finalization happens during
# asyncio.run() shutdown (after run_agent returns), so restoring the
# handler here would still let the noise through. Since this runs
# right before process exit, swallowing late exceptions is safe.
loop = asyncio.get_event_loop()
loop.set_exception_handler(lambda _loop, _ctx: None)
try:
await cleanup_mcp_connections()
except Exception:
pass
async def run_agent(workspace_dir: Path, task: str = None):
"""Run Agent in interactive or non-interactive mode.
Args:
workspace_dir: Workspace directory path
task: If provided, execute this task and exit (non-interactive mode)
"""
session_start = datetime.now()
# 1. Load configuration from package directory
config_path = Config.get_default_config_path()
if not config_path.exists():
print(f"{Colors.RED}❌ Configuration file not found{Colors.RESET}")
print()
print(f"{Colors.BRIGHT_CYAN}📦 Configuration Search Path:{Colors.RESET}")
print(f" {Colors.DIM}1) mini_agent/config/config.yaml{Colors.RESET} (development)")
print(f" {Colors.DIM}2) ~/.mini-agent/config/config.yaml{Colors.RESET} (user)")
print(f" {Colors.DIM}3) <package>/config/config.yaml{Colors.RESET} (installed)")
print()
print(f"{Colors.BRIGHT_YELLOW}🚀 Quick Setup (Recommended):{Colors.RESET}")
print(
f" {Colors.BRIGHT_GREEN}curl -fsSL https://raw.githubusercontent.com/MiniMax-AI/Mini-Agent/main/scripts/setup-config.sh | bash{Colors.RESET}"
)
print()
print(f"{Colors.DIM} This will automatically:{Colors.RESET}")
print(f"{Colors.DIM} • Create ~/.mini-agent/config/{Colors.RESET}")
print(f"{Colors.DIM} • Download configuration files{Colors.RESET}")
print(f"{Colors.DIM} • Guide you to add your API Key{Colors.RESET}")
print()
print(f"{Colors.BRIGHT_YELLOW}📝 Manual Setup:{Colors.RESET}")
user_config_dir = Path.home() / ".mini-agent" / "config"
example_config = Config.get_package_dir() / "config" / "config-example.yaml"
print(f" {Colors.DIM}mkdir -p {user_config_dir}{Colors.RESET}")
print(f" {Colors.DIM}cp {example_config} {user_config_dir}/config.yaml{Colors.RESET}")
print(f" {Colors.DIM}# Then edit {user_config_dir}/config.yaml to add your API Key{Colors.RESET}")
print()
return
try:
config = Config.from_yaml(config_path)
except FileNotFoundError:
print(f"{Colors.RED}❌ Error: Configuration file not found: {config_path}{Colors.RESET}")
return
except ValueError as e:
print(f"{Colors.RED}❌ Error: {e}{Colors.RESET}")
print(f"{Colors.YELLOW}Please check the configuration file format{Colors.RESET}")
return
except Exception as e:
print(f"{Colors.RED}❌ Error: Failed to load configuration file: {e}{Colors.RESET}")
return
# 2. Initialize LLM client
from mini_agent.retry import RetryConfig as RetryConfigBase
# Convert configuration format
retry_config = RetryConfigBase(
enabled=config.llm.retry.enabled,
max_retries=config.llm.retry.max_retries,
initial_delay=config.llm.retry.initial_delay,
max_delay=config.llm.retry.max_delay,
exponential_base=config.llm.retry.exponential_base,
retryable_exceptions=(Exception,),
)
# Create retry callback function to display retry information in terminal
def on_retry(exception: Exception, attempt: int):
"""Retry callback function to display retry information"""
print(f"\n{Colors.BRIGHT_YELLOW}⚠️ LLM call failed (attempt {attempt}): {str(exception)}{Colors.RESET}")
next_delay = retry_config.calculate_delay(attempt - 1)
print(f"{Colors.DIM} Retrying in {next_delay:.1f}s (attempt {attempt + 1})...{Colors.RESET}")
# Convert provider string to LLMProvider enum
provider = LLMProvider.ANTHROPIC if config.llm.provider.lower() == "anthropic" else LLMProvider.OPENAI
llm_client = LLMClient(
api_key=config.llm.api_key,
provider=provider,
api_base=config.llm.api_base,
model=config.llm.model,
retry_config=retry_config if config.llm.retry.enabled else None,
)
# Set retry callback
if config.llm.retry.enabled:
llm_client.retry_callback = on_retry
print(f"{Colors.GREEN}✅ LLM retry mechanism enabled (max {config.llm.retry.max_retries} retries){Colors.RESET}")
# 3. Initialize base tools (independent of workspace)
tools, skill_loader = await initialize_base_tools(config)
# 4. Add workspace-dependent tools
add_workspace_tools(tools, config, workspace_dir)
# 5. Load System Prompt (with priority search)
system_prompt_path = Config.find_config_file(config.agent.system_prompt_path)
if system_prompt_path and system_prompt_path.exists():
system_prompt = system_prompt_path.read_text(encoding="utf-8")
print(f"{Colors.GREEN}✅ Loaded system prompt (from: {system_prompt_path}){Colors.RESET}")
else:
system_prompt = "You are Mini-Agent, an intelligent assistant powered by MiniMax M2.5 that can help users complete various tasks."
print(f"{Colors.YELLOW}⚠️ System prompt not found, using default{Colors.RESET}")
# 6. Inject Skills Metadata into System Prompt (Progressive Disclosure - Level 1)
if skill_loader:
skills_metadata = skill_loader.get_skills_metadata_prompt()
if skills_metadata:
# Replace placeholder with actual metadata
system_prompt = system_prompt.replace("{SKILLS_METADATA}", skills_metadata)
print(f"{Colors.GREEN}✅ Injected {len(skill_loader.loaded_skills)} skills metadata into system prompt{Colors.RESET}")
else:
# Remove placeholder if no skills
system_prompt = system_prompt.replace("{SKILLS_METADATA}", "")
else:
# Remove placeholder if skills not enabled
system_prompt = system_prompt.replace("{SKILLS_METADATA}", "")
# 7. Create Agent
agent = Agent(
llm_client=llm_client,
system_prompt=system_prompt,
tools=tools,
max_steps=config.agent.max_steps,
workspace_dir=str(workspace_dir),
)
# 8. Display welcome information
if not task:
print_banner()
print_session_info(agent, workspace_dir, config.llm.model)
# 8.5 Non-interactive mode: execute task and exit
if task:
print(f"\n{Colors.BRIGHT_BLUE}Agent{Colors.RESET} {Colors.DIM}›{Colors.RESET} {Colors.DIM}Executing task...{Colors.RESET}\n")
agent.add_user_message(task)
try:
await agent.run()
except Exception as e:
print(f"\n{Colors.RED}❌ Error: {e}{Colors.RESET}")
finally:
print_stats(agent, session_start)
# Cleanup MCP connections
await _quiet_cleanup()
return
# 9. Setup prompt_toolkit session
# Command completer
command_completer = WordCompleter(
["/help", "/clear", "/history", "/stats", "/log", "/exit", "/quit", "/q"],
ignore_case=True,
sentence=True,
)
# Custom style for prompt
prompt_style = Style.from_dict(
{
"prompt": "#00ff00 bold", # Green and bold
"separator": "#666666", # Gray
}
)
# Custom key bindings
kb = KeyBindings()
@kb.add("c-u") # Ctrl+U: Clear current line
def _(event):
"""Clear the current input line"""
event.current_buffer.reset()
@kb.add("c-l") # Ctrl+L: Clear screen (optional bonus)
def _(event):
"""Clear the screen"""
event.app.renderer.clear()
@kb.add("c-j") # Ctrl+J (对应 Ctrl+Enter)
def _(event):
"""Insert a newline"""
event.current_buffer.insert_text("\n")
# Create prompt session with history and auto-suggest
# Use FileHistory for persistent history across sessions (stored in user's home directory)
history_file = Path.home() / ".mini-agent" / ".history"
history_file.parent.mkdir(parents=True, exist_ok=True)
session = PromptSession(
history=FileHistory(str(history_file)),
auto_suggest=AutoSuggestFromHistory(),
completer=command_completer,
style=prompt_style,
key_bindings=kb,
)
# 10. Interactive loop
while True:
try:
# Get user input using prompt_toolkit
user_input = await session.prompt_async(
[
("class:prompt", "You"),
("", " › "),
],
multiline=False,
enable_history_search=True,
)
user_input = user_input.strip()
if not user_input:
continue
# Handle commands
if user_input.startswith("/"):
command = user_input.lower()
if command in ["/exit", "/quit", "/q"]:
print(f"\n{Colors.BRIGHT_YELLOW}👋 Goodbye! Thanks for using Mini Agent{Colors.RESET}\n")
print_stats(agent, session_start)
break
elif command == "/help":
print_help()
continue
elif command == "/skills":
# List all installed skills
if skill_loader and skill_loader.loaded_skills:
skills = sorted(skill_loader.loaded_skills.keys())
print(f"\n{Colors.BRIGHT_CYAN}📦 Installed Skills ({len(skills)}):{Colors.RESET}\n")
for i, skill_name in enumerate(skills, 1):
skill = skill_loader.loaded_skills[skill_name]
desc = skill.description[:60] if skill.description else "No description"
print(f" {i}. {Colors.BRIGHT_GREEN}{skill_name}{Colors.RESET} - {desc}")
print(f"\n{Colors.DIM}Use get_skill(skill_name) to load a skill{Colors.RESET}\n")
else:
print(f"\n{Colors.YELLOW}⚠️ No skills loaded{Colors.RESET}\n")
continue
elif command == "/clear":
# Clear message history but keep system prompt
old_count = len(agent.messages)
agent.messages = [agent.messages[0]] # Keep only system message
print(f"{Colors.GREEN}✅ Cleared {old_count - 1} messages, starting new session{Colors.RESET}\n")
continue
elif command == "/history":
print(f"\n{Colors.BRIGHT_CYAN}Current session message count: {len(agent.messages)}{Colors.RESET}\n")
continue
elif command == "/stats":
print_stats(agent, session_start)
continue
elif command == "/log" or command.startswith("/log "):
# Parse /log command
parts = user_input.split(maxsplit=1)
if len(parts) == 1:
# /log - show log directory
show_log_directory(open_file_manager=True)
else:
# /log <filename> - read specific log file
filename = parts[1].strip("\"'")
read_log_file(filename)
continue
else:
print(f"{Colors.RED}❌ Unknown command: {user_input}{Colors.RESET}")
print(f"{Colors.DIM}Type /help to see available commands{Colors.RESET}\n")
continue
# Normal conversation - exit check
if user_input.lower() in ["exit", "quit", "q"]:
print(f"\n{Colors.BRIGHT_YELLOW}👋 Goodbye! Thanks for using Mini Agent{Colors.RESET}\n")
print_stats(agent, session_start)
break
# Run Agent with Esc cancellation support
print(
f"\n{Colors.BRIGHT_BLUE}Agent{Colors.RESET} {Colors.DIM}›{Colors.RESET} {Colors.DIM}Thinking... (Esc to cancel){Colors.RESET}\n"
)
agent.add_user_message(user_input)
# Create cancellation event
cancel_event = asyncio.Event()
agent.cancel_event = cancel_event
# Esc key listener thread
esc_listener_stop = threading.Event()
esc_cancelled = [False] # Mutable container for thread access
def esc_key_listener():
"""Listen for Esc key in a separate thread."""
if platform.system() == "Windows":
try:
import msvcrt
while not esc_listener_stop.is_set():
if msvcrt.kbhit():
char = msvcrt.getch()
if char == b"\x1b": # Esc
print(f"\n{Colors.BRIGHT_YELLOW}⏹️ Esc pressed, cancelling...{Colors.RESET}")
esc_cancelled[0] = True
cancel_event.set()
break
esc_listener_stop.wait(0.05)
except Exception:
pass
return
# Unix/macOS
try:
import select
import termios
import tty
fd = sys.stdin.fileno()
old_settings = termios.tcgetattr(fd)
try:
tty.setcbreak(fd)
while not esc_listener_stop.is_set():
rlist, _, _ = select.select([sys.stdin], [], [], 0.05)
if rlist:
char = sys.stdin.read(1)
if char == "\x1b": # Esc
print(f"\n{Colors.BRIGHT_YELLOW}⏹️ Esc pressed, cancelling...{Colors.RESET}")
esc_cancelled[0] = True
cancel_event.set()
break
finally:
termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
except Exception:
pass
# Start Esc listener thread
esc_thread = threading.Thread(target=esc_key_listener, daemon=True)
esc_thread.start()
# Run agent with periodic cancellation check
try:
agent_task = asyncio.create_task(agent.run())
# Poll for cancellation while agent runs
while not agent_task.done():
if esc_cancelled[0]:
cancel_event.set()
await asyncio.sleep(0.1)
# Get result
_ = agent_task.result()
except asyncio.CancelledError:
print(f"\n{Colors.BRIGHT_YELLOW}⚠️ Agent execution cancelled{Colors.RESET}")
finally:
agent.cancel_event = None
esc_listener_stop.set()
esc_thread.join(timeout=0.2)
# Visual separation
print(f"\n{Colors.DIM}{'─' * 60}{Colors.RESET}\n")
except KeyboardInterrupt:
print(f"\n\n{Colors.BRIGHT_YELLOW}👋 Interrupt signal detected, exiting...{Colors.RESET}\n")
print_stats(agent, session_start)
break
except Exception as e:
print(f"\n{Colors.RED}❌ Error: {e}{Colors.RESET}")
print(f"{Colors.DIM}{'─' * 60}{Colors.RESET}\n")
# 11. Cleanup MCP connections
await _quiet_cleanup()
def main():
"""Main entry point for CLI"""
# Parse command line arguments
args = parse_args()
# Handle log subcommand
if args.command == "log":
if args.filename:
read_log_file(args.filename)
else:
show_log_directory(open_file_manager=True)
return
# Determine workspace directory
# Expand ~ to user home directory for portability
if args.workspace:
workspace_dir = Path(args.workspace).expanduser().absolute()
else:
# Use current working directory
workspace_dir = Path.cwd()
# Ensure workspace directory exists
workspace_dir.mkdir(parents=True, exist_ok=True)
# Run the agent (config always loaded from package directory)
asyncio.run(run_agent(workspace_dir, task=args.task))
if __name__ == "__main__":
main()