diff --git a/silkaj/cli.py b/silkaj/cli.py
index 99b2523235fc8f80284ae2d07c8ee7c04da834ce..dc8e563e19e458a8bc91a4e7744b39d9a6ee8215 100644
--- a/silkaj/cli.py
+++ b/silkaj/cli.py
@@ -125,24 +125,48 @@ def cli(
 
 
 cli.add_command(about)
-cli.add_command(argos_info)
 cli.add_command(generate_auth_file)
-cli.add_command(cmd_amount)
-cli.add_command(list_blocks)
-cli.add_command(send_certification)
 cli.add_command(checksum_command)
-cli.add_command(difficulties)
-cli.add_command(transaction_history)
-cli.add_command(id_pubkey_correspondence)
-cli.add_command(currency_info)
 cli.add_command(license_command)
-cli.add_command(send_membership)
-cli.add_command(send_transaction)
-cli.add_command(verify_blocks_signatures)
-cli.add_command(received_sent_certifications)
 
 
-@cli.group(
+@cli.group("blockchain", help="Blockchain related commands")
+@help_option("-h", "--help")
+def blockchain_group() -> None:
+    pass
+
+
+blockchain_group.add_command(argos_info)
+blockchain_group.add_command(list_blocks)
+blockchain_group.add_command(difficulties)
+blockchain_group.add_command(currency_info)
+blockchain_group.add_command(verify_blocks_signatures)
+
+
+@cli.group("money", help="Money management related commands")
+@help_option("-h", "--help")
+def money_group() -> None:
+    pass
+
+
+money_group.add_command(cmd_amount)
+money_group.add_command(transaction_history)
+money_group.add_command(send_transaction)
+
+
+@cli.group("wot", help="Web-of-Trust related commands")
+@help_option("-h", "--help")
+def wot_group() -> None:
+    pass
+
+
+wot_group.add_command(send_certification)
+wot_group.add_command(id_pubkey_correspondence)
+wot_group.add_command(send_membership)
+wot_group.add_command(received_sent_certifications)
+
+
+@wot_group.group(
     "revocation",
     help="Create, save, verify or publish revocation document.\n\
 Subcommands optionally take the path to the revocation document.",