AIRecipes

누구나 AI로 원하는 결과를 만들 수 있습니다.

원하는 결과만 알려주세요. 그 결과를 만드는 정확한 AI 워크플로우, 프롬프트, 툴을 단계별로 알려드립니다.

인기 레시피

인기 워크플로우

인기 프롬프트

Supabase

Create a Supabase project

Go to supabase.com → New Project → pick a name and region. Copy the Project URL and anon/service keys into your project's .env file, then ask Claude Code to "connect this project to my Supabase database."

Vercel

Deploy with Vercel

Go to vercel.com/new → Import your GitHub repository → add your Supabase env vars → Deploy. Every future `git push` to main redeploys automatically.

GitHub

Initialize git and push to GitHub

git init git add . git commit -m "Initial commit" gh repo create my-project --public --source=. --push (Or create the repo on github.com first, then `git remote add origin <url>` and `git push -u origin main`.)

Claude Code

Install Claude Code

npm install -g @anthropic-ai/claude-code cd your-project-folder claude Then just describe what you want to build in plain language — no need to open a separate editor.

Cursor

Support bot build prompt

Build a simple chat API that answers customer questions using only this knowledge base: [PASTE KB], and replies "I'll escalate this to a human" for anything outside it.

Zapier

Connection checklist

Create a Zap that sends new incoming support messages to your bot's API and posts the reply back, escalating flagged messages to a human teammate.