jpskill.com
🛠️ 開発・MCP コミュニティ

use-fullstackrecipes

Discover and follow recipes via MCP resources for setup guides, skills, and cookbooks. The meta-skill for using fullstackrecipes effectively.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o use-fullstackrecipes.zip https://jpskill.com/download/22381.zip && unzip -o use-fullstackrecipes.zip && rm use-fullstackrecipes.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22381.zip -OutFile "$d\use-fullstackrecipes.zip"; Expand-Archive "$d\use-fullstackrecipes.zip" -DestinationPath $d -Force; ri "$d\use-fullstackrecipes.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して use-fullstackrecipes.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → use-fullstackrecipes フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

Building with fullstackrecipes

Discover and follow recipes via MCP resources for setup guides, skills, and cookbooks. The meta-skill for using fullstackrecipes effectively.

How fullstackrecipes Works

fullstackrecipes provides setup instructions for building full-stack applications and skills to work with them. Content is organized into two types:

  1. Setup Recipes: Step-by-step guides to configure tools and services (e.g., setting up authentication, database, payments)
  2. Skills: Instructions for working with previously configured tools (e.g., writing queries, using auth, logging)

Cookbooks bundle related recipes together in sequence. For example, "Base App Setup" includes Next.js, Shadcn UI, Neon Postgres, Drizzle ORM, and AI SDK setup recipes and skills.


Accessing Recipes via MCP

The fullstackrecipes MCP server exposes all recipes and cookbooks as resources. Resources are organized by type:

  • recipe:// - Individual setup guides and skills
  • cookbook:// - Bundled recipe sequences

Set up MCP Server

If the MCP server is not already set up, add it with:

bunx add-mcp https://fullstackrecipes.com/api/mcp -y

Read a Specific Recipe

Fetch the full content of any recipe by its resource URI:

Read the "neon-drizzle-setup" resource from fullstackrecipes

The recipe content includes all steps, code examples, and file paths needed to complete the setup.


Best Practices for Following Recipes

Follow Recipes Exactly

Recipes are tested instructions. Follow them step-by-step without modifications unless you have a specific reason to deviate.

Complete Dependencies First

Some recipes depend on others. The MCP resource descriptions indicate prerequisites. Complete setup recipes before using their corresponding skills.

Use Skills for Day-to-Day Work

Once a tool is configured, use the skill for ongoing development. Skills contain patterns, code examples, and API references that apply to the configured tools.

Check for Updates

Recipes are updated as libraries evolve. When troubleshooting issues or starting new features, fetch the latest recipe content from the MCP server rather than relying on cached instructions.


Authoring Recipes

When writing recipes that include installable utilities, use the {% registry %} tag to provide both CLI installation and source code viewing.

Registry Tag

The registry tag renders:

  1. Install via shadcn CLI - A copy-able command to install the utility
  2. Source code viewer - Collapsible code block showing the full source

Example usage:

{% registry items="assert" /%}

This renders the CLI command and source code from public/r/assert.json. Users can install via CLI or copy the code directly.

Avoid Code Duplication

When using a registry tag, do not duplicate the code in the recipe. The registry tag handles displaying the source code automatically.

Bad:

{% registry items="workflow-stream" /%}

Install via the registry above, or create manually:

\`\`\`typescript
// src/workflows/steps/stream.ts
// ... same code as registry item ...
\`\`\`

Good:

{% registry items="workflow-stream" /%}

Import and use the stream utilities in your workflow:

\`\`\`typescript
import { startStream, finishStream } from "@/workflows/steps/stream";
\`\`\`

The registry tag already provides the installation command and source code. Only add usage examples or explanations that aren't part of the installable code itself.


References