Files
2026-05-04 08:41:17 +02:00

24 lines
577 B
Go

package commands
// BuiltinDefinitions returns all built-in command definitions.
// Each command group is defined in its own cmd_*.go file.
// Definitions are stateless — runtime dependencies are provided
// via the Runtime parameter passed to handlers at execution time.
func BuiltinDefinitions() []Definition {
return []Definition{
startCommand(),
helpCommand(),
stopCommand(),
showCommand(),
listCommand(),
useCommand(),
btwCommand(),
switchCommand(),
checkCommand(),
clearCommand(),
contextCommand(),
subagentsCommand(),
reloadCommand(),
}
}