Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

y-combinatory 组合器

Agent Skill

y-combinator 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,234

周安装

180

GitHub Stars

公开资料未说明

下载量

1,483
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:y-combinator(y 组合器)
来源仓库:https://github.com/duanc-chao/y-combinator
安装命令:
openclaw skills install y-combinator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install y-combinator

简介

了解 Y Combinator 的投资条款、批处理流程、核心创业理念、全球网络优势以及当前对 AI 和 B2B 初创公司的关注。

SKILL.md

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.

  1. 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.

  1. 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.

  1. 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.

  1. 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)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.93%
按下载量换算1,260

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills