Auto-reply: tidy help message

This commit is contained in:
Luke K (pr-0f3t)
2026-01-08 22:48:36 -05:00
parent b97a9235e0
commit 8aa80fa464

View File

@@ -20,14 +20,12 @@ import {
type SessionEntry, type SessionEntry,
type SessionScope, type SessionScope,
} from "../config/sessions.js"; } from "../config/sessions.js";
import { resolveCommitHash } from "../infra/git-commit.js";
import { import {
estimateUsageCost, estimateUsageCost,
formatTokenCount as formatTokenCountShared, formatTokenCount as formatTokenCountShared,
formatUsd, formatUsd,
resolveModelCostConfig, resolveModelCostConfig,
} from "../utils/usage-format.js"; } from "../utils/usage-format.js";
import { VERSION } from "../version.js";
import { listChatCommands } from "./commands-registry.js"; import { listChatCommands } from "./commands-registry.js";
import type { import type {
ElevatedLevel, ElevatedLevel,
@@ -350,7 +348,7 @@ export function buildHelpMessage(): string {
" Help", " Help",
"Shortcuts: /new reset | /compact [instructions] | /restart relink", "Shortcuts: /new reset | /compact [instructions] | /restart relink",
"Options: /think <level> | /verbose on|off | /reasoning on|off | /elevated on|off | /model <id> | /cost on|off", "Options: /think <level> | /verbose on|off | /reasoning on|off | /elevated on|off | /model <id> | /cost on|off",
"More: /commands for all slash commands" "More: /commands for all slash commands",
].join("\n"); ].join("\n");
} }