MCPcopy Create free account
hub / github.com/AutoForgeAI/autoforge / display_menu

Function display_menu

start.py:82–93  ·  view source on GitHub ↗

Display the main menu.

(projects: list[tuple[str, Path]])

Source from the content-addressed store, hash-verified

80
81
82def display_menu(projects: list[tuple[str, Path]]) -> None:
83 """Display the main menu."""
84 print("\n" + "=" * 50)
85 print(" AutoForge - Autonomous Coding Agent")
86 print("=" * 50)
87 print("\n[1] Create new project")
88
89 if projects:
90 print("[2] Continue existing project")
91
92 print("[q] Quit")
93 print()
94
95
96def display_projects(projects: list[tuple[str, Path]]) -> None:

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected