Y Combinator

v1.0.0

Understand Y Combinator's investment terms, batch process, core startup philosophy, global network benefits, and current focus on AI and B2B startups.

0· 142·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for duanc-chao/y-combinator.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Y Combinator" (duanc-chao/y-combinator) from ClawHub.
Skill page: https://clawhub.ai/duanc-chao/y-combinator
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install y-combinator

ClawHub CLI

Package manager switcher

npx clawhub@latest install y-combinator
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name and description match the SKILL.md content: a guide to YC's model, application process, and trends. Nothing in the skill asks for unrelated capabilities, credentials, or system access.
Instruction Scope
SKILL.md contains guidance, a timeline table, and a conceptual Python snippet illustrating decision logic. It does not instruct the agent to read files, access environment variables, call external endpoints, or transmit data—its runtime surface is informational only.
Install Mechanism
There is no install spec and no code files to execute. This is the lowest-risk model (instruction-only).
Credentials
The skill declares no required environment variables, credentials, or config paths; the requested permissions are proportionate (none) to the described purpose.
Persistence & Privilege
The skill does not request always:true or other elevated persistence, and defaults allow normal autonomous invocation only. It does not modify system or other skills' configurations.
Assessment
This skill appears safe and coherent: it only provides guidance about YC and asks for no credentials or installs. Before relying on it, remember the content is informational and time-sensitive (deal terms, amounts, and trends can change); verify critical facts (e.g., current standard deal terms) against official YC sources. The included Python snippet is conceptual — do not assume it's production-ready without review. If you plan to act on fundraising or legal matters, consult up-to-date official documentation or a professional advisor.

Like a lobster shell, security has layers — review code before you run it.

latestvk97fk4kawjqeqwhzrp0c5bmzq5838741
142downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

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

PhaseDurationKey ActivitySuccess Metric
ApplicationVariableSubmitting the idea and team profile.Receiving an interview invite.
Interview10 MinutesRapid-fire Q&A with Partners.Receiving "The Call" (Acceptance).
The Batch3 MonthsProduct building, user acquisition, weekly dinners.Week-over-week growth (e.g., +10% users).
Demo Day1 DayPitching 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)

Comments

Loading comments...