mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-05-25 16:00:35 +00:00
24 lines
577 B
Go
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(),
|
|
}
|
|
}
|