Core Principle

Sell outward from the people who care most about you to the people who care least:

Core Principle:

Sell Outward from Your Strongest Connections

What Is This?

The "Core Principle" skill on the Happycapy Skills platform distills the foundational sales philosophy from The Minimalist Entrepreneur by Sahil Lavingia. This skill is designed to help founders, product builders, and early-stage entrepreneurs systematically identify and acquire their first 100 customers. Instead of relying on a "big launch" or chasing viral success, this skill guides users through a practical, repeatable process: start selling to those who care most about you (friends and family), then progressively expand outward to your broader community and eventually to the general market.

This approach is captured in the concept of "concentric circles of sales" - each circle represents a group with progressively less personal connection to you, but greater potential for market scale. The skill provides actionable steps, scripts, and checklists for methodically working through these circles, learning from each interaction, and compounding your sales momentum.

Why Use It?

Entrepreneurs often overestimate the power of product launches and underestimate the importance of direct, one-on-one sales. Viral growth is rare and usually the result of extensive groundwork that goes unnoticed. The Core Principle skill is essential because it:

  • Reduces risk: By starting with people who are most likely to support you, you get immediate feedback and validation before investing heavily in marketing or scaling.
  • Accelerates learning: Each early customer interaction is a source of insights about your product's strengths, weaknesses, and market fit.
  • Builds momentum: Satisfied early customers can become advocates, helping you bridge to the next circle of potential buyers.
  • Forces discipline: The process requires you to systematically document, contact, and follow up with real people - not just hope for passive discovery.

How to Use It

The Core Principle skill is best used as a guided workflow, either within the Happycapy platform or adapted to your preferred sales tracking tools. Below is a practical breakdown with code-inspired pseudocode and actionable steps:

Step 1:

Identify Your Circles

## Define your concentric circles
circles = {
    "Circle 1": "Friends and Family",
    "Circle 2": "Your Community",
    "Circle 3": "Broader Market"
}

Step 2:

List and Qualify Contacts

For each circle, make a detailed, explicit list.

def list_contacts(circle_name):
    contacts = []
    # Manually populate with names, emails, notes
    # Example:
    contacts.append({
        "name": "Alice Smith",
        "email": "alice@example.com",
        "relationship": "Friend",
        "status": "Not Contacted"
    })
    return contacts

Step 3:

Personal Outreach

Reach out to each contact with a customized pitch. Do not automate this step.

def send_pitch(contact):
    subject = "Could you help me by being an early customer?"
    message = f"""
    Hi {contact['name']},

    I'm working on a new product that solves {problem_statement}.
    I value your opinion and would love your honest feedback as one of my first users.
    Would you be open to trying it and sharing your thoughts?

    Thank you,
    {your_name}
    """
    # Send via email, message, or call

Step 4:

Capture Feedback and Iterate

Document every interaction, sale, and piece of feedback.

def log_feedback(contact, feedback):
    # Store feedback in a structured format
    contact['feedback'] = feedback
    contact['status'] = "Contacted"

Step 5:

Expand Outward

Once you’ve exhausted a circle, move to the next. For communities, target subject matter experts and contributors.

def expand_to_next_circle(current_circle):
    # Move to the next group in your concentric circles
    next_circle = circles[current_circle + 1]
    contacts = list_contacts(next_circle)
    # Repeat outreach and feedback collection

When to Use It

Use this skill when:

  • You have a product with at least a basic prototype or MVP.
  • You are unsure how to find your first paying customers.
  • You are struggling with early sales and need a systematic approach.
  • You want to validate your product in the real world before scaling up.
  • You wish to minimize wasted resources on premature marketing or PR.

This skill is not for those seeking instant viral traction or who already have a large, established customer base. It is optimized for early-stage builders who need concrete, actionable steps for direct sales.

Important Notes

  • Skip the launch: Do not waste time on elaborate launches; focus on one-on-one sales.
  • Track every interaction: Use a spreadsheet or CRM to ensure every contact is followed up.
  • Ask for feedback, not favors: Early adopters should be treated as customers, not charity supporters.
  • Iterate quickly: Each interaction is a chance to refine your pitch, product, and sales process.
  • Be persistent, not pushy: Expect rejection, but remain professional and courteous.

The Core Principle skill is about building a real business, one customer at a time. It is not glamorous, but it is effective and repeatable. By working outward from those who care most to those who care least, you maximize your learning, reduce your risk, and build a solid foundation for future growth.