원클릭으로
agentation
Add Agentation visual feedback toolbar to a Vite + React project
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Add Agentation visual feedback toolbar to a Vite + React project
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | agentation |
| description | Add Agentation visual feedback toolbar to a Vite + React project |
Set up the Agentation annotation toolbar in this project.
Check if already installed
agentation in package.json dependenciesnpm install agentationCheck if already configured
<Agentation or import { Agentation } or AgentationOverlay in src/Add the component
This is a Vite + React project. Create src/components/AgentationOverlay.jsx:
import { useEffect, useState } from "react";
export function AgentationOverlay() {
const [Comp, setComp] = useState(null);
useEffect(() => {
if (!import.meta.env.DEV) return;
import("agentation").then((mod) => setComp(() => mod.Agentation));
}, []);
if (!Comp) return null;
return <Comp endpoint="http://localhost:4747" />;
}
Then add <AgentationOverlay /> to the root App.jsx, after all other content.
Confirm component setup
Check if MCP server already configured
claude mcp list to check if agentation MCP server is already registeredConfigure Claude Code MCP server
claude mcp add agentation -- npx agentation-mcp serverConfirm full setup
<AgentationOverlay />)import.meta.env.DEV check ensures Agentation only loads in development (Vite convention)npx agentation-mcp doctor to verify setup