# HyperAgent Python Starter
# Replace this with your actual agent logic!

def hello_world(name: str) -> dict:
    """Returns a greeting — replace with your real tool logic"""
    return {
        "message": f"Hey {name}, BROski is online! 🤖",
        "status": "ok"
    }

if __name__ == "__main__":
    # Quick test
    result = hello_world("BROski")
    print(result)
