CeloIA · Documentation

Command reference

Shell commands, execution options and conversation shortcuts.

In your terminal

Terminal

celo
celo -c
celo "Explain this project"
celo login
celo logout
celo whoami
celo --help
celo --version

Start a conversation, resume the latest session, ask a one-off question, manage account access or inspect the installed version.

Execution options

Use -c / --continue to resume, -m / --model <id> to choose a model, and -h / --help for help. In one-off mode, -y / --yes authorizes overwriting files without confirmation. Start without --yes and keep your work versioned.

Inside a conversation

Type / to filter commands and Tab to complete the first result. Command names remain the same in every documentation language.

Terminal

/modelo
/saldo
/sessoes
/salvar file.txt
/limpar
/ajuda
/sair

Select a model, check tokens, list sessions, save the last complete code block, clear the conversation, show help or exit.

Send text through a pipe

Review input for secrets before sending it. Piped content becomes context; it does not prove that Celo ran the command that produced it.

Terminal

cat error.log | celo "Explain this error."

Windows PowerShell

Get-Content error.log | celo "Explain this error."