fix(daemon): rename Discord slash commands from gsd- to sf- prefix
Update command names to match the rebrand: - gsd-status → sf-status - gsd-start → sf-start - gsd-stop → sf-stop - gsd-verbose → sf-verbose Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
6164a3f0ce
commit
6e520b1db8
1 changed files with 4 additions and 4 deletions
|
|
@ -24,19 +24,19 @@ import type { Logger } from './logger.js';
|
|||
export function buildCommands(): RESTPostAPIChatInputApplicationCommandsJSONBody[] {
|
||||
return [
|
||||
new SlashCommandBuilder()
|
||||
.setName('gsd-status')
|
||||
.setName('sf-status')
|
||||
.setDescription('Show status of all active SF sessions')
|
||||
.toJSON(),
|
||||
new SlashCommandBuilder()
|
||||
.setName('gsd-start')
|
||||
.setName('sf-start')
|
||||
.setDescription('Start a new SF session')
|
||||
.toJSON(),
|
||||
new SlashCommandBuilder()
|
||||
.setName('gsd-stop')
|
||||
.setName('sf-stop')
|
||||
.setDescription('Stop a running SF session')
|
||||
.toJSON(),
|
||||
new SlashCommandBuilder()
|
||||
.setName('gsd-verbose')
|
||||
.setName('sf-verbose')
|
||||
.setDescription('Set event verbosity level for this channel')
|
||||
.addStringOption((option) =>
|
||||
option
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue