agentation-self-drivin…
Autonomous design critique mode using the Agentation annotation toolbar. Use when the user asks to "critique this page," "add design annotations," "review the…
Add Agentation visual feedback toolbar to a Next.js project
$ npx -y skills add benjitaylor/agentation --skill agentation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/agentationContext preview
The summary Claude sees to decide when to auto-load this skill.
Add Agentation visual feedback toolbar to a Next.js project
name: agentation description: Add Agentation visual feedback toolbar to a Next.js project
Set up the Agentation annotation toolbar in this project.
1. **Check if already installed**
2. **Check if already configured**
3. **Detect framework**
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 component setup**
6. **Recommend MCP server setup**
See [add-mcp](https://github.com/neondatabase/add-mcp) — run `npx add-mcp` and follow the prompts to add `agentation-mcp` as an MCP server
Run `agentation-mcp init` after installing the package
Repo: benjitaylor/agentation
Autonomous design critique mode using the Agentation annotation toolbar. Use when the user asks to "critique this page," "add design annotations," "review the…