ai_agent/commands/
summary.rs1use super::Command;
2
3pub fn create_summary_command() -> Command {
4 Command::prompt("summary", "Summarize conversation")
5}
6
7pub fn create_reset_limits_command() -> Command {
8 Command::local("reset-limits", "Reset usage limits")
9}
10
11pub fn create_mock_limits_command() -> Command {
12 Command::local("mock-limits", "Mock usage limits for testing").argument_hint("[<limits>]")
13}
14
15pub fn create_oauth_refresh_command() -> Command {
16 Command::local("oauth-refresh", "Refresh OAuth token")
17}
18
19pub fn create_perf_issue_command() -> Command {
20 Command::local("perf-issue", "Report performance issue").argument_hint("<description>")
21}