1#ifndef YAZE_CLI_HANDLERS_AGENT_SIMPLE_CHAT_COMMAND_H_
2#define YAZE_CLI_HANDLERS_AGENT_SIMPLE_CHAT_COMMAND_H_
12 std::string
GetName()
const {
return "simple-chat"; }
13 std::string
GetDescription()
const {
return "Simple text-based chat with the AI agent."; }
15 return "simple-chat [--prompt <message>] [--file <path>] [--format <format>]";
20 return absl::OkStatus();
The Rom class is used to load, save, and modify Rom data.
std::string GetDescription() const
absl::Status ValidateArgs(const resources::ArgumentParser &parser) override
Validate command arguments.
std::string GetUsage() const override
Get the command usage string.
std::string GetName() const
Get the command name.
absl::Status Execute(Rom *rom, const resources::ArgumentParser &parser, resources::OutputFormatter &formatter) override
Execute the command business logic.
Utility for parsing common CLI argument patterns.
Base class for CLI command handlers.
Main namespace for the application.