From 74600833bcaf6333eebc0dd643c5792067144fcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Arrufat?= Date: Sat, 30 May 2026 20:15:04 +0200 Subject: [PATCH] agent: add '[command]' hint to help command --- src/agent/SlashCommand.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent/SlashCommand.zig b/src/agent/SlashCommand.zig index 01e1b0d5..8a470e06 100644 --- a/src/agent/SlashCommand.zig +++ b/src/agent/SlashCommand.zig @@ -49,7 +49,7 @@ pub const MetaCommand = struct { }; pub const meta_commands = [_]MetaCommand{ - .{ .tag = .help, .name = "help", .hint = "", .values = &.{}, .description = "List commands, or show help for one" }, + .{ .tag = .help, .name = "help", .hint = "[command]", .values = &.{}, .description = "List commands, or show help for one" }, .{ .tag = .quit, .name = "quit", .hint = "", .values = &.{}, .description = "Exit the REPL" }, .{ .tag = .verbosity, .name = "verbosity", .hint = "", .values = &.{ "low", "medium", "high" }, .description = "Set agent verbosity" }, .{ .tag = .save, .name = "save", .hint = "[filename.lp]", .values = &.{}, .description = "Save this session to a file" },