Execute Crona commands, manage the daemon process, and configure shell completions.
Crona is controlled via the crona executable. It acts as a client that routes instructions to crona-daemon over local IPC Unix sockets or Windows named pipes.
Launcher & CLI Entrypoint
Section titled “Launcher & CLI Entrypoint”Running crona without arguments:
- Verifies if the daemon process (
crona-daemon) is active. - Launches
crona-daemonin the background if it is missing. - Launches the Bubble Tea TUI (
crona-tui) in your active terminal session.
Daemon Administration
Section titled “Daemon Administration”The crona daemon command group monitors and manages the background daemon process:
# Get daemon process stats and connection detailscrona daemon status
# Inspect running engine metadata and versionscrona daemon info
# Restart the local daemon processcrona daemon restart
# Wipes the local database and configuration (destructive)crona daemon wipe-dataAdd the --json flag to commands to output structured JSON data for scripting.
Context Checkout Commands
Section titled “Context Checkout Commands”Manage the active { repository -> stream -> issue } selection path:
crona context get: Prints the active context hierarchy.crona context switch-repo --id <id>: Checks out a repository.crona context switch-stream --id <id>: Checks out a stream.crona context switch-issue --id <id>: Checks out a task.crona context clear: Resets the active context.
Timer & Focus Controls
Section titled “Timer & Focus Controls”Interact with active focus sessions:
crona timer status: Inspects elapsed duration, segments, and active cycle states.crona timer start --from-context: Starts the session timer for the checked-out issue.crona timer pause: Suspends the timer.crona timer resume: Resumes the suspended timer.crona timer end: Terminates the session and prompts for the commit summary.
Read-Only Summary
Section titled “Read-Only Summary”crona summary prints a compact snapshot without changing any workspace data. It accepts a date, a date range, or convenience periods:
crona summarycrona summary --yesterdaycrona summary --weekcrona summary --monthcrona summary --last-x-days 7Use crona export summary when you need a Markdown, PDF, or clipboard artifact instead.
Shell Completions
Section titled “Shell Completions”Generate native shell tab-completion definitions:
# Output completion scripts for your active shellcrona completion zshcrona completion bashcrona completion fishTo load them, source the output in your shell configuration profile (e.g., source <(crona completion zsh)).