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.