Organizar e agrupar ações ao desenvolver pacotes

Revise os exemplos dados sobre como adicionar e agrupar ações durante o processo de desenvolvimento do pacote SDK.

Exemplo: Adicionar ações
@BotCommand

//CommandPks adds required information to be dispalable on the UI.
@CommandPkg(
		//Unique name inside a package and a label to display.
		name = "concatenate", label = "[[Concatenate.label]]", 
		node_label = "[[Concatenate.node_label]]", description = "[[Concatenate.description]]", icon = "pkg.svg", 
		
		//Return type information. return_type ensures only the right kind of variable is provided on the UI. 
		return_label = "[[Concatenate.return_label]]", return_type = STRING, return_required = true)
Exemplo: Grupo ações

Use o group_label para ConcatenateGroup que é exibido na UI também como ConcatenateGroup. Quando o group_label não é usado, você terá todas as ações no respectivo pacote.

@BotCommand

//CommandPks adds required information to be dispalable on the UI.
@CommandPkg(
		//Provide a unique name inside a package and a label to display.
		group_label = "ConcatenateGroup", name = "concatenateWithGroup", label = "concatenateWithGroup",
		node_label = "[[Concatenate.node_label]]", description = "[[Concatenate.description]]", icon = "pkg.svg", 
		
		//Return type information. return_type ensures only the right kind of variable is provided on the UI. 
		return_label = "[[Concatenate.return_label]]", return_type = STRING, return_required = true)
public class ConcatenateWithGroup {