Class: Agentic::CLI::Agent

Inherits:
Thor
  • Object
show all
Defined in:
lib/agentic/cli/agent.rb

Overview

CLI commands for managing agents

Instance Method Summary collapse

Instance Method Details

#create(name) ⇒ Object



17
18
19
20
21
# File 'lib/agentic/cli/agent.rb', line 17

def create(name)
  puts "Creating agent: #{name}"
  # In a future implementation, this would create and register an agent
  puts "Agent created successfully."
end

#delete(name) ⇒ Object



24
25
26
27
28
# File 'lib/agentic/cli/agent.rb', line 24

def delete(name)
  puts "Deleting agent: #{name}"
  # In a future implementation, this would delete an agent from a registry
  puts "Agent deleted successfully."
end

#listObject



8
9
10
11
12
# File 'lib/agentic/cli/agent.rb', line 8

def list
  puts "Available agents:"
  # In a future implementation, this would list agents from a registry
  puts "  - No custom agents registered yet"
end