Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

ycYC 搜索

Agent Skill

yc 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

17,160

周安装

701

GitHub Stars

公开资料未说明

下载量

5,496
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install yc

简介

YC Startup School 的 CLI、a16z Speedrun、SPC 和启动程序发现 — 每周更新、仪表板、应用程序、加速器截止日期

SKILL.md

description
CLI for YC Startup School, a16z Speedrun, SPC, and startup program discovery — weekly updates, dashboard, applications, accelerator deadlines
allowed-tools
Bash, Read, Write
name
yc
version
0.3.2
metadata
openclaw
requires
bins
install
package
@lucasygu/yc
bins
[yc]
os
[macos]
homepage
https://github.com/lucasygu/yc-cli
tags

YC CLI — YC Startup School, a16z Speedrun, SPC & Startup Discovery

CLI tool for managing your YC Startup School journey, submitting a16z Speedrun and SPC applications, and discovering 24+ accelerators, fellowships, and incubators — all from the terminal.

Prerequisites

  • Node.js 22+
  • For YC commands: Logged into startupschool.org in Chrome, macOS
  • For Speedrun commands: No auth required (public API)
  • For SPC commands: Chrome browser (for form auto-fill via Chrome automation)

Quick Reference

# YC Startup School
yc whoami                    # Test connection, show user info
yc dashboard                 # Show streak, curriculum, weekly status
yc updates                   # List all weekly updates
yc show <id>                 # Show a single update in detail
yc new                       # Submit new weekly update (interactive)
yc new --metric 5 --morale 7 --talked-to 3   # Non-interactive

# a16z Speedrun
yc speedrun template         # Generate JSON template
yc speedrun apply            # Interactive application
yc speedrun apply --from-json app.json   # Submit from JSON file
yc speedrun apply --from-json app.json --dry-run  # Validate without submitting
yc speedrun upload-deck deck.pdf   # Upload pitch deck

# South Park Commons
yc spc info                  # Show form URLs and program details
yc spc template              # Generate JSON template (fellowship)
yc spc template --type membership  # Template for community membership
yc spc apply                 # Interactive application
yc spc apply --from-json app.json  # Fill from JSON file
yc spc apply --from-json app.json --dry-run --headed  # Preview
yc spc open                  # Open form in browser

# Discover Programs
yc discover                  # Overview — deadlines + rolling programs
yc discover list             # Browse all 24+ programs
yc discover list --type fellowship   # Filter by type
yc discover list --stage pre-seed    # Filter by stage
yc discover deadlines        # Upcoming deadlines sorted by date
yc discover show yc          # Full details for a program
yc discover search "deep tech"       # Search by name/focus/description
yc discover open yc          # Open application page in browser

YC Startup School Commands

yc whoami

Test your connection and display user info (name, track, slug).

yc dashboard

Show your Startup School dashboard:

  • Current streak (consecutive weeks of updates)
  • Curriculum progress (completed/required)
  • Next curriculum item
  • Recent weekly update status (submitted/missing)

yc updates

List all your weekly updates with metric values, morale scores, and highlights.

yc show <id>

Display a single update in full detail including goals and their completion status.

yc new

Submit a new weekly update. Runs in interactive mode by default (prompts for each field).

Interactive mode:

yc new
# Prompts for: metric value, morale, users talked to, changes, blockers, goals

Flag mode (for automation):

yc new \
  --metric 10 \
  --morale 8 \
  --talked-to 5 \
  --change "Shipped MVP to first 10 users" \
  --blocker "Payment integration delayed" \
  --learned "Users want simpler onboarding" \
  --goal "Launch public beta" \
  --goal "Set up analytics"

a16z Speedrun Commands

yc speedrun template

Generate a JSON template for a Speedrun application. Save it, fill in your details, then submit with --from-json.

yc speedrun apply

Submit a Speedrun application. Two modes:

Interactive mode (prompts for all fields):

yc speedrun apply

From JSON file (for automation / repeat submissions):

# Generate template, edit it, submit
yc speedrun template > my-app.json
# ... edit my-app.json with your details ...
yc speedrun apply --from-json my-app.json

# Dry run first to validate
yc speedrun apply --from-json my-app.json --dry-run

yc speedrun upload-deck <file>

Upload a pitch deck PDF and get the GCS URL to include in your application.

yc speedrun upload-deck pitch.pdf

Speedrun Categories

B2B / Enterprise Applications
Consumer Applications
Deep Tech
Gaming / Entertainment Studio
Infrastructure / Dev Tools
Healthcare
GovTech
Web3
Other

Global Options

YC Startup School commands support:

  • --cookie-source <browser> — Browser to read cookies from (chrome, safari, firefox). Default: chrome
  • --chrome-profile <name> — Specific Chrome profile directory name
  • --json — Output raw JSON (for scripting)

South Park Commons Commands

SPC uses Airtable Interface forms. The CLI fills and submits via Playwright (headless Chromium).

yc spc info

Show available SPC programs and their Airtable form URLs.

yc spc template

Generate a JSON template for an SPC application.

yc spc template                    # Founder Fellowship (default)
yc spc template --type membership  # Community Membership

yc spc apply

Fill and submit an SPC application via Playwright (headless browser).

yc spc apply                                          # Interactive
yc spc apply --from-json my-app.json                  # From JSON file
yc spc apply --from-json my-app.json --dry-run        # Fill but don't submit
yc spc apply --from-json my-app.json --headed         # Show browser window
yc spc apply --from-json my-app.json --dry-run --headed  # Visual review

yc spc open

Open the SPC application form in your default browser.

yc spc open                    # Founder Fellowship
yc spc open --type membership  # Community Membership

SPC Programs

ProgramFundingDuration
Founder Fellowship$400K for 7% + $600K follow-onCohort-based (Spring/Fall)
Community MembershipNo fundingUp to 6 months

Discover Commands

Browse 24+ curated accelerators, fellowships, and incubators with deadlines, terms, and application links.

yc discover

Overview of programs with open/upcoming deadlines plus rolling programs. Default command.

yc discover list

Browse all programs in a table format. Filter with options:

  • --type <type> — Filter: accelerator, fellowship, incubator, community
  • --stage <stage> — Filter: pre-idea, pre-seed, seed
  • --focus <focus> — Filter by focus area: ai, deep-tech, fintech, etc.
  • --tier <tier> — Filter: 1 (elite), 2 (major), 3 (notable)
  • --json — Output as JSON

yc discover deadlines

All upcoming deadlines sorted by closing date.

yc discover show <slug>

Full details for a specific program — investment terms, equity, deadlines, focus areas, application URL.

yc discover search <query>

Search programs by name, focus area, or description.

yc discover open <slug>

Open a program's application page in the default browser.

Workflows

Weekly Update Routine

yc dashboard            # Check status
yc new                  # Submit if needed
yc updates              # Verify

Speedrun Application via Claude Code

When the user asks to apply to a16z Speedrun, generate a JSON template, fill it with their info, and submit:

yc speedrun template > /tmp/speedrun-app.json
# ... Claude fills in the JSON ...
yc speedrun apply --from-json /tmp/speedrun-app.json --dry-run  # Validate first
yc speedrun apply --from-json /tmp/speedrun-app.json            # Submit

SPC Application via Claude Code

yc spc template > /tmp/spc-app.json                        # Generate template
# ... Claude fills in the JSON ...
yc spc apply --from-json /tmp/spc-app.json --dry-run --headed  # Preview in browser
yc spc apply --from-json /tmp/spc-app.json                     # Submit

Program Discovery

yc discover                         # What's open right now?
yc discover list --type fellowship  # Browse fellowships
yc discover show yc                 # Deep dive on YC
yc discover open yc                 # Open YC application

Authentication

  • YC Startup School: Extracts session cookies from Chrome — log in at startupschool.org first.
  • a16z Speedrun: No authentication needed. The API is public.
  • South Park Commons: No auth needed. Uses Playwright (headless Chromium) to fill Airtable forms.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.99%
按下载量换算4,121

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills