Core Principle

Core Principle

You are a business advisor channeling the philosophy of The Minimalist Entrepreneur by Sahil Lavingia. Help the user set the right price

Category: productivity Source: slavingia/skills

What Is This

The "Core Principle" skill for the Happycapy Skills platform is a business advisory module designed to guide users in setting effective prices for products or services. Drawing from the philosophy of "The Minimalist Entrepreneur" by Sahil Lavingia, this skill helps entrepreneurs, freelancers, and startups make confident, data-driven pricing decisions. It emphasizes the fundamental rule: always charge something for what you offer. The skill provides actionable frameworks for both cost-based and value-based pricing models. It is particularly useful for those starting new ventures, considering price adjustments, or struggling to determine the optimal price point for their offerings.

Why Use It

Correct pricing is critical to the success and sustainability of any business. Many new and even experienced entrepreneurs hesitate to charge for their products, often undervaluing their work or fearing customer pushback. The "Core Principle" skill combats this tendency by instilling the mindset that charging any amount, even a nominal fee, is fundamentally different from offering something for free. This distinction is backed by behavioral economics, specifically Dan Ariely's "zero price effect," which demonstrates that even a minimal price dramatically changes customer behavior.

By leveraging this skill, users can:

  • Ensure their business is viable and sustainable by generating revenue from the outset.
  • Avoid the pitfall of undervaluing their offerings.
  • Learn directly from customer responses to different price points.
  • Choose between cost-based and value-based pricing models based on their business type and goals.

This skill is especially relevant for digital products, SaaS platforms, service providers, and retail businesses aiming for lean, sustainable growth.

How to Use It

The skill operates as a guided decision-making tool, offering step-by-step advice based on minimalist business principles. Here is how you can apply the skill:

1. Understand the Core Principle

Always charge something. Never default to free. Charging even a small amount helps validate your business and provides critical feedback from customers.

2. Select a Pricing Model

The skill helps you choose between two main models:

Cost-Based Pricing

This model is ideal for physical goods or services with clear, calculable costs.

Steps:

  1. Calculate all associated costs - materials, labor, hosting, payment processing, etc.
  2. Add a profit margin (typical range: 20% to 50%).

Example Calculation in Python:

def cost_based_price(costs, margin_percentage):
    margin = costs * (margin_percentage / 100)
    return round(costs + margin, 2)

## Example: $10 cost, 50% margin
price = cost_based_price(10, 50)
print(f"Recommended price: ${price}")  # Output: Recommended price: $15.0

Value-Based Pricing

Best suited for digital products, SaaS, or services where perceived value is high and costs are not directly tied to features.

Steps:

  1. Assess what the feature or product is worth to the customer.
  2. Price according to perceived value, not just your costs.

Example Assessment:

  • Multi-user accounts for a SaaS product cost nothing extra to provide, but customers may perceive them as highly valuable. The skill advises charging a premium for such features.

3. Apply Pricing Principles

  • Start low, raise over time: Begin with a lower price to attract early adopters. As the product improves, gradually increase the price.
  • Test and iterate: Use customer feedback to refine pricing. The skill encourages experimentation and learning from actual buying behavior.

4. Use the Skill in Your Workflow

The skill can be integrated into your pricing workflow as follows:

def recommend_pricing_model(product_type):
    if product_type in ['physical', 'service_with_costs']:
        return 'Cost-Based Pricing'
    if product_type in ['software', 'digital', 'value_service']:
        return 'Value-Based Pricing'
    return 'Consult for more information'

## Example usage
print(recommend_pricing_model('software'))  # Output: Value-Based Pricing

When to Use It

  • Launching a new product or service: Establish an initial price using one of the recommended models.
  • Considering a price change: Evaluate whether to increase or adjust your price as your product matures or market conditions change.
  • Struggling with what to charge: If you are unsure about your pricing strategy or facing customer pushback, use the skill to reassess your approach.
  • Testing new features: When adding features that increase perceived value, revisit your pricing using the value-based model.

Important Notes

  • The skill’s core advice is to never offer your primary product or service for free if you aim for a sustainable business.
  • There is a psychological barrier between free and paid, even at the lowest price point. Testing this with your audience provides invaluable feedback.
  • The skill does not automate pricing but provides structured frameworks and mindset shifts rooted in minimalist entrepreneurship.
  • Pricing is not static. Periodically review and adjust your prices in response to product improvements, customer feedback, and market dynamics.
  • For best results, combine this skill with customer discovery processes and ongoing experimentation.

By following the "Core Principle" skill on the Happycapy Skills platform, entrepreneurs can confidently set, test, and evolve their pricing-ensuring lasting business viability and growth.