Skip to main content

REPL (Default)

fliiq
Launches the Rich-based REPL — the default interactive mode. Start typing and press Enter to send. Cancel a running agent with Ctrl+C. Exit with /exit or Ctrl+C when idle.

Slash Commands

CommandAction
/modeCycle mode (plan → supervised → autonomous)
/statusShow session info (mode, message count, iterations)
/clearReset conversation history (keep system prompt)
/helpShow available commands
/exitExit session

Full-Screen TUI

fliiq tui
Launches a full-screen Textual-based interface with:
  • Header — Shows the Fliiq icon, version, and current working directory
  • Message log — Scrollable conversation history with markdown rendering
  • Mode indicator — Colored label showing current execution mode
  • Live thinking timer — Shows elapsed time while the agent is working (e.g., “Thinking… 12s”, “Thinking… 1m 23s”)
  • Incremental tool calls — Tool calls stream into the message log as they execute, so you see progress in real time
  • Status bar — Redesigned footer with session context at a glance
  • Input area — Type your message and press Enter to send

Keyboard Shortcuts

KeyAction
EnterSend message
Ctrl+JInsert newline (multi-line input)
Shift+TabCycle execution mode
EscCancel running agent (or focus input when idle)

Conversation Persistence

Within a session, the agent maintains full conversation history. It remembers what you discussed, what files it created, and what decisions were made. This history is lost when you exit — for persistence across sessions, the agent uses memory.

Starting Mode

fliiq --mode plan         # Start in plan mode
fliiq --mode supervised   # Start in supervised mode
fliiq --mode autonomous   # Start in autonomous mode (default)