@lucasygu/yc-cli 0.1.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,267 @@
1
+ # yc — CLI for YC Startup School, a16z Speedrun, SPC & Startup Discovery
2
+
3
+ A CLI tool for managing your YC Startup School journey, submitting a16z Speedrun and South Park Commons applications, and discovering 24+ accelerators, fellowships, and incubators — all from the terminal.
4
+
5
+ > ### Easiest way to get started
6
+ >
7
+ > Paste this to your AI coding agent (Claude Code, Cursor, Codex, Windsurf, OpenClaw, etc.):
8
+ >
9
+ > **"Install the `@lucasygu/yc-cli` tool via npm and run `yc whoami` to verify it works. Repo: https://github.com/lucasygu/yc-cli"**
10
+ >
11
+ > OpenClaw users can also run: **`clawhub install yc`**
12
+ >
13
+ > The agent will handle installation, verify the connection, and troubleshoot any cookie issues. Just make sure you're logged into [startupschool.org](https://www.startupschool.org/) in Chrome first.
14
+ >
15
+ > Once installed, try: **"Check my YC Startup School dashboard and submit this week's update"** — the agent will pull your streak, curriculum progress, and walk you through submitting.
16
+
17
+ ## Install
18
+
19
+ ```bash
20
+ npm install -g @lucasygu/yc-cli
21
+ # Or via ClawHub (OpenClaw ecosystem)
22
+ clawhub install yc
23
+ ```
24
+
25
+ Requires Node.js >= 22.
26
+
27
+ - **YC Startup School**: Uses cookies from your Chrome browser session — log into [startupschool.org](https://www.startupschool.org/) in Chrome first.
28
+ - **a16z Speedrun**: No authentication needed (public API).
29
+ - **South Park Commons**: Uses Playwright (headless Chromium) to fill Airtable forms — no auth needed.
30
+
31
+ After installing, run `yc whoami` to verify the connection. If macOS shows a Keychain prompt, click "Always Allow". The CLI auto-detects all Chrome profiles to find your YC session.
32
+
33
+ ## What You Can Do
34
+
35
+ - **Dashboard tracking** — Check your streak, curriculum progress, and weekly update status
36
+ - **Weekly updates** — Submit updates from the terminal (interactive or scripted)
37
+ - **Update history** — Review all past updates with metrics, morale, and goals
38
+ - **Speedrun applications** — Apply to a16z Speedrun with a JSON template or interactively
39
+ - **Deck upload** — Upload pitch deck PDFs for Speedrun applications
40
+ - **SPC applications** — Apply to South Park Commons Founder Fellowship or Community Membership via Playwright browser automation
41
+ - **Program discovery** — Browse 24+ curated accelerators, fellowships, and incubators with deadlines, terms, and application links
42
+
43
+ When used through an AI agent, these workflows chain together automatically. Each CLI command also works standalone.
44
+
45
+ ## Quick Start
46
+
47
+ ```bash
48
+ # YC Startup School
49
+ yc whoami # Test connection, show user info
50
+ yc dashboard # Show streak, curriculum, weekly status
51
+ yc updates # List all weekly updates
52
+ yc show <id> # Show a single update in detail
53
+ yc new # Submit new weekly update (interactive)
54
+ yc new --metric 5 --morale 7 --talked-to 3 # Non-interactive
55
+
56
+ # a16z Speedrun
57
+ yc speedrun template # Generate JSON template
58
+ yc speedrun apply # Interactive application
59
+ yc speedrun apply --from-json app.json # Submit from JSON
60
+ yc speedrun apply --from-json app.json --dry-run # Validate only
61
+ yc speedrun upload-deck deck.pdf # Upload pitch deck
62
+
63
+ # Discover Programs
64
+ yc discover # Overview — deadlines + rolling programs
65
+ yc discover list # Browse all 24+ programs
66
+ yc discover list --type fellowship # Filter by type
67
+ yc discover list --stage pre-seed # Filter by stage
68
+ yc discover deadlines # Upcoming deadlines sorted by date
69
+ yc discover show yc # Full details for a program
70
+ yc discover search "deep tech" # Search by name/focus/description
71
+ yc discover open yc # Open application page in browser
72
+
73
+ # South Park Commons
74
+ yc spc info # Show programs and form URLs
75
+ yc spc template # Generate JSON template (fellowship)
76
+ yc spc template --type membership # Community membership
77
+ yc spc apply # Interactive application
78
+ yc spc apply --from-json app.json # Fill from JSON
79
+ yc spc apply --from-json app.json --dry-run --headed # Visual preview
80
+ yc spc open # Open form in browser
81
+ ```
82
+
83
+ ## Commands
84
+
85
+ | Command | Description |
86
+ |---------|-------------|
87
+ | `whoami` | Test connection and show current user info |
88
+ | `dashboard` | Show streak, curriculum progress, and weekly update status |
89
+ | `updates` | List all weekly updates with metrics and morale |
90
+ | `show <id>` | Show a single update in full detail |
91
+ | `new` | Submit a new weekly update (interactive or with flags) |
92
+ | `speedrun template` | Generate a JSON template for a16z Speedrun application |
93
+ | `speedrun apply` | Submit a Speedrun application (interactive or from JSON) |
94
+ | `speedrun upload-deck <file>` | Upload a pitch deck PDF |
95
+ | `spc info` | Show SPC programs and form URLs |
96
+ | `spc template` | Generate a JSON template for SPC application |
97
+ | `spc apply` | Fill and submit SPC application via Playwright |
98
+ | `spc open` | Open SPC application form in browser |
99
+ | `discover` | Overview — upcoming deadlines and rolling programs |
100
+ | `discover list` | Browse all programs (with `--type`, `--stage`, `--focus`, `--tier` filters) |
101
+ | `discover deadlines` | Upcoming deadlines sorted by closing date |
102
+ | `discover show <slug>` | Full details for a program |
103
+ | `discover search <query>` | Search programs by name, focus, or description |
104
+ | `discover open <slug>` | Open program website or application in browser |
105
+
106
+ ### Global Options (YC Startup School)
107
+
108
+ | Option | Description | Default |
109
+ |--------|-------------|---------|
110
+ | `--cookie-source <browser>` | Browser to read cookies from (chrome, safari, firefox) | `chrome` |
111
+ | `--chrome-profile <name>` | Chrome profile directory name (e.g., "Profile 1"). Auto-detected if omitted. | auto |
112
+ | `--json` | Output as JSON | `false` |
113
+
114
+ ### Weekly Update Options (`yc new`)
115
+
116
+ | Option | Description |
117
+ |--------|-------------|
118
+ | `--metric <value>` | Primary metric value (number) |
119
+ | `--morale <value>` | Morale 1-10 |
120
+ | `--talked-to <value>` | Users talked to (number) |
121
+ | `--change <text>` | What most improved your metric |
122
+ | `--blocker <text>` | Biggest obstacle |
123
+ | `--learned <text>` | What you learned from users |
124
+ | `--goal <goals...>` | Goals for next week (can specify multiple) |
125
+
126
+ ### Speedrun Options (`yc speedrun apply`)
127
+
128
+ | Option | Description |
129
+ |--------|-------------|
130
+ | `--from-json <file>` | Load application from a JSON file |
131
+ | `--dry-run` | Validate and show payload without submitting |
132
+
133
+ ### SPC Options (`yc spc apply`)
134
+
135
+ | Option | Description | Default |
136
+ |--------|-------------|---------|
137
+ | `--type <type>` | Form type: `fellowship` or `membership` | `fellowship` |
138
+ | `--from-json <file>` | Load application from JSON file | — |
139
+ | `--dry-run` | Fill form but do not submit | `false` |
140
+ | `--headed` | Show browser window (default: headless) | `false` |
141
+
142
+ ### Discover Options (`yc discover list`)
143
+
144
+ | Option | Description | Default |
145
+ |--------|-------------|---------|
146
+ | `--type <type>` | Filter: `accelerator`, `fellowship`, `incubator`, `community` | all |
147
+ | `--stage <stage>` | Filter: `pre-idea`, `pre-seed`, `seed` | all |
148
+ | `--focus <focus>` | Filter by focus area: `ai`, `deep-tech`, `fintech`, etc. | all |
149
+ | `--tier <tier>` | Filter: `1` (elite), `2` (major), `3` (notable) | all |
150
+ | `--json` | Output as JSON | `false` |
151
+
152
+ ### Speedrun Categories
153
+
154
+ ```
155
+ B2B / Enterprise Applications
156
+ Consumer Applications
157
+ Deep Tech
158
+ Gaming / Entertainment Studio
159
+ Infrastructure / Dev Tools
160
+ Healthcare
161
+ GovTech
162
+ Web3
163
+ Other
164
+ ```
165
+
166
+ ### SPC Programs
167
+
168
+ | Program | Funding | Duration |
169
+ |---------|---------|----------|
170
+ | Founder Fellowship | $400K for 7% + $600K follow-on | Cohort-based (Spring/Fall) |
171
+ | Community Membership | No funding | Up to 6 months |
172
+
173
+ ## Troubleshooting
174
+
175
+ | Problem | Solution |
176
+ |---------|----------|
177
+ | `No session cookie found` | Log into startupschool.org in Chrome, then retry |
178
+ | macOS Keychain prompt | Enter your password and click "Always Allow" — the CLI needs to decrypt Chrome's cookies |
179
+ | Multiple Chrome profiles | The CLI auto-scans all profiles. To pick one: `--chrome-profile "Profile 1"` |
180
+ | Using Brave/Arc/other | Try `--cookie-source safari`, or log into startupschool.org in Chrome |
181
+ | Speedrun API error | No auth needed — check your internet connection |
182
+ | SPC form timeout | Airtable forms are heavy SPAs. Retry or use `--headed` to debug |
183
+
184
+ ## How It Works
185
+
186
+ **YC Startup School** — Reads your session cookies from Chrome (via [@steipete/sweet-cookie](https://github.com/steipete/sweet-cookie)), extracts the Rails CSRF token, then uses GraphQL for reads (`/graphql` endpoint) and Rails REST for writes (weekly update submission). No browser automation needed — just HTTP requests.
187
+
188
+ **a16z Speedrun** — Direct JSON API calls to Speedrun's public endpoint. No authentication, no signing, no cookies. Upload pitch decks via GCS signed URLs.
189
+
190
+ **South Park Commons** — SPC uses Airtable Interface forms (client-rendered SPAs). Since there's no public API, the CLI uses [Playwright](https://playwright.dev/) to navigate, fill, and submit the form programmatically. Supports headless and headed modes for preview before submission.
191
+
192
+ ## Workflows
193
+
194
+ ### Weekly Update Routine
195
+
196
+ ```bash
197
+ yc dashboard # Check streak and status
198
+ yc new # Submit this week's update
199
+ yc updates # Verify it's there
200
+ ```
201
+
202
+ ### Speedrun Application via AI Agent
203
+
204
+ ```bash
205
+ yc speedrun template > /tmp/speedrun-app.json # Generate template
206
+ # ... AI fills in the JSON with your details ...
207
+ yc speedrun apply --from-json /tmp/speedrun-app.json --dry-run # Validate
208
+ yc speedrun apply --from-json /tmp/speedrun-app.json # Submit
209
+ ```
210
+
211
+ ### SPC Application via AI Agent
212
+
213
+ ```bash
214
+ yc spc template > /tmp/spc-app.json # Generate template
215
+ # ... AI fills in the JSON with your details ...
216
+ yc spc apply --from-json /tmp/spc-app.json --dry-run --headed # Preview in browser
217
+ yc spc apply --from-json /tmp/spc-app.json # Submit
218
+ ```
219
+
220
+ ## AI Agent Integration
221
+
222
+ ### Claude Code
223
+
224
+ Installs automatically as a Claude Code skill. Use `/yc` in Claude Code:
225
+
226
+ ```
227
+ /yc whoami # Test connection
228
+ /yc dashboard # Check streak
229
+ /yc new # Submit weekly update
230
+ /yc speedrun apply # Apply to a16z Speedrun
231
+ /yc spc apply # Apply to SPC
232
+ ```
233
+
234
+ You can give natural language instructions for complex tasks:
235
+
236
+ - *"Check my Startup School dashboard and tell me if I need to submit this week"*
237
+ - *"Submit my weekly update — metric is 15, morale is 8, talked to 5 users"*
238
+ - *"Help me apply to a16z Speedrun with my startup details"*
239
+ - *"Fill out an SPC Founder Fellowship application for me"*
240
+
241
+ Claude will automatically generate templates, fill in your details, validate, and submit.
242
+
243
+ ### OpenClaw / ClawHub
244
+
245
+ Officially supports [OpenClaw](https://openclaw.ai) and [ClawHub](https://docs.openclaw.ai/tools/clawhub). Install via ClawHub:
246
+
247
+ ```bash
248
+ clawhub install yc
249
+ ```
250
+
251
+ All `yc` commands are available in OpenClaw after installation. The SKILL.md is compatible with both Claude Code and OpenClaw ecosystems.
252
+
253
+ ## Authentication
254
+
255
+ | Platform | Method | Setup |
256
+ |----------|--------|-------|
257
+ | YC Startup School | Chrome session cookies | Log into startupschool.org in Chrome |
258
+ | a16z Speedrun | None (public API) | — |
259
+ | South Park Commons | Playwright (headless browser) | — |
260
+
261
+ ## Disclaimer
262
+
263
+ This tool uses unofficial APIs for YC Startup School. YC may change or block these APIs at any time. The a16z Speedrun API is public. SPC uses Playwright to fill Airtable forms. Use responsibly and at your own risk. This project is not affiliated with Y Combinator, a16z, or South Park Commons.
264
+
265
+ ## License
266
+
267
+ MIT
package/SKILL.md CHANGED
@@ -1,8 +1,8 @@
1
1
  ---
2
- description: Manage Y Combinator Startup School from the terminal — weekly updates, dashboard, progress tracking
2
+ description: CLI for YC Startup School, a16z Speedrun, SPC, and startup program discovery — weekly updates, dashboard, applications, accelerator deadlines
3
3
  allowed-tools: Bash, Read, Write
4
4
  name: yc
5
- version: 0.1.0
5
+ version: 0.3.0
6
6
  metadata:
7
7
  openclaw:
8
8
  requires:
@@ -17,31 +17,67 @@ metadata:
17
17
  tags:
18
18
  - ycombinator
19
19
  - startup-school
20
+ - a16z
21
+ - speedrun
22
+ - south-park-commons
23
+ - spc
24
+ - accelerator
25
+ - fellowship
26
+ - incubator
27
+ - discover
20
28
  - productivity
21
29
  ---
22
30
 
23
- # YC CLI — Y Combinator Startup School
31
+ # YC CLI — YC Startup School, a16z Speedrun, SPC & Startup Discovery
24
32
 
25
- CLI tool for managing your YC Startup School journey. Submit weekly updates, track your streak, and view your dashboard — all from the terminal.
33
+ 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.
26
34
 
27
35
  ## Prerequisites
28
36
 
29
37
  - Node.js 22+
30
- - Logged into [startupschool.org](https://www.startupschool.org/) in Chrome
31
- - macOS (for cookie extraction from Chrome Keychain)
38
+ - For YC commands: Logged into [startupschool.org](https://www.startupschool.org/) in Chrome, macOS
39
+ - For Speedrun commands: No auth required (public API)
40
+ - For SPC commands: Chrome browser (for form auto-fill via Chrome automation)
32
41
 
33
42
  ## Quick Reference
34
43
 
35
44
  ```bash
45
+ # YC Startup School
36
46
  yc whoami # Test connection, show user info
37
47
  yc dashboard # Show streak, curriculum, weekly status
38
48
  yc updates # List all weekly updates
39
49
  yc show <id> # Show a single update in detail
40
50
  yc new # Submit new weekly update (interactive)
41
51
  yc new --metric 5 --morale 7 --talked-to 3 # Non-interactive
52
+
53
+ # a16z Speedrun
54
+ yc speedrun template # Generate JSON template
55
+ yc speedrun apply # Interactive application
56
+ yc speedrun apply --from-json app.json # Submit from JSON file
57
+ yc speedrun apply --from-json app.json --dry-run # Validate without submitting
58
+ yc speedrun upload-deck deck.pdf # Upload pitch deck
59
+
60
+ # South Park Commons
61
+ yc spc info # Show form URLs and program details
62
+ yc spc template # Generate JSON template (fellowship)
63
+ yc spc template --type membership # Template for community membership
64
+ yc spc apply # Interactive application
65
+ yc spc apply --from-json app.json # Fill from JSON file
66
+ yc spc apply --from-json app.json --dry-run --headed # Preview
67
+ yc spc open # Open form in browser
68
+
69
+ # Discover Programs
70
+ yc discover # Overview — deadlines + rolling programs
71
+ yc discover list # Browse all 24+ programs
72
+ yc discover list --type fellowship # Filter by type
73
+ yc discover list --stage pre-seed # Filter by stage
74
+ yc discover deadlines # Upcoming deadlines sorted by date
75
+ yc discover show yc # Full details for a program
76
+ yc discover search "deep tech" # Search by name/focus/description
77
+ yc discover open yc # Open application page in browser
42
78
  ```
43
79
 
44
- ## Commands
80
+ ## YC Startup School Commands
45
81
 
46
82
  ### `yc whoami`
47
83
  Test your connection and display user info (name, track, slug).
@@ -81,40 +117,161 @@ yc new \
81
117
  --goal "Set up analytics"
82
118
  ```
83
119
 
120
+ ## a16z Speedrun Commands
121
+
122
+ ### `yc speedrun template`
123
+ Generate a JSON template for a Speedrun application. Save it, fill in your details, then submit with `--from-json`.
124
+
125
+ ### `yc speedrun apply`
126
+ Submit a Speedrun application. Two modes:
127
+
128
+ **Interactive mode** (prompts for all fields):
129
+ ```bash
130
+ yc speedrun apply
131
+ ```
132
+
133
+ **From JSON file** (for automation / repeat submissions):
134
+ ```bash
135
+ # Generate template, edit it, submit
136
+ yc speedrun template > my-app.json
137
+ # ... edit my-app.json with your details ...
138
+ yc speedrun apply --from-json my-app.json
139
+
140
+ # Dry run first to validate
141
+ yc speedrun apply --from-json my-app.json --dry-run
142
+ ```
143
+
144
+ ### `yc speedrun upload-deck <file>`
145
+ Upload a pitch deck PDF and get the GCS URL to include in your application.
146
+
147
+ ```bash
148
+ yc speedrun upload-deck pitch.pdf
149
+ ```
150
+
151
+ ### Speedrun Categories
152
+ ```
153
+ B2B / Enterprise Applications
154
+ Consumer Applications
155
+ Deep Tech
156
+ Gaming / Entertainment Studio
157
+ Infrastructure / Dev Tools
158
+ Healthcare
159
+ GovTech
160
+ Web3
161
+ Other
162
+ ```
163
+
84
164
  ## Global Options
85
165
 
86
- All commands support:
166
+ YC Startup School commands support:
87
167
  - `--cookie-source <browser>` — Browser to read cookies from (chrome, safari, firefox). Default: chrome
88
168
  - `--chrome-profile <name>` — Specific Chrome profile directory name
89
169
  - `--json` — Output raw JSON (for scripting)
90
170
 
171
+ ## South Park Commons Commands
172
+
173
+ SPC uses Airtable Interface forms. The CLI fills and submits via Playwright (headless Chromium).
174
+
175
+ ### `yc spc info`
176
+ Show available SPC programs and their Airtable form URLs.
177
+
178
+ ### `yc spc template`
179
+ Generate a JSON template for an SPC application.
180
+
181
+ ```bash
182
+ yc spc template # Founder Fellowship (default)
183
+ yc spc template --type membership # Community Membership
184
+ ```
185
+
186
+ ### `yc spc apply`
187
+ Fill and submit an SPC application via Playwright (headless browser).
188
+
189
+ ```bash
190
+ yc spc apply # Interactive
191
+ yc spc apply --from-json my-app.json # From JSON file
192
+ yc spc apply --from-json my-app.json --dry-run # Fill but don't submit
193
+ yc spc apply --from-json my-app.json --headed # Show browser window
194
+ yc spc apply --from-json my-app.json --dry-run --headed # Visual review
195
+ ```
196
+
197
+ ### `yc spc open`
198
+ Open the SPC application form in your default browser.
199
+
200
+ ```bash
201
+ yc spc open # Founder Fellowship
202
+ yc spc open --type membership # Community Membership
203
+ ```
204
+
205
+ ### SPC Programs
206
+
207
+ | Program | Funding | Duration |
208
+ |---------|---------|----------|
209
+ | Founder Fellowship | $400K for 7% + $600K follow-on | Cohort-based (Spring/Fall) |
210
+ | Community Membership | No funding | Up to 6 months |
211
+
212
+ ## Discover Commands
213
+
214
+ Browse 24+ curated accelerators, fellowships, and incubators with deadlines, terms, and application links.
215
+
216
+ ### `yc discover`
217
+ Overview of programs with open/upcoming deadlines plus rolling programs. Default command.
218
+
219
+ ### `yc discover list`
220
+ Browse all programs in a table format. Filter with options:
221
+ - `--type <type>` — Filter: `accelerator`, `fellowship`, `incubator`, `community`
222
+ - `--stage <stage>` — Filter: `pre-idea`, `pre-seed`, `seed`
223
+ - `--focus <focus>` — Filter by focus area: `ai`, `deep-tech`, `fintech`, etc.
224
+ - `--tier <tier>` — Filter: `1` (elite), `2` (major), `3` (notable)
225
+ - `--json` — Output as JSON
226
+
227
+ ### `yc discover deadlines`
228
+ All upcoming deadlines sorted by closing date.
229
+
230
+ ### `yc discover show <slug>`
231
+ Full details for a specific program — investment terms, equity, deadlines, focus areas, application URL.
232
+
233
+ ### `yc discover search <query>`
234
+ Search programs by name, focus area, or description.
235
+
236
+ ### `yc discover open <slug>`
237
+ Open a program's application page in the default browser.
238
+
91
239
  ## Workflows
92
240
 
93
241
  ### Weekly Update Routine
94
242
  ```bash
95
- # Check if this week's update is submitted
96
- yc dashboard
243
+ yc dashboard # Check status
244
+ yc new # Submit if needed
245
+ yc updates # Verify
246
+ ```
97
247
 
98
- # If not, submit it
99
- yc new
248
+ ### Speedrun Application via Claude Code
249
+ When the user asks to apply to a16z Speedrun, generate a JSON template, fill it with their info, and submit:
250
+ ```bash
251
+ yc speedrun template > /tmp/speedrun-app.json
252
+ # ... Claude fills in the JSON ...
253
+ yc speedrun apply --from-json /tmp/speedrun-app.json --dry-run # Validate first
254
+ yc speedrun apply --from-json /tmp/speedrun-app.json # Submit
255
+ ```
100
256
 
101
- # Verify it shows up
102
- yc updates
257
+ ### SPC Application via Claude Code
258
+ ```bash
259
+ yc spc template > /tmp/spc-app.json # Generate template
260
+ # ... Claude fills in the JSON ...
261
+ yc spc apply --from-json /tmp/spc-app.json --dry-run --headed # Preview in browser
262
+ yc spc apply --from-json /tmp/spc-app.json # Submit
103
263
  ```
104
264
 
105
- ### Automation with Claude Code
106
- When the user asks to submit their weekly update, use the `yc new` command with flags:
265
+ ### Program Discovery
107
266
  ```bash
108
- yc new --metric <value> --morale <1-10> --talked-to <count> \
109
- --change "summary" --blocker "obstacle" --goal "goal1" --goal "goal2"
267
+ yc discover # What's open right now?
268
+ yc discover list --type fellowship # Browse fellowships
269
+ yc discover show yc # Deep dive on YC
270
+ yc discover open yc # Open YC application
110
271
  ```
111
272
 
112
273
  ## Authentication
113
274
 
114
- YC CLI extracts session cookies directly from your browser no API keys or tokens needed. Just log in to startupschool.org in Chrome and the CLI handles the rest.
115
-
116
- If you get authentication errors:
117
- 1. Open Chrome and visit https://www.startupschool.org/
118
- 2. Make sure you're logged in (can see dashboard)
119
- 3. Try running `yc whoami` again
120
- 4. If still failing, log out and back in to refresh your session
275
+ - **YC Startup School**: Extracts session cookies from Chrome — log in at startupschool.org first.
276
+ - **a16z Speedrun**: No authentication needed. The API is public.
277
+ - **South Park Commons**: No auth needed. Uses Playwright (headless Chromium) to fill Airtable forms.
package/dist/cli.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * yc — CLI for Y Combinator Startup School
3
+ * yc — CLI for Y Combinator Startup School, a16z Speedrun, and SPC
4
4
  *
5
- * Submit weekly updates, track your streak, manage your YC journey
6
- * from the terminal. Cookie-based auth from your browser session.
5
+ * Submit weekly updates, track your streak, manage your YC journey,
6
+ * apply to a16z Speedrun and South Park Commons — all from the terminal.
7
7
  */
8
8
  export {};
9
9
  //# sourceMappingURL=cli.d.ts.map