agentation
Add Agentation visual feedback toolbar to a Next.js project
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
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
$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. 下の青いボタンを押して
agentation.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
agentationフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Agentation のセットアップ
このプロジェクトで Agentation アノテーションツールバーをセットアップします。
手順
-
既にインストールされているか確認
- package.json の dependencies に
agentationがあるか確認します。 - 見つからない場合は、
npm install agentationを実行します (またはロックファイルに基づいて pnpm/yarn を使用します)。
- package.json の dependencies に
-
既に設定されているか確認
- src/ または app/ で
<Agentationまたはimport { Agentation }を検索します。 - 見つかった場合は、Agentation が既にセットアップされていることを報告して終了します。
- src/ または app/ で
-
フレームワークの検出
- Next.js App Router:
app/layout.tsxまたはapp/layout.jsが存在します。 - Next.js Pages Router:
pages/_app.tsxまたはpages/_app.jsが存在します。
- Next.js App Router:
-
コンポーネントの追加
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 />} -
セットアップの確認
- 開発サーバーを実行し、Agentation ツールバー (右下隅のフローティングボタン) を探すようにユーザーに指示します。
注記
NODE_ENVのチェックにより、Agentation は開発環境でのみロードされます。- Agentation には React 18 が必要です。
- 追加の設定は不要です。すぐに使用できます。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Agentation Setup
Set up the Agentation annotation toolbar in this project.
Steps
-
Check if already installed
- Look for
agentationin package.json dependencies - If not found, run
npm install agentation(or pnpm/yarn based on lockfile)
- Look for
-
Check if already configured
- Search for
<Agentationorimport { Agentation }in src/ or app/ - If found, report that Agentation is already set up and exit
- Search for
-
Detect framework
- Next.js App Router: has
app/layout.tsxorapp/layout.js - Next.js Pages Router: has
pages/_app.tsxorpages/_app.js
- Next.js App Router: has
-
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 />} -
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_ENVcheck ensures Agentation only loads in development - Agentation requires React 18
- No additional configuration needed — it works out of the box