14 lines
690 B
Python
14 lines
690 B
Python
from .common import simple_prompt_test
|
|
|
|
SUITE = "test_tools_identity"
|
|
|
|
|
|
def get_tests():
|
|
return [
|
|
simple_prompt_test(SUITE, "get_pubkey", "Fetch hex pubkey", "What is your public key in hex?", "nostr_pubkey"),
|
|
simple_prompt_test(SUITE, "get_npub", "Fetch npub", "What is your npub?", "nostr_npub"),
|
|
simple_prompt_test(SUITE, "agent_identity", "Agent identity tool", "Tell me about your identity", "agent_identity"),
|
|
simple_prompt_test(SUITE, "agent_version", "Agent version tool", "What version are you?", "agent_version"),
|
|
simple_prompt_test(SUITE, "admin_identity", "Admin identity tool", "Who is your administrator?", "admin_identity"),
|
|
]
|