Update description

This commit is contained in:
curo1305
2026-05-19 14:28:37 +02:00
parent b3851a2715
commit 01655124b5
2 changed files with 51 additions and 18 deletions
+8 -8
View File
@@ -174,7 +174,7 @@ def plugin_install(name: str) -> None:
install_bundled_plugin(name, bundled_dir, plugins_dir)
console.print(f"[green]Installed:[/green] {name}")
console.print(f" Enable: [dim]pyra plugin enable {name}[/dim]")
console.print(f" Confirm: [dim]pyra plugin setup {name}[/dim]")
console.print(f" Configure: [dim]pyra plugin setup {name}[/dim]")
except FileNotFoundError as exc:
console.print(f"[red]Error:[/red] {exc}")
except Exception as exc:
@@ -269,40 +269,40 @@ def daemon() -> None:
@daemon.command("start")
def daemon_start() -> None:
"""Start the Pyra daemon in the background."""
console.print("[yellow]Daemon (Stage 2.4) is not yet implemented.[/yellow]")
console.print("[yellow]Daemon (Stage 6) is not yet implemented.[/yellow]")
@daemon.command("stop")
def daemon_stop() -> None:
"""Stop the running Pyra daemon."""
console.print("[yellow]Daemon (Stage 2.4) is not yet implemented.[/yellow]")
console.print("[yellow]Daemon (Stage 6) is not yet implemented.[/yellow]")
@daemon.command("status")
def daemon_status() -> None:
"""Show daemon status."""
console.print("[yellow]Daemon (Stage 2.4) is not yet implemented.[/yellow]")
console.print("[yellow]Daemon (Stage 6) is not yet implemented.[/yellow]")
@daemon.command("restart")
def daemon_restart() -> None:
"""Restart the Pyra daemon."""
console.print("[yellow]Daemon (Stage 2.4) is not yet implemented.[/yellow]")
console.print("[yellow]Daemon (Stage 6) is not yet implemented.[/yellow]")
@daemon.command("install")
def daemon_install() -> None:
"""Install Pyra as a system service (launchd/systemd)."""
console.print("[yellow]Daemon service install (Stage 2.4) is not yet implemented.[/yellow]")
console.print("[yellow]Daemon service install (Stage 6) is not yet implemented.[/yellow]")
@daemon.command("uninstall")
def daemon_uninstall() -> None:
"""Remove the Pyra system service."""
console.print("[yellow]Daemon service uninstall (Stage 2.4) is not yet implemented.[/yellow]")
console.print("[yellow]Daemon service uninstall (Stage 6) is not yet implemented.[/yellow]")
@daemon.command("run", hidden=True)
def daemon_run() -> None:
"""Run daemon in foreground (used by service manager)."""
console.print("[yellow]Daemon (Stage 2.4) is not yet implemented.[/yellow]")
console.print("[yellow]Daemon (Stage 6) is not yet implemented.[/yellow]")