!hashid <hash>")
return
hash_input = ' '.join(args)
results = identify_hash(hash_input)
if not results or results[0][0] == "Unknown":
await bot.api.send_text_message(room.room_id, "Could not identify the hash type.")
return
# Sort by confidence descending
results.sort(key=lambda x: x[3], reverse=True)
output = _format_results(hash_input, results[:6]) # show top 6
await bot.api.send_markdown_message(room.room_id, output)
# ---------------------------------------------------------------------------
# Plugin Metadata
# ---------------------------------------------------------------------------
__version__ = "1.1.0"
__author__ = "Funguy Bot"
__description__ = "Hash type identifier"
__help__ = """
!hashid <hash> – Recognises 100+ formats and displays tool modes in a clean table.