您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415
  1. // Command system exports
  2. export { slashAction } from './slash'
  3. export { registerSlashCommands, unregisterSlashCommands, SlashCommandProvider } from './slash'
  4. // Command registry system (for extending with custom commands)
  5. export { slashCommandRegistry, SlashCommandRegistry } from './registry'
  6. export type { SlashCommandHandler } from './types'
  7. // Command bus (for extending with custom commands)
  8. export {
  9. executeCommand,
  10. registerCommands,
  11. unregisterCommands,
  12. type CommandHandler,
  13. } from './command-bus'