Skip to content

Commit f2f15c0

Browse files
aboucaudclaude
andcommitted
feat(launcher): show rich panel suggesting /lc-new before handing off to Claude Code
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2ae1b46 commit f2f15c0

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/lightcone/engine/launcher.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,17 @@ def _exec_interactive(
615615
if os.environ.get("LIGHTCONE_LAUNCH_DEBUG"):
616616
_print(f"[lc launch debug] {' '.join(cmd)}")
617617

618+
from rich.panel import Panel
619+
620+
_console.print(
621+
Panel(
622+
"Run [bold cyan]/lc-new[/] to scaffold a new project and get started.",
623+
title="[bold]lightcone sandbox[/]",
624+
border_style="cyan",
625+
expand=False,
626+
)
627+
)
628+
618629
os.execvp(cmd[0], cmd)
619630

620631

0 commit comments

Comments
 (0)