value-based-selling
Master value-based selling techniques — price based on customer value, reduce barriers to purchase, and close deals through education rather than pressure. Use when: setting prices for a product/service, improving conversion rates, training sales teams.
What this skill does
# Value-Based Selling
## Overview
Most businesses price based on cost-plus or competitor matching. Both leave massive money on the table. Value-based selling prices your offering based on the value it creates for the customer — and uses education, not pressure, to close deals.
The Pricing Uncertainty Principle from the Personal MBA states: all prices are malleable. There is no "correct" price — only the price the market will bear relative to the perceived value. Your job is to maximize perceived value and minimize perceived risk.
## Instructions
When a user asks about pricing strategy, improving sales conversions, or removing barriers to purchase, apply these frameworks.
### Step 1: Understand the Value You Create
Before setting any price, quantify the value your product creates for the customer. There are four pricing methods to establish this:
#### The 4 Pricing Methods
1. **Replacement Cost** — What would it cost the customer to build this themselves?
- "Our CRM integration saves you from hiring a developer for 3 months ($45k). We charge $499/month."
- Works best for: tools that replace labor or in-house builds
2. **Market Comparison** — What do alternatives cost?
- "Competitors charge $200-800/month. We're at $149/month with better features."
- Works best for: established markets with known competitors
- Danger: anchors you to competitor pricing, not value
3. **Discounted Cash Flow (DCF)** — What is the financial value of what you provide over time?
- "Our tool increases conversion rate by 2%, which at your traffic means $340k additional revenue per year."
- Works best for: B2B with measurable ROI
4. **Value Comparison** — What is the emotional/strategic value to the buyer?
- "How much is it worth to never worry about data loss again?"
- Works best for: insurance, security, peace-of-mind products
**Rule of thumb:** Price at 10-20% of the value you create. If you save a company $100k/year, charging $10-20k/year is a no-brainer for them and highly profitable for you.
### Step 2: Apply Education-Based Selling
Stop selling. Start teaching. Education-based selling works because:
- **Informed buyers convert better** — When prospects understand their problem deeply, they see why your solution matters
- **Teaching builds trust** — You become the expert, not just another vendor
- **It disqualifies bad fits early** — Prospects who don't have the problem you solve self-select out
**Implementation:**
1. Create content that teaches prospects about their problem (blog posts, webinars, guides)
2. Show the cost of NOT solving the problem (status quo has a price)
3. Explain the landscape of solutions (including competitors — yes, really)
4. Demonstrate how your approach is different (not "better" — different in a way that matters)
5. Let them conclude that you're the right choice (don't push — pull)
**Example email sequence for a SaaS product:**
- Email 1: "The hidden cost of manual data entry (most teams waste 15 hours/week)"
- Email 2: "3 approaches to automation: build, buy off-the-shelf, or use an AI tool"
- Email 3: "How Company X reduced data entry time by 80% (case study)"
- Email 4: "Your options: here's what we offer (with transparent pricing)"
### Step 3: Remove Barriers to Purchase
Every sale has friction. The 5 standard barriers to purchase and how to eliminate each:
1. **It costs too much** (price barrier)
- Solution: Reframe as investment with ROI. Offer payment plans. Show cost of inaction.
- "This costs $200/month. But you're losing $2,000/month to the problem it solves."
2. **It won't work for me** (effectiveness barrier)
- Solution: Case studies from similar customers. Free trial period. Live demo with their data.
- "Here's a company your exact size in your industry that got these results."
3. **It won't work well enough** (quality barrier)
- Solution: Guarantee. "If you don't see X result in 30 days, full refund."
- Money-back guarantees typically INCREASE sales by 20-30% while refund rates stay under 5%.
4. **I can wait** (urgency barrier)
- Solution: Show cost of delay. Limited-time pricing. Founder pricing for early adopters.
- "Every month you wait costs you $2,000 in lost productivity."
5. **It's too hard to switch** (effort barrier)
- Solution: White-glove onboarding. Data migration service. "We'll set it up for you."
- The biggest competitor isn't another product — it's the customer's current workflow (even if it sucks).
### Step 4: Implement Risk Reversal
Risk reversal shifts the risk from buyer to seller. This sounds scary but dramatically increases conversions:
- **Money-back guarantee** — "Full refund within 30 days, no questions asked"
- **Free trial** — "Use it free for 14 days, credit card not required"
- **Pay-for-results** — "You only pay if we deliver the agreed outcome"
- **Pilot program** — "Start with a 3-month pilot at reduced rate"
The stronger your risk reversal, the more you're saying: "We're so confident this works that we'll bet on it." Customers trust confident sellers.
### Step 5: Analyze the Next Best Alternative
Your prospect always has alternatives. Map them:
```
For a project management SaaS:
1. Direct competitors: Asana, Monday, Linear ($8-20/user/month)
2. Indirect alternatives: spreadsheets (free), email threads (free), sticky notes
3. Do nothing: keep current chaotic process
Your positioning must beat ALL of these, not just direct competitors.
The real enemy is often "do nothing" — the status quo.
```
## Code Example: Pricing Calculator
```typescript
interface PricingInputs {
// What value do you create?
annualValueToCustomer: number; // $ saved or earned per year
alternativeCostPerYear: number; // what they'd pay for the next best option
customerTimeSavedHoursPerWeek: number; // hours saved per week
customerHourlyRate: number; // what their time is worth
// What does it cost you?
costToServePerMonth: number; // hosting, support, etc.
targetMarginPercent: number; // desired gross margin (e.g., 80)
}
interface PricingRecommendation {
valueBased: { monthly: number; annual: number; reasoning: string };
competitorBased: { monthly: number; annual: number; reasoning: string };
costPlus: { monthly: number; annual: number; reasoning: string };
recommended: { monthly: number; annual: number; reasoning: string };
riskReversals: string[];
}
function calculatePricing(inputs: PricingInputs): PricingRecommendation {
const timeSavingsPerYear = inputs.customerTimeSavedHoursPerWeek * 52 * inputs.customerHourlyRate;
const totalValuePerYear = inputs.annualValueToCustomer + timeSavingsPerYear;
// Value-based: 10-20% of value created
const valueBasedAnnual = Math.round(totalValuePerYear * 0.15);
const valueBasedMonthly = Math.round(valueBasedAnnual / 12);
// Competitor-based: 10-20% below alternative
const competitorBasedAnnual = Math.round(inputs.alternativeCostPerYear * 0.85);
const competitorBasedMonthly = Math.round(competitorBasedAnnual / 12);
// Cost-plus: cost / (1 - margin%)
const costPlusMonthly = Math.round(inputs.costToServePerMonth / (1 - inputs.targetMarginPercent / 100));
const costPlusAnnual = costPlusMonthly * 12;
// Recommended: highest of cost-plus and average of value + competitor
const recommendedMonthly = Math.max(
costPlusMonthly,
Math.round((valueBasedMonthly + competitorBasedMonthly) / 2)
);
return {
valueBased: {
monthly: valueBasedMonthly,
annual: valueBasedAnnual,
reasoning: `15% of ${totalValuePerYear.toLocaleString()} annual value created`,
},
competitorBased: {
monthly: competitorBasedMonthly,
annual: competitorBasedAnnual,
reasoning: `15% below alternative cost of ${inputs.alternativeCostPerYear.toLocaleString()}/year`,
},
costPlus: {
monthly: costPlusMonthly,
annual: costPlusAnnual,
reasoning: `${inputs.targetMaRelated in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".