Class: Parabot::Commands::Start

Inherits:
Base
  • Object
show all
Defined in:
lib/parabot/commands/start.rb

Instance Method Summary collapse

Instance Method Details

#callObject



8
9
10
11
12
13
14
15
16
17
# File 'lib/parabot/commands/start.rb', line 8

def call(**)
  init(**)
  dry_run_log "Would start Claude session using messaging adapter: #{config.messaging_adapter}"

  start_claude_session
rescue TmuxError => e
  handle_tmux_error(e)
rescue StandardError => e
  handle_unexpected_error(e)
end