def outreach_writer(lead_info, product_price):
    """
    Returns a personalized short message offering SAGE code review.

    Args:
        lead_info (dict): Dictionary containing lead information.
        product_price (float): Price of the product.

    Returns:
        str: Personalized short message offering SAGE code review.
    """
    repo = lead_info.get('repo', 'your-repo')
    issue = lead_info.get('issue', 'your-issue')
    return f"Hi {lead_info['name']}, I'd love to help you optimize your {product_price} product with a SAGE code review. Check out my work on {repo} and let's discuss {issue}."