Y Combinator
by @duanc-chao
Understand Y Combinator's investment terms, batch process, core startup philosophy, global network benefits, and current focus on AI and B2B startups.
clawhub install y-combinatorπ About This Skill
Skill: Mastering the Y Combinator (YC) Ecosystem
#### Objective
To understand the operational model, cultural philosophy, and strategic value of Y Combinator, enabling founders to effectively leverage its resources for startup acceleration and global networking.
#### Core Concept
Y Combinator is not merely a venture capital firm; it is a standardized "operating system" for startups. It functions as a batch-processed accelerator that provides seed capital, intense mentorship, and a powerful alumni network in exchange for equity. Its core philosophy prioritizes rapid iteration, user feedback, and "making something people want" over complex business planning.
#### Step-by-Step Guide
1. Understand the "YC Deal" Structure The financial and structural foundation of YC is designed to be standardized and founder-friendly to minimize negotiation friction. - The Investment: As of recent cycles (post-2022), the standard deal involves an investment of $125,000 for 7% equity. - The Instrument: YC popularized the SAFE (Simple Agreement for Future Equity). This is not a loan; it is an agreement that converts into equity during the next priced funding round, protecting early investors and founders from immediate valuation caps. - The "Top Company" Track: Exceptional companies may receive additional investment on a rolling basis, signaling high confidence from the partnership. 2. Navigate the Batch Cycle YC operates on a strict, high-intensity timeline (historically two batches per year: Winter and Summer, though evolving). - The Application: This is the primary filter. It requires concise answers about the problem being solved, the team's "Founder/Market Fit," and the idea's novelty. - The Interview: A 10-minute high-speed interrogation. Partners test the founders' clarity of thought and the magnitude of the problem. Speed and directness are valued over salesmanship. - The Program (3 Months): Once accepted, the focus shifts to the "Default Alive" stateβgetting the product to market immediately. 3. Absorb the Core Philosophy Success in YC requires adopting its specific mental models. - "Make Something People Want": This is the YC motto. It emphasizes product-market fit above all else. - "Do Things That Don't Scale": In the early stages, founders are encouraged to manually recruit users and solve their problems one-on-one to learn exactly what is needed before automating. - "Talk to Users": A relentless focus on user feedback loops rather than internal speculation. 4. Leverage the Network (The "YC Graph") The true value of YC often lies in its alumni network, which functions as a decentralized support system. - Bookface: An internal forum where founders can ask questions and get answers from successful alumni (e.g., the founders of Stripe or Airbnb) within hours. - The "YC Mafia": A term for the powerful network of alumni who help each other with hiring, business development, and future fundraising. - Demo Day: The culmination of the program where startups pitch to a curated list of top-tier investors. 5. Identify Current Strategic Trends YC's focus shifts with the technological landscape. - AI Dominance: In recent years (2023-2026), a significant percentage of the batch has been AI-focused. - B2B Preference: YC data suggests a strong bias toward B2B (Business-to-Business) models, as selling to businesses is often faster and more lucrative than B2C (Business-to-Consumer) in the early stages. - Global Reach: While US-based, YC actively seeks international founders, viewing talent as globally distributed.
#### Visual Example: The YC Timeline
| Phase | Duration | Key Activity | Success Metric | | ------ |------ |------ |------ | | Application | Variable | Submitting the idea and team profile. | Receiving an interview invite. | | Interview | 10 Minutes | Rapid-fire Q&A with Partners. | Receiving "The Call" (Acceptance). | | The Batch | 3 Months | Product building, user acquisition, weekly dinners. | Week-over-week growth (e.g., +10% users). | | Demo Day | 1 Day | Pitching to investors. | Securing follow-on funding (Series A). |
#### Python Code Snippet (Conceptual "YC Logic")
This conceptual code illustrates the decision-making logic of a YC partner evaluating a startup. It highlights the emphasis on "Founder/Market Fit" and "Growth."
def evaluate_yc_candidate(founder_experience, problem_severity, growth_rate, market_size):
"""
Simulates the logic of a YC Partner evaluating a startup application.
"""
print(f"--- Evaluating Candidate ---")
# 1. Check Founder/Market Fit
if founder_experience == "high" and problem_severity == "hair-on-fire":
print("Status: Strong Founder/Market Fit. The team understands the pain point.")
else:
print("Status: Risky. Do the founders actually understand the problem?")
return "Reject" # 2. Check Market Size
if market_size < 1_000_000_000: # 1 Billion TAM (Total Addressable Market)
print("Warning: Market might be too small for VC returns.")
else:
print("Status: Massive Market Potential.")
# 3. Check Growth (The most important metric)
if growth_rate >= 10: # 10% week-over-week growth
print("Verdict: INVEST. The product is growing organically.")
return "Accept"
elif growth_rate > 0:
print("Verdict: Waitlist. Needs more traction.")
return "Waitlist"
else:
print("Verdict: Reject. No product-market fit yet.")
return "Reject"
Example Usage
A team of ex-Stripe engineers (high experience) building AI legal tools (severe problem)
with 15% weekly growth in a billion dollar market.
result = evaluate_yc_candidate("high", "hair-on-fire", 15, 5_000_000_000)