Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions agent_cli/daemon/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

from agent_cli.cli import app as main_app
from agent_cli.core.utils import console, err_console
from agent_cli.daemon import transcribe_recorder
from agent_cli.install.service_config import (
SERVICES,
ServiceStatus,
Expand Down Expand Up @@ -70,6 +71,11 @@
no_args_is_help=True,
)
main_app.add_typer(app, name="daemon", rich_help_panel="Servers")
app.add_typer(
transcribe_recorder.app,
name="transcribe-recorder",
rich_help_panel="Daemon Commands",
)


@app.command("status")
Expand Down
Loading
Loading