Skip to main content

Modes of Operation

Kane CLI has three modes. Choose based on who (or what) is running the test.

ModeCommandOutputBest For
Interactive TUIkane-cli --tuiTerminal UIDevelopment, exploration, chained sessions
Non-Interactive CLI Modekane-cli run "..." --headlessFormatted text + JSONCI/CD, shell scripts
Agent Modekane-cli run "..." --agentNDJSON on stdoutAI coding agents (Claude, Codex, Gemini)

Interactive TUI

Launch the TUI:

kane-cli --tui

The TUI is the right surface when you are exploring objectives, debugging failures, or working through a multi-run flow that should share browser state.

Boot and Menu

On launch, Kane CLI runs a short boot sequence (auth check, environment resolution, mascot animation), then drops into the main menu. The top-level entries are:

EntryPurpose
RunStart a run or adjust per-run options
AuthLogin, logout, switch profile, view identity, check credit balance
ConfigView and change settings (mode, project, folder, Chrome profile, window size)
ExitGraceful shutdown (uploads the session if applicable)

Use the arrow keys to navigate, Enter to select, and Esc to back out of a submenu.

Chat Mode

Selecting Run > Start Run switches the TUI into chat mode. Type your objective at the prompt and press Enter. The agent begins streaming steps into the scrollback: each step shows the action taken, a short rationale, and a status icon. When the run finishes, a result summary block appears.

Subsequent runs in the same TUI session reuse the same browser, so you can iterate on objectives without re-logging in or re-navigating.

Slash Commands

Typing / in chat mode opens an autocomplete palette. Continue typing to filter, use the arrow keys to select, and press Enter to insert the command.

CommandArgsDescription
/run"objective"Execute a test run
/login[--profile name]OAuth login
/logout[--profile name]Logout and revoke tokens
/whoami[--profile name]Show profile info
/balanceShow credit balance
/profileslist|switch|deleteManage profiles
/configshow|set-window|set-mode|chrome-profile|project|folderManage configuration
/newStart a fresh session (uploads the current session first)
/summary[index]View detailed run summaries
/cancelAbort the current run
/helpShow the command reference
/clearClear chat history
/exitQuit Kane CLI

You can also send a bare line of text without a leading /. It is treated as the objective for /run.

Press Ctrl+R in the input prompt to open reverse history search across past inputs in this and previous sessions. Type to filter, use the arrow keys to move between matches, Enter to accept, and Esc to dismiss.

The prompt also offers ghost-text completion: if your current input is a prefix of a recent entry or a slash command, the rest is shown dimmed and Tab accepts it.

Status Bar

A two-row status bar sits at the bottom of the TUI:

IndicatorMeaning
ModelThe model in use (default v16-alpha)
SessionLast six characters of the current session ID
Auth dotGreen when authenticated, red when not logged in
ProfileActive profile name (or no profile)
Environmentprod (green) or a yellow stage warning
RunsNumber of runs completed in this session
Hint lineContext-aware shortcuts

Multi-Run Sessions

Every run launched from the same TUI invocation shares one Chrome instance and one session directory. Cookies, login state, and tabs persist across runs, so an early run can log in and a later run can land mid-application without re-authenticating. Starting a fresh session from inside the TUI is done with /new, which uploads the current session and then resets state.

> go to https://myapp.com and log in as admin
✓ PASSED (5 steps, 8.2s)

> navigate to User Management and create a new user "[email protected]"
✓ PASSED (7 steps, 12.1s)

> verify the new user appears in the users table
✓ PASSED (3 steps, 4.5s)

Interactive Follow-Ups

If the agent needs information mid-run (for example, a one-time code or a clarifying choice), it pauses and asks at the input prompt. Type your answer and press Enter; the agent resumes from where it left off. Use Ctrl+C to cancel the run instead of answering.

Keyboard Shortcuts

ShortcutAction
EnterSubmit objective
Ctrl+CCancel current run
Ctrl+C (twice)Exit TUI
Ctrl+RReverse history search
EscGo back / close picker
Up / DownNavigate menu or history
TabAccept autocomplete in chat mode

Cancelling and Exiting

ActionShortcut
Cancel the current run/cancel, or Ctrl+C once during a run
Exit the TUI/exit, or Ctrl+C twice in quick succession
Force exit during shutdown uploadCtrl+C twice while exit is in progress

A graceful /exit runs the upload pipeline (if applicable) and prints any final links to your terminal scrollback before the process ends.


Non-Interactive CLI Mode

kane-cli run "Search for 'automation testing' on Google" \
--url https://google.com \
--headless

This mode is best for shell scripts, CI/CD pipelines, and any scenario where the interactive TUI is not needed.

Output Streams

StreamContents
stderrLive progress (banner, step tree, result box, links, upload progress, feedback prompt)
stdoutThe final JSON run_end payload, including the share URL when an upload succeeds

This separation lets you capture each independently:

kane-cli run "..." > result.json 2> progress.log

In CI, redirect stdout to a file your job can parse and let stderr stream to the build log.

When stdin is not a TTY, Kane CLI automatically switches to plain NDJSON mode (the same as --agent). Each line on stdout is one JSON event terminated by a newline.

Exit Codes

Exit CodeMeaning
0Test passed
1Test failed (assertion not met)
2Error (auth failure, Chrome crash)
3Timeout or cancelled

What You See at the End of a Run

When a run finishes, Kane CLI prints a result summary:

FieldMeaning
StatusPASSED (green check) or FAILED (red cross)
StepsTotal step count, with a (N passed, M failed) breakdown when there were failures
DurationWall-clock time in seconds (or minutes and seconds for longer runs)
CreditsCredits consumed, when reported
SummaryBullet-point summary of what the agent did
ReasonFailure reason (failed runs only)

Below the summary, Kane CLI prints any of the following links:

LabelPoints to
ShareLinkA shareable session URL on TestMu AI Test Manager
TestCaseThe test case detail page in TestMu AI Test Manager
CodeExportThe local directory containing generated code (when code export is enabled)

Feedback Prompt

After the result and links print, Kane CLI prompts you to rate the session with thumbs up or thumbs down. Use the left and right arrow keys to choose, Enter to submit, or Esc to skip. See Test Manager Integration for details.


Agent Mode

Add --agent to get structured NDJSON output designed for AI coding agents:

kane-cli run "Verify login page loads" --url https://myapp.com --agent --headless

With --agent:

  • The interactive TUI is fully suppressed: no boot screen, no menus
  • Each event is a single JSON line on stdout
  • Progress UI renders to stderr (clean separation)
  • Stdin is not used (no interactive prompts)

This mode is how Claude Code, Codex CLI, and Gemini CLI consume Kane CLI results. The agent reads the NDJSON stream, parses the final run_end event, and presents results to you.

See Agent Mode for the full event schema and parsing guide.

tip

Always combine --agent with --headless in non-interactive environments to prevent display server errors.

Test across 3000+ combinations of browsers, real devices & OS.

Book Demo

Help and Support

Related Articles