소스 정보
- 저장소
- carlvellotti/codex-pm-course
- 최근 소스 활동
- 2026년 6월 11일 22:41
- 감지된 SKILL.md 언어
- 영어
- 스타
- 13
- 포크
- 4
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/carlvellotti/codex-pm-course --skill start-3-5명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | start-3-5 |
| description | Module 3.5: Go Live. Deploys the quiz project to Vercel. |
At the start of this lesson, copy the bundled lesson support files into the workspace if they are not already present. Briefly tell the student what files are available if you mention them during the lesson.
cp -rn .agents/skills/start-3-5/assets/* . 2>/dev/null || true
Follow the course teaching rules in .agents/skills/_shared/teaching-rules.md. In short: follow the lesson script in order, speak naturally, stop at each STOP/CHECK point, and do not break the fourth wall.
This is it. The final step.
Your quiz is built, polished, and saved to GitHub. Now we put it on the internet so anyone can visit it.
Developers call this "deploying" - you're deploying your app to the web. You'll hear that word a lot.
STOP: Ready to go live?
USER: Yes
Vercel is a free service that puts your code on the internet.
It's basically the home base of vibecoding.
You give it your GitHub project, and it turns it into a real website with a real URL.
It's made by the same people who make Next.js (the framework we used), so they work together perfectly.
STOP: Sound good?
USER: Yes
First, you need a Vercel account.
STOP: Want me to open vercel.com for you? I recommend signing up with your GitHub account - it makes the GitHub connection easier later.
USER: Yes / I'll do it myself
ACTION: If they want it opened, open https://vercel.com if browser opening is available; otherwise ask the student to open it manually
STOP: Let me know when you've created an account. Make sure to sign up with GitHub!
USER: Done
Just like with GitHub, I'm going to download tools that let me work with Vercel directly.
This will open your browser to log in - just follow the prompts.
ACTION: Set up Vercel CLI:
vercel --version
npm i -g vercel
vercel login
Read the output. If Vercel shows a login URL, email link, or device code, show it clearly in chat and open the URL if browser opening is available.
Tell user: "Vercel is asking you to authorize the CLI. Follow the browser or email prompt, then let me know when you're done."
STOP: Let me know when you've authorized it.
USER: Done
ACTION: Verify authentication worked:
vercel whoami
If successful, continue. If not authenticated, troubleshoot:
Now let's put your quiz on the internet.
ACTION: Deploy to Vercel:
cd quiz-project
vercel --prod --yes
The --yes flag accepts all the defaults so you don't have to answer questions. The --prod flag means it goes live immediately.
Wait for the deploy to complete - it takes about a minute. Watch for the URL in the output.
Vercel is building your quiz and putting it on the internet now...
Done! Look for the URL in the output - it'll look something like quiz-project-abc123.vercel.app.
Your URL is: [Copy the URL from the deploy output]
That's YOUR website. On the real internet. Anyone can visit it.
Let me open it for you.
ACTION: Open the deployed URL in the browser using browser opening if available, otherwise provide the URL for manual opening
STOP: Do you see your quiz live on the internet?
USER: Yes!
Open that URL on your phone. It should work there too - same quiz, any device.
STOP: Does it work on your phone?
USER: Yes!
Now for the real test: send that link to a friend. Text it to someone right now. When they react, that's the feeling of shipping something real.
Let's acknowledge what just happened.
You built a real web application. You put it on the internet. You have a URL that works on any device. You did this without writing a single line of code yourself.
That's vibecoding. That's the future.
STOP: How does that feel?
USER: [Response]
Here's what you now know:
Plan → Get clear on what you're building Build → Let AI create it Iterate → Refine until it's right Save → Back it up to GitHub Go Live → Put it on the internet (deploy)
This is the loop. You can build anything with this loop.
STOP: Make sense?
USER: Yes
One more thing: what if you want to update your quiz later?
Here's the flow: make changes on your computer, ask me to "push to GitHub," and if your Vercel project is connected to GitHub, Vercel will automatically update your live website.
That's it. When the GitHub connection is set up, Vercel watches your repo and auto-deploys whenever you push changes. Magic.
STOP: Pretty cool, right?
USER: Yes
What if you wanted to collect emails from people who take the quiz? You'd need a database to save them. That's a future module.
What if you wanted to make sure it doesn't break? You'd need testing. Also a future module.
What if you wanted a custom domain like yourquiz.com? Totally doable - Vercel makes it easy.
The point is: you now have the foundation. Everything else builds on this.
STOP: Feeling empowered?
USER: Yes
Want to build something else? Start a new project folder and follow this same process.
The main things to tell Codex: you want to deploy on Vercel, and that it has Vercel CLI access. It'll know what to do.
STOP: Any ideas brewing?
USER: [Response]
To catch future modules: Subscribe to the Codex for PMs newsletter at ccforpms.com. That's also where you'll find in-depth guides and a community of PMs using Codex.
STOP: Want me to open that site so you can subscribe?
USER: Yes / No
ACTION: If yes, open https://ccforpms.com in browser
This course was created by Carl Vellotti. If you have feedback, questions, or just want to say hi, he's always happy to hear from you: X / LinkedIn
If you enjoyed this, share it with friends and coworkers who could use these skills!
Module 3 Complete!
You went from zero to deployed web app. You learned planning, building, iteration, GitHub, and going live.
This is vibecoding. This is your new superpower.
What's next: Future modules will cover databases, APIs, more complex apps, and connecting Codex to everything. But you now have the core skill - you can build and ship things.
In the meantime, try building something for yourself. The best way to learn is to make something you actually want.
STOP: Thanks for building with me. Now go make something cool.
USER: (exits or explores)
vercel --prod --yes flags are critical - --yes skips all interactive prompts, --prod deploys to production immediately[project-name]-[random].vercel.appquiz-project/