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

agentation

Add Agentation visual feedback toolbar to a Next.js project

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して agentation.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → agentation フォルダができる
  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

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Agentation のセットアップ

このプロジェクトで Agentation アノテーションツールバーをセットアップします。

手順

  1. 既にインストールされているか確認

    • package.json の dependencies に agentation があるか確認します。
    • 見つからない場合は、npm install agentation を実行します (またはロックファイルに基づいて pnpm/yarn を使用します)。
  2. 既に設定されているか確認

    • src/ または app/ で <Agentation または import { Agentation } を検索します。
    • 見つかった場合は、Agentation が既にセットアップされていることを報告して終了します。
  3. フレームワークの検出

    • Next.js App Router: app/layout.tsx または app/layout.js が存在します。
    • Next.js Pages Router: pages/_app.tsx または pages/_app.js が存在します。
  4. コンポーネントの追加

    Next.js App Router の場合は、ルートレイアウトに追加します。

    import { Agentation } from "agentation";
    
    // body の内側、children の後に追加:
    {process.env.NODE_ENV === "development" && <Agentation />}

    Next.js Pages Router の場合は、_app に追加します。

    import { Agentation } from "agentation";
    
    // Component の後に追加:
    {process.env.NODE_ENV === "development" && <Agentation />}
  5. セットアップの確認

    • 開発サーバーを実行し、Agentation ツールバー (右下隅のフローティングボタン) を探すようにユーザーに指示します。

注記

  • NODE_ENV のチェックにより、Agentation は開発環境でのみロードされます。
  • Agentation には React 18 が必要です。
  • 追加の設定は不要です。すぐに使用できます。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Agentation Setup

Set up the Agentation annotation toolbar in this project.

Steps

  1. Check if already installed

    • Look for agentation in package.json dependencies
    • If not found, run npm install agentation (or pnpm/yarn based on lockfile)
  2. Check if already configured

    • Search for <Agentation or import { Agentation } in src/ or app/
    • If found, report that Agentation is already set up and exit
  3. Detect framework

    • Next.js App Router: has app/layout.tsx or app/layout.js
    • Next.js Pages Router: has pages/_app.tsx or pages/_app.js
  4. Add the component

    For Next.js App Router, add to the root layout:

    import { Agentation } from "agentation";
    
    // Add inside the body, after children:
    {process.env.NODE_ENV === "development" && <Agentation />}

    For Next.js Pages Router, add to _app:

    import { Agentation } from "agentation";
    
    // Add after Component:
    {process.env.NODE_ENV === "development" && <Agentation />}
  5. Confirm setup

    • Tell the user to run their dev server and look for the Agentation toolbar (floating button in bottom-right corner)

Notes

  • The NODE_ENV check ensures Agentation only loads in development
  • Agentation requires React 18
  • No additional configuration needed — it works out of the box